
    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;}
.sc__c00000{text-shadow:none;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00000{-webkit-text-stroke:0px transparent;}
}
.y0_c00000{bottom:0.000000px;}
.h0_c00000{height:1262.835000px;}
.h1_c00000{height:1263.000000px;}
.w0_c00000{width:892.935000px;}
.w1_c00000{width:893.250000px;}
.x0_c00000{left:0.000000px;}
@media print{
.y0_c00000{bottom:0.000000pt;}
.h0_c00000{height:1122.520000pt;}
.h1_c00000{height:1122.666667pt;}
.w0_c00000{width:793.720000pt;}
.w1_c00000{width:794.000000pt;}
.x0_c00000{left:0.000000pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator_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_4b1a818e47ee996d44d60ce3.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_091d053e2b443c2cf055ed7c.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.m1_c00001{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_c00001{vertical-align:-2.160000px;}
.v0_c00001{vertical-align:0.000000px;}
.ls3_c00001{letter-spacing:-0.331200px;}
.ls1_c00001{letter-spacing:0.000000px;}
.ls2_c00001{letter-spacing:0.059760px;}
.ls4_c00001{letter-spacing:0.132480px;}
.ls0_c00001{letter-spacing:0.173520px;}
.ls6_c00001{letter-spacing:0.239040px;}
.ls5_c00001{letter-spacing:0.331200px;}
.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;}
}
.ws2_c00001{word-spacing:-16.891200px;}
.ws1_c00001{word-spacing:-16.692480px;}
.ws3_c00001{word-spacing:-16.560000px;}
.ws0_c00001{word-spacing:-14.999760px;}
.ws8_c00001{word-spacing:-0.728640px;}
.ws6_c00001{word-spacing:-0.239040px;}
.ws7_c00001{word-spacing:-0.132480px;}
.ws4_c00001{word-spacing:0.000000px;}
.ws5_c00001{word-spacing:0.331200px;}
._0_c00001{margin-left:-1.358640px;}
._1_c00001{width:1.212192px;}
.fc1_c00001{color:rgb(0,0,255);}
.fc0_c00001{color:rgb(0,0,0);}
.fs3_c00001{font-size:54.000000px;}
.fs2_c00001{font-size:59.760000px;}
.fs1_c00001{font-size:63.360000px;}
.fs0_c00001{font-size:66.240000px;}
.y0_c00001{bottom:0.000000px;}
.y25_c00001{bottom:126.552960px;}
.y24_c00001{bottom:145.447920px;}
.y23_c00001{bottom:164.342880px;}
.y22_c00001{bottom:183.420000px;}
.y21_c00001{bottom:202.338720px;}
.y20_c00001{bottom:221.415840px;}
.y1f_c00001{bottom:240.310800px;}
.y1e_c00001{bottom:259.387920px;}
.y1d_c00001{bottom:278.282880px;}
.y1c_c00001{bottom:297.177840px;}
.y1b_c00001{bottom:359.460000px;}
.y1a_c00001{bottom:399.424500px;}
.y19_c00001{bottom:419.040000px;}
.y18_c00001{bottom:438.480000px;}
.y17_c00001{bottom:458.636400px;}
.y16_c00001{bottom:478.800000px;}
.y15_c00001{bottom:497.700000px;}
.y14_c00001{bottom:517.136400px;}
.y13_c00001{bottom:537.300000px;}
.y12_c00001{bottom:556.037280px;}
.y11_c00001{bottom:575.472960px;}
.y10_c00001{bottom:628.568640px;}
.yf_c00001{bottom:680.048640px;}
.ye_c00001{bottom:699.484320px;}
.yd_c00001{bottom:718.920000px;}
.yc_c00001{bottom:739.326240px;}
.yb_c00001{bottom:759.479760px;}
.ya_c00001{bottom:797.451840px;}
.y9_c00001{bottom:835.606080px;}
.y8_c00001{bottom:873.760320px;}
.y7_c00001{bottom:911.914560px;}
.y6_c00001{bottom:950.068800px;}
.y5_c00001{bottom:988.223040px;}
.y4_c00001{bottom:1026.377280px;}
.y3_c00001{bottom:1064.531520px;}
.y2_c00001{bottom:1102.685760px;}
.y1_c00001{bottom:1140.840000px;}
.h2_c00001{height:44.149219px;}
.h7_c00001{height:52.998047px;}
.h3_c00001{height:62.184375px;}
.h4_c00001{height:62.850938px;}
.h6_c00001{height:65.010937px;}
.h5_c00001{height:65.025338px;}
.h0_c00001{height:1262.880000px;}
.h1_c00001{height:1263.000000px;}
.w0_c00001{width:892.980000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x1_c00001{left:127.620000px;}
.x3_c00001{left:145.620000px;}
.x4_c00001{left:309.780000px;}
.x2_c00001{left:370.621440px;}
@media print{
.v1_c00001{vertical-align:-1.920000pt;}
.v0_c00001{vertical-align:0.000000pt;}
.ls3_c00001{letter-spacing:-0.294400pt;}
.ls1_c00001{letter-spacing:0.000000pt;}
.ls2_c00001{letter-spacing:0.053120pt;}
.ls4_c00001{letter-spacing:0.117760pt;}
.ls0_c00001{letter-spacing:0.154240pt;}
.ls6_c00001{letter-spacing:0.212480pt;}
.ls5_c00001{letter-spacing:0.294400pt;}
.ws2_c00001{word-spacing:-15.014400pt;}
.ws1_c00001{word-spacing:-14.837760pt;}
.ws3_c00001{word-spacing:-14.720000pt;}
.ws0_c00001{word-spacing:-13.333120pt;}
.ws8_c00001{word-spacing:-0.647680pt;}
.ws6_c00001{word-spacing:-0.212480pt;}
.ws7_c00001{word-spacing:-0.117760pt;}
.ws4_c00001{word-spacing:0.000000pt;}
.ws5_c00001{word-spacing:0.294400pt;}
._0_c00001{margin-left:-1.207680pt;}
._1_c00001{width:1.077504pt;}
.fs3_c00001{font-size:48.000000pt;}
.fs2_c00001{font-size:53.120000pt;}
.fs1_c00001{font-size:56.320000pt;}
.fs0_c00001{font-size:58.880000pt;}
.y0_c00001{bottom:0.000000pt;}
.y25_c00001{bottom:112.491520pt;}
.y24_c00001{bottom:129.287040pt;}
.y23_c00001{bottom:146.082560pt;}
.y22_c00001{bottom:163.040000pt;}
.y21_c00001{bottom:179.856640pt;}
.y20_c00001{bottom:196.814080pt;}
.y1f_c00001{bottom:213.609600pt;}
.y1e_c00001{bottom:230.567040pt;}
.y1d_c00001{bottom:247.362560pt;}
.y1c_c00001{bottom:264.158080pt;}
.y1b_c00001{bottom:319.520000pt;}
.y1a_c00001{bottom:355.044000pt;}
.y19_c00001{bottom:372.480000pt;}
.y18_c00001{bottom:389.760000pt;}
.y17_c00001{bottom:407.676800pt;}
.y16_c00001{bottom:425.600000pt;}
.y15_c00001{bottom:442.400000pt;}
.y14_c00001{bottom:459.676800pt;}
.y13_c00001{bottom:477.600000pt;}
.y12_c00001{bottom:494.255360pt;}
.y11_c00001{bottom:511.531520pt;}
.y10_c00001{bottom:558.727680pt;}
.yf_c00001{bottom:604.487680pt;}
.ye_c00001{bottom:621.763840pt;}
.yd_c00001{bottom:639.040000pt;}
.yc_c00001{bottom:657.178880pt;}
.yb_c00001{bottom:675.093120pt;}
.ya_c00001{bottom:708.846080pt;}
.y9_c00001{bottom:742.760960pt;}
.y8_c00001{bottom:776.675840pt;}
.y7_c00001{bottom:810.590720pt;}
.y6_c00001{bottom:844.505600pt;}
.y5_c00001{bottom:878.420480pt;}
.y4_c00001{bottom:912.335360pt;}
.y3_c00001{bottom:946.250240pt;}
.y2_c00001{bottom:980.165120pt;}
.y1_c00001{bottom:1014.080000pt;}
.h2_c00001{height:39.243750pt;}
.h7_c00001{height:47.109375pt;}
.h3_c00001{height:55.275000pt;}
.h4_c00001{height:55.867500pt;}
.h6_c00001{height:57.787500pt;}
.h5_c00001{height:57.800300pt;}
.h0_c00001{height:1122.560000pt;}
.h1_c00001{height:1122.666667pt;}
.w0_c00001{width:793.760000pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x1_c00001{left:113.440000pt;}
.x3_c00001{left:129.440000pt;}
.x4_c00001{left:275.360000pt;}
.x2_c00001{left:329.441280pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00002{font-family:ff1_c00002;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00002;src:url('chunks/assets/font_7c2d4587cf504340004eaa99.woff2')format("woff");}.ff2_c00002{font-family:ff2_c00002;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00002;src:url('chunks/assets/font_5b804fd5619128c0daa35c3e.woff2')format("woff");}.ff3_c00002{font-family:ff3_c00002;line-height:1.284180;font-style: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);}
.v1_c00002{vertical-align:-82.080000px;}
.v0_c00002{vertical-align:0.000000px;}
.ls2_c00002{letter-spacing:-0.014400px;}
.ls1_c00002{letter-spacing:0.000000px;}
.ls0_c00002{letter-spacing:1837.512000px;}
.sc__c00002{text-shadow:none;}
.sc0_c00002{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00002{-webkit-text-stroke:0px transparent;}
.sc0_c00002{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00002{word-spacing:0.000000px;}
.fc0_c00002{color:rgb(0,0,0);}
.fs0_c00002{font-size:72.000000px;}
.y0_c00002{bottom:0.000000px;}
.y1_c00002{bottom:12.735000px;}
.y7_c00002{bottom:1001.925000px;}
.y6_c00002{bottom:1043.325000px;}
.y5_c00002{bottom:1063.485000px;}
.y4_c00002{bottom:1084.725000px;}
.y3_c00002{bottom:1105.605000px;}
.y2_c00002{bottom:1126.845000px;}
.h3_c00002{height:47.988281px;}
.h5_c00002{height:70.628906px;}
.h4_c00002{height:74.004654px;}
.h2_c00002{height:1237.365000px;}
.h0_c00002{height:1262.835000px;}
.h1_c00002{height:1263.000000px;}
.w2_c00002{width:867.465000px;}
.w0_c00002{width:892.935000px;}
.w1_c00002{width:893.250000px;}
.x0_c00002{left:0.000000px;}
.x1_c00002{left:12.735000px;}
.x2_c00002{left:114.840150px;}
.x3_c00002{left:620.676150px;}
@media print{
.v1_c00002{vertical-align:-72.960000pt;}
.v0_c00002{vertical-align:0.000000pt;}
.ls2_c00002{letter-spacing:-0.012800pt;}
.ls1_c00002{letter-spacing:0.000000pt;}
.ls0_c00002{letter-spacing:1633.344000pt;}
.ws0_c00002{word-spacing:0.000000pt;}
.fs0_c00002{font-size:64.000000pt;}
.y0_c00002{bottom:0.000000pt;}
.y1_c00002{bottom:11.320000pt;}
.y7_c00002{bottom:890.600000pt;}
.y6_c00002{bottom:927.400000pt;}
.y5_c00002{bottom:945.320000pt;}
.y4_c00002{bottom:964.200000pt;}
.y3_c00002{bottom:982.760000pt;}
.y2_c00002{bottom:1001.640000pt;}
.h3_c00002{height:42.656250pt;}
.h5_c00002{height:62.781250pt;}
.h4_c00002{height:65.781915pt;}
.h2_c00002{height:1099.880000pt;}
.h0_c00002{height:1122.520000pt;}
.h1_c00002{height:1122.666667pt;}
.w2_c00002{width:771.080000pt;}
.w0_c00002{width:793.720000pt;}
.w1_c00002{width:794.000000pt;}
.x0_c00002{left:0.000000pt;}
.x1_c00002{left:11.320000pt;}
.x2_c00002{left:102.080133pt;}
.x3_c00002{left:551.712133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00003{font-family:ff1_c00003;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00003;src:url('chunks/assets/font_c45b3304cd5577ceba719cb2.woff2')format("woff");}.ff2_c00003{font-family:ff2_c00003;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00003;src:url('chunks/assets/font_36316c6e74c3d78f0f0f2646.woff2')format("woff");}.ff3_c00003{font-family:ff3_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:ff4_c00003;src:url('chunks/assets/font_1020ccc7bac85c5d00fac2f4.woff2')format("woff");}.ff4_c00003{font-family:ff4_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;}
.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;}
.ls2_c00003{letter-spacing:-0.014400px;}
.ls1_c00003{letter-spacing:0.000000px;}
.ls0_c00003{letter-spacing:0.014400px;}
.ls3_c00003{letter-spacing:2.894400px;}
.sc__c00003{text-shadow:none;}
.sc0_c00003{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00003{-webkit-text-stroke:0px transparent;}
.sc0_c00003{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00003{word-spacing:-18.014400px;}
.ws1_c00003{word-spacing:-17.985600px;}
.ws2_c00003{word-spacing:0.000000px;}
._a_c00003{margin-left:-2.044800px;}
._0_c00003{width:1.656000px;}
._4_c00003{width:2.815200px;}
._d_c00003{width:3.981600px;}
._5_c00003{width:5.961600px;}
._2_c00003{width:7.509600px;}
._9_c00003{width:8.632800px;}
._1_c00003{width:11.678400px;}
._6_c00003{width:12.794400px;}
._e_c00003{width:15.192000px;}
._b_c00003{width:19.029600px;}
._3_c00003{width:20.044800px;}
._c_c00003{width:21.074400px;}
._7_c00003{width:190.800000px;}
._8_c00003{width:194.400000px;}
.fc1_c00003{color:transparent;}
.fc0_c00003{color:rgb(0,0,0);}
.fs0_c00003{font-size:72.000000px;}
.y0_c00003{bottom:0.000000px;}
.y1_c00003{bottom:12.735000px;}
.y1e_c00003{bottom:110.565000px;}
.y1d_c00003{bottom:146.565000px;}
.y1c_c00003{bottom:182.565000px;}
.y1b_c00003{bottom:218.565000px;}
.y1a_c00003{bottom:254.565000px;}
.y19_c00003{bottom:290.565000px;}
.y18_c00003{bottom:326.565000px;}
.y17_c00003{bottom:362.565000px;}
.y16_c00003{bottom:398.565000px;}
.y15_c00003{bottom:434.565000px;}
.y14_c00003{bottom:470.565000px;}
.y13_c00003{bottom:506.565000px;}
.y12_c00003{bottom:542.565000px;}
.y11_c00003{bottom:578.565000px;}
.y10_c00003{bottom:614.565000px;}
.yf_c00003{bottom:650.565000px;}
.ye_c00003{bottom:686.565000px;}
.yd_c00003{bottom:722.565000px;}
.yc_c00003{bottom:758.565000px;}
.yb_c00003{bottom:794.565000px;}
.ya_c00003{bottom:830.565000px;}
.y9_c00003{bottom:866.565000px;}
.y8_c00003{bottom:902.565000px;}
.y7_c00003{bottom:938.565000px;}
.y6_c00003{bottom:974.565000px;}
.y5_c00003{bottom:1010.565000px;}
.y4_c00003{bottom:1046.565000px;}
.y3_c00003{bottom:1082.565000px;}
.y2_c00003{bottom:1165.365000px;}
.h3_c00003{height:47.988281px;}
.h4_c00003{height:70.628906px;}
.h5_c00003{height:70.664062px;}
.h2_c00003{height:1237.365000px;}
.h0_c00003{height:1262.835000px;}
.h1_c00003{height:1263.000000px;}
.w2_c00003{width:867.465000px;}
.w0_c00003{width:892.935000px;}
.w1_c00003{width:893.250000px;}
.x0_c00003{left:0.000000px;}
.x1_c00003{left:12.735000px;}
.x4_c00003{left:95.397750px;}
.x3_c00003{left:148.575150px;}
.x2_c00003{left:878.550300px;}
@media print{
.v0_c00003{vertical-align:0.000000pt;}
.ls2_c00003{letter-spacing:-0.012800pt;}
.ls1_c00003{letter-spacing:0.000000pt;}
.ls0_c00003{letter-spacing:0.012800pt;}
.ls3_c00003{letter-spacing:2.572800pt;}
.ws0_c00003{word-spacing:-16.012800pt;}
.ws1_c00003{word-spacing:-15.987200pt;}
.ws2_c00003{word-spacing:0.000000pt;}
._a_c00003{margin-left:-1.817600pt;}
._0_c00003{width:1.472000pt;}
._4_c00003{width:2.502400pt;}
._d_c00003{width:3.539200pt;}
._5_c00003{width:5.299200pt;}
._2_c00003{width:6.675200pt;}
._9_c00003{width:7.673600pt;}
._1_c00003{width:10.380800pt;}
._6_c00003{width:11.372800pt;}
._e_c00003{width:13.504000pt;}
._b_c00003{width:16.915200pt;}
._3_c00003{width:17.817600pt;}
._c_c00003{width:18.732800pt;}
._7_c00003{width:169.600000pt;}
._8_c00003{width:172.800000pt;}
.fs0_c00003{font-size:64.000000pt;}
.y0_c00003{bottom:0.000000pt;}
.y1_c00003{bottom:11.320000pt;}
.y1e_c00003{bottom:98.280000pt;}
.y1d_c00003{bottom:130.280000pt;}
.y1c_c00003{bottom:162.280000pt;}
.y1b_c00003{bottom:194.280000pt;}
.y1a_c00003{bottom:226.280000pt;}
.y19_c00003{bottom:258.280000pt;}
.y18_c00003{bottom:290.280000pt;}
.y17_c00003{bottom:322.280000pt;}
.y16_c00003{bottom:354.280000pt;}
.y15_c00003{bottom:386.280000pt;}
.y14_c00003{bottom:418.280000pt;}
.y13_c00003{bottom:450.280000pt;}
.y12_c00003{bottom:482.280000pt;}
.y11_c00003{bottom:514.280000pt;}
.y10_c00003{bottom:546.280000pt;}
.yf_c00003{bottom:578.280000pt;}
.ye_c00003{bottom:610.280000pt;}
.yd_c00003{bottom:642.280000pt;}
.yc_c00003{bottom:674.280000pt;}
.yb_c00003{bottom:706.280000pt;}
.ya_c00003{bottom:738.280000pt;}
.y9_c00003{bottom:770.280000pt;}
.y8_c00003{bottom:802.280000pt;}
.y7_c00003{bottom:834.280000pt;}
.y6_c00003{bottom:866.280000pt;}
.y5_c00003{bottom:898.280000pt;}
.y4_c00003{bottom:930.280000pt;}
.y3_c00003{bottom:962.280000pt;}
.y2_c00003{bottom:1035.880000pt;}
.h3_c00003{height:42.656250pt;}
.h4_c00003{height:62.781250pt;}
.h5_c00003{height:62.812500pt;}
.h2_c00003{height:1099.880000pt;}
.h0_c00003{height:1122.520000pt;}
.h1_c00003{height:1122.666667pt;}
.w2_c00003{width:771.080000pt;}
.w0_c00003{width:793.720000pt;}
.w1_c00003{width:794.000000pt;}
.x0_c00003{left:0.000000pt;}
.x1_c00003{left:11.320000pt;}
.x4_c00003{left:84.798000pt;}
.x3_c00003{left:132.066800pt;}
.x2_c00003{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00004{font-family:ff1_c00004;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00004;src:url('chunks/assets/font_adec1a9f72379508b21ac52a.woff2')format("woff");}.ff2_c00004{font-family:ff2_c00004;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00004{letter-spacing:-0.014400px;}
.ls0_c00004{letter-spacing:0.000000px;}
.ls2_c00004{letter-spacing:8.323200px;}
.sc__c00004{text-shadow:none;}
.sc0_c00004{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00004{-webkit-text-stroke:0px transparent;}
.sc0_c00004{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00004{word-spacing:0.000000px;}
._3_c00004{margin-left:-9.057600px;}
._1_c00004{width:1.389600px;}
._6_c00004{width:2.440800px;}
._5_c00004{width:7.264800px;}
._2_c00004{width:8.424000px;}
._0_c00004{width:10.382400px;}
._4_c00004{width:23.659200px;}
.fc1_c00004{color:transparent;}
.fc0_c00004{color:rgb(0,0,0);}
.fs0_c00004{font-size:72.000000px;}
.y0_c00004{bottom:0.000000px;}
.y1_c00004{bottom:12.735000px;}
.yb_c00004{bottom:794.565000px;}
.ya_c00004{bottom:830.565000px;}
.y9_c00004{bottom:866.565000px;}
.y8_c00004{bottom:902.565000px;}
.y7_c00004{bottom:938.565000px;}
.y6_c00004{bottom:974.565000px;}
.y5_c00004{bottom:1010.565000px;}
.y4_c00004{bottom:1046.565000px;}
.y3_c00004{bottom:1082.565000px;}
.y2_c00004{bottom:1165.365000px;}
.h3_c00004{height:47.988281px;}
.h4_c00004{height:70.664062px;}
.h2_c00004{height:1237.365000px;}
.h0_c00004{height:1262.835000px;}
.h1_c00004{height:1263.000000px;}
.w2_c00004{width:867.465000px;}
.w0_c00004{width:892.935000px;}
.w1_c00004{width:893.250000px;}
.x0_c00004{left:0.000000px;}
.x1_c00004{left:12.735000px;}
.x3_c00004{left:95.400150px;}
.x4_c00004{left:149.400150px;}
.x2_c00004{left:880.050300px;}
@media print{
.v0_c00004{vertical-align:0.000000pt;}
.ls1_c00004{letter-spacing:-0.012800pt;}
.ls0_c00004{letter-spacing:0.000000pt;}
.ls2_c00004{letter-spacing:7.398400pt;}
.ws0_c00004{word-spacing:0.000000pt;}
._3_c00004{margin-left:-8.051200pt;}
._1_c00004{width:1.235200pt;}
._6_c00004{width:2.169600pt;}
._5_c00004{width:6.457600pt;}
._2_c00004{width:7.488000pt;}
._0_c00004{width:9.228800pt;}
._4_c00004{width:21.030400pt;}
.fs0_c00004{font-size:64.000000pt;}
.y0_c00004{bottom:0.000000pt;}
.y1_c00004{bottom:11.320000pt;}
.yb_c00004{bottom:706.280000pt;}
.ya_c00004{bottom:738.280000pt;}
.y9_c00004{bottom:770.280000pt;}
.y8_c00004{bottom:802.280000pt;}
.y7_c00004{bottom:834.280000pt;}
.y6_c00004{bottom:866.280000pt;}
.y5_c00004{bottom:898.280000pt;}
.y4_c00004{bottom:930.280000pt;}
.y3_c00004{bottom:962.280000pt;}
.y2_c00004{bottom:1035.880000pt;}
.h3_c00004{height:42.656250pt;}
.h4_c00004{height:62.812500pt;}
.h2_c00004{height:1099.880000pt;}
.h0_c00004{height:1122.520000pt;}
.h1_c00004{height:1122.666667pt;}
.w2_c00004{width:771.080000pt;}
.w0_c00004{width:793.720000pt;}
.w1_c00004{width:794.000000pt;}
.x0_c00004{left:0.000000pt;}
.x1_c00004{left:11.320000pt;}
.x3_c00004{left:84.800133pt;}
.x4_c00004{left:132.800133pt;}
.x2_c00004{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_63bcbf121fad706ef531cc3d.woff2')format("woff");}.ff1_c00005{font-family:ff1_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:ff2_c00005;src:url('chunks/assets/font_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff2_c00005{font-family:ff2_c00005;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00005;src:url('chunks/assets/font_156add32c004804a38c043e5.woff2')format("woff");}.ff3_c00005{font-family:ff3_c00005;line-height:1.311035;font-style:normal;font-weight:normal;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_f7472e703ed2623f7b26f105.woff2')format("woff");}.ff4_c00005{font-family:ff4_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:ff5_c00005;src:url('chunks/assets/font_25d7fe9837f742478afb9073.woff2')format("woff");}.ff5_c00005{font-family:ff5_c00005;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00005;src:url('chunks/assets/font_f0b2065c984862187909043a.woff2')format("woff");}.ff6_c00005{font-family:ff6_c00005;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00005{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00005{vertical-align:0.000000px;}
.ls4_c00005{letter-spacing:-0.115200px;}
.ls3_c00005{letter-spacing:-0.014400px;}
.ls0_c00005{letter-spacing:0.000000px;}
.ls2_c00005{letter-spacing:0.014400px;}
.ls1_c00005{letter-spacing:0.200448px;}
.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:-21.080448px;}
.ws1_c00005{word-spacing:-17.985600px;}
.ws2_c00005{word-spacing:0.000000px;}
._4_c00005{margin-left:-1.447200px;}
._9_c00005{width:2.232000px;}
._6_c00005{width:4.392000px;}
._1_c00005{width:6.408000px;}
._5_c00005{width:8.352000px;}
._2_c00005{width:9.936000px;}
._8_c00005{width:12.830400px;}
._3_c00005{width:14.256000px;}
._7_c00005{width:16.632000px;}
._0_c00005{width:907.027200px;}
.fc0_c00005{color:rgb(0,0,0);}
.fs0_c00005{font-size:72.000000px;}
.fs1_c00005{font-size:83.520000px;}
.y0_c00005{bottom:0.000000px;}
.y1_c00005{bottom:12.735000px;}
.y24_c00005{bottom:105.524850px;}
.y23_c00005{bottom:135.404850px;}
.y22_c00005{bottom:164.924850px;}
.y21_c00005{bottom:194.804850px;}
.y20_c00005{bottom:224.684850px;}
.y1f_c00005{bottom:254.564850px;}
.y1e_c00005{bottom:284.084850px;}
.y1d_c00005{bottom:313.964850px;}
.y1c_c00005{bottom:343.844850px;}
.y1b_c00005{bottom:373.724850px;}
.y1a_c00005{bottom:403.244850px;}
.y19_c00005{bottom:433.124850px;}
.y18_c00005{bottom:463.004850px;}
.y17_c00005{bottom:492.884850px;}
.y16_c00005{bottom:522.404850px;}
.y15_c00005{bottom:552.284850px;}
.y14_c00005{bottom:582.164850px;}
.y13_c00005{bottom:612.044850px;}
.y12_c00005{bottom:641.564850px;}
.y11_c00005{bottom:671.444850px;}
.y10_c00005{bottom:701.324850px;}
.yf_c00005{bottom:731.204850px;}
.ye_c00005{bottom:760.724850px;}
.yd_c00005{bottom:790.604850px;}
.yc_c00005{bottom:811.484850px;}
.yb_c00005{bottom:840.284850px;}
.ya_c00005{bottom:871.244850px;}
.y9_c00005{bottom:900.404850px;}
.y8_c00005{bottom:931.004850px;}
.y7_c00005{bottom:960.884850px;}
.y6_c00005{bottom:990.764850px;}
.y5_c00005{bottom:1021.014360px;}
.y4_c00005{bottom:1054.485000px;}
.y3_c00005{bottom:1086.165000px;}
.y2_c00005{bottom:1117.125000px;}
.h4_c00005{height:47.988281px;}
.h3_c00005{height:70.628906px;}
.h7_c00005{height:70.664062px;}
.h6_c00005{height:72.562500px;}
.h5_c00005{height:84.172500px;}
.h2_c00005{height:1237.365000px;}
.h0_c00005{height:1262.835000px;}
.h1_c00005{height:1263.000000px;}
.w2_c00005{width:867.465000px;}
.w0_c00005{width:892.935000px;}
.w1_c00005{width:893.250000px;}
.x0_c00005{left:0.000000px;}
.x1_c00005{left:12.735000px;}
.x2_c00005{left:95.400150px;}
.x3_c00005{left:148.500150px;}
@media print{
.v0_c00005{vertical-align:0.000000pt;}
.ls4_c00005{letter-spacing:-0.102400pt;}
.ls3_c00005{letter-spacing:-0.012800pt;}
.ls0_c00005{letter-spacing:0.000000pt;}
.ls2_c00005{letter-spacing:0.012800pt;}
.ls1_c00005{letter-spacing:0.178176pt;}
.ws0_c00005{word-spacing:-18.738176pt;}
.ws1_c00005{word-spacing:-15.987200pt;}
.ws2_c00005{word-spacing:0.000000pt;}
._4_c00005{margin-left:-1.286400pt;}
._9_c00005{width:1.984000pt;}
._6_c00005{width:3.904000pt;}
._1_c00005{width:5.696000pt;}
._5_c00005{width:7.424000pt;}
._2_c00005{width:8.832000pt;}
._8_c00005{width:11.404800pt;}
._3_c00005{width:12.672000pt;}
._7_c00005{width:14.784000pt;}
._0_c00005{width:806.246400pt;}
.fs0_c00005{font-size:64.000000pt;}
.fs1_c00005{font-size:74.240000pt;}
.y0_c00005{bottom:0.000000pt;}
.y1_c00005{bottom:11.320000pt;}
.y24_c00005{bottom:93.799867pt;}
.y23_c00005{bottom:120.359867pt;}
.y22_c00005{bottom:146.599867pt;}
.y21_c00005{bottom:173.159867pt;}
.y20_c00005{bottom:199.719867pt;}
.y1f_c00005{bottom:226.279867pt;}
.y1e_c00005{bottom:252.519867pt;}
.y1d_c00005{bottom:279.079867pt;}
.y1c_c00005{bottom:305.639867pt;}
.y1b_c00005{bottom:332.199867pt;}
.y1a_c00005{bottom:358.439867pt;}
.y19_c00005{bottom:384.999867pt;}
.y18_c00005{bottom:411.559867pt;}
.y17_c00005{bottom:438.119867pt;}
.y16_c00005{bottom:464.359867pt;}
.y15_c00005{bottom:490.919867pt;}
.y14_c00005{bottom:517.479867pt;}
.y13_c00005{bottom:544.039867pt;}
.y12_c00005{bottom:570.279867pt;}
.y11_c00005{bottom:596.839867pt;}
.y10_c00005{bottom:623.399867pt;}
.yf_c00005{bottom:649.959867pt;}
.ye_c00005{bottom:676.199867pt;}
.yd_c00005{bottom:702.759867pt;}
.yc_c00005{bottom:721.319867pt;}
.yb_c00005{bottom:746.919867pt;}
.ya_c00005{bottom:774.439867pt;}
.y9_c00005{bottom:800.359867pt;}
.y8_c00005{bottom:827.559867pt;}
.y7_c00005{bottom:854.119867pt;}
.y6_c00005{bottom:880.679867pt;}
.y5_c00005{bottom:907.568320pt;}
.y4_c00005{bottom:937.320000pt;}
.y3_c00005{bottom:965.480000pt;}
.y2_c00005{bottom:993.000000pt;}
.h4_c00005{height:42.656250pt;}
.h3_c00005{height:62.781250pt;}
.h7_c00005{height:62.812500pt;}
.h6_c00005{height:64.500000pt;}
.h5_c00005{height:74.820000pt;}
.h2_c00005{height:1099.880000pt;}
.h0_c00005{height:1122.520000pt;}
.h1_c00005{height:1122.666667pt;}
.w2_c00005{width:771.080000pt;}
.w0_c00005{width:793.720000pt;}
.w1_c00005{width:794.000000pt;}
.x0_c00005{left:0.000000pt;}
.x1_c00005{left:11.320000pt;}
.x2_c00005{left:84.800133pt;}
.x3_c00005{left:132.000133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_465ea3cd08c6481286368096.woff2')format("woff");}.ff1_c00006{font-family:ff1_c00006;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00006;src:url('chunks/assets/font_de1b87ced7f61d527a72fbbe.woff2')format("woff");}.ff2_c00006{font-family:ff2_c00006;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00006{text-shadow:none;}
.sc0_c00006{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00006{-webkit-text-stroke:0px transparent;}
.sc0_c00006{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00006{word-spacing:0.000000px;}
._0_c00006{margin-left:-1.418400px;}
._8_c00006{width:2.160000px;}
._3_c00006{width:4.176000px;}
._6_c00006{width:6.192000px;}
._2_c00006{width:8.640000px;}
._1_c00006{width:10.512000px;}
._7_c00006{width:11.952000px;}
._5_c00006{width:14.040000px;}
._4_c00006{width:16.128000px;}
.fc0_c00006{color:rgb(0,0,0);}
.fs0_c00006{font-size:72.000000px;}
.y0_c00006{bottom:0.000000px;}
.y1_c00006{bottom:12.735000px;}
.y24_c00006{bottom:122.445000px;}
.y23_c00006{bottom:152.325000px;}
.y22_c00006{bottom:181.845000px;}
.y21_c00006{bottom:211.725000px;}
.y20_c00006{bottom:241.605000px;}
.y1f_c00006{bottom:271.485000px;}
.y1e_c00006{bottom:301.005000px;}
.y1d_c00006{bottom:330.885000px;}
.y1c_c00006{bottom:360.765000px;}
.y1b_c00006{bottom:390.645000px;}
.y1a_c00006{bottom:420.165000px;}
.y19_c00006{bottom:450.045000px;}
.y18_c00006{bottom:479.925000px;}
.y17_c00006{bottom:509.445000px;}
.y16_c00006{bottom:539.325000px;}
.y15_c00006{bottom:569.205000px;}
.y14_c00006{bottom:599.085000px;}
.y13_c00006{bottom:628.605000px;}
.y12_c00006{bottom:658.485000px;}
.y11_c00006{bottom:688.365000px;}
.y10_c00006{bottom:718.245000px;}
.yf_c00006{bottom:747.765000px;}
.ye_c00006{bottom:777.645000px;}
.yd_c00006{bottom:807.525000px;}
.yc_c00006{bottom:837.405000px;}
.yb_c00006{bottom:866.925000px;}
.ya_c00006{bottom:896.805000px;}
.y9_c00006{bottom:926.685000px;}
.y8_c00006{bottom:956.565000px;}
.y7_c00006{bottom:986.085000px;}
.y6_c00006{bottom:1015.965000px;}
.y5_c00006{bottom:1045.845000px;}
.y4_c00006{bottom:1075.725000px;}
.y3_c00006{bottom:1105.245000px;}
.y2_c00006{bottom:1126.125000px;}
.h4_c00006{height:70.664062px;}
.h3_c00006{height:72.562500px;}
.h2_c00006{height:1237.365000px;}
.h0_c00006{height:1262.835000px;}
.h1_c00006{height:1263.000000px;}
.w2_c00006{width:867.465000px;}
.w0_c00006{width:892.935000px;}
.w1_c00006{width:893.250000px;}
.x0_c00006{left:0.000000px;}
.x1_c00006{left:12.735000px;}
.x2_c00006{left:95.400150px;}
.x3_c00006{left:148.500150px;}
.x4_c00006{left:201.618150px;}
@media print{
.v0_c00006{vertical-align:0.000000pt;}
.ls0_c00006{letter-spacing:0.000000pt;}
.ws0_c00006{word-spacing:0.000000pt;}
._0_c00006{margin-left:-1.260800pt;}
._8_c00006{width:1.920000pt;}
._3_c00006{width:3.712000pt;}
._6_c00006{width:5.504000pt;}
._2_c00006{width:7.680000pt;}
._1_c00006{width:9.344000pt;}
._7_c00006{width:10.624000pt;}
._5_c00006{width:12.480000pt;}
._4_c00006{width:14.336000pt;}
.fs0_c00006{font-size:64.000000pt;}
.y0_c00006{bottom:0.000000pt;}
.y1_c00006{bottom:11.320000pt;}
.y24_c00006{bottom:108.840000pt;}
.y23_c00006{bottom:135.400000pt;}
.y22_c00006{bottom:161.640000pt;}
.y21_c00006{bottom:188.200000pt;}
.y20_c00006{bottom:214.760000pt;}
.y1f_c00006{bottom:241.320000pt;}
.y1e_c00006{bottom:267.560000pt;}
.y1d_c00006{bottom:294.120000pt;}
.y1c_c00006{bottom:320.680000pt;}
.y1b_c00006{bottom:347.240000pt;}
.y1a_c00006{bottom:373.480000pt;}
.y19_c00006{bottom:400.040000pt;}
.y18_c00006{bottom:426.600000pt;}
.y17_c00006{bottom:452.840000pt;}
.y16_c00006{bottom:479.400000pt;}
.y15_c00006{bottom:505.960000pt;}
.y14_c00006{bottom:532.520000pt;}
.y13_c00006{bottom:558.760000pt;}
.y12_c00006{bottom:585.320000pt;}
.y11_c00006{bottom:611.880000pt;}
.y10_c00006{bottom:638.440000pt;}
.yf_c00006{bottom:664.680000pt;}
.ye_c00006{bottom:691.240000pt;}
.yd_c00006{bottom:717.800000pt;}
.yc_c00006{bottom:744.360000pt;}
.yb_c00006{bottom:770.600000pt;}
.ya_c00006{bottom:797.160000pt;}
.y9_c00006{bottom:823.720000pt;}
.y8_c00006{bottom:850.280000pt;}
.y7_c00006{bottom:876.520000pt;}
.y6_c00006{bottom:903.080000pt;}
.y5_c00006{bottom:929.640000pt;}
.y4_c00006{bottom:956.200000pt;}
.y3_c00006{bottom:982.440000pt;}
.y2_c00006{bottom:1001.000000pt;}
.h4_c00006{height:62.812500pt;}
.h3_c00006{height:64.500000pt;}
.h2_c00006{height:1099.880000pt;}
.h0_c00006{height:1122.520000pt;}
.h1_c00006{height:1122.666667pt;}
.w2_c00006{width:771.080000pt;}
.w0_c00006{width:793.720000pt;}
.w1_c00006{width:794.000000pt;}
.x0_c00006{left:0.000000pt;}
.x1_c00006{left:11.320000pt;}
.x2_c00006{left:84.800133pt;}
.x3_c00006{left:132.000133pt;}
.x4_c00006{left:179.216133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8145e68cdbf62d4ab8427228.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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff2_c00007{font-family:ff2_c00007;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00007;src:url('chunks/assets/font_d95a54f95e791654a93b8039.woff2')format("woff");}.ff3_c00007{font-family:ff3_c00007;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00007;src:url('chunks/assets/font_df0108408159e1e419612d47.woff2')format("woff");}.ff4_c00007{font-family:ff4_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;}
.m0_c00007{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00007{vertical-align:0.000000px;}
.ls2_c00007{letter-spacing:0.000000px;}
.ls0_c00007{letter-spacing:0.014400px;}
.ls1_c00007{letter-spacing:0.036000px;}
.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;}
}
.ws2_c00007{word-spacing:-18.036000px;}
.ws1_c00007{word-spacing:-18.014400px;}
.ws0_c00007{word-spacing:-3.744000px;}
.ws3_c00007{word-spacing:0.000000px;}
._3_c00007{width:2.520000px;}
._5_c00007{width:4.392000px;}
._7_c00007{width:8.352000px;}
._4_c00007{width:9.648000px;}
._0_c00007{width:10.656000px;}
._2_c00007{width:12.672000px;}
._1_c00007{width:14.400000px;}
._6_c00007{width:16.128000px;}
.fc0_c00007{color:rgb(0,0,0);}
.fs0_c00007{font-size:72.000000px;}
.y0_c00007{bottom:0.000000px;}
.y1_c00007{bottom:12.735000px;}
.y20_c00007{bottom:236.565000px;}
.y1f_c00007{bottom:258.525000px;}
.y1e_c00007{bottom:288.045000px;}
.y1d_c00007{bottom:317.925000px;}
.y1c_c00007{bottom:347.805000px;}
.y1b_c00007{bottom:377.685000px;}
.y1a_c00007{bottom:407.205000px;}
.y19_c00007{bottom:437.085000px;}
.y18_c00007{bottom:466.245000px;}
.y17_c00007{bottom:496.845000px;}
.y16_c00007{bottom:526.725000px;}
.y15_c00007{bottom:556.605000px;}
.y14_c00007{bottom:586.485000px;}
.y13_c00007{bottom:616.005000px;}
.y12_c00007{bottom:645.885000px;}
.y11_c00007{bottom:675.765000px;}
.y10_c00007{bottom:705.645000px;}
.yf_c00007{bottom:735.165000px;}
.ye_c00007{bottom:765.045000px;}
.yd_c00007{bottom:794.925000px;}
.yc_c00007{bottom:824.805000px;}
.yb_c00007{bottom:854.325000px;}
.ya_c00007{bottom:889.605000px;}
.y9_c00007{bottom:911.205000px;}
.y8_c00007{bottom:946.485000px;}
.y7_c00007{bottom:977.085000px;}
.y6_c00007{bottom:1006.965000px;}
.y5_c00007{bottom:1036.845000px;}
.y4_c00007{bottom:1066.725000px;}
.y3_c00007{bottom:1096.245000px;}
.y2_c00007{bottom:1126.125000px;}
.h4_c00007{height:47.988281px;}
.h5_c00007{height:70.628906px;}
.h3_c00007{height:70.664062px;}
.h6_c00007{height:72.562500px;}
.h2_c00007{height:1237.365000px;}
.h0_c00007{height:1262.835000px;}
.h1_c00007{height:1263.000000px;}
.w2_c00007{width:867.465000px;}
.w0_c00007{width:892.935000px;}
.w1_c00007{width:893.250000px;}
.x0_c00007{left:0.000000px;}
.x1_c00007{left:12.735000px;}
.x2_c00007{left:95.400150px;}
@media print{
.v0_c00007{vertical-align:0.000000pt;}
.ls2_c00007{letter-spacing:0.000000pt;}
.ls0_c00007{letter-spacing:0.012800pt;}
.ls1_c00007{letter-spacing:0.032000pt;}
.ws2_c00007{word-spacing:-16.032000pt;}
.ws1_c00007{word-spacing:-16.012800pt;}
.ws0_c00007{word-spacing:-3.328000pt;}
.ws3_c00007{word-spacing:0.000000pt;}
._3_c00007{width:2.240000pt;}
._5_c00007{width:3.904000pt;}
._7_c00007{width:7.424000pt;}
._4_c00007{width:8.576000pt;}
._0_c00007{width:9.472000pt;}
._2_c00007{width:11.264000pt;}
._1_c00007{width:12.800000pt;}
._6_c00007{width:14.336000pt;}
.fs0_c00007{font-size:64.000000pt;}
.y0_c00007{bottom:0.000000pt;}
.y1_c00007{bottom:11.320000pt;}
.y20_c00007{bottom:210.280000pt;}
.y1f_c00007{bottom:229.800000pt;}
.y1e_c00007{bottom:256.040000pt;}
.y1d_c00007{bottom:282.600000pt;}
.y1c_c00007{bottom:309.160000pt;}
.y1b_c00007{bottom:335.720000pt;}
.y1a_c00007{bottom:361.960000pt;}
.y19_c00007{bottom:388.520000pt;}
.y18_c00007{bottom:414.440000pt;}
.y17_c00007{bottom:441.640000pt;}
.y16_c00007{bottom:468.200000pt;}
.y15_c00007{bottom:494.760000pt;}
.y14_c00007{bottom:521.320000pt;}
.y13_c00007{bottom:547.560000pt;}
.y12_c00007{bottom:574.120000pt;}
.y11_c00007{bottom:600.680000pt;}
.y10_c00007{bottom:627.240000pt;}
.yf_c00007{bottom:653.480000pt;}
.ye_c00007{bottom:680.040000pt;}
.yd_c00007{bottom:706.600000pt;}
.yc_c00007{bottom:733.160000pt;}
.yb_c00007{bottom:759.400000pt;}
.ya_c00007{bottom:790.760000pt;}
.y9_c00007{bottom:809.960000pt;}
.y8_c00007{bottom:841.320000pt;}
.y7_c00007{bottom:868.520000pt;}
.y6_c00007{bottom:895.080000pt;}
.y5_c00007{bottom:921.640000pt;}
.y4_c00007{bottom:948.200000pt;}
.y3_c00007{bottom:974.440000pt;}
.y2_c00007{bottom:1001.000000pt;}
.h4_c00007{height:42.656250pt;}
.h5_c00007{height:62.781250pt;}
.h3_c00007{height:62.812500pt;}
.h6_c00007{height:64.500000pt;}
.h2_c00007{height:1099.880000pt;}
.h0_c00007{height:1122.520000pt;}
.h1_c00007{height:1122.666667pt;}
.w2_c00007{width:771.080000pt;}
.w0_c00007{width:793.720000pt;}
.w1_c00007{width:794.000000pt;}
.x0_c00007{left:0.000000pt;}
.x1_c00007{left:11.320000pt;}
.x2_c00007{left:84.800133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00008{font-family:ff1_c00008;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00008{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00008{vertical-align:0.000000px;}
.ls0_c00008{letter-spacing:0.000000px;}
.sc__c00008{text-shadow:none;}
.sc0_c00008{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00008{-webkit-text-stroke:0px transparent;}
.sc0_c00008{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00008{word-spacing:0.000000px;}
.fc0_c00008{color:rgb(0,0,0);}
.fs0_c00008{font-size:72.000000px;}
.y0_c00008{bottom:0.000000px;}
.y1_c00008{bottom:12.735000px;}
.y2_c00008{bottom:1125.045000px;}
.h3_c00008{height:47.988281px;}
.h2_c00008{height:1237.365000px;}
.h0_c00008{height:1262.835000px;}
.h1_c00008{height:1263.000000px;}
.w2_c00008{width:867.465000px;}
.w0_c00008{width:892.935000px;}
.w1_c00008{width:893.250000px;}
.x0_c00008{left:0.000000px;}
.x1_c00008{left:12.735000px;}
.x2_c00008{left:95.400150px;}
@media print{
.v0_c00008{vertical-align:0.000000pt;}
.ls0_c00008{letter-spacing:0.000000pt;}
.ws0_c00008{word-spacing:0.000000pt;}
.fs0_c00008{font-size:64.000000pt;}
.y0_c00008{bottom:0.000000pt;}
.y1_c00008{bottom:11.320000pt;}
.y2_c00008{bottom:1000.040000pt;}
.h3_c00008{height:42.656250pt;}
.h2_c00008{height:1099.880000pt;}
.h0_c00008{height:1122.520000pt;}
.h1_c00008{height:1122.666667pt;}
.w2_c00008{width:771.080000pt;}
.w0_c00008{width:793.720000pt;}
.w1_c00008{width:794.000000pt;}
.x0_c00008{left:0.000000pt;}
.x1_c00008{left:11.320000pt;}
.x2_c00008{left:84.800133pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a308d9b46ce25c98598a3778.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_400a68c2ae752652dc5347d3.woff2')format("woff");}.ff2_c00009{font-family:ff2_c00009;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00009;src:url('chunks/assets/font_dc6aa5e1731085e98342ac43.woff2')format("woff");}.ff3_c00009{font-family:ff3_c00009;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00009;src:url('chunks/assets/font_f9ea600f3eb6909158defe87.woff2')format("woff");}.ff4_c00009{font-family:ff4_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;}
.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);}
.v1_c00009{vertical-align:-77.760000px;}
.v0_c00009{vertical-align:0.000000px;}
.ls3_c00009{letter-spacing:0.000000px;}
.ls0_c00009{letter-spacing:0.186624px;}
.ls2_c00009{letter-spacing:0.298080px;}
.ls4_c00009{letter-spacing:0.680400px;}
.ls1_c00009{letter-spacing:1188.766200px;}
.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;}
}
.ws0_c00009{word-spacing:-19.626624px;}
.ws1_c00009{word-spacing:0.000000px;}
._0_c00009{margin-left:-1.036800px;}
._1_c00009{width:1.036800px;}
._4_c00009{width:3.045600px;}
._2_c00009{width:4.334400px;}
._3_c00009{width:5.356800px;}
._7_c00009{width:6.480000px;}
._6_c00009{width:8.208000px;}
._5_c00009{width:9.504000px;}
._8_c00009{width:16.329600px;}
.fc1_c00009{color:transparent;}
.fc0_c00009{color:rgb(0,0,0);}
.fs3_c00009{font-size:64.800000px;}
.fs0_c00009{font-size:72.000000px;}
.fs2_c00009{font-size:77.760000px;}
.fs1_c00009{font-size:119.520000px;}
.y0_c00009{bottom:0.000000px;}
.y6_c00009{bottom:4.320000px;}
.y1_c00009{bottom:12.735000px;}
.y4_c00009{bottom:21.645000px;}
.y3_c00009{bottom:42.165000px;}
.y5_c00009{bottom:50.580000px;}
.y23_c00009{bottom:111.645000px;}
.y22_c00009{bottom:147.645000px;}
.y21_c00009{bottom:183.645000px;}
.y20_c00009{bottom:219.645000px;}
.y1f_c00009{bottom:255.645000px;}
.y1e_c00009{bottom:291.645000px;}
.y1d_c00009{bottom:327.645000px;}
.y1c_c00009{bottom:363.645000px;}
.y1b_c00009{bottom:399.645000px;}
.y1a_c00009{bottom:435.645000px;}
.y19_c00009{bottom:471.645000px;}
.y18_c00009{bottom:507.645000px;}
.y17_c00009{bottom:543.645000px;}
.y16_c00009{bottom:579.645000px;}
.y15_c00009{bottom:615.645000px;}
.y14_c00009{bottom:651.645000px;}
.y13_c00009{bottom:687.645000px;}
.y12_c00009{bottom:723.645000px;}
.y11_c00009{bottom:759.645000px;}
.y10_c00009{bottom:795.645000px;}
.yf_c00009{bottom:831.645000px;}
.ye_c00009{bottom:867.274200px;}
.yd_c00009{bottom:886.357800px;}
.yc_c00009{bottom:905.441400px;}
.yb_c00009{bottom:943.965000px;}
.ya_c00009{bottom:980.325000px;}
.y9_c00009{bottom:1015.965000px;}
.y8_c00009{bottom:1054.845000px;}
.y7_c00009{bottom:1098.764850px;}
.y2_c00009{bottom:1165.005000px;}
.h4_c00009{height:20.880000px;}
.h8_c00009{height:63.566016px;}
.h9_c00009{height:70.628906px;}
.h3_c00009{height:70.664062px;}
.h6_c00009{height:72.562500px;}
.h7_c00009{height:78.367500px;}
.h5_c00009{height:120.453750px;}
.h2_c00009{height:1237.365000px;}
.h0_c00009{height:1262.835000px;}
.h1_c00009{height:1263.000000px;}
.w3_c00009{width:9.000000px;}
.w2_c00009{width:867.465000px;}
.w0_c00009{width:892.935000px;}
.w1_c00009{width:893.250000px;}
.x0_c00009{left:0.000000px;}
.x1_c00009{left:12.735000px;}
.x3_c00009{left:95.407800px;}
.x8_c00009{left:149.400150px;}
.x7_c00009{left:355.327500px;}
.x5_c00009{left:428.037600px;}
.x6_c00009{left:433.875000px;}
.x4_c00009{left:442.215000px;}
.x9_c00009{left:541.844100px;}
.xa_c00009{left:772.353900px;}
.x2_c00009{left:878.515800px;}
@media print{
.v1_c00009{vertical-align:-69.120000pt;}
.v0_c00009{vertical-align:0.000000pt;}
.ls3_c00009{letter-spacing:0.000000pt;}
.ls0_c00009{letter-spacing:0.165888pt;}
.ls2_c00009{letter-spacing:0.264960pt;}
.ls4_c00009{letter-spacing:0.604800pt;}
.ls1_c00009{letter-spacing:1056.681067pt;}
.ws0_c00009{word-spacing:-17.445888pt;}
.ws1_c00009{word-spacing:0.000000pt;}
._0_c00009{margin-left:-0.921600pt;}
._1_c00009{width:0.921600pt;}
._4_c00009{width:2.707200pt;}
._2_c00009{width:3.852800pt;}
._3_c00009{width:4.761600pt;}
._7_c00009{width:5.760000pt;}
._6_c00009{width:7.296000pt;}
._5_c00009{width:8.448000pt;}
._8_c00009{width:14.515200pt;}
.fs3_c00009{font-size:57.600000pt;}
.fs0_c00009{font-size:64.000000pt;}
.fs2_c00009{font-size:69.120000pt;}
.fs1_c00009{font-size:106.240000pt;}
.y0_c00009{bottom:0.000000pt;}
.y6_c00009{bottom:3.840000pt;}
.y1_c00009{bottom:11.320000pt;}
.y4_c00009{bottom:19.240000pt;}
.y3_c00009{bottom:37.480000pt;}
.y5_c00009{bottom:44.960000pt;}
.y23_c00009{bottom:99.240000pt;}
.y22_c00009{bottom:131.240000pt;}
.y21_c00009{bottom:163.240000pt;}
.y20_c00009{bottom:195.240000pt;}
.y1f_c00009{bottom:227.240000pt;}
.y1e_c00009{bottom:259.240000pt;}
.y1d_c00009{bottom:291.240000pt;}
.y1c_c00009{bottom:323.240000pt;}
.y1b_c00009{bottom:355.240000pt;}
.y1a_c00009{bottom:387.240000pt;}
.y19_c00009{bottom:419.240000pt;}
.y18_c00009{bottom:451.240000pt;}
.y17_c00009{bottom:483.240000pt;}
.y16_c00009{bottom:515.240000pt;}
.y15_c00009{bottom:547.240000pt;}
.y14_c00009{bottom:579.240000pt;}
.y13_c00009{bottom:611.240000pt;}
.y12_c00009{bottom:643.240000pt;}
.y11_c00009{bottom:675.240000pt;}
.y10_c00009{bottom:707.240000pt;}
.yf_c00009{bottom:739.240000pt;}
.ye_c00009{bottom:770.910400pt;}
.yd_c00009{bottom:787.873600pt;}
.yc_c00009{bottom:804.836800pt;}
.yb_c00009{bottom:839.080000pt;}
.ya_c00009{bottom:871.400000pt;}
.y9_c00009{bottom:903.080000pt;}
.y8_c00009{bottom:937.640000pt;}
.y7_c00009{bottom:976.679867pt;}
.y2_c00009{bottom:1035.560000pt;}
.h4_c00009{height:18.560000pt;}
.h8_c00009{height:56.503125pt;}
.h9_c00009{height:62.781250pt;}
.h3_c00009{height:62.812500pt;}
.h6_c00009{height:64.500000pt;}
.h7_c00009{height:69.660000pt;}
.h5_c00009{height:107.070000pt;}
.h2_c00009{height:1099.880000pt;}
.h0_c00009{height:1122.520000pt;}
.h1_c00009{height:1122.666667pt;}
.w3_c00009{width:8.000000pt;}
.w2_c00009{width:771.080000pt;}
.w0_c00009{width:793.720000pt;}
.w1_c00009{width:794.000000pt;}
.x0_c00009{left:0.000000pt;}
.x1_c00009{left:11.320000pt;}
.x3_c00009{left:84.806933pt;}
.x8_c00009{left:132.800133pt;}
.x7_c00009{left:315.846667pt;}
.x5_c00009{left:380.477867pt;}
.x6_c00009{left:385.666667pt;}
.x4_c00009{left:393.080000pt;}
.x9_c00009{left:481.639200pt;}
.xa_c00009{left:686.536800pt;}
.x2_c00009{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a9e58764648ef2dc28d29ce1.woff2')format("woff");}.ff1_c00010{font-family:ff1_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00010;src:url('chunks/assets/font_d4525e6b428deb8c4d35e3ee.woff2')format("woff");}.ff2_c00010{font-family:ff2_c00010;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00010;src:url('chunks/assets/font_97abb9b516cdef573f986543.woff2')format("woff");}.ff3_c00010{font-family:ff3_c00010;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00010{letter-spacing:-0.014400px;}
.ls0_c00010{letter-spacing:0.000000px;}
.sc__c00010{text-shadow:none;}
.sc0_c00010{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00010{-webkit-text-stroke:0px transparent;}
.sc0_c00010{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00010{word-spacing:-17.985600px;}
.ws1_c00010{word-spacing:0.000000px;}
._a_c00010{margin-left:-1.080000px;}
._1_c00010{width:1.512000px;}
._6_c00010{width:4.046400px;}
._4_c00010{width:5.500800px;}
._5_c00010{width:6.552000px;}
._e_c00010{width:8.445600px;}
._7_c00010{width:9.576000px;}
._0_c00010{width:10.728000px;}
._b_c00010{width:11.800800px;}
._8_c00010{width:19.022400px;}
._c_c00010{width:22.521600px;}
._d_c00010{width:24.616800px;}
._9_c00010{width:26.589600px;}
._3_c00010{width:31.449600px;}
._2_c00010{width:47.556000px;}
.fc1_c00010{color:transparent;}
.fc0_c00010{color:rgb(0,0,0);}
.fs0_c00010{font-size:72.000000px;}
.y0_c00010{bottom:0.000000px;}
.y6_c00010{bottom:4.320000px;}
.y1_c00010{bottom:12.735000px;}
.y4_c00010{bottom:21.645000px;}
.y3_c00010{bottom:42.165000px;}
.y5_c00010{bottom:50.580000px;}
.y22_c00010{bottom:111.285000px;}
.y21_c00010{bottom:147.285000px;}
.y20_c00010{bottom:183.285000px;}
.y1f_c00010{bottom:219.285000px;}
.y1e_c00010{bottom:255.285000px;}
.y1d_c00010{bottom:291.285000px;}
.y1c_c00010{bottom:327.285000px;}
.y1b_c00010{bottom:363.285000px;}
.y1a_c00010{bottom:399.285000px;}
.y19_c00010{bottom:435.285000px;}
.y18_c00010{bottom:471.285000px;}
.y17_c00010{bottom:507.285000px;}
.y16_c00010{bottom:543.285000px;}
.y15_c00010{bottom:579.285000px;}
.y14_c00010{bottom:615.285000px;}
.y13_c00010{bottom:651.285000px;}
.y12_c00010{bottom:687.285000px;}
.y11_c00010{bottom:723.285000px;}
.y10_c00010{bottom:759.285000px;}
.yf_c00010{bottom:795.285000px;}
.ye_c00010{bottom:831.285000px;}
.yd_c00010{bottom:867.285000px;}
.yc_c00010{bottom:903.285000px;}
.yb_c00010{bottom:939.285000px;}
.ya_c00010{bottom:975.285000px;}
.y9_c00010{bottom:1011.285000px;}
.y8_c00010{bottom:1047.285000px;}
.y7_c00010{bottom:1083.285000px;}
.y2_c00010{bottom:1165.005000px;}
.h4_c00010{height:20.880000px;}
.h3_c00010{height:70.664062px;}
.h2_c00010{height:1237.365000px;}
.h0_c00010{height:1262.835000px;}
.h1_c00010{height:1263.000000px;}
.w3_c00010{width:9.000000px;}
.w2_c00010{width:867.465000px;}
.w0_c00010{width:892.935000px;}
.w1_c00010{width:893.250000px;}
.x0_c00010{left:0.000000px;}
.x1_c00010{left:12.735000px;}
.x3_c00010{left:95.407800px;}
.x5_c00010{left:149.400150px;}
.x4_c00010{left:442.215000px;}
.x2_c00010{left:878.515800px;}
@media print{
.v0_c00010{vertical-align:0.000000pt;}
.ls1_c00010{letter-spacing:-0.012800pt;}
.ls0_c00010{letter-spacing:0.000000pt;}
.ws0_c00010{word-spacing:-15.987200pt;}
.ws1_c00010{word-spacing:0.000000pt;}
._a_c00010{margin-left:-0.960000pt;}
._1_c00010{width:1.344000pt;}
._6_c00010{width:3.596800pt;}
._4_c00010{width:4.889600pt;}
._5_c00010{width:5.824000pt;}
._e_c00010{width:7.507200pt;}
._7_c00010{width:8.512000pt;}
._0_c00010{width:9.536000pt;}
._b_c00010{width:10.489600pt;}
._8_c00010{width:16.908800pt;}
._c_c00010{width:20.019200pt;}
._d_c00010{width:21.881600pt;}
._9_c00010{width:23.635200pt;}
._3_c00010{width:27.955200pt;}
._2_c00010{width:42.272000pt;}
.fs0_c00010{font-size:64.000000pt;}
.y0_c00010{bottom:0.000000pt;}
.y6_c00010{bottom:3.840000pt;}
.y1_c00010{bottom:11.320000pt;}
.y4_c00010{bottom:19.240000pt;}
.y3_c00010{bottom:37.480000pt;}
.y5_c00010{bottom:44.960000pt;}
.y22_c00010{bottom:98.920000pt;}
.y21_c00010{bottom:130.920000pt;}
.y20_c00010{bottom:162.920000pt;}
.y1f_c00010{bottom:194.920000pt;}
.y1e_c00010{bottom:226.920000pt;}
.y1d_c00010{bottom:258.920000pt;}
.y1c_c00010{bottom:290.920000pt;}
.y1b_c00010{bottom:322.920000pt;}
.y1a_c00010{bottom:354.920000pt;}
.y19_c00010{bottom:386.920000pt;}
.y18_c00010{bottom:418.920000pt;}
.y17_c00010{bottom:450.920000pt;}
.y16_c00010{bottom:482.920000pt;}
.y15_c00010{bottom:514.920000pt;}
.y14_c00010{bottom:546.920000pt;}
.y13_c00010{bottom:578.920000pt;}
.y12_c00010{bottom:610.920000pt;}
.y11_c00010{bottom:642.920000pt;}
.y10_c00010{bottom:674.920000pt;}
.yf_c00010{bottom:706.920000pt;}
.ye_c00010{bottom:738.920000pt;}
.yd_c00010{bottom:770.920000pt;}
.yc_c00010{bottom:802.920000pt;}
.yb_c00010{bottom:834.920000pt;}
.ya_c00010{bottom:866.920000pt;}
.y9_c00010{bottom:898.920000pt;}
.y8_c00010{bottom:930.920000pt;}
.y7_c00010{bottom:962.920000pt;}
.y2_c00010{bottom:1035.560000pt;}
.h4_c00010{height:18.560000pt;}
.h3_c00010{height:62.812500pt;}
.h2_c00010{height:1099.880000pt;}
.h0_c00010{height:1122.520000pt;}
.h1_c00010{height:1122.666667pt;}
.w3_c00010{width:8.000000pt;}
.w2_c00010{width:771.080000pt;}
.w0_c00010{width:793.720000pt;}
.w1_c00010{width:794.000000pt;}
.x0_c00010{left:0.000000pt;}
.x1_c00010{left:11.320000pt;}
.x3_c00010{left:84.806933pt;}
.x5_c00010{left:132.800133pt;}
.x4_c00010{left:393.080000pt;}
.x2_c00010{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c51df77bb77cd58d25967ff.woff2')format("woff");}.ff1_c00011{font-family:ff1_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:ff2_c00011;src:url('chunks/assets/font_6fb33cc016646bd928cbd536.woff2')format("woff");}.ff2_c00011{font-family:ff2_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:ff3_c00011;src:url('chunks/assets/font_256aae54fa329cd1ebc06af0.woff2')format("woff");}.ff3_c00011{font-family:ff3_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;}
.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;}
.ls0_c00011{letter-spacing:0.000000px;}
.sc__c00011{text-shadow:none;}
.sc0_c00011{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00011{-webkit-text-stroke:0px transparent;}
.sc0_c00011{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00011{word-spacing:0.000000px;}
._2_c00011{width:1.360800px;}
._0_c00011{width:2.829600px;}
._6_c00011{width:4.320000px;}
._a_c00011{width:5.659200px;}
._e_c00011{width:6.681600px;}
._9_c00011{width:7.869600px;}
._d_c00011{width:10.303200px;}
._3_c00011{width:11.340000px;}
._5_c00011{width:12.513600px;}
._1_c00011{width:14.169600px;}
._f_c00011{width:16.048800px;}
._7_c00011{width:19.900800px;}
._8_c00011{width:23.918400px;}
._c_c00011{width:26.906400px;}
._4_c00011{width:28.058400px;}
._b_c00011{width:33.429600px;}
.fc1_c00011{color:transparent;}
.fc0_c00011{color:rgb(0,0,0);}
.fs0_c00011{font-size:72.000000px;}
.y0_c00011{bottom:0.000000px;}
.y6_c00011{bottom:4.320000px;}
.y1_c00011{bottom:12.735000px;}
.y4_c00011{bottom:21.645000px;}
.y3_c00011{bottom:42.165000px;}
.y5_c00011{bottom:50.580000px;}
.y21_c00011{bottom:147.285000px;}
.y20_c00011{bottom:183.285000px;}
.y1f_c00011{bottom:219.285000px;}
.y1e_c00011{bottom:255.285000px;}
.y1d_c00011{bottom:291.285000px;}
.y1c_c00011{bottom:327.285000px;}
.y1b_c00011{bottom:363.285000px;}
.y1a_c00011{bottom:399.285000px;}
.y19_c00011{bottom:435.285000px;}
.y18_c00011{bottom:471.285000px;}
.y17_c00011{bottom:507.285000px;}
.y16_c00011{bottom:543.285000px;}
.y15_c00011{bottom:579.285000px;}
.y14_c00011{bottom:615.285000px;}
.y13_c00011{bottom:651.285000px;}
.y12_c00011{bottom:687.285000px;}
.y11_c00011{bottom:723.285000px;}
.y10_c00011{bottom:759.285000px;}
.yf_c00011{bottom:795.285000px;}
.ye_c00011{bottom:831.285000px;}
.yd_c00011{bottom:867.285000px;}
.yc_c00011{bottom:903.285000px;}
.yb_c00011{bottom:939.285000px;}
.ya_c00011{bottom:975.285000px;}
.y9_c00011{bottom:1011.285000px;}
.y8_c00011{bottom:1047.285000px;}
.y7_c00011{bottom:1083.285000px;}
.y2_c00011{bottom:1165.005000px;}
.h4_c00011{height:20.880000px;}
.h3_c00011{height:70.664062px;}
.h2_c00011{height:1237.365000px;}
.h0_c00011{height:1262.835000px;}
.h1_c00011{height:1263.000000px;}
.w3_c00011{width:9.000000px;}
.w2_c00011{width:867.465000px;}
.w0_c00011{width:892.935000px;}
.w1_c00011{width:893.250000px;}
.x0_c00011{left:0.000000px;}
.x1_c00011{left:12.735000px;}
.x3_c00011{left:95.407800px;}
.x5_c00011{left:149.400150px;}
.x4_c00011{left:442.215000px;}
.x2_c00011{left:878.515800px;}
@media print{
.v0_c00011{vertical-align:0.000000pt;}
.ls0_c00011{letter-spacing:0.000000pt;}
.ws0_c00011{word-spacing:0.000000pt;}
._2_c00011{width:1.209600pt;}
._0_c00011{width:2.515200pt;}
._6_c00011{width:3.840000pt;}
._a_c00011{width:5.030400pt;}
._e_c00011{width:5.939200pt;}
._9_c00011{width:6.995200pt;}
._d_c00011{width:9.158400pt;}
._3_c00011{width:10.080000pt;}
._5_c00011{width:11.123200pt;}
._1_c00011{width:12.595200pt;}
._f_c00011{width:14.265600pt;}
._7_c00011{width:17.689600pt;}
._8_c00011{width:21.260800pt;}
._c_c00011{width:23.916800pt;}
._4_c00011{width:24.940800pt;}
._b_c00011{width:29.715200pt;}
.fs0_c00011{font-size:64.000000pt;}
.y0_c00011{bottom:0.000000pt;}
.y6_c00011{bottom:3.840000pt;}
.y1_c00011{bottom:11.320000pt;}
.y4_c00011{bottom:19.240000pt;}
.y3_c00011{bottom:37.480000pt;}
.y5_c00011{bottom:44.960000pt;}
.y21_c00011{bottom:130.920000pt;}
.y20_c00011{bottom:162.920000pt;}
.y1f_c00011{bottom:194.920000pt;}
.y1e_c00011{bottom:226.920000pt;}
.y1d_c00011{bottom:258.920000pt;}
.y1c_c00011{bottom:290.920000pt;}
.y1b_c00011{bottom:322.920000pt;}
.y1a_c00011{bottom:354.920000pt;}
.y19_c00011{bottom:386.920000pt;}
.y18_c00011{bottom:418.920000pt;}
.y17_c00011{bottom:450.920000pt;}
.y16_c00011{bottom:482.920000pt;}
.y15_c00011{bottom:514.920000pt;}
.y14_c00011{bottom:546.920000pt;}
.y13_c00011{bottom:578.920000pt;}
.y12_c00011{bottom:610.920000pt;}
.y11_c00011{bottom:642.920000pt;}
.y10_c00011{bottom:674.920000pt;}
.yf_c00011{bottom:706.920000pt;}
.ye_c00011{bottom:738.920000pt;}
.yd_c00011{bottom:770.920000pt;}
.yc_c00011{bottom:802.920000pt;}
.yb_c00011{bottom:834.920000pt;}
.ya_c00011{bottom:866.920000pt;}
.y9_c00011{bottom:898.920000pt;}
.y8_c00011{bottom:930.920000pt;}
.y7_c00011{bottom:962.920000pt;}
.y2_c00011{bottom:1035.560000pt;}
.h4_c00011{height:18.560000pt;}
.h3_c00011{height:62.812500pt;}
.h2_c00011{height:1099.880000pt;}
.h0_c00011{height:1122.520000pt;}
.h1_c00011{height:1122.666667pt;}
.w3_c00011{width:8.000000pt;}
.w2_c00011{width:771.080000pt;}
.w0_c00011{width:793.720000pt;}
.w1_c00011{width:794.000000pt;}
.x0_c00011{left:0.000000pt;}
.x1_c00011{left:11.320000pt;}
.x3_c00011{left:84.806933pt;}
.x5_c00011{left:132.800133pt;}
.x4_c00011{left:393.080000pt;}
.x2_c00011{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c6e8f1e4fc68887ad627432.woff2')format("woff");}.ff1_c00012{font-family:ff1_c00012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00012;src:url('chunks/assets/font_69e45cbadcc2a10ec7da5f13.woff2')format("woff");}.ff2_c00012{font-family:ff2_c00012;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00012;src:url('chunks/assets/font_f3431048ccd619c203812632.woff2')format("woff");}.ff3_c00012{font-family:ff3_c00012;line-height:1.284180;font-style: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;}
.ls1_c00012{letter-spacing:0.000000px;}
.ls0_c00012{letter-spacing:1.512000px;}
.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:0.000000px;}
._0_c00012{width:1.972800px;}
._1_c00012{width:3.160800px;}
._4_c00012{width:4.284000px;}
._5_c00012{width:5.378400px;}
._7_c00012{width:6.696000px;}
._6_c00012{width:7.934400px;}
._2_c00012{width:21.744000px;}
._3_c00012{width:32.436000px;}
.fc1_c00012{color:transparent;}
.fc0_c00012{color:rgb(0,0,0);}
.fs0_c00012{font-size:72.000000px;}
.y0_c00012{bottom:0.000000px;}
.y6_c00012{bottom:4.320000px;}
.y1_c00012{bottom:12.735000px;}
.y4_c00012{bottom:21.645000px;}
.y3_c00012{bottom:42.165000px;}
.y5_c00012{bottom:50.580000px;}
.y21_c00012{bottom:147.285000px;}
.y20_c00012{bottom:183.285000px;}
.y1f_c00012{bottom:219.285000px;}
.y1e_c00012{bottom:255.285000px;}
.y1d_c00012{bottom:291.285000px;}
.y1c_c00012{bottom:327.285000px;}
.y1b_c00012{bottom:363.285000px;}
.y1a_c00012{bottom:399.285000px;}
.y19_c00012{bottom:435.285000px;}
.y18_c00012{bottom:471.285000px;}
.y17_c00012{bottom:507.285000px;}
.y16_c00012{bottom:543.285000px;}
.y15_c00012{bottom:579.285000px;}
.y14_c00012{bottom:615.285000px;}
.y13_c00012{bottom:651.285000px;}
.y12_c00012{bottom:687.285000px;}
.y11_c00012{bottom:723.285000px;}
.y10_c00012{bottom:759.285000px;}
.yf_c00012{bottom:795.285000px;}
.ye_c00012{bottom:831.285000px;}
.yd_c00012{bottom:867.285000px;}
.yc_c00012{bottom:903.285000px;}
.yb_c00012{bottom:939.285000px;}
.ya_c00012{bottom:975.285000px;}
.y9_c00012{bottom:1011.285000px;}
.y8_c00012{bottom:1047.285000px;}
.y7_c00012{bottom:1083.285000px;}
.y2_c00012{bottom:1165.005000px;}
.h4_c00012{height:20.880000px;}
.h3_c00012{height:70.664062px;}
.h2_c00012{height:1237.365000px;}
.h0_c00012{height:1262.835000px;}
.h1_c00012{height:1263.000000px;}
.w3_c00012{width:9.000000px;}
.w2_c00012{width:867.465000px;}
.w0_c00012{width:892.935000px;}
.w1_c00012{width:893.250000px;}
.x0_c00012{left:0.000000px;}
.x1_c00012{left:12.735000px;}
.x3_c00012{left:95.407800px;}
.x5_c00012{left:149.400150px;}
.x4_c00012{left:442.215000px;}
.x2_c00012{left:878.515800px;}
@media print{
.v0_c00012{vertical-align:0.000000pt;}
.ls1_c00012{letter-spacing:0.000000pt;}
.ls0_c00012{letter-spacing:1.344000pt;}
.ws0_c00012{word-spacing:0.000000pt;}
._0_c00012{width:1.753600pt;}
._1_c00012{width:2.809600pt;}
._4_c00012{width:3.808000pt;}
._5_c00012{width:4.780800pt;}
._7_c00012{width:5.952000pt;}
._6_c00012{width:7.052800pt;}
._2_c00012{width:19.328000pt;}
._3_c00012{width:28.832000pt;}
.fs0_c00012{font-size:64.000000pt;}
.y0_c00012{bottom:0.000000pt;}
.y6_c00012{bottom:3.840000pt;}
.y1_c00012{bottom:11.320000pt;}
.y4_c00012{bottom:19.240000pt;}
.y3_c00012{bottom:37.480000pt;}
.y5_c00012{bottom:44.960000pt;}
.y21_c00012{bottom:130.920000pt;}
.y20_c00012{bottom:162.920000pt;}
.y1f_c00012{bottom:194.920000pt;}
.y1e_c00012{bottom:226.920000pt;}
.y1d_c00012{bottom:258.920000pt;}
.y1c_c00012{bottom:290.920000pt;}
.y1b_c00012{bottom:322.920000pt;}
.y1a_c00012{bottom:354.920000pt;}
.y19_c00012{bottom:386.920000pt;}
.y18_c00012{bottom:418.920000pt;}
.y17_c00012{bottom:450.920000pt;}
.y16_c00012{bottom:482.920000pt;}
.y15_c00012{bottom:514.920000pt;}
.y14_c00012{bottom:546.920000pt;}
.y13_c00012{bottom:578.920000pt;}
.y12_c00012{bottom:610.920000pt;}
.y11_c00012{bottom:642.920000pt;}
.y10_c00012{bottom:674.920000pt;}
.yf_c00012{bottom:706.920000pt;}
.ye_c00012{bottom:738.920000pt;}
.yd_c00012{bottom:770.920000pt;}
.yc_c00012{bottom:802.920000pt;}
.yb_c00012{bottom:834.920000pt;}
.ya_c00012{bottom:866.920000pt;}
.y9_c00012{bottom:898.920000pt;}
.y8_c00012{bottom:930.920000pt;}
.y7_c00012{bottom:962.920000pt;}
.y2_c00012{bottom:1035.560000pt;}
.h4_c00012{height:18.560000pt;}
.h3_c00012{height:62.812500pt;}
.h2_c00012{height:1099.880000pt;}
.h0_c00012{height:1122.520000pt;}
.h1_c00012{height:1122.666667pt;}
.w3_c00012{width:8.000000pt;}
.w2_c00012{width:771.080000pt;}
.w0_c00012{width:793.720000pt;}
.w1_c00012{width:794.000000pt;}
.x0_c00012{left:0.000000pt;}
.x1_c00012{left:11.320000pt;}
.x3_c00012{left:84.806933pt;}
.x5_c00012{left:132.800133pt;}
.x4_c00012{left:393.080000pt;}
.x2_c00012{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03c6aa27d611acbd327e9315.woff2')format("woff");}.ff1_c00013{font-family:ff1_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00013;src:url('chunks/assets/font_e70ff76a6343802d22144cde.woff2')format("woff");}.ff2_c00013{font-family:ff2_c00013;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00013;src:url('chunks/assets/font_f10fbcecab4e3a2d1b665520.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;}
.m0_c00013{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00013{vertical-align:0.000000px;}
.ls0_c00013{letter-spacing:0.000000px;}
.sc__c00013{text-shadow:none;}
.sc0_c00013{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00013{-webkit-text-stroke:0px transparent;}
.sc0_c00013{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00013{word-spacing:0.000000px;}
._4_c00013{width:1.036800px;}
._0_c00013{width:2.865600px;}
._9_c00013{width:4.089600px;}
._a_c00013{width:6.177600px;}
._d_c00013{width:8.186400px;}
._8_c00013{width:9.612000px;}
._7_c00013{width:11.736000px;}
._3_c00013{width:13.406400px;}
._2_c00013{width:14.551200px;}
._6_c00013{width:16.372800px;}
._1_c00013{width:20.008800px;}
._b_c00013{width:22.788000px;}
._c_c00013{width:25.322400px;}
._5_c00013{width:33.350400px;}
.fc1_c00013{color:transparent;}
.fc0_c00013{color:rgb(0,0,0);}
.fs0_c00013{font-size:72.000000px;}
.y0_c00013{bottom:0.000000px;}
.y6_c00013{bottom:4.320000px;}
.y1_c00013{bottom:12.735000px;}
.y4_c00013{bottom:21.645000px;}
.y3_c00013{bottom:42.165000px;}
.y5_c00013{bottom:50.580000px;}
.y22_c00013{bottom:111.285000px;}
.y21_c00013{bottom:147.285000px;}
.y20_c00013{bottom:183.285000px;}
.y1f_c00013{bottom:219.285000px;}
.y1e_c00013{bottom:255.285000px;}
.y1d_c00013{bottom:291.285000px;}
.y1c_c00013{bottom:327.285000px;}
.y1b_c00013{bottom:363.285000px;}
.y1a_c00013{bottom:399.285000px;}
.y19_c00013{bottom:435.285000px;}
.y18_c00013{bottom:471.285000px;}
.y17_c00013{bottom:507.285000px;}
.y16_c00013{bottom:543.285000px;}
.y15_c00013{bottom:579.285000px;}
.y14_c00013{bottom:615.285000px;}
.y13_c00013{bottom:651.285000px;}
.y12_c00013{bottom:687.285000px;}
.y11_c00013{bottom:723.285000px;}
.y10_c00013{bottom:759.285000px;}
.yf_c00013{bottom:795.285000px;}
.ye_c00013{bottom:831.285000px;}
.yd_c00013{bottom:867.285000px;}
.yc_c00013{bottom:903.285000px;}
.yb_c00013{bottom:939.285000px;}
.ya_c00013{bottom:975.285000px;}
.y9_c00013{bottom:1011.285000px;}
.y8_c00013{bottom:1047.285000px;}
.y7_c00013{bottom:1083.285000px;}
.y2_c00013{bottom:1165.005000px;}
.h4_c00013{height:20.880000px;}
.h5_c00013{height:70.628906px;}
.h3_c00013{height:70.664062px;}
.h2_c00013{height:1237.365000px;}
.h0_c00013{height:1262.835000px;}
.h1_c00013{height:1263.000000px;}
.w3_c00013{width:9.000000px;}
.w2_c00013{width:867.465000px;}
.w0_c00013{width:892.935000px;}
.w1_c00013{width:893.250000px;}
.x0_c00013{left:0.000000px;}
.x1_c00013{left:12.735000px;}
.x3_c00013{left:95.407800px;}
.x5_c00013{left:149.400150px;}
.x4_c00013{left:442.215000px;}
.x2_c00013{left:878.515800px;}
@media print{
.v0_c00013{vertical-align:0.000000pt;}
.ls0_c00013{letter-spacing:0.000000pt;}
.ws0_c00013{word-spacing:0.000000pt;}
._4_c00013{width:0.921600pt;}
._0_c00013{width:2.547200pt;}
._9_c00013{width:3.635200pt;}
._a_c00013{width:5.491200pt;}
._d_c00013{width:7.276800pt;}
._8_c00013{width:8.544000pt;}
._7_c00013{width:10.432000pt;}
._3_c00013{width:11.916800pt;}
._2_c00013{width:12.934400pt;}
._6_c00013{width:14.553600pt;}
._1_c00013{width:17.785600pt;}
._b_c00013{width:20.256000pt;}
._c_c00013{width:22.508800pt;}
._5_c00013{width:29.644800pt;}
.fs0_c00013{font-size:64.000000pt;}
.y0_c00013{bottom:0.000000pt;}
.y6_c00013{bottom:3.840000pt;}
.y1_c00013{bottom:11.320000pt;}
.y4_c00013{bottom:19.240000pt;}
.y3_c00013{bottom:37.480000pt;}
.y5_c00013{bottom:44.960000pt;}
.y22_c00013{bottom:98.920000pt;}
.y21_c00013{bottom:130.920000pt;}
.y20_c00013{bottom:162.920000pt;}
.y1f_c00013{bottom:194.920000pt;}
.y1e_c00013{bottom:226.920000pt;}
.y1d_c00013{bottom:258.920000pt;}
.y1c_c00013{bottom:290.920000pt;}
.y1b_c00013{bottom:322.920000pt;}
.y1a_c00013{bottom:354.920000pt;}
.y19_c00013{bottom:386.920000pt;}
.y18_c00013{bottom:418.920000pt;}
.y17_c00013{bottom:450.920000pt;}
.y16_c00013{bottom:482.920000pt;}
.y15_c00013{bottom:514.920000pt;}
.y14_c00013{bottom:546.920000pt;}
.y13_c00013{bottom:578.920000pt;}
.y12_c00013{bottom:610.920000pt;}
.y11_c00013{bottom:642.920000pt;}
.y10_c00013{bottom:674.920000pt;}
.yf_c00013{bottom:706.920000pt;}
.ye_c00013{bottom:738.920000pt;}
.yd_c00013{bottom:770.920000pt;}
.yc_c00013{bottom:802.920000pt;}
.yb_c00013{bottom:834.920000pt;}
.ya_c00013{bottom:866.920000pt;}
.y9_c00013{bottom:898.920000pt;}
.y8_c00013{bottom:930.920000pt;}
.y7_c00013{bottom:962.920000pt;}
.y2_c00013{bottom:1035.560000pt;}
.h4_c00013{height:18.560000pt;}
.h5_c00013{height:62.781250pt;}
.h3_c00013{height:62.812500pt;}
.h2_c00013{height:1099.880000pt;}
.h0_c00013{height:1122.520000pt;}
.h1_c00013{height:1122.666667pt;}
.w3_c00013{width:8.000000pt;}
.w2_c00013{width:771.080000pt;}
.w0_c00013{width:793.720000pt;}
.w1_c00013{width:794.000000pt;}
.x0_c00013{left:0.000000pt;}
.x1_c00013{left:11.320000pt;}
.x3_c00013{left:84.806933pt;}
.x5_c00013{left:132.800133pt;}
.x4_c00013{left:393.080000pt;}
.x2_c00013{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e52b0f38fd2a632c3615abe0.woff2')format("woff");}.ff1_c00014{font-family:ff1_c00014;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00014;src:url('chunks/assets/font_2c48666c6ffb9f09979ce0d1.woff2')format("woff");}.ff2_c00014{font-family:ff2_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:ff3_c00014;src:url('chunks/assets/font_a9597324c2a992390fcfaa2a.woff2')format("woff");}.ff3_c00014{font-family:ff3_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;}
.m0_c00014{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00014{vertical-align:0.000000px;}
.ls0_c00014{letter-spacing:0.000000px;}
.ls1_c00014{letter-spacing:0.813600px;}
.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:-18.000000px;}
.ws1_c00014{word-spacing:0.000000px;}
._f_c00014{margin-left:-1.800000px;}
._3_c00014{width:1.368000px;}
._2_c00014{width:2.563200px;}
._4_c00014{width:4.284000px;}
._7_c00014{width:5.666400px;}
._d_c00014{width:6.674400px;}
._6_c00014{width:9.072000px;}
._1_c00014{width:12.578400px;}
._0_c00014{width:14.522400px;}
._c_c00014{width:15.544800px;}
._b_c00014{width:20.757600px;}
._8_c00014{width:22.075200px;}
._e_c00014{width:23.680800px;}
._a_c00014{width:28.713600px;}
._9_c00014{width:47.714400px;}
._5_c00014{width:52.149600px;}
.fc1_c00014{color:transparent;}
.fc0_c00014{color:rgb(0,0,0);}
.fs0_c00014{font-size:72.000000px;}
.y0_c00014{bottom:0.000000px;}
.y6_c00014{bottom:4.320000px;}
.y1_c00014{bottom:12.735000px;}
.y4_c00014{bottom:21.645000px;}
.y3_c00014{bottom:42.165000px;}
.y5_c00014{bottom:50.580000px;}
.y21_c00014{bottom:147.285000px;}
.y20_c00014{bottom:183.285000px;}
.y1f_c00014{bottom:219.285000px;}
.y1e_c00014{bottom:255.285000px;}
.y1d_c00014{bottom:291.285000px;}
.y1c_c00014{bottom:327.285000px;}
.y1b_c00014{bottom:363.285000px;}
.y1a_c00014{bottom:399.285000px;}
.y19_c00014{bottom:435.285000px;}
.y18_c00014{bottom:471.285000px;}
.y17_c00014{bottom:507.285000px;}
.y16_c00014{bottom:543.285000px;}
.y15_c00014{bottom:579.285000px;}
.y14_c00014{bottom:615.285000px;}
.y13_c00014{bottom:651.285000px;}
.y12_c00014{bottom:687.285000px;}
.y11_c00014{bottom:723.285000px;}
.y10_c00014{bottom:759.285000px;}
.yf_c00014{bottom:795.285000px;}
.ye_c00014{bottom:831.285000px;}
.yd_c00014{bottom:867.285000px;}
.yc_c00014{bottom:903.285000px;}
.yb_c00014{bottom:939.285000px;}
.ya_c00014{bottom:975.285000px;}
.y9_c00014{bottom:1011.285000px;}
.y8_c00014{bottom:1047.285000px;}
.y7_c00014{bottom:1083.285000px;}
.y2_c00014{bottom:1165.005000px;}
.h4_c00014{height:20.880000px;}
.h5_c00014{height:70.628906px;}
.h3_c00014{height:70.664062px;}
.h2_c00014{height:1237.365000px;}
.h0_c00014{height:1262.835000px;}
.h1_c00014{height:1263.000000px;}
.w3_c00014{width:9.000000px;}
.w2_c00014{width:867.465000px;}
.w0_c00014{width:892.935000px;}
.w1_c00014{width:893.250000px;}
.x0_c00014{left:0.000000px;}
.x1_c00014{left:12.735000px;}
.x3_c00014{left:95.407800px;}
.x5_c00014{left:149.400150px;}
.x4_c00014{left:442.215000px;}
.x2_c00014{left:878.515800px;}
@media print{
.v0_c00014{vertical-align:0.000000pt;}
.ls0_c00014{letter-spacing:0.000000pt;}
.ls1_c00014{letter-spacing:0.723200pt;}
.ws0_c00014{word-spacing:-16.000000pt;}
.ws1_c00014{word-spacing:0.000000pt;}
._f_c00014{margin-left:-1.600000pt;}
._3_c00014{width:1.216000pt;}
._2_c00014{width:2.278400pt;}
._4_c00014{width:3.808000pt;}
._7_c00014{width:5.036800pt;}
._d_c00014{width:5.932800pt;}
._6_c00014{width:8.064000pt;}
._1_c00014{width:11.180800pt;}
._0_c00014{width:12.908800pt;}
._c_c00014{width:13.817600pt;}
._b_c00014{width:18.451200pt;}
._8_c00014{width:19.622400pt;}
._e_c00014{width:21.049600pt;}
._a_c00014{width:25.523200pt;}
._9_c00014{width:42.412800pt;}
._5_c00014{width:46.355200pt;}
.fs0_c00014{font-size:64.000000pt;}
.y0_c00014{bottom:0.000000pt;}
.y6_c00014{bottom:3.840000pt;}
.y1_c00014{bottom:11.320000pt;}
.y4_c00014{bottom:19.240000pt;}
.y3_c00014{bottom:37.480000pt;}
.y5_c00014{bottom:44.960000pt;}
.y21_c00014{bottom:130.920000pt;}
.y20_c00014{bottom:162.920000pt;}
.y1f_c00014{bottom:194.920000pt;}
.y1e_c00014{bottom:226.920000pt;}
.y1d_c00014{bottom:258.920000pt;}
.y1c_c00014{bottom:290.920000pt;}
.y1b_c00014{bottom:322.920000pt;}
.y1a_c00014{bottom:354.920000pt;}
.y19_c00014{bottom:386.920000pt;}
.y18_c00014{bottom:418.920000pt;}
.y17_c00014{bottom:450.920000pt;}
.y16_c00014{bottom:482.920000pt;}
.y15_c00014{bottom:514.920000pt;}
.y14_c00014{bottom:546.920000pt;}
.y13_c00014{bottom:578.920000pt;}
.y12_c00014{bottom:610.920000pt;}
.y11_c00014{bottom:642.920000pt;}
.y10_c00014{bottom:674.920000pt;}
.yf_c00014{bottom:706.920000pt;}
.ye_c00014{bottom:738.920000pt;}
.yd_c00014{bottom:770.920000pt;}
.yc_c00014{bottom:802.920000pt;}
.yb_c00014{bottom:834.920000pt;}
.ya_c00014{bottom:866.920000pt;}
.y9_c00014{bottom:898.920000pt;}
.y8_c00014{bottom:930.920000pt;}
.y7_c00014{bottom:962.920000pt;}
.y2_c00014{bottom:1035.560000pt;}
.h4_c00014{height:18.560000pt;}
.h5_c00014{height:62.781250pt;}
.h3_c00014{height:62.812500pt;}
.h2_c00014{height:1099.880000pt;}
.h0_c00014{height:1122.520000pt;}
.h1_c00014{height:1122.666667pt;}
.w3_c00014{width:8.000000pt;}
.w2_c00014{width:771.080000pt;}
.w0_c00014{width:793.720000pt;}
.w1_c00014{width:794.000000pt;}
.x0_c00014{left:0.000000pt;}
.x1_c00014{left:11.320000pt;}
.x3_c00014{left:84.806933pt;}
.x5_c00014{left:132.800133pt;}
.x4_c00014{left:393.080000pt;}
.x2_c00014{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ca2772e2b1a418c4f663f635.woff2')format("woff");}.ff1_c00015{font-family:ff1_c00015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00015;src:url('chunks/assets/font_bbf3de13d1addbdc83bdd9eb.woff2')format("woff");}.ff2_c00015{font-family:ff2_c00015;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00015;src:url('chunks/assets/font_8ddf2a27391c35ae90cf6ddb.woff2')format("woff");}.ff3_c00015{font-family:ff3_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;}
.m0_c00015{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00015{vertical-align:0.000000px;}
.ls0_c00015{letter-spacing:0.000000px;}
.sc__c00015{text-shadow:none;}
.sc0_c00015{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00015{-webkit-text-stroke:0px transparent;}
.sc0_c00015{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00015{word-spacing:0.000000px;}
._3_c00015{width:1.166400px;}
._4_c00015{width:2.318400px;}
._6_c00015{width:3.808800px;}
._2_c00015{width:5.529600px;}
._0_c00015{width:6.674400px;}
._a_c00015{width:7.776000px;}
._7_c00015{width:9.748800px;}
._9_c00015{width:12.729600px;}
._5_c00015{width:14.068800px;}
._e_c00015{width:15.753600px;}
._c_c00015{width:16.963200px;}
._1_c00015{width:19.036800px;}
._d_c00015{width:20.426400px;}
._b_c00015{width:32.796000px;}
._8_c00015{width:42.220800px;}
.fc1_c00015{color:transparent;}
.fc0_c00015{color:rgb(0,0,0);}
.fs0_c00015{font-size:72.000000px;}
.y0_c00015{bottom:0.000000px;}
.y6_c00015{bottom:4.320000px;}
.y1_c00015{bottom:12.735000px;}
.y4_c00015{bottom:21.645000px;}
.y3_c00015{bottom:42.165000px;}
.y5_c00015{bottom:50.580000px;}
.y22_c00015{bottom:111.285000px;}
.y21_c00015{bottom:147.285000px;}
.y20_c00015{bottom:183.285000px;}
.y1f_c00015{bottom:219.285000px;}
.y1e_c00015{bottom:255.285000px;}
.y1d_c00015{bottom:291.285000px;}
.y1c_c00015{bottom:327.285000px;}
.y1b_c00015{bottom:363.285000px;}
.y1a_c00015{bottom:399.285000px;}
.y19_c00015{bottom:435.285000px;}
.y18_c00015{bottom:471.285000px;}
.y17_c00015{bottom:507.285000px;}
.y16_c00015{bottom:543.285000px;}
.y15_c00015{bottom:579.285000px;}
.y14_c00015{bottom:615.285000px;}
.y13_c00015{bottom:651.285000px;}
.y12_c00015{bottom:687.285000px;}
.y11_c00015{bottom:723.285000px;}
.y10_c00015{bottom:759.285000px;}
.yf_c00015{bottom:795.285000px;}
.ye_c00015{bottom:831.285000px;}
.yd_c00015{bottom:867.285000px;}
.yc_c00015{bottom:903.285000px;}
.yb_c00015{bottom:939.285000px;}
.ya_c00015{bottom:975.285000px;}
.y9_c00015{bottom:1011.285000px;}
.y8_c00015{bottom:1047.285000px;}
.y7_c00015{bottom:1083.285000px;}
.y2_c00015{bottom:1165.005000px;}
.h4_c00015{height:20.880000px;}
.h5_c00015{height:70.628906px;}
.h3_c00015{height:70.664062px;}
.h2_c00015{height:1237.365000px;}
.h0_c00015{height:1262.835000px;}
.h1_c00015{height:1263.000000px;}
.w3_c00015{width:9.000000px;}
.w2_c00015{width:867.465000px;}
.w0_c00015{width:892.935000px;}
.w1_c00015{width:893.250000px;}
.x0_c00015{left:0.000000px;}
.x1_c00015{left:12.735000px;}
.x3_c00015{left:95.407800px;}
.x5_c00015{left:149.400150px;}
.x6_c00015{left:159.210150px;}
.x4_c00015{left:442.215000px;}
.x2_c00015{left:878.515800px;}
@media print{
.v0_c00015{vertical-align:0.000000pt;}
.ls0_c00015{letter-spacing:0.000000pt;}
.ws0_c00015{word-spacing:0.000000pt;}
._3_c00015{width:1.036800pt;}
._4_c00015{width:2.060800pt;}
._6_c00015{width:3.385600pt;}
._2_c00015{width:4.915200pt;}
._0_c00015{width:5.932800pt;}
._a_c00015{width:6.912000pt;}
._7_c00015{width:8.665600pt;}
._9_c00015{width:11.315200pt;}
._5_c00015{width:12.505600pt;}
._e_c00015{width:14.003200pt;}
._c_c00015{width:15.078400pt;}
._1_c00015{width:16.921600pt;}
._d_c00015{width:18.156800pt;}
._b_c00015{width:29.152000pt;}
._8_c00015{width:37.529600pt;}
.fs0_c00015{font-size:64.000000pt;}
.y0_c00015{bottom:0.000000pt;}
.y6_c00015{bottom:3.840000pt;}
.y1_c00015{bottom:11.320000pt;}
.y4_c00015{bottom:19.240000pt;}
.y3_c00015{bottom:37.480000pt;}
.y5_c00015{bottom:44.960000pt;}
.y22_c00015{bottom:98.920000pt;}
.y21_c00015{bottom:130.920000pt;}
.y20_c00015{bottom:162.920000pt;}
.y1f_c00015{bottom:194.920000pt;}
.y1e_c00015{bottom:226.920000pt;}
.y1d_c00015{bottom:258.920000pt;}
.y1c_c00015{bottom:290.920000pt;}
.y1b_c00015{bottom:322.920000pt;}
.y1a_c00015{bottom:354.920000pt;}
.y19_c00015{bottom:386.920000pt;}
.y18_c00015{bottom:418.920000pt;}
.y17_c00015{bottom:450.920000pt;}
.y16_c00015{bottom:482.920000pt;}
.y15_c00015{bottom:514.920000pt;}
.y14_c00015{bottom:546.920000pt;}
.y13_c00015{bottom:578.920000pt;}
.y12_c00015{bottom:610.920000pt;}
.y11_c00015{bottom:642.920000pt;}
.y10_c00015{bottom:674.920000pt;}
.yf_c00015{bottom:706.920000pt;}
.ye_c00015{bottom:738.920000pt;}
.yd_c00015{bottom:770.920000pt;}
.yc_c00015{bottom:802.920000pt;}
.yb_c00015{bottom:834.920000pt;}
.ya_c00015{bottom:866.920000pt;}
.y9_c00015{bottom:898.920000pt;}
.y8_c00015{bottom:930.920000pt;}
.y7_c00015{bottom:962.920000pt;}
.y2_c00015{bottom:1035.560000pt;}
.h4_c00015{height:18.560000pt;}
.h5_c00015{height:62.781250pt;}
.h3_c00015{height:62.812500pt;}
.h2_c00015{height:1099.880000pt;}
.h0_c00015{height:1122.520000pt;}
.h1_c00015{height:1122.666667pt;}
.w3_c00015{width:8.000000pt;}
.w2_c00015{width:771.080000pt;}
.w0_c00015{width:793.720000pt;}
.w1_c00015{width:794.000000pt;}
.x0_c00015{left:0.000000pt;}
.x1_c00015{left:11.320000pt;}
.x3_c00015{left:84.806933pt;}
.x5_c00015{left:132.800133pt;}
.x6_c00015{left:141.520133pt;}
.x4_c00015{left:393.080000pt;}
.x2_c00015{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec01f34ca0e22ac092a18981.woff2')format("woff");}.ff1_c00016{font-family:ff1_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00016;src:url('chunks/assets/font_b577606b52e134a4bfed2929.woff2')format("woff");}.ff2_c00016{font-family:ff2_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:ff3_c00016;src:url('chunks/assets/font_9f61be6d249a107a0b32dd2f.woff2')format("woff");}.ff3_c00016{font-family:ff3_c00016;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00016{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00016{vertical-align:0.000000px;}
.ls1_c00016{letter-spacing:-0.014400px;}
.ls0_c00016{letter-spacing:0.000000px;}
.sc__c00016{text-shadow:none;}
.sc0_c00016{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00016{-webkit-text-stroke:0px transparent;}
.sc0_c00016{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00016{word-spacing:0.000000px;}
._7_c00016{width:1.180800px;}
._3_c00016{width:2.203200px;}
._1_c00016{width:4.118400px;}
._0_c00016{width:5.241600px;}
._9_c00016{width:6.624000px;}
._b_c00016{width:7.646400px;}
._4_c00016{width:8.719200px;}
._6_c00016{width:11.534400px;}
._8_c00016{width:13.464000px;}
._a_c00016{width:15.393600px;}
._2_c00016{width:19.058400px;}
._5_c00016{width:22.010400px;}
.fc1_c00016{color:transparent;}
.fc0_c00016{color:rgb(0,0,0);}
.fs0_c00016{font-size:72.000000px;}
.y0_c00016{bottom:0.000000px;}
.y6_c00016{bottom:4.320000px;}
.y1_c00016{bottom:12.735000px;}
.y4_c00016{bottom:21.645000px;}
.y3_c00016{bottom:42.165000px;}
.y5_c00016{bottom:50.580000px;}
.y22_c00016{bottom:111.285000px;}
.y21_c00016{bottom:147.285000px;}
.y20_c00016{bottom:183.285000px;}
.y1f_c00016{bottom:219.285000px;}
.y1e_c00016{bottom:255.285000px;}
.y1d_c00016{bottom:291.285000px;}
.y1c_c00016{bottom:327.285000px;}
.y1b_c00016{bottom:363.285000px;}
.y1a_c00016{bottom:399.285000px;}
.y19_c00016{bottom:435.285000px;}
.y18_c00016{bottom:471.285000px;}
.y17_c00016{bottom:507.285000px;}
.y16_c00016{bottom:543.285000px;}
.y15_c00016{bottom:579.285000px;}
.y14_c00016{bottom:615.285000px;}
.y13_c00016{bottom:651.285000px;}
.y12_c00016{bottom:687.285000px;}
.y11_c00016{bottom:723.285000px;}
.y10_c00016{bottom:759.285000px;}
.yf_c00016{bottom:795.285000px;}
.ye_c00016{bottom:831.285000px;}
.yd_c00016{bottom:867.285000px;}
.yc_c00016{bottom:903.285000px;}
.yb_c00016{bottom:939.285000px;}
.ya_c00016{bottom:975.285000px;}
.y9_c00016{bottom:1011.285000px;}
.y8_c00016{bottom:1047.285000px;}
.y7_c00016{bottom:1083.285000px;}
.y2_c00016{bottom:1165.005000px;}
.h4_c00016{height:20.880000px;}
.h5_c00016{height:70.628906px;}
.h3_c00016{height:70.664062px;}
.h2_c00016{height:1237.365000px;}
.h0_c00016{height:1262.835000px;}
.h1_c00016{height:1263.000000px;}
.w3_c00016{width:9.000000px;}
.w2_c00016{width:867.465000px;}
.w0_c00016{width:892.935000px;}
.w1_c00016{width:893.250000px;}
.x0_c00016{left:0.000000px;}
.x1_c00016{left:12.735000px;}
.x3_c00016{left:95.407800px;}
.x6_c00016{left:149.397300px;}
.x5_c00016{left:159.225300px;}
.x4_c00016{left:442.215000px;}
.x2_c00016{left:878.515800px;}
@media print{
.v0_c00016{vertical-align:0.000000pt;}
.ls1_c00016{letter-spacing:-0.012800pt;}
.ls0_c00016{letter-spacing:0.000000pt;}
.ws0_c00016{word-spacing:0.000000pt;}
._7_c00016{width:1.049600pt;}
._3_c00016{width:1.958400pt;}
._1_c00016{width:3.660800pt;}
._0_c00016{width:4.659200pt;}
._9_c00016{width:5.888000pt;}
._b_c00016{width:6.796800pt;}
._4_c00016{width:7.750400pt;}
._6_c00016{width:10.252800pt;}
._8_c00016{width:11.968000pt;}
._a_c00016{width:13.683200pt;}
._2_c00016{width:16.940800pt;}
._5_c00016{width:19.564800pt;}
.fs0_c00016{font-size:64.000000pt;}
.y0_c00016{bottom:0.000000pt;}
.y6_c00016{bottom:3.840000pt;}
.y1_c00016{bottom:11.320000pt;}
.y4_c00016{bottom:19.240000pt;}
.y3_c00016{bottom:37.480000pt;}
.y5_c00016{bottom:44.960000pt;}
.y22_c00016{bottom:98.920000pt;}
.y21_c00016{bottom:130.920000pt;}
.y20_c00016{bottom:162.920000pt;}
.y1f_c00016{bottom:194.920000pt;}
.y1e_c00016{bottom:226.920000pt;}
.y1d_c00016{bottom:258.920000pt;}
.y1c_c00016{bottom:290.920000pt;}
.y1b_c00016{bottom:322.920000pt;}
.y1a_c00016{bottom:354.920000pt;}
.y19_c00016{bottom:386.920000pt;}
.y18_c00016{bottom:418.920000pt;}
.y17_c00016{bottom:450.920000pt;}
.y16_c00016{bottom:482.920000pt;}
.y15_c00016{bottom:514.920000pt;}
.y14_c00016{bottom:546.920000pt;}
.y13_c00016{bottom:578.920000pt;}
.y12_c00016{bottom:610.920000pt;}
.y11_c00016{bottom:642.920000pt;}
.y10_c00016{bottom:674.920000pt;}
.yf_c00016{bottom:706.920000pt;}
.ye_c00016{bottom:738.920000pt;}
.yd_c00016{bottom:770.920000pt;}
.yc_c00016{bottom:802.920000pt;}
.yb_c00016{bottom:834.920000pt;}
.ya_c00016{bottom:866.920000pt;}
.y9_c00016{bottom:898.920000pt;}
.y8_c00016{bottom:930.920000pt;}
.y7_c00016{bottom:962.920000pt;}
.y2_c00016{bottom:1035.560000pt;}
.h4_c00016{height:18.560000pt;}
.h5_c00016{height:62.781250pt;}
.h3_c00016{height:62.812500pt;}
.h2_c00016{height:1099.880000pt;}
.h0_c00016{height:1122.520000pt;}
.h1_c00016{height:1122.666667pt;}
.w3_c00016{width:8.000000pt;}
.w2_c00016{width:771.080000pt;}
.w0_c00016{width:793.720000pt;}
.w1_c00016{width:794.000000pt;}
.x0_c00016{left:0.000000pt;}
.x1_c00016{left:11.320000pt;}
.x3_c00016{left:84.806933pt;}
.x6_c00016{left:132.797600pt;}
.x5_c00016{left:141.533600pt;}
.x4_c00016{left:393.080000pt;}
.x2_c00016{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_be1d9f6be5f4759943ef85cb.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_11142d6dddee630425c0d10d.woff2')format("woff");}.ff2_c00017{font-family:ff2_c00017;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00017;src:url('chunks/assets/font_c5f404bb78ff1abcb72a286a.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;}
.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;}
.ls1_c00017{letter-spacing:-0.014400px;}
.ls0_c00017{letter-spacing:0.000000px;}
.sc__c00017{text-shadow:none;}
.sc0_c00017{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00017{-webkit-text-stroke:0px transparent;}
.sc0_c00017{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00017{word-spacing:0.000000px;}
._6_c00017{width:1.468800px;}
._9_c00017{width:2.556000px;}
._2_c00017{width:3.600000px;}
._a_c00017{width:4.809600px;}
._1_c00017{width:6.184800px;}
._3_c00017{width:8.395200px;}
._c_c00017{width:9.403200px;}
._7_c00017{width:10.526400px;}
._4_c00017{width:11.570400px;}
._8_c00017{width:13.168800px;}
._0_c00017{width:14.889600px;}
._5_c00017{width:16.502400px;}
._b_c00017{width:50.731200px;}
.fc1_c00017{color:transparent;}
.fc0_c00017{color:rgb(0,0,0);}
.fs0_c00017{font-size:72.000000px;}
.y0_c00017{bottom:0.000000px;}
.y6_c00017{bottom:4.320000px;}
.y1_c00017{bottom:12.735000px;}
.y4_c00017{bottom:21.645000px;}
.y3_c00017{bottom:42.165000px;}
.y5_c00017{bottom:50.580000px;}
.y22_c00017{bottom:111.285000px;}
.y21_c00017{bottom:147.285000px;}
.y20_c00017{bottom:183.285000px;}
.y1f_c00017{bottom:219.285000px;}
.y1e_c00017{bottom:255.285000px;}
.y1d_c00017{bottom:291.285000px;}
.y1c_c00017{bottom:327.285000px;}
.y1b_c00017{bottom:363.285000px;}
.y1a_c00017{bottom:399.285000px;}
.y19_c00017{bottom:435.285000px;}
.y18_c00017{bottom:471.285000px;}
.y17_c00017{bottom:507.285000px;}
.y16_c00017{bottom:543.285000px;}
.y15_c00017{bottom:579.285000px;}
.y14_c00017{bottom:615.285000px;}
.y13_c00017{bottom:651.285000px;}
.y12_c00017{bottom:687.285000px;}
.y11_c00017{bottom:723.285000px;}
.y10_c00017{bottom:759.285000px;}
.yf_c00017{bottom:795.285000px;}
.ye_c00017{bottom:831.285000px;}
.yd_c00017{bottom:867.285000px;}
.yc_c00017{bottom:903.285000px;}
.yb_c00017{bottom:939.285000px;}
.ya_c00017{bottom:975.285000px;}
.y9_c00017{bottom:1011.285000px;}
.y8_c00017{bottom:1047.285000px;}
.y7_c00017{bottom:1083.285000px;}
.y2_c00017{bottom:1165.005000px;}
.h4_c00017{height:20.880000px;}
.h3_c00017{height:70.664062px;}
.h2_c00017{height:1237.365000px;}
.h0_c00017{height:1262.835000px;}
.h1_c00017{height:1263.000000px;}
.w3_c00017{width:9.000000px;}
.w2_c00017{width:867.465000px;}
.w0_c00017{width:892.935000px;}
.w1_c00017{width:893.250000px;}
.x0_c00017{left:0.000000px;}
.x1_c00017{left:12.735000px;}
.x3_c00017{left:95.407800px;}
.x5_c00017{left:149.400150px;}
.x4_c00017{left:442.215000px;}
.x2_c00017{left:878.515800px;}
@media print{
.v0_c00017{vertical-align:0.000000pt;}
.ls1_c00017{letter-spacing:-0.012800pt;}
.ls0_c00017{letter-spacing:0.000000pt;}
.ws0_c00017{word-spacing:0.000000pt;}
._6_c00017{width:1.305600pt;}
._9_c00017{width:2.272000pt;}
._2_c00017{width:3.200000pt;}
._a_c00017{width:4.275200pt;}
._1_c00017{width:5.497600pt;}
._3_c00017{width:7.462400pt;}
._c_c00017{width:8.358400pt;}
._7_c00017{width:9.356800pt;}
._4_c00017{width:10.284800pt;}
._8_c00017{width:11.705600pt;}
._0_c00017{width:13.235200pt;}
._5_c00017{width:14.668800pt;}
._b_c00017{width:45.094400pt;}
.fs0_c00017{font-size:64.000000pt;}
.y0_c00017{bottom:0.000000pt;}
.y6_c00017{bottom:3.840000pt;}
.y1_c00017{bottom:11.320000pt;}
.y4_c00017{bottom:19.240000pt;}
.y3_c00017{bottom:37.480000pt;}
.y5_c00017{bottom:44.960000pt;}
.y22_c00017{bottom:98.920000pt;}
.y21_c00017{bottom:130.920000pt;}
.y20_c00017{bottom:162.920000pt;}
.y1f_c00017{bottom:194.920000pt;}
.y1e_c00017{bottom:226.920000pt;}
.y1d_c00017{bottom:258.920000pt;}
.y1c_c00017{bottom:290.920000pt;}
.y1b_c00017{bottom:322.920000pt;}
.y1a_c00017{bottom:354.920000pt;}
.y19_c00017{bottom:386.920000pt;}
.y18_c00017{bottom:418.920000pt;}
.y17_c00017{bottom:450.920000pt;}
.y16_c00017{bottom:482.920000pt;}
.y15_c00017{bottom:514.920000pt;}
.y14_c00017{bottom:546.920000pt;}
.y13_c00017{bottom:578.920000pt;}
.y12_c00017{bottom:610.920000pt;}
.y11_c00017{bottom:642.920000pt;}
.y10_c00017{bottom:674.920000pt;}
.yf_c00017{bottom:706.920000pt;}
.ye_c00017{bottom:738.920000pt;}
.yd_c00017{bottom:770.920000pt;}
.yc_c00017{bottom:802.920000pt;}
.yb_c00017{bottom:834.920000pt;}
.ya_c00017{bottom:866.920000pt;}
.y9_c00017{bottom:898.920000pt;}
.y8_c00017{bottom:930.920000pt;}
.y7_c00017{bottom:962.920000pt;}
.y2_c00017{bottom:1035.560000pt;}
.h4_c00017{height:18.560000pt;}
.h3_c00017{height:62.812500pt;}
.h2_c00017{height:1099.880000pt;}
.h0_c00017{height:1122.520000pt;}
.h1_c00017{height:1122.666667pt;}
.w3_c00017{width:8.000000pt;}
.w2_c00017{width:771.080000pt;}
.w0_c00017{width:793.720000pt;}
.w1_c00017{width:794.000000pt;}
.x0_c00017{left:0.000000pt;}
.x1_c00017{left:11.320000pt;}
.x3_c00017{left:84.806933pt;}
.x5_c00017{left:132.800133pt;}
.x4_c00017{left:393.080000pt;}
.x2_c00017{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8c507eb5e1a264991ee1226.woff2')format("woff");}.ff1_c00018{font-family:ff1_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:ff2_c00018;src:url('chunks/assets/font_7346608f86afbf7e5fb7b9f7.woff2')format("woff");}.ff2_c00018{font-family:ff2_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:ff3_c00018;src:url('chunks/assets/font_c776ec790145fe189bfc758b.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;}
.m0_c00018{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00018{vertical-align:0.000000px;}
.ls0_c00018{letter-spacing:0.000000px;}
.sc__c00018{text-shadow:none;}
.sc0_c00018{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00018{-webkit-text-stroke:0px transparent;}
.sc0_c00018{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00018{word-spacing:0.000000px;}
._1_c00018{width:1.008000px;}
._4_c00018{width:2.037600px;}
._2_c00018{width:3.549600px;}
._7_c00018{width:5.328000px;}
._0_c00018{width:6.926400px;}
._6_c00018{width:8.632800px;}
._3_c00018{width:10.526400px;}
._5_c00018{width:11.880000px;}
._8_c00018{width:13.255200px;}
._9_c00018{width:20.556000px;}
.fc1_c00018{color:transparent;}
.fc0_c00018{color:rgb(0,0,0);}
.fs0_c00018{font-size:72.000000px;}
.y0_c00018{bottom:0.000000px;}
.y6_c00018{bottom:4.320000px;}
.y1_c00018{bottom:12.735000px;}
.y4_c00018{bottom:21.645000px;}
.y3_c00018{bottom:42.165000px;}
.y5_c00018{bottom:50.580000px;}
.y22_c00018{bottom:111.285000px;}
.y21_c00018{bottom:147.285000px;}
.y20_c00018{bottom:183.285000px;}
.y1f_c00018{bottom:219.285000px;}
.y1e_c00018{bottom:255.285000px;}
.y1d_c00018{bottom:291.285000px;}
.y1c_c00018{bottom:327.285000px;}
.y1b_c00018{bottom:363.285000px;}
.y1a_c00018{bottom:399.285000px;}
.y19_c00018{bottom:435.285000px;}
.y18_c00018{bottom:471.285000px;}
.y17_c00018{bottom:507.285000px;}
.y16_c00018{bottom:543.285000px;}
.y15_c00018{bottom:579.285000px;}
.y14_c00018{bottom:615.285000px;}
.y13_c00018{bottom:651.285000px;}
.y12_c00018{bottom:687.285000px;}
.y11_c00018{bottom:723.285000px;}
.y10_c00018{bottom:759.285000px;}
.yf_c00018{bottom:795.285000px;}
.ye_c00018{bottom:831.285000px;}
.yd_c00018{bottom:867.285000px;}
.yc_c00018{bottom:903.285000px;}
.yb_c00018{bottom:939.285000px;}
.ya_c00018{bottom:975.285000px;}
.y9_c00018{bottom:1011.285000px;}
.y8_c00018{bottom:1047.285000px;}
.y7_c00018{bottom:1083.285000px;}
.y2_c00018{bottom:1165.005000px;}
.h4_c00018{height:20.880000px;}
.h5_c00018{height:70.628906px;}
.h3_c00018{height:70.664062px;}
.h2_c00018{height:1237.365000px;}
.h0_c00018{height:1262.835000px;}
.h1_c00018{height:1263.000000px;}
.w3_c00018{width:18.000000px;}
.w2_c00018{width:867.465000px;}
.w0_c00018{width:892.935000px;}
.w1_c00018{width:893.250000px;}
.x0_c00018{left:0.000000px;}
.x1_c00018{left:12.735000px;}
.x3_c00018{left:95.407800px;}
.x5_c00018{left:149.400150px;}
.x4_c00018{left:437.535000px;}
.x2_c00018{left:878.515800px;}
@media print{
.v0_c00018{vertical-align:0.000000pt;}
.ls0_c00018{letter-spacing:0.000000pt;}
.ws0_c00018{word-spacing:0.000000pt;}
._1_c00018{width:0.896000pt;}
._4_c00018{width:1.811200pt;}
._2_c00018{width:3.155200pt;}
._7_c00018{width:4.736000pt;}
._0_c00018{width:6.156800pt;}
._6_c00018{width:7.673600pt;}
._3_c00018{width:9.356800pt;}
._5_c00018{width:10.560000pt;}
._8_c00018{width:11.782400pt;}
._9_c00018{width:18.272000pt;}
.fs0_c00018{font-size:64.000000pt;}
.y0_c00018{bottom:0.000000pt;}
.y6_c00018{bottom:3.840000pt;}
.y1_c00018{bottom:11.320000pt;}
.y4_c00018{bottom:19.240000pt;}
.y3_c00018{bottom:37.480000pt;}
.y5_c00018{bottom:44.960000pt;}
.y22_c00018{bottom:98.920000pt;}
.y21_c00018{bottom:130.920000pt;}
.y20_c00018{bottom:162.920000pt;}
.y1f_c00018{bottom:194.920000pt;}
.y1e_c00018{bottom:226.920000pt;}
.y1d_c00018{bottom:258.920000pt;}
.y1c_c00018{bottom:290.920000pt;}
.y1b_c00018{bottom:322.920000pt;}
.y1a_c00018{bottom:354.920000pt;}
.y19_c00018{bottom:386.920000pt;}
.y18_c00018{bottom:418.920000pt;}
.y17_c00018{bottom:450.920000pt;}
.y16_c00018{bottom:482.920000pt;}
.y15_c00018{bottom:514.920000pt;}
.y14_c00018{bottom:546.920000pt;}
.y13_c00018{bottom:578.920000pt;}
.y12_c00018{bottom:610.920000pt;}
.y11_c00018{bottom:642.920000pt;}
.y10_c00018{bottom:674.920000pt;}
.yf_c00018{bottom:706.920000pt;}
.ye_c00018{bottom:738.920000pt;}
.yd_c00018{bottom:770.920000pt;}
.yc_c00018{bottom:802.920000pt;}
.yb_c00018{bottom:834.920000pt;}
.ya_c00018{bottom:866.920000pt;}
.y9_c00018{bottom:898.920000pt;}
.y8_c00018{bottom:930.920000pt;}
.y7_c00018{bottom:962.920000pt;}
.y2_c00018{bottom:1035.560000pt;}
.h4_c00018{height:18.560000pt;}
.h5_c00018{height:62.781250pt;}
.h3_c00018{height:62.812500pt;}
.h2_c00018{height:1099.880000pt;}
.h0_c00018{height:1122.520000pt;}
.h1_c00018{height:1122.666667pt;}
.w3_c00018{width:16.000000pt;}
.w2_c00018{width:771.080000pt;}
.w0_c00018{width:793.720000pt;}
.w1_c00018{width:794.000000pt;}
.x0_c00018{left:0.000000pt;}
.x1_c00018{left:11.320000pt;}
.x3_c00018{left:84.806933pt;}
.x5_c00018{left:132.800133pt;}
.x4_c00018{left:388.920000pt;}
.x2_c00018{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a308d9b46ce25c98598a3778.woff2')format("woff");}.ff1_c00019{font-family:ff1_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:ff2_c00019;src:url('chunks/assets/font_ede5e7780238ecb8d753773a.woff2')format("woff");}.ff2_c00019{font-family:ff2_c00019;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00019;src:url('chunks/assets/font_acaca89fafe8b7fb24e94fdb.woff2')format("woff");}.ff3_c00019{font-family:ff3_c00019;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00019{letter-spacing:0.000000px;}
.sc__c00019{text-shadow:none;}
.sc0_c00019{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00019{-webkit-text-stroke:0px transparent;}
.sc0_c00019{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00019{word-spacing:0.000000px;}
._1_c00019{width:1.440000px;}
._0_c00019{width:2.692800px;}
._4_c00019{width:3.715200px;}
._5_c00019{width:5.860800px;}
._9_c00019{width:7.718400px;}
._6_c00019{width:12.016800px;}
._7_c00019{width:15.076800px;}
._3_c00019{width:16.768800px;}
._8_c00019{width:28.072800px;}
._2_c00019{width:29.210400px;}
.fc1_c00019{color:transparent;}
.fc0_c00019{color:rgb(0,0,0);}
.fs0_c00019{font-size:72.000000px;}
.y0_c00019{bottom:0.000000px;}
.y6_c00019{bottom:4.320000px;}
.y1_c00019{bottom:12.735000px;}
.y4_c00019{bottom:21.645000px;}
.y3_c00019{bottom:42.165000px;}
.y5_c00019{bottom:50.580000px;}
.y22_c00019{bottom:111.285000px;}
.y21_c00019{bottom:147.285000px;}
.y20_c00019{bottom:183.285000px;}
.y1f_c00019{bottom:219.285000px;}
.y1e_c00019{bottom:255.285000px;}
.y1d_c00019{bottom:291.285000px;}
.y1c_c00019{bottom:327.285000px;}
.y1b_c00019{bottom:363.285000px;}
.y1a_c00019{bottom:399.285000px;}
.y19_c00019{bottom:435.285000px;}
.y18_c00019{bottom:471.285000px;}
.y17_c00019{bottom:507.285000px;}
.y16_c00019{bottom:543.285000px;}
.y15_c00019{bottom:579.285000px;}
.y14_c00019{bottom:615.285000px;}
.y13_c00019{bottom:651.285000px;}
.y12_c00019{bottom:687.285000px;}
.y11_c00019{bottom:723.285000px;}
.y10_c00019{bottom:759.285000px;}
.yf_c00019{bottom:795.285000px;}
.ye_c00019{bottom:831.285000px;}
.yd_c00019{bottom:867.285000px;}
.yc_c00019{bottom:903.285000px;}
.yb_c00019{bottom:939.285000px;}
.ya_c00019{bottom:975.285000px;}
.y9_c00019{bottom:1011.285000px;}
.y8_c00019{bottom:1047.285000px;}
.y7_c00019{bottom:1083.285000px;}
.y2_c00019{bottom:1165.005000px;}
.h4_c00019{height:20.880000px;}
.h5_c00019{height:70.628906px;}
.h3_c00019{height:70.664062px;}
.h2_c00019{height:1237.365000px;}
.h0_c00019{height:1262.835000px;}
.h1_c00019{height:1263.000000px;}
.w3_c00019{width:18.000000px;}
.w2_c00019{width:867.465000px;}
.w0_c00019{width:892.935000px;}
.w1_c00019{width:893.250000px;}
.x0_c00019{left:0.000000px;}
.x1_c00019{left:12.735000px;}
.x3_c00019{left:95.407800px;}
.x5_c00019{left:149.400150px;}
.x4_c00019{left:437.535000px;}
.x2_c00019{left:878.515800px;}
@media print{
.v0_c00019{vertical-align:0.000000pt;}
.ls0_c00019{letter-spacing:0.000000pt;}
.ws0_c00019{word-spacing:0.000000pt;}
._1_c00019{width:1.280000pt;}
._0_c00019{width:2.393600pt;}
._4_c00019{width:3.302400pt;}
._5_c00019{width:5.209600pt;}
._9_c00019{width:6.860800pt;}
._6_c00019{width:10.681600pt;}
._7_c00019{width:13.401600pt;}
._3_c00019{width:14.905600pt;}
._8_c00019{width:24.953600pt;}
._2_c00019{width:25.964800pt;}
.fs0_c00019{font-size:64.000000pt;}
.y0_c00019{bottom:0.000000pt;}
.y6_c00019{bottom:3.840000pt;}
.y1_c00019{bottom:11.320000pt;}
.y4_c00019{bottom:19.240000pt;}
.y3_c00019{bottom:37.480000pt;}
.y5_c00019{bottom:44.960000pt;}
.y22_c00019{bottom:98.920000pt;}
.y21_c00019{bottom:130.920000pt;}
.y20_c00019{bottom:162.920000pt;}
.y1f_c00019{bottom:194.920000pt;}
.y1e_c00019{bottom:226.920000pt;}
.y1d_c00019{bottom:258.920000pt;}
.y1c_c00019{bottom:290.920000pt;}
.y1b_c00019{bottom:322.920000pt;}
.y1a_c00019{bottom:354.920000pt;}
.y19_c00019{bottom:386.920000pt;}
.y18_c00019{bottom:418.920000pt;}
.y17_c00019{bottom:450.920000pt;}
.y16_c00019{bottom:482.920000pt;}
.y15_c00019{bottom:514.920000pt;}
.y14_c00019{bottom:546.920000pt;}
.y13_c00019{bottom:578.920000pt;}
.y12_c00019{bottom:610.920000pt;}
.y11_c00019{bottom:642.920000pt;}
.y10_c00019{bottom:674.920000pt;}
.yf_c00019{bottom:706.920000pt;}
.ye_c00019{bottom:738.920000pt;}
.yd_c00019{bottom:770.920000pt;}
.yc_c00019{bottom:802.920000pt;}
.yb_c00019{bottom:834.920000pt;}
.ya_c00019{bottom:866.920000pt;}
.y9_c00019{bottom:898.920000pt;}
.y8_c00019{bottom:930.920000pt;}
.y7_c00019{bottom:962.920000pt;}
.y2_c00019{bottom:1035.560000pt;}
.h4_c00019{height:18.560000pt;}
.h5_c00019{height:62.781250pt;}
.h3_c00019{height:62.812500pt;}
.h2_c00019{height:1099.880000pt;}
.h0_c00019{height:1122.520000pt;}
.h1_c00019{height:1122.666667pt;}
.w3_c00019{width:16.000000pt;}
.w2_c00019{width:771.080000pt;}
.w0_c00019{width:793.720000pt;}
.w1_c00019{width:794.000000pt;}
.x0_c00019{left:0.000000pt;}
.x1_c00019{left:11.320000pt;}
.x3_c00019{left:84.806933pt;}
.x5_c00019{left:132.800133pt;}
.x4_c00019{left:388.920000pt;}
.x2_c00019{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_993e0b9ad90ed04fda8b2d5a.woff2')format("woff");}.ff1_c00020{font-family:ff1_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:ff2_c00020;src:url('chunks/assets/font_ad5eff2a9a1e8733d79f3ef2.woff2')format("woff");}.ff2_c00020{font-family:ff2_c00020;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00020;src:url('chunks/assets/font_aefc69a7a0d05ab5f2c8ab3f.woff2')format("woff");}.ff3_c00020{font-family:ff3_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;}
.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;}
.ls1_c00020{letter-spacing:0.000000px;}
.ls0_c00020{letter-spacing:0.014400px;}
.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;}
}
.ws0_c00020{word-spacing:-18.014400px;}
.ws1_c00020{word-spacing:0.000000px;}
._9_c00020{width:1.044000px;}
._d_c00020{width:2.080800px;}
._2_c00020{width:3.096000px;}
._4_c00020{width:4.406400px;}
._5_c00020{width:6.033600px;}
._6_c00020{width:8.035200px;}
._7_c00020{width:9.316800px;}
._b_c00020{width:10.497600px;}
._3_c00020{width:12.974400px;}
._0_c00020{width:16.970400px;}
._a_c00020{width:19.440000px;}
._1_c00020{width:21.708000px;}
._c_c00020{width:22.773600px;}
._8_c00020{width:35.316000px;}
.fc1_c00020{color:transparent;}
.fc0_c00020{color:rgb(0,0,0);}
.fs0_c00020{font-size:72.000000px;}
.y0_c00020{bottom:0.000000px;}
.y6_c00020{bottom:4.320000px;}
.y1_c00020{bottom:12.735000px;}
.y4_c00020{bottom:21.645000px;}
.y3_c00020{bottom:42.165000px;}
.y5_c00020{bottom:50.580000px;}
.y22_c00020{bottom:111.285000px;}
.y21_c00020{bottom:147.285000px;}
.y20_c00020{bottom:183.285000px;}
.y1f_c00020{bottom:219.285000px;}
.y1e_c00020{bottom:255.285000px;}
.y1d_c00020{bottom:291.285000px;}
.y1c_c00020{bottom:327.285000px;}
.y1b_c00020{bottom:363.285000px;}
.y1a_c00020{bottom:399.285000px;}
.y19_c00020{bottom:435.285000px;}
.y18_c00020{bottom:471.285000px;}
.y17_c00020{bottom:507.285000px;}
.y16_c00020{bottom:543.285000px;}
.y15_c00020{bottom:579.285000px;}
.y14_c00020{bottom:615.285000px;}
.y13_c00020{bottom:651.285000px;}
.y12_c00020{bottom:687.285000px;}
.y11_c00020{bottom:723.285000px;}
.y10_c00020{bottom:759.285000px;}
.yf_c00020{bottom:795.285000px;}
.ye_c00020{bottom:831.285000px;}
.yd_c00020{bottom:867.285000px;}
.yc_c00020{bottom:903.285000px;}
.yb_c00020{bottom:939.285000px;}
.ya_c00020{bottom:975.285000px;}
.y9_c00020{bottom:1011.285000px;}
.y8_c00020{bottom:1047.285000px;}
.y7_c00020{bottom:1083.285000px;}
.y2_c00020{bottom:1165.005000px;}
.h4_c00020{height:20.880000px;}
.h5_c00020{height:70.628906px;}
.h3_c00020{height:70.664062px;}
.h2_c00020{height:1237.365000px;}
.h0_c00020{height:1262.835000px;}
.h1_c00020{height:1263.000000px;}
.w3_c00020{width:18.000000px;}
.w2_c00020{width:867.465000px;}
.w0_c00020{width:892.935000px;}
.w1_c00020{width:893.250000px;}
.x0_c00020{left:0.000000px;}
.x1_c00020{left:12.735000px;}
.x3_c00020{left:95.407800px;}
.x5_c00020{left:149.400150px;}
.x4_c00020{left:437.535000px;}
.x2_c00020{left:878.515800px;}
@media print{
.v0_c00020{vertical-align:0.000000pt;}
.ls1_c00020{letter-spacing:0.000000pt;}
.ls0_c00020{letter-spacing:0.012800pt;}
.ws0_c00020{word-spacing:-16.012800pt;}
.ws1_c00020{word-spacing:0.000000pt;}
._9_c00020{width:0.928000pt;}
._d_c00020{width:1.849600pt;}
._2_c00020{width:2.752000pt;}
._4_c00020{width:3.916800pt;}
._5_c00020{width:5.363200pt;}
._6_c00020{width:7.142400pt;}
._7_c00020{width:8.281600pt;}
._b_c00020{width:9.331200pt;}
._3_c00020{width:11.532800pt;}
._0_c00020{width:15.084800pt;}
._a_c00020{width:17.280000pt;}
._1_c00020{width:19.296000pt;}
._c_c00020{width:20.243200pt;}
._8_c00020{width:31.392000pt;}
.fs0_c00020{font-size:64.000000pt;}
.y0_c00020{bottom:0.000000pt;}
.y6_c00020{bottom:3.840000pt;}
.y1_c00020{bottom:11.320000pt;}
.y4_c00020{bottom:19.240000pt;}
.y3_c00020{bottom:37.480000pt;}
.y5_c00020{bottom:44.960000pt;}
.y22_c00020{bottom:98.920000pt;}
.y21_c00020{bottom:130.920000pt;}
.y20_c00020{bottom:162.920000pt;}
.y1f_c00020{bottom:194.920000pt;}
.y1e_c00020{bottom:226.920000pt;}
.y1d_c00020{bottom:258.920000pt;}
.y1c_c00020{bottom:290.920000pt;}
.y1b_c00020{bottom:322.920000pt;}
.y1a_c00020{bottom:354.920000pt;}
.y19_c00020{bottom:386.920000pt;}
.y18_c00020{bottom:418.920000pt;}
.y17_c00020{bottom:450.920000pt;}
.y16_c00020{bottom:482.920000pt;}
.y15_c00020{bottom:514.920000pt;}
.y14_c00020{bottom:546.920000pt;}
.y13_c00020{bottom:578.920000pt;}
.y12_c00020{bottom:610.920000pt;}
.y11_c00020{bottom:642.920000pt;}
.y10_c00020{bottom:674.920000pt;}
.yf_c00020{bottom:706.920000pt;}
.ye_c00020{bottom:738.920000pt;}
.yd_c00020{bottom:770.920000pt;}
.yc_c00020{bottom:802.920000pt;}
.yb_c00020{bottom:834.920000pt;}
.ya_c00020{bottom:866.920000pt;}
.y9_c00020{bottom:898.920000pt;}
.y8_c00020{bottom:930.920000pt;}
.y7_c00020{bottom:962.920000pt;}
.y2_c00020{bottom:1035.560000pt;}
.h4_c00020{height:18.560000pt;}
.h5_c00020{height:62.781250pt;}
.h3_c00020{height:62.812500pt;}
.h2_c00020{height:1099.880000pt;}
.h0_c00020{height:1122.520000pt;}
.h1_c00020{height:1122.666667pt;}
.w3_c00020{width:16.000000pt;}
.w2_c00020{width:771.080000pt;}
.w0_c00020{width:793.720000pt;}
.w1_c00020{width:794.000000pt;}
.x0_c00020{left:0.000000pt;}
.x1_c00020{left:11.320000pt;}
.x3_c00020{left:84.806933pt;}
.x5_c00020{left:132.800133pt;}
.x4_c00020{left:388.920000pt;}
.x2_c00020{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7bd9b7d62619411f69821323.woff2')format("woff");}.ff1_c00021{font-family:ff1_c00021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00021;src:url('chunks/assets/font_24a8763f868f21c05fbcf9cc.woff2')format("woff");}.ff2_c00021{font-family:ff2_c00021;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00021;src:url('chunks/assets/font_3dc9a05d75a722d0370c01d1.woff2')format("woff");}.ff3_c00021{font-family:ff3_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;}
.m0_c00021{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00021{vertical-align:0.000000px;}
.ls1_c00021{letter-spacing:0.000000px;}
.ls0_c00021{letter-spacing:4.644000px;}
.sc__c00021{text-shadow:none;}
.sc0_c00021{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00021{-webkit-text-stroke:0px transparent;}
.sc0_c00021{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00021{word-spacing:0.000000px;}
._7_c00021{margin-left:-4.874400px;}
._3_c00021{width:1.209600px;}
._0_c00021{width:2.800800px;}
._6_c00021{width:4.651200px;}
._b_c00021{width:6.436800px;}
._2_c00021{width:7.653600px;}
._8_c00021{width:8.740800px;}
._5_c00021{width:9.813600px;}
._4_c00021{width:11.887200px;}
._a_c00021{width:13.197600px;}
._1_c00021{width:20.966400px;}
._c_c00021{width:24.768000px;}
._9_c00021{width:26.697600px;}
.fc1_c00021{color:transparent;}
.fc0_c00021{color:rgb(0,0,0);}
.fs0_c00021{font-size:72.000000px;}
.y0_c00021{bottom:0.000000px;}
.y6_c00021{bottom:4.320000px;}
.y1_c00021{bottom:12.735000px;}
.y4_c00021{bottom:21.645000px;}
.y3_c00021{bottom:42.165000px;}
.y5_c00021{bottom:50.580000px;}
.y20_c00021{bottom:183.285000px;}
.y1f_c00021{bottom:219.285000px;}
.y1e_c00021{bottom:255.285000px;}
.y1d_c00021{bottom:291.285000px;}
.y1c_c00021{bottom:327.285000px;}
.y1b_c00021{bottom:363.285000px;}
.y1a_c00021{bottom:399.285000px;}
.y19_c00021{bottom:435.285000px;}
.y18_c00021{bottom:471.285000px;}
.y17_c00021{bottom:507.285000px;}
.y16_c00021{bottom:543.285000px;}
.y15_c00021{bottom:579.285000px;}
.y14_c00021{bottom:615.285000px;}
.y13_c00021{bottom:651.285000px;}
.y12_c00021{bottom:687.285000px;}
.y11_c00021{bottom:723.285000px;}
.y10_c00021{bottom:759.285000px;}
.yf_c00021{bottom:795.285000px;}
.ye_c00021{bottom:831.285000px;}
.yd_c00021{bottom:867.285000px;}
.yc_c00021{bottom:903.285000px;}
.yb_c00021{bottom:939.285000px;}
.ya_c00021{bottom:975.285000px;}
.y9_c00021{bottom:1011.285000px;}
.y8_c00021{bottom:1047.285000px;}
.y7_c00021{bottom:1083.285000px;}
.y2_c00021{bottom:1165.005000px;}
.h4_c00021{height:20.880000px;}
.h5_c00021{height:70.628906px;}
.h3_c00021{height:70.664062px;}
.h2_c00021{height:1237.365000px;}
.h0_c00021{height:1262.835000px;}
.h1_c00021{height:1263.000000px;}
.w3_c00021{width:18.000000px;}
.w2_c00021{width:867.465000px;}
.w0_c00021{width:892.935000px;}
.w1_c00021{width:893.250000px;}
.x0_c00021{left:0.000000px;}
.x1_c00021{left:12.735000px;}
.x3_c00021{left:95.407800px;}
.x5_c00021{left:149.400150px;}
.x4_c00021{left:437.535000px;}
.x2_c00021{left:878.515800px;}
@media print{
.v0_c00021{vertical-align:0.000000pt;}
.ls1_c00021{letter-spacing:0.000000pt;}
.ls0_c00021{letter-spacing:4.128000pt;}
.ws0_c00021{word-spacing:0.000000pt;}
._7_c00021{margin-left:-4.332800pt;}
._3_c00021{width:1.075200pt;}
._0_c00021{width:2.489600pt;}
._6_c00021{width:4.134400pt;}
._b_c00021{width:5.721600pt;}
._2_c00021{width:6.803200pt;}
._8_c00021{width:7.769600pt;}
._5_c00021{width:8.723200pt;}
._4_c00021{width:10.566400pt;}
._a_c00021{width:11.731200pt;}
._1_c00021{width:18.636800pt;}
._c_c00021{width:22.016000pt;}
._9_c00021{width:23.731200pt;}
.fs0_c00021{font-size:64.000000pt;}
.y0_c00021{bottom:0.000000pt;}
.y6_c00021{bottom:3.840000pt;}
.y1_c00021{bottom:11.320000pt;}
.y4_c00021{bottom:19.240000pt;}
.y3_c00021{bottom:37.480000pt;}
.y5_c00021{bottom:44.960000pt;}
.y20_c00021{bottom:162.920000pt;}
.y1f_c00021{bottom:194.920000pt;}
.y1e_c00021{bottom:226.920000pt;}
.y1d_c00021{bottom:258.920000pt;}
.y1c_c00021{bottom:290.920000pt;}
.y1b_c00021{bottom:322.920000pt;}
.y1a_c00021{bottom:354.920000pt;}
.y19_c00021{bottom:386.920000pt;}
.y18_c00021{bottom:418.920000pt;}
.y17_c00021{bottom:450.920000pt;}
.y16_c00021{bottom:482.920000pt;}
.y15_c00021{bottom:514.920000pt;}
.y14_c00021{bottom:546.920000pt;}
.y13_c00021{bottom:578.920000pt;}
.y12_c00021{bottom:610.920000pt;}
.y11_c00021{bottom:642.920000pt;}
.y10_c00021{bottom:674.920000pt;}
.yf_c00021{bottom:706.920000pt;}
.ye_c00021{bottom:738.920000pt;}
.yd_c00021{bottom:770.920000pt;}
.yc_c00021{bottom:802.920000pt;}
.yb_c00021{bottom:834.920000pt;}
.ya_c00021{bottom:866.920000pt;}
.y9_c00021{bottom:898.920000pt;}
.y8_c00021{bottom:930.920000pt;}
.y7_c00021{bottom:962.920000pt;}
.y2_c00021{bottom:1035.560000pt;}
.h4_c00021{height:18.560000pt;}
.h5_c00021{height:62.781250pt;}
.h3_c00021{height:62.812500pt;}
.h2_c00021{height:1099.880000pt;}
.h0_c00021{height:1122.520000pt;}
.h1_c00021{height:1122.666667pt;}
.w3_c00021{width:16.000000pt;}
.w2_c00021{width:771.080000pt;}
.w0_c00021{width:793.720000pt;}
.w1_c00021{width:794.000000pt;}
.x0_c00021{left:0.000000pt;}
.x1_c00021{left:11.320000pt;}
.x3_c00021{left:84.806933pt;}
.x5_c00021{left:132.800133pt;}
.x4_c00021{left:388.920000pt;}
.x2_c00021{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_597dbc87ef739bf077c7235c.woff2')format("woff");}.ff1_c00022{font-family:ff1_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:ff2_c00022;src:url('chunks/assets/font_1502cbcd083ec4c0b1b26538.woff2')format("woff");}.ff2_c00022{font-family:ff2_c00022;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00022;src:url('chunks/assets/font_0d8d08510642c29ee3c7ab9a.woff2')format("woff");}.ff3_c00022{font-family:ff3_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;}
.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;}
.ls1_c00022{letter-spacing:-0.014400px;}
.ls0_c00022{letter-spacing:0.000000px;}
.sc__c00022{text-shadow:none;}
.sc0_c00022{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00022{-webkit-text-stroke:0px transparent;}
.sc0_c00022{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00022{word-spacing:0.000000px;}
._4_c00022{width:1.173600px;}
._2_c00022{width:2.484000px;}
._1_c00022{width:4.010400px;}
._3_c00022{width:5.068800px;}
._5_c00022{width:6.796800px;}
._7_c00022{width:8.136000px;}
._a_c00022{width:10.108800px;}
._0_c00022{width:12.304800px;}
._6_c00022{width:13.348800px;}
._9_c00022{width:21.844800px;}
._8_c00022{width:64.202400px;}
.fc1_c00022{color:transparent;}
.fc0_c00022{color:rgb(0,0,0);}
.fs0_c00022{font-size:72.000000px;}
.y0_c00022{bottom:0.000000px;}
.y6_c00022{bottom:4.320000px;}
.y1_c00022{bottom:12.735000px;}
.y4_c00022{bottom:21.645000px;}
.y3_c00022{bottom:42.165000px;}
.y5_c00022{bottom:50.580000px;}
.y22_c00022{bottom:111.285000px;}
.y21_c00022{bottom:147.285000px;}
.y20_c00022{bottom:183.285000px;}
.y1f_c00022{bottom:219.285000px;}
.y1e_c00022{bottom:255.285000px;}
.y1d_c00022{bottom:291.285000px;}
.y1c_c00022{bottom:327.285000px;}
.y1b_c00022{bottom:363.285000px;}
.y1a_c00022{bottom:399.285000px;}
.y19_c00022{bottom:435.285000px;}
.y18_c00022{bottom:471.285000px;}
.y17_c00022{bottom:507.285000px;}
.y16_c00022{bottom:543.285000px;}
.y15_c00022{bottom:579.285000px;}
.y14_c00022{bottom:615.285000px;}
.y13_c00022{bottom:651.285000px;}
.y12_c00022{bottom:687.285000px;}
.y11_c00022{bottom:723.285000px;}
.y10_c00022{bottom:759.285000px;}
.yf_c00022{bottom:795.285000px;}
.ye_c00022{bottom:831.285000px;}
.yd_c00022{bottom:867.285000px;}
.yc_c00022{bottom:903.285000px;}
.yb_c00022{bottom:939.285000px;}
.ya_c00022{bottom:975.285000px;}
.y9_c00022{bottom:1011.285000px;}
.y8_c00022{bottom:1047.285000px;}
.y7_c00022{bottom:1083.285000px;}
.y2_c00022{bottom:1165.005000px;}
.h4_c00022{height:20.880000px;}
.h5_c00022{height:70.628906px;}
.h3_c00022{height:70.664062px;}
.h2_c00022{height:1237.365000px;}
.h0_c00022{height:1262.835000px;}
.h1_c00022{height:1263.000000px;}
.w3_c00022{width:18.000000px;}
.w2_c00022{width:867.465000px;}
.w0_c00022{width:892.935000px;}
.w1_c00022{width:893.250000px;}
.x0_c00022{left:0.000000px;}
.x1_c00022{left:12.735000px;}
.x3_c00022{left:95.407800px;}
.x5_c00022{left:149.400150px;}
.x4_c00022{left:437.535000px;}
.x2_c00022{left:878.515800px;}
@media print{
.v0_c00022{vertical-align:0.000000pt;}
.ls1_c00022{letter-spacing:-0.012800pt;}
.ls0_c00022{letter-spacing:0.000000pt;}
.ws0_c00022{word-spacing:0.000000pt;}
._4_c00022{width:1.043200pt;}
._2_c00022{width:2.208000pt;}
._1_c00022{width:3.564800pt;}
._3_c00022{width:4.505600pt;}
._5_c00022{width:6.041600pt;}
._7_c00022{width:7.232000pt;}
._a_c00022{width:8.985600pt;}
._0_c00022{width:10.937600pt;}
._6_c00022{width:11.865600pt;}
._9_c00022{width:19.417600pt;}
._8_c00022{width:57.068800pt;}
.fs0_c00022{font-size:64.000000pt;}
.y0_c00022{bottom:0.000000pt;}
.y6_c00022{bottom:3.840000pt;}
.y1_c00022{bottom:11.320000pt;}
.y4_c00022{bottom:19.240000pt;}
.y3_c00022{bottom:37.480000pt;}
.y5_c00022{bottom:44.960000pt;}
.y22_c00022{bottom:98.920000pt;}
.y21_c00022{bottom:130.920000pt;}
.y20_c00022{bottom:162.920000pt;}
.y1f_c00022{bottom:194.920000pt;}
.y1e_c00022{bottom:226.920000pt;}
.y1d_c00022{bottom:258.920000pt;}
.y1c_c00022{bottom:290.920000pt;}
.y1b_c00022{bottom:322.920000pt;}
.y1a_c00022{bottom:354.920000pt;}
.y19_c00022{bottom:386.920000pt;}
.y18_c00022{bottom:418.920000pt;}
.y17_c00022{bottom:450.920000pt;}
.y16_c00022{bottom:482.920000pt;}
.y15_c00022{bottom:514.920000pt;}
.y14_c00022{bottom:546.920000pt;}
.y13_c00022{bottom:578.920000pt;}
.y12_c00022{bottom:610.920000pt;}
.y11_c00022{bottom:642.920000pt;}
.y10_c00022{bottom:674.920000pt;}
.yf_c00022{bottom:706.920000pt;}
.ye_c00022{bottom:738.920000pt;}
.yd_c00022{bottom:770.920000pt;}
.yc_c00022{bottom:802.920000pt;}
.yb_c00022{bottom:834.920000pt;}
.ya_c00022{bottom:866.920000pt;}
.y9_c00022{bottom:898.920000pt;}
.y8_c00022{bottom:930.920000pt;}
.y7_c00022{bottom:962.920000pt;}
.y2_c00022{bottom:1035.560000pt;}
.h4_c00022{height:18.560000pt;}
.h5_c00022{height:62.781250pt;}
.h3_c00022{height:62.812500pt;}
.h2_c00022{height:1099.880000pt;}
.h0_c00022{height:1122.520000pt;}
.h1_c00022{height:1122.666667pt;}
.w3_c00022{width:16.000000pt;}
.w2_c00022{width:771.080000pt;}
.w0_c00022{width:793.720000pt;}
.w1_c00022{width:794.000000pt;}
.x0_c00022{left:0.000000pt;}
.x1_c00022{left:11.320000pt;}
.x3_c00022{left:84.806933pt;}
.x5_c00022{left:132.800133pt;}
.x4_c00022{left:388.920000pt;}
.x2_c00022{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_556f4a39ecd58d5d718cb27b.woff2')format("woff");}.ff1_c00023{font-family:ff1_c00023;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00023;src:url('chunks/assets/font_f05aaa4001f36314c0580c9d.woff2')format("woff");}.ff2_c00023{font-family:ff2_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;}
.m0_c00023{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00023{vertical-align:0.000000px;}
.ls0_c00023{letter-spacing:0.000000px;}
.sc__c00023{text-shadow:none;}
.sc0_c00023{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00023{-webkit-text-stroke:0px transparent;}
.sc0_c00023{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00023{word-spacing:0.000000px;}
._3_c00023{width:1.699200px;}
._4_c00023{width:2.822400px;}
._6_c00023{width:4.456800px;}
._0_c00023{width:5.896800px;}
._1_c00023{width:6.991200px;}
._7_c00023{width:8.179200px;}
._5_c00023{width:10.044000px;}
._9_c00023{width:12.052800px;}
._c_c00023{width:15.048000px;}
._a_c00023{width:19.670400px;}
._2_c00023{width:20.793600px;}
._8_c00023{width:29.707200px;}
._b_c00023{width:32.882400px;}
.fc1_c00023{color:transparent;}
.fc0_c00023{color:rgb(0,0,0);}
.fs0_c00023{font-size:72.000000px;}
.y0_c00023{bottom:0.000000px;}
.y6_c00023{bottom:4.320000px;}
.y1_c00023{bottom:12.735000px;}
.y4_c00023{bottom:21.645000px;}
.y3_c00023{bottom:42.165000px;}
.y5_c00023{bottom:50.580000px;}
.y21_c00023{bottom:147.285000px;}
.y20_c00023{bottom:183.285000px;}
.y1f_c00023{bottom:219.285000px;}
.y1e_c00023{bottom:255.285000px;}
.y1d_c00023{bottom:291.285000px;}
.y1c_c00023{bottom:327.285000px;}
.y1b_c00023{bottom:363.285000px;}
.y1a_c00023{bottom:399.285000px;}
.y19_c00023{bottom:435.285000px;}
.y18_c00023{bottom:471.285000px;}
.y17_c00023{bottom:507.285000px;}
.y16_c00023{bottom:543.285000px;}
.y15_c00023{bottom:579.285000px;}
.y14_c00023{bottom:615.285000px;}
.y13_c00023{bottom:651.285000px;}
.y12_c00023{bottom:687.285000px;}
.y11_c00023{bottom:723.285000px;}
.y10_c00023{bottom:759.285000px;}
.yf_c00023{bottom:795.285000px;}
.ye_c00023{bottom:831.285000px;}
.yd_c00023{bottom:867.285000px;}
.yc_c00023{bottom:903.285000px;}
.yb_c00023{bottom:939.285000px;}
.ya_c00023{bottom:975.285000px;}
.y9_c00023{bottom:1011.285000px;}
.y8_c00023{bottom:1047.285000px;}
.y7_c00023{bottom:1083.285000px;}
.y2_c00023{bottom:1165.005000px;}
.h4_c00023{height:20.880000px;}
.h3_c00023{height:70.664062px;}
.h2_c00023{height:1237.365000px;}
.h0_c00023{height:1262.835000px;}
.h1_c00023{height:1263.000000px;}
.w3_c00023{width:18.000000px;}
.w2_c00023{width:867.465000px;}
.w0_c00023{width:892.935000px;}
.w1_c00023{width:893.250000px;}
.x0_c00023{left:0.000000px;}
.x1_c00023{left:12.735000px;}
.x3_c00023{left:95.407800px;}
.x5_c00023{left:149.400150px;}
.x4_c00023{left:437.535000px;}
.x2_c00023{left:878.515800px;}
@media print{
.v0_c00023{vertical-align:0.000000pt;}
.ls0_c00023{letter-spacing:0.000000pt;}
.ws0_c00023{word-spacing:0.000000pt;}
._3_c00023{width:1.510400pt;}
._4_c00023{width:2.508800pt;}
._6_c00023{width:3.961600pt;}
._0_c00023{width:5.241600pt;}
._1_c00023{width:6.214400pt;}
._7_c00023{width:7.270400pt;}
._5_c00023{width:8.928000pt;}
._9_c00023{width:10.713600pt;}
._c_c00023{width:13.376000pt;}
._a_c00023{width:17.484800pt;}
._2_c00023{width:18.483200pt;}
._8_c00023{width:26.406400pt;}
._b_c00023{width:29.228800pt;}
.fs0_c00023{font-size:64.000000pt;}
.y0_c00023{bottom:0.000000pt;}
.y6_c00023{bottom:3.840000pt;}
.y1_c00023{bottom:11.320000pt;}
.y4_c00023{bottom:19.240000pt;}
.y3_c00023{bottom:37.480000pt;}
.y5_c00023{bottom:44.960000pt;}
.y21_c00023{bottom:130.920000pt;}
.y20_c00023{bottom:162.920000pt;}
.y1f_c00023{bottom:194.920000pt;}
.y1e_c00023{bottom:226.920000pt;}
.y1d_c00023{bottom:258.920000pt;}
.y1c_c00023{bottom:290.920000pt;}
.y1b_c00023{bottom:322.920000pt;}
.y1a_c00023{bottom:354.920000pt;}
.y19_c00023{bottom:386.920000pt;}
.y18_c00023{bottom:418.920000pt;}
.y17_c00023{bottom:450.920000pt;}
.y16_c00023{bottom:482.920000pt;}
.y15_c00023{bottom:514.920000pt;}
.y14_c00023{bottom:546.920000pt;}
.y13_c00023{bottom:578.920000pt;}
.y12_c00023{bottom:610.920000pt;}
.y11_c00023{bottom:642.920000pt;}
.y10_c00023{bottom:674.920000pt;}
.yf_c00023{bottom:706.920000pt;}
.ye_c00023{bottom:738.920000pt;}
.yd_c00023{bottom:770.920000pt;}
.yc_c00023{bottom:802.920000pt;}
.yb_c00023{bottom:834.920000pt;}
.ya_c00023{bottom:866.920000pt;}
.y9_c00023{bottom:898.920000pt;}
.y8_c00023{bottom:930.920000pt;}
.y7_c00023{bottom:962.920000pt;}
.y2_c00023{bottom:1035.560000pt;}
.h4_c00023{height:18.560000pt;}
.h3_c00023{height:62.812500pt;}
.h2_c00023{height:1099.880000pt;}
.h0_c00023{height:1122.520000pt;}
.h1_c00023{height:1122.666667pt;}
.w3_c00023{width:16.000000pt;}
.w2_c00023{width:771.080000pt;}
.w0_c00023{width:793.720000pt;}
.w1_c00023{width:794.000000pt;}
.x0_c00023{left:0.000000pt;}
.x1_c00023{left:11.320000pt;}
.x3_c00023{left:84.806933pt;}
.x5_c00023{left:132.800133pt;}
.x4_c00023{left:388.920000pt;}
.x2_c00023{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d73314c15f871414f84d9c60.woff2')format("woff");}.ff1_c00024{font-family:ff1_c00024;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00024;src:url('chunks/assets/font_0eacd0ae4dbda38ad9c7daa5.woff2')format("woff");}.ff2_c00024{font-family:ff2_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;}
.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;}
.ls0_c00024{letter-spacing:0.000000px;}
.sc__c00024{text-shadow:none;}
.sc0_c00024{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00024{-webkit-text-stroke:0px transparent;}
.sc0_c00024{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00024{word-spacing:0.000000px;}
._4_c00024{width:1.008000px;}
._3_c00024{width:2.052000px;}
._e_c00024{width:3.060000px;}
._1_c00024{width:4.377600px;}
._5_c00024{width:5.911200px;}
._7_c00024{width:8.251200px;}
._2_c00024{width:9.900000px;}
._8_c00024{width:12.528000px;}
._6_c00024{width:13.766400px;}
._b_c00024{width:15.256800px;}
._c_c00024{width:16.732800px;}
._0_c00024{width:19.771200px;}
._d_c00024{width:21.902400px;}
._a_c00024{width:28.677600px;}
._9_c00024{width:40.953600px;}
.fc1_c00024{color:transparent;}
.fc0_c00024{color:rgb(0,0,0);}
.fs0_c00024{font-size:72.000000px;}
.y0_c00024{bottom:0.000000px;}
.y6_c00024{bottom:4.320000px;}
.y1_c00024{bottom:12.735000px;}
.y4_c00024{bottom:21.645000px;}
.y3_c00024{bottom:42.165000px;}
.y5_c00024{bottom:50.580000px;}
.y22_c00024{bottom:111.285000px;}
.y21_c00024{bottom:147.285000px;}
.y20_c00024{bottom:183.285000px;}
.y1f_c00024{bottom:219.285000px;}
.y1e_c00024{bottom:255.285000px;}
.y1d_c00024{bottom:291.285000px;}
.y1c_c00024{bottom:327.285000px;}
.y1b_c00024{bottom:363.285000px;}
.y1a_c00024{bottom:399.285000px;}
.y19_c00024{bottom:435.285000px;}
.y18_c00024{bottom:471.285000px;}
.y17_c00024{bottom:507.285000px;}
.y16_c00024{bottom:543.285000px;}
.y15_c00024{bottom:579.285000px;}
.y14_c00024{bottom:615.285000px;}
.y13_c00024{bottom:651.285000px;}
.y12_c00024{bottom:687.285000px;}
.y11_c00024{bottom:723.285000px;}
.y10_c00024{bottom:759.285000px;}
.yf_c00024{bottom:795.285000px;}
.ye_c00024{bottom:831.285000px;}
.yd_c00024{bottom:867.285000px;}
.yc_c00024{bottom:903.285000px;}
.yb_c00024{bottom:939.285000px;}
.ya_c00024{bottom:975.285000px;}
.y9_c00024{bottom:1011.285000px;}
.y8_c00024{bottom:1047.285000px;}
.y7_c00024{bottom:1083.285000px;}
.y2_c00024{bottom:1165.005000px;}
.h4_c00024{height:20.880000px;}
.h3_c00024{height:70.664062px;}
.h2_c00024{height:1237.365000px;}
.h0_c00024{height:1262.835000px;}
.h1_c00024{height:1263.000000px;}
.w3_c00024{width:18.000000px;}
.w2_c00024{width:867.465000px;}
.w0_c00024{width:892.935000px;}
.w1_c00024{width:893.250000px;}
.x0_c00024{left:0.000000px;}
.x1_c00024{left:12.735000px;}
.x3_c00024{left:95.407800px;}
.x5_c00024{left:149.400150px;}
.x4_c00024{left:437.535000px;}
.x2_c00024{left:878.515800px;}
@media print{
.v0_c00024{vertical-align:0.000000pt;}
.ls0_c00024{letter-spacing:0.000000pt;}
.ws0_c00024{word-spacing:0.000000pt;}
._4_c00024{width:0.896000pt;}
._3_c00024{width:1.824000pt;}
._e_c00024{width:2.720000pt;}
._1_c00024{width:3.891200pt;}
._5_c00024{width:5.254400pt;}
._7_c00024{width:7.334400pt;}
._2_c00024{width:8.800000pt;}
._8_c00024{width:11.136000pt;}
._6_c00024{width:12.236800pt;}
._b_c00024{width:13.561600pt;}
._c_c00024{width:14.873600pt;}
._0_c00024{width:17.574400pt;}
._d_c00024{width:19.468800pt;}
._a_c00024{width:25.491200pt;}
._9_c00024{width:36.403200pt;}
.fs0_c00024{font-size:64.000000pt;}
.y0_c00024{bottom:0.000000pt;}
.y6_c00024{bottom:3.840000pt;}
.y1_c00024{bottom:11.320000pt;}
.y4_c00024{bottom:19.240000pt;}
.y3_c00024{bottom:37.480000pt;}
.y5_c00024{bottom:44.960000pt;}
.y22_c00024{bottom:98.920000pt;}
.y21_c00024{bottom:130.920000pt;}
.y20_c00024{bottom:162.920000pt;}
.y1f_c00024{bottom:194.920000pt;}
.y1e_c00024{bottom:226.920000pt;}
.y1d_c00024{bottom:258.920000pt;}
.y1c_c00024{bottom:290.920000pt;}
.y1b_c00024{bottom:322.920000pt;}
.y1a_c00024{bottom:354.920000pt;}
.y19_c00024{bottom:386.920000pt;}
.y18_c00024{bottom:418.920000pt;}
.y17_c00024{bottom:450.920000pt;}
.y16_c00024{bottom:482.920000pt;}
.y15_c00024{bottom:514.920000pt;}
.y14_c00024{bottom:546.920000pt;}
.y13_c00024{bottom:578.920000pt;}
.y12_c00024{bottom:610.920000pt;}
.y11_c00024{bottom:642.920000pt;}
.y10_c00024{bottom:674.920000pt;}
.yf_c00024{bottom:706.920000pt;}
.ye_c00024{bottom:738.920000pt;}
.yd_c00024{bottom:770.920000pt;}
.yc_c00024{bottom:802.920000pt;}
.yb_c00024{bottom:834.920000pt;}
.ya_c00024{bottom:866.920000pt;}
.y9_c00024{bottom:898.920000pt;}
.y8_c00024{bottom:930.920000pt;}
.y7_c00024{bottom:962.920000pt;}
.y2_c00024{bottom:1035.560000pt;}
.h4_c00024{height:18.560000pt;}
.h3_c00024{height:62.812500pt;}
.h2_c00024{height:1099.880000pt;}
.h0_c00024{height:1122.520000pt;}
.h1_c00024{height:1122.666667pt;}
.w3_c00024{width:16.000000pt;}
.w2_c00024{width:771.080000pt;}
.w0_c00024{width:793.720000pt;}
.w1_c00024{width:794.000000pt;}
.x0_c00024{left:0.000000pt;}
.x1_c00024{left:11.320000pt;}
.x3_c00024{left:84.806933pt;}
.x5_c00024{left:132.800133pt;}
.x4_c00024{left:388.920000pt;}
.x2_c00024{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_338ebd3095f31f293e69d419.woff2')format("woff");}.ff1_c00025{font-family:ff1_c00025;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00025;src:url('chunks/assets/font_f9521fbc71d598f08eac58e4.woff2')format("woff");}.ff2_c00025{font-family:ff2_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;}
.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;}
.ls1_c00025{letter-spacing:0.000000px;}
.ls2_c00025{letter-spacing:0.014400px;}
.ls0_c00025{letter-spacing:0.036000px;}
.sc__c00025{text-shadow:none;}
.sc0_c00025{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00025{-webkit-text-stroke:0px transparent;}
.sc0_c00025{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00025{word-spacing:-18.036000px;}
.ws1_c00025{word-spacing:0.000000px;}
._4_c00025{width:1.008000px;}
._8_c00025{width:2.505600px;}
._7_c00025{width:4.312800px;}
._5_c00025{width:5.472000px;}
._a_c00025{width:6.609600px;}
._c_c00025{width:7.948800px;}
._2_c00025{width:9.086400px;}
._6_c00025{width:11.145600px;}
._3_c00025{width:12.283200px;}
._0_c00025{width:14.198400px;}
._1_c00025{width:16.963200px;}
._d_c00025{width:26.042400px;}
._9_c00025{width:28.677600px;}
._e_c00025{width:45.979200px;}
._f_c00025{width:46.987200px;}
._b_c00025{width:48.578400px;}
.fc1_c00025{color:transparent;}
.fc0_c00025{color:rgb(0,0,0);}
.fs0_c00025{font-size:72.000000px;}
.y0_c00025{bottom:0.000000px;}
.y6_c00025{bottom:4.320000px;}
.y1_c00025{bottom:12.735000px;}
.y4_c00025{bottom:21.645000px;}
.y3_c00025{bottom:42.165000px;}
.y5_c00025{bottom:50.580000px;}
.y22_c00025{bottom:111.285000px;}
.y21_c00025{bottom:147.285000px;}
.y20_c00025{bottom:183.285000px;}
.y1f_c00025{bottom:219.285000px;}
.y1e_c00025{bottom:255.285000px;}
.y1d_c00025{bottom:291.285000px;}
.y1c_c00025{bottom:327.285000px;}
.y1b_c00025{bottom:363.285000px;}
.y1a_c00025{bottom:399.285000px;}
.y19_c00025{bottom:435.285000px;}
.y18_c00025{bottom:471.285000px;}
.y17_c00025{bottom:507.285000px;}
.y16_c00025{bottom:543.285000px;}
.y15_c00025{bottom:579.285000px;}
.y14_c00025{bottom:615.285000px;}
.y13_c00025{bottom:651.285000px;}
.y12_c00025{bottom:687.285000px;}
.y11_c00025{bottom:723.285000px;}
.y10_c00025{bottom:759.285000px;}
.yf_c00025{bottom:795.285000px;}
.ye_c00025{bottom:831.285000px;}
.yd_c00025{bottom:867.285000px;}
.yc_c00025{bottom:903.285000px;}
.yb_c00025{bottom:939.285000px;}
.ya_c00025{bottom:975.285000px;}
.y9_c00025{bottom:1011.285000px;}
.y8_c00025{bottom:1047.285000px;}
.y7_c00025{bottom:1083.285000px;}
.y2_c00025{bottom:1165.005000px;}
.h4_c00025{height:20.880000px;}
.h3_c00025{height:70.664062px;}
.h2_c00025{height:1237.365000px;}
.h0_c00025{height:1262.835000px;}
.h1_c00025{height:1263.000000px;}
.w3_c00025{width:18.000000px;}
.w2_c00025{width:867.465000px;}
.w0_c00025{width:892.935000px;}
.w1_c00025{width:893.250000px;}
.x0_c00025{left:0.000000px;}
.x1_c00025{left:12.735000px;}
.x3_c00025{left:95.407800px;}
.x5_c00025{left:149.382150px;}
.x4_c00025{left:437.535000px;}
.x2_c00025{left:878.515800px;}
@media print{
.v0_c00025{vertical-align:0.000000pt;}
.ls1_c00025{letter-spacing:0.000000pt;}
.ls2_c00025{letter-spacing:0.012800pt;}
.ls0_c00025{letter-spacing:0.032000pt;}
.ws0_c00025{word-spacing:-16.032000pt;}
.ws1_c00025{word-spacing:0.000000pt;}
._4_c00025{width:0.896000pt;}
._8_c00025{width:2.227200pt;}
._7_c00025{width:3.833600pt;}
._5_c00025{width:4.864000pt;}
._a_c00025{width:5.875200pt;}
._c_c00025{width:7.065600pt;}
._2_c00025{width:8.076800pt;}
._6_c00025{width:9.907200pt;}
._3_c00025{width:10.918400pt;}
._0_c00025{width:12.620800pt;}
._1_c00025{width:15.078400pt;}
._d_c00025{width:23.148800pt;}
._9_c00025{width:25.491200pt;}
._e_c00025{width:40.870400pt;}
._f_c00025{width:41.766400pt;}
._b_c00025{width:43.180800pt;}
.fs0_c00025{font-size:64.000000pt;}
.y0_c00025{bottom:0.000000pt;}
.y6_c00025{bottom:3.840000pt;}
.y1_c00025{bottom:11.320000pt;}
.y4_c00025{bottom:19.240000pt;}
.y3_c00025{bottom:37.480000pt;}
.y5_c00025{bottom:44.960000pt;}
.y22_c00025{bottom:98.920000pt;}
.y21_c00025{bottom:130.920000pt;}
.y20_c00025{bottom:162.920000pt;}
.y1f_c00025{bottom:194.920000pt;}
.y1e_c00025{bottom:226.920000pt;}
.y1d_c00025{bottom:258.920000pt;}
.y1c_c00025{bottom:290.920000pt;}
.y1b_c00025{bottom:322.920000pt;}
.y1a_c00025{bottom:354.920000pt;}
.y19_c00025{bottom:386.920000pt;}
.y18_c00025{bottom:418.920000pt;}
.y17_c00025{bottom:450.920000pt;}
.y16_c00025{bottom:482.920000pt;}
.y15_c00025{bottom:514.920000pt;}
.y14_c00025{bottom:546.920000pt;}
.y13_c00025{bottom:578.920000pt;}
.y12_c00025{bottom:610.920000pt;}
.y11_c00025{bottom:642.920000pt;}
.y10_c00025{bottom:674.920000pt;}
.yf_c00025{bottom:706.920000pt;}
.ye_c00025{bottom:738.920000pt;}
.yd_c00025{bottom:770.920000pt;}
.yc_c00025{bottom:802.920000pt;}
.yb_c00025{bottom:834.920000pt;}
.ya_c00025{bottom:866.920000pt;}
.y9_c00025{bottom:898.920000pt;}
.y8_c00025{bottom:930.920000pt;}
.y7_c00025{bottom:962.920000pt;}
.y2_c00025{bottom:1035.560000pt;}
.h4_c00025{height:18.560000pt;}
.h3_c00025{height:62.812500pt;}
.h2_c00025{height:1099.880000pt;}
.h0_c00025{height:1122.520000pt;}
.h1_c00025{height:1122.666667pt;}
.w3_c00025{width:16.000000pt;}
.w2_c00025{width:771.080000pt;}
.w0_c00025{width:793.720000pt;}
.w1_c00025{width:794.000000pt;}
.x0_c00025{left:0.000000pt;}
.x1_c00025{left:11.320000pt;}
.x3_c00025{left:84.806933pt;}
.x5_c00025{left:132.784133pt;}
.x4_c00025{left:388.920000pt;}
.x2_c00025{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a70ae1ecb21f984ee462402.woff2')format("woff");}.ff1_c00026{font-family:ff1_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:ff2_c00026;src:url('chunks/assets/font_e71351145a2ccee7f700b87f.woff2')format("woff");}.ff2_c00026{font-family:ff2_c00026;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00026;src:url('chunks/assets/font_4ef0e697ff69589f0a887c8a.woff2')format("woff");}.ff3_c00026{font-family:ff3_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;}
.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;}
.ls0_c00026{letter-spacing:0.000000px;}
.sc__c00026{text-shadow:none;}
.sc0_c00026{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00026{-webkit-text-stroke:0px transparent;}
.sc0_c00026{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00026{word-spacing:0.000000px;}
._2_c00026{width:1.296000px;}
._3_c00026{width:3.196800px;}
._a_c00026{width:4.370400px;}
._0_c00026{width:5.551200px;}
._5_c00026{width:7.905600px;}
._d_c00026{width:8.971200px;}
._4_c00026{width:10.756800px;}
._9_c00026{width:11.800800px;}
._8_c00026{width:13.406400px;}
._6_c00026{width:15.148800px;}
._1_c00026{width:16.963200px;}
._e_c00026{width:19.116000px;}
._b_c00026{width:21.643200px;}
._7_c00026{width:25.884000px;}
._c_c00026{width:35.964000px;}
.fc1_c00026{color:transparent;}
.fc0_c00026{color:rgb(0,0,0);}
.fs0_c00026{font-size:72.000000px;}
.y0_c00026{bottom:0.000000px;}
.y6_c00026{bottom:4.320000px;}
.y1_c00026{bottom:12.735000px;}
.y4_c00026{bottom:21.645000px;}
.y3_c00026{bottom:42.165000px;}
.y5_c00026{bottom:50.580000px;}
.y22_c00026{bottom:111.285000px;}
.y21_c00026{bottom:147.285000px;}
.y20_c00026{bottom:183.285000px;}
.y1f_c00026{bottom:219.285000px;}
.y1e_c00026{bottom:255.285000px;}
.y1d_c00026{bottom:291.285000px;}
.y1c_c00026{bottom:327.285000px;}
.y1b_c00026{bottom:363.285000px;}
.y1a_c00026{bottom:399.285000px;}
.y19_c00026{bottom:435.285000px;}
.y18_c00026{bottom:471.285000px;}
.y17_c00026{bottom:507.285000px;}
.y16_c00026{bottom:543.285000px;}
.y15_c00026{bottom:579.285000px;}
.y14_c00026{bottom:615.285000px;}
.y13_c00026{bottom:651.285000px;}
.y12_c00026{bottom:687.285000px;}
.y11_c00026{bottom:723.285000px;}
.y10_c00026{bottom:759.285000px;}
.yf_c00026{bottom:795.285000px;}
.ye_c00026{bottom:831.285000px;}
.yd_c00026{bottom:867.285000px;}
.yc_c00026{bottom:903.285000px;}
.yb_c00026{bottom:939.285000px;}
.ya_c00026{bottom:975.285000px;}
.y9_c00026{bottom:1011.285000px;}
.y8_c00026{bottom:1047.285000px;}
.y7_c00026{bottom:1083.285000px;}
.y2_c00026{bottom:1165.005000px;}
.h4_c00026{height:20.880000px;}
.h3_c00026{height:70.664062px;}
.h2_c00026{height:1237.365000px;}
.h0_c00026{height:1262.835000px;}
.h1_c00026{height:1263.000000px;}
.w3_c00026{width:18.000000px;}
.w2_c00026{width:867.465000px;}
.w0_c00026{width:892.935000px;}
.w1_c00026{width:893.250000px;}
.x0_c00026{left:0.000000px;}
.x1_c00026{left:12.735000px;}
.x3_c00026{left:95.407800px;}
.x5_c00026{left:149.400150px;}
.x4_c00026{left:437.535000px;}
.x2_c00026{left:878.515800px;}
@media print{
.v0_c00026{vertical-align:0.000000pt;}
.ls0_c00026{letter-spacing:0.000000pt;}
.ws0_c00026{word-spacing:0.000000pt;}
._2_c00026{width:1.152000pt;}
._3_c00026{width:2.841600pt;}
._a_c00026{width:3.884800pt;}
._0_c00026{width:4.934400pt;}
._5_c00026{width:7.027200pt;}
._d_c00026{width:7.974400pt;}
._4_c00026{width:9.561600pt;}
._9_c00026{width:10.489600pt;}
._8_c00026{width:11.916800pt;}
._6_c00026{width:13.465600pt;}
._1_c00026{width:15.078400pt;}
._e_c00026{width:16.992000pt;}
._b_c00026{width:19.238400pt;}
._7_c00026{width:23.008000pt;}
._c_c00026{width:31.968000pt;}
.fs0_c00026{font-size:64.000000pt;}
.y0_c00026{bottom:0.000000pt;}
.y6_c00026{bottom:3.840000pt;}
.y1_c00026{bottom:11.320000pt;}
.y4_c00026{bottom:19.240000pt;}
.y3_c00026{bottom:37.480000pt;}
.y5_c00026{bottom:44.960000pt;}
.y22_c00026{bottom:98.920000pt;}
.y21_c00026{bottom:130.920000pt;}
.y20_c00026{bottom:162.920000pt;}
.y1f_c00026{bottom:194.920000pt;}
.y1e_c00026{bottom:226.920000pt;}
.y1d_c00026{bottom:258.920000pt;}
.y1c_c00026{bottom:290.920000pt;}
.y1b_c00026{bottom:322.920000pt;}
.y1a_c00026{bottom:354.920000pt;}
.y19_c00026{bottom:386.920000pt;}
.y18_c00026{bottom:418.920000pt;}
.y17_c00026{bottom:450.920000pt;}
.y16_c00026{bottom:482.920000pt;}
.y15_c00026{bottom:514.920000pt;}
.y14_c00026{bottom:546.920000pt;}
.y13_c00026{bottom:578.920000pt;}
.y12_c00026{bottom:610.920000pt;}
.y11_c00026{bottom:642.920000pt;}
.y10_c00026{bottom:674.920000pt;}
.yf_c00026{bottom:706.920000pt;}
.ye_c00026{bottom:738.920000pt;}
.yd_c00026{bottom:770.920000pt;}
.yc_c00026{bottom:802.920000pt;}
.yb_c00026{bottom:834.920000pt;}
.ya_c00026{bottom:866.920000pt;}
.y9_c00026{bottom:898.920000pt;}
.y8_c00026{bottom:930.920000pt;}
.y7_c00026{bottom:962.920000pt;}
.y2_c00026{bottom:1035.560000pt;}
.h4_c00026{height:18.560000pt;}
.h3_c00026{height:62.812500pt;}
.h2_c00026{height:1099.880000pt;}
.h0_c00026{height:1122.520000pt;}
.h1_c00026{height:1122.666667pt;}
.w3_c00026{width:16.000000pt;}
.w2_c00026{width:771.080000pt;}
.w0_c00026{width:793.720000pt;}
.w1_c00026{width:794.000000pt;}
.x0_c00026{left:0.000000pt;}
.x1_c00026{left:11.320000pt;}
.x3_c00026{left:84.806933pt;}
.x5_c00026{left:132.800133pt;}
.x4_c00026{left:388.920000pt;}
.x2_c00026{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_413cda2d250c34bff14f7e45.woff2')format("woff");}.ff1_c00027{font-family:ff1_c00027;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00027;src:url('chunks/assets/font_20ac9108f658e3ab58571a2d.woff2')format("woff");}.ff2_c00027{font-family:ff2_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:ff3_c00027;src:url('chunks/assets/font_3e022a35c7a0b6fd8efe91be.woff2')format("woff");}.ff3_c00027{font-family:ff3_c00027;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00027{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00027{vertical-align:0.000000px;}
.ls0_c00027{letter-spacing:0.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;}
}
.ws0_c00027{word-spacing:0.000000px;}
._a_c00027{width:1.094400px;}
._5_c00027{width:2.210400px;}
._0_c00027{width:3.880800px;}
._2_c00027{width:5.508000px;}
._1_c00027{width:7.884000px;}
._6_c00027{width:10.972800px;}
._7_c00027{width:12.326400px;}
._9_c00027{width:14.407200px;}
._3_c00027{width:16.329600px;}
._b_c00027{width:21.427200px;}
._4_c00027{width:23.508000px;}
._d_c00027{width:27.540000px;}
._e_c00027{width:28.648800px;}
._8_c00027{width:35.352000px;}
._c_c00027{width:68.918400px;}
.fc1_c00027{color:transparent;}
.fc0_c00027{color:rgb(0,0,0);}
.fs0_c00027{font-size:72.000000px;}
.y0_c00027{bottom:0.000000px;}
.y6_c00027{bottom:4.320000px;}
.y1_c00027{bottom:12.735000px;}
.y4_c00027{bottom:21.645000px;}
.y3_c00027{bottom:42.165000px;}
.y5_c00027{bottom:50.580000px;}
.y22_c00027{bottom:111.285000px;}
.y21_c00027{bottom:147.285000px;}
.y20_c00027{bottom:183.285000px;}
.y1f_c00027{bottom:219.285000px;}
.y1e_c00027{bottom:255.285000px;}
.y1d_c00027{bottom:291.285000px;}
.y1c_c00027{bottom:327.285000px;}
.y1b_c00027{bottom:363.285000px;}
.y1a_c00027{bottom:399.285000px;}
.y19_c00027{bottom:435.285000px;}
.y18_c00027{bottom:471.285000px;}
.y17_c00027{bottom:507.285000px;}
.y16_c00027{bottom:543.285000px;}
.y15_c00027{bottom:579.285000px;}
.y14_c00027{bottom:615.285000px;}
.y13_c00027{bottom:651.285000px;}
.y12_c00027{bottom:687.285000px;}
.y11_c00027{bottom:723.285000px;}
.y10_c00027{bottom:759.285000px;}
.yf_c00027{bottom:795.285000px;}
.ye_c00027{bottom:831.285000px;}
.yd_c00027{bottom:867.285000px;}
.yc_c00027{bottom:903.285000px;}
.yb_c00027{bottom:939.285000px;}
.ya_c00027{bottom:975.285000px;}
.y9_c00027{bottom:1011.285000px;}
.y8_c00027{bottom:1047.285000px;}
.y7_c00027{bottom:1083.285000px;}
.y2_c00027{bottom:1165.005000px;}
.h4_c00027{height:20.880000px;}
.h3_c00027{height:70.664062px;}
.h2_c00027{height:1237.365000px;}
.h0_c00027{height:1262.835000px;}
.h1_c00027{height:1263.000000px;}
.w3_c00027{width:18.000000px;}
.w2_c00027{width:867.465000px;}
.w0_c00027{width:892.935000px;}
.w1_c00027{width:893.250000px;}
.x0_c00027{left:0.000000px;}
.x1_c00027{left:12.735000px;}
.x3_c00027{left:95.407800px;}
.x5_c00027{left:149.400150px;}
.x4_c00027{left:437.535000px;}
.x2_c00027{left:878.515800px;}
@media print{
.v0_c00027{vertical-align:0.000000pt;}
.ls0_c00027{letter-spacing:0.000000pt;}
.ws0_c00027{word-spacing:0.000000pt;}
._a_c00027{width:0.972800pt;}
._5_c00027{width:1.964800pt;}
._0_c00027{width:3.449600pt;}
._2_c00027{width:4.896000pt;}
._1_c00027{width:7.008000pt;}
._6_c00027{width:9.753600pt;}
._7_c00027{width:10.956800pt;}
._9_c00027{width:12.806400pt;}
._3_c00027{width:14.515200pt;}
._b_c00027{width:19.046400pt;}
._4_c00027{width:20.896000pt;}
._d_c00027{width:24.480000pt;}
._e_c00027{width:25.465600pt;}
._8_c00027{width:31.424000pt;}
._c_c00027{width:61.260800pt;}
.fs0_c00027{font-size:64.000000pt;}
.y0_c00027{bottom:0.000000pt;}
.y6_c00027{bottom:3.840000pt;}
.y1_c00027{bottom:11.320000pt;}
.y4_c00027{bottom:19.240000pt;}
.y3_c00027{bottom:37.480000pt;}
.y5_c00027{bottom:44.960000pt;}
.y22_c00027{bottom:98.920000pt;}
.y21_c00027{bottom:130.920000pt;}
.y20_c00027{bottom:162.920000pt;}
.y1f_c00027{bottom:194.920000pt;}
.y1e_c00027{bottom:226.920000pt;}
.y1d_c00027{bottom:258.920000pt;}
.y1c_c00027{bottom:290.920000pt;}
.y1b_c00027{bottom:322.920000pt;}
.y1a_c00027{bottom:354.920000pt;}
.y19_c00027{bottom:386.920000pt;}
.y18_c00027{bottom:418.920000pt;}
.y17_c00027{bottom:450.920000pt;}
.y16_c00027{bottom:482.920000pt;}
.y15_c00027{bottom:514.920000pt;}
.y14_c00027{bottom:546.920000pt;}
.y13_c00027{bottom:578.920000pt;}
.y12_c00027{bottom:610.920000pt;}
.y11_c00027{bottom:642.920000pt;}
.y10_c00027{bottom:674.920000pt;}
.yf_c00027{bottom:706.920000pt;}
.ye_c00027{bottom:738.920000pt;}
.yd_c00027{bottom:770.920000pt;}
.yc_c00027{bottom:802.920000pt;}
.yb_c00027{bottom:834.920000pt;}
.ya_c00027{bottom:866.920000pt;}
.y9_c00027{bottom:898.920000pt;}
.y8_c00027{bottom:930.920000pt;}
.y7_c00027{bottom:962.920000pt;}
.y2_c00027{bottom:1035.560000pt;}
.h4_c00027{height:18.560000pt;}
.h3_c00027{height:62.812500pt;}
.h2_c00027{height:1099.880000pt;}
.h0_c00027{height:1122.520000pt;}
.h1_c00027{height:1122.666667pt;}
.w3_c00027{width:16.000000pt;}
.w2_c00027{width:771.080000pt;}
.w0_c00027{width:793.720000pt;}
.w1_c00027{width:794.000000pt;}
.x0_c00027{left:0.000000pt;}
.x1_c00027{left:11.320000pt;}
.x3_c00027{left:84.806933pt;}
.x5_c00027{left:132.800133pt;}
.x4_c00027{left:388.920000pt;}
.x2_c00027{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80e104917ac27858873332f9.woff2')format("woff");}.ff1_c00028{font-family:ff1_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:ff2_c00028;src:url('chunks/assets/font_6f6d9e43afdc918b42bd2110.woff2')format("woff");}.ff2_c00028{font-family:ff2_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:ff3_c00028;src:url('chunks/assets/font_9a6fff92f3c2422537acf936.woff2')format("woff");}.ff3_c00028{font-family:ff3_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;}
.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;}
.ls0_c00028{letter-spacing:0.000000px;}
.sc__c00028{text-shadow:none;}
.sc0_c00028{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00028{-webkit-text-stroke:0px transparent;}
.sc0_c00028{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00028{word-spacing:0.000000px;}
._5_c00028{width:1.951200px;}
._2_c00028{width:3.232800px;}
._4_c00028{width:4.284000px;}
._a_c00028{width:5.875200px;}
._7_c00028{width:8.539200px;}
._b_c00028{width:9.619200px;}
._c_c00028{width:11.520000px;}
._3_c00028{width:12.967200px;}
._8_c00028{width:14.450400px;}
._1_c00028{width:15.480000px;}
._0_c00028{width:19.159200px;}
._6_c00028{width:25.588800px;}
._9_c00028{width:27.136800px;}
._d_c00028{width:28.735200px;}
.fc1_c00028{color:transparent;}
.fc0_c00028{color:rgb(0,0,0);}
.fs0_c00028{font-size:72.000000px;}
.y0_c00028{bottom:0.000000px;}
.y6_c00028{bottom:4.320000px;}
.y1_c00028{bottom:12.735000px;}
.y4_c00028{bottom:21.645000px;}
.y3_c00028{bottom:42.165000px;}
.y5_c00028{bottom:50.580000px;}
.y22_c00028{bottom:111.285000px;}
.y21_c00028{bottom:147.285000px;}
.y20_c00028{bottom:183.285000px;}
.y1f_c00028{bottom:219.285000px;}
.y1e_c00028{bottom:255.285000px;}
.y1d_c00028{bottom:291.285000px;}
.y1c_c00028{bottom:327.285000px;}
.y1b_c00028{bottom:363.285000px;}
.y1a_c00028{bottom:399.285000px;}
.y19_c00028{bottom:435.285000px;}
.y18_c00028{bottom:471.285000px;}
.y17_c00028{bottom:507.285000px;}
.y16_c00028{bottom:543.285000px;}
.y15_c00028{bottom:579.285000px;}
.y14_c00028{bottom:615.285000px;}
.y13_c00028{bottom:651.285000px;}
.y12_c00028{bottom:687.285000px;}
.y11_c00028{bottom:723.285000px;}
.y10_c00028{bottom:759.285000px;}
.yf_c00028{bottom:795.285000px;}
.ye_c00028{bottom:831.285000px;}
.yd_c00028{bottom:867.285000px;}
.yc_c00028{bottom:903.285000px;}
.yb_c00028{bottom:939.285000px;}
.ya_c00028{bottom:975.285000px;}
.y9_c00028{bottom:1011.285000px;}
.y8_c00028{bottom:1047.285000px;}
.y7_c00028{bottom:1083.285000px;}
.y2_c00028{bottom:1165.005000px;}
.h4_c00028{height:20.880000px;}
.h3_c00028{height:70.664062px;}
.h2_c00028{height:1237.365000px;}
.h0_c00028{height:1262.835000px;}
.h1_c00028{height:1263.000000px;}
.w3_c00028{width:18.000000px;}
.w2_c00028{width:867.465000px;}
.w0_c00028{width:892.935000px;}
.w1_c00028{width:893.250000px;}
.x0_c00028{left:0.000000px;}
.x1_c00028{left:12.735000px;}
.x3_c00028{left:95.407800px;}
.x5_c00028{left:149.400150px;}
.x4_c00028{left:437.535000px;}
.x2_c00028{left:878.515800px;}
@media print{
.v0_c00028{vertical-align:0.000000pt;}
.ls0_c00028{letter-spacing:0.000000pt;}
.ws0_c00028{word-spacing:0.000000pt;}
._5_c00028{width:1.734400pt;}
._2_c00028{width:2.873600pt;}
._4_c00028{width:3.808000pt;}
._a_c00028{width:5.222400pt;}
._7_c00028{width:7.590400pt;}
._b_c00028{width:8.550400pt;}
._c_c00028{width:10.240000pt;}
._3_c00028{width:11.526400pt;}
._8_c00028{width:12.844800pt;}
._1_c00028{width:13.760000pt;}
._0_c00028{width:17.030400pt;}
._6_c00028{width:22.745600pt;}
._9_c00028{width:24.121600pt;}
._d_c00028{width:25.542400pt;}
.fs0_c00028{font-size:64.000000pt;}
.y0_c00028{bottom:0.000000pt;}
.y6_c00028{bottom:3.840000pt;}
.y1_c00028{bottom:11.320000pt;}
.y4_c00028{bottom:19.240000pt;}
.y3_c00028{bottom:37.480000pt;}
.y5_c00028{bottom:44.960000pt;}
.y22_c00028{bottom:98.920000pt;}
.y21_c00028{bottom:130.920000pt;}
.y20_c00028{bottom:162.920000pt;}
.y1f_c00028{bottom:194.920000pt;}
.y1e_c00028{bottom:226.920000pt;}
.y1d_c00028{bottom:258.920000pt;}
.y1c_c00028{bottom:290.920000pt;}
.y1b_c00028{bottom:322.920000pt;}
.y1a_c00028{bottom:354.920000pt;}
.y19_c00028{bottom:386.920000pt;}
.y18_c00028{bottom:418.920000pt;}
.y17_c00028{bottom:450.920000pt;}
.y16_c00028{bottom:482.920000pt;}
.y15_c00028{bottom:514.920000pt;}
.y14_c00028{bottom:546.920000pt;}
.y13_c00028{bottom:578.920000pt;}
.y12_c00028{bottom:610.920000pt;}
.y11_c00028{bottom:642.920000pt;}
.y10_c00028{bottom:674.920000pt;}
.yf_c00028{bottom:706.920000pt;}
.ye_c00028{bottom:738.920000pt;}
.yd_c00028{bottom:770.920000pt;}
.yc_c00028{bottom:802.920000pt;}
.yb_c00028{bottom:834.920000pt;}
.ya_c00028{bottom:866.920000pt;}
.y9_c00028{bottom:898.920000pt;}
.y8_c00028{bottom:930.920000pt;}
.y7_c00028{bottom:962.920000pt;}
.y2_c00028{bottom:1035.560000pt;}
.h4_c00028{height:18.560000pt;}
.h3_c00028{height:62.812500pt;}
.h2_c00028{height:1099.880000pt;}
.h0_c00028{height:1122.520000pt;}
.h1_c00028{height:1122.666667pt;}
.w3_c00028{width:16.000000pt;}
.w2_c00028{width:771.080000pt;}
.w0_c00028{width:793.720000pt;}
.w1_c00028{width:794.000000pt;}
.x0_c00028{left:0.000000pt;}
.x1_c00028{left:11.320000pt;}
.x3_c00028{left:84.806933pt;}
.x5_c00028{left:132.800133pt;}
.x4_c00028{left:388.920000pt;}
.x2_c00028{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_993e0b9ad90ed04fda8b2d5a.woff2')format("woff");}.ff1_c00029{font-family:ff1_c00029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00029;src:url('chunks/assets/font_f59ba69387263b58c7d4c41f.woff2')format("woff");}.ff2_c00029{font-family:ff2_c00029;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00029;src:url('chunks/assets/font_ba4a6b1082b43381951d81a5.woff2')format("woff");}.ff3_c00029{font-family:ff3_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;}
.m0_c00029{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00029{vertical-align:0.000000px;}
.ls1_c00029{letter-spacing:0.000000px;}
.ls0_c00029{letter-spacing:194.400000px;}
.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:0.000000px;}
._2_c00029{width:1.317600px;}
._4_c00029{width:2.800800px;}
._0_c00029{width:5.608800px;}
._3_c00029{width:6.904800px;}
._5_c00029{width:10.879200px;}
._1_c00029{width:19.080000px;}
.fc1_c00029{color:transparent;}
.fc0_c00029{color:rgb(0,0,0);}
.fs0_c00029{font-size:72.000000px;}
.y0_c00029{bottom:0.000000px;}
.y6_c00029{bottom:4.320000px;}
.y1_c00029{bottom:12.735000px;}
.y4_c00029{bottom:21.645000px;}
.y3_c00029{bottom:42.165000px;}
.y5_c00029{bottom:50.580000px;}
.y14_c00029{bottom:615.285000px;}
.y13_c00029{bottom:651.285000px;}
.y12_c00029{bottom:687.285000px;}
.y11_c00029{bottom:723.285000px;}
.y10_c00029{bottom:759.285000px;}
.yf_c00029{bottom:795.285000px;}
.ye_c00029{bottom:831.285000px;}
.yd_c00029{bottom:867.285000px;}
.yc_c00029{bottom:903.285000px;}
.yb_c00029{bottom:939.285000px;}
.ya_c00029{bottom:975.285000px;}
.y9_c00029{bottom:1011.285000px;}
.y8_c00029{bottom:1047.285000px;}
.y7_c00029{bottom:1083.285000px;}
.y2_c00029{bottom:1165.005000px;}
.h4_c00029{height:20.880000px;}
.h5_c00029{height:70.628906px;}
.h3_c00029{height:70.664062px;}
.h2_c00029{height:1237.365000px;}
.h0_c00029{height:1262.835000px;}
.h1_c00029{height:1263.000000px;}
.w3_c00029{width:18.000000px;}
.w2_c00029{width:867.465000px;}
.w0_c00029{width:892.935000px;}
.w1_c00029{width:893.250000px;}
.x0_c00029{left:0.000000px;}
.x1_c00029{left:12.735000px;}
.x3_c00029{left:95.407800px;}
.x5_c00029{left:149.400150px;}
.x4_c00029{left:437.535000px;}
.x2_c00029{left:878.515800px;}
@media print{
.v0_c00029{vertical-align:0.000000pt;}
.ls1_c00029{letter-spacing:0.000000pt;}
.ls0_c00029{letter-spacing:172.800000pt;}
.ws0_c00029{word-spacing:0.000000pt;}
._2_c00029{width:1.171200pt;}
._4_c00029{width:2.489600pt;}
._0_c00029{width:4.985600pt;}
._3_c00029{width:6.137600pt;}
._5_c00029{width:9.670400pt;}
._1_c00029{width:16.960000pt;}
.fs0_c00029{font-size:64.000000pt;}
.y0_c00029{bottom:0.000000pt;}
.y6_c00029{bottom:3.840000pt;}
.y1_c00029{bottom:11.320000pt;}
.y4_c00029{bottom:19.240000pt;}
.y3_c00029{bottom:37.480000pt;}
.y5_c00029{bottom:44.960000pt;}
.y14_c00029{bottom:546.920000pt;}
.y13_c00029{bottom:578.920000pt;}
.y12_c00029{bottom:610.920000pt;}
.y11_c00029{bottom:642.920000pt;}
.y10_c00029{bottom:674.920000pt;}
.yf_c00029{bottom:706.920000pt;}
.ye_c00029{bottom:738.920000pt;}
.yd_c00029{bottom:770.920000pt;}
.yc_c00029{bottom:802.920000pt;}
.yb_c00029{bottom:834.920000pt;}
.ya_c00029{bottom:866.920000pt;}
.y9_c00029{bottom:898.920000pt;}
.y8_c00029{bottom:930.920000pt;}
.y7_c00029{bottom:962.920000pt;}
.y2_c00029{bottom:1035.560000pt;}
.h4_c00029{height:18.560000pt;}
.h5_c00029{height:62.781250pt;}
.h3_c00029{height:62.812500pt;}
.h2_c00029{height:1099.880000pt;}
.h0_c00029{height:1122.520000pt;}
.h1_c00029{height:1122.666667pt;}
.w3_c00029{width:16.000000pt;}
.w2_c00029{width:771.080000pt;}
.w0_c00029{width:793.720000pt;}
.w1_c00029{width:794.000000pt;}
.x0_c00029{left:0.000000pt;}
.x1_c00029{left:11.320000pt;}
.x3_c00029{left:84.806933pt;}
.x5_c00029{left:132.800133pt;}
.x4_c00029{left:388.920000pt;}
.x2_c00029{left:780.902933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00030{font-family:ff1_c00030;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00030;src:url('chunks/assets/font_6f143da2870689e7ac0a3835.woff2')format("woff");}.ff2_c00030{font-family:ff2_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:ff3_c00030;src:url('chunks/assets/font_0021c6ddca95f4dc2ee494b6.woff2')format("woff");}.ff3_c00030{font-family:ff3_c00030;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00030;src:url('chunks/assets/font_7e54e202063f477fa6dbf4bc.woff2')format("woff");}.ff4_c00030{font-family:ff4_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:ff5_c00030;src:url('chunks/assets/font_c27b61691266b898db1a3312.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;}
.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;}
.ls5_c00030{letter-spacing:-0.043200px;}
.ls6_c00030{letter-spacing:-0.036000px;}
.ls4_c00030{letter-spacing:-0.021600px;}
.ls1_c00030{letter-spacing:0.000000px;}
.ls3_c00030{letter-spacing:0.062208px;}
.ls0_c00030{letter-spacing:0.194400px;}
.ls2_c00030{letter-spacing:0.203184px;}
.sc__c00030{text-shadow:none;}
.sc0_c00030{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00030{-webkit-text-stroke:0px transparent;}
.sc0_c00030{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00030{word-spacing:0.000000px;}
._0_c00030{margin-left:-1.010880px;}
._1_c00030{width:1.321920px;}
._3_c00030{width:2.570400px;}
._4_c00030{width:3.607200px;}
._6_c00030{width:5.450400px;}
._2_c00030{width:6.746400px;}
._7_c00030{width:7.776000px;}
._5_c00030{width:8.827200px;}
.fc1_c00030{color:transparent;}
.fc0_c00030{color:rgb(0,0,0);}
.fs0_c00030{font-size:72.000000px;}
.fs2_c00030{font-size:77.760000px;}
.fs1_c00030{font-size:119.520000px;}
.y0_c00030{bottom:0.000000px;}
.y6_c00030{bottom:5.040000px;}
.y1_c00030{bottom:12.735000px;}
.y4_c00030{bottom:31.725000px;}
.y3_c00030{bottom:42.525000px;}
.y5_c00030{bottom:51.300000px;}
.y21_c00030{bottom:156.285000px;}
.y20_c00030{bottom:192.285000px;}
.y1f_c00030{bottom:228.285000px;}
.y1e_c00030{bottom:264.285000px;}
.y1d_c00030{bottom:300.285000px;}
.y1c_c00030{bottom:336.285000px;}
.y1b_c00030{bottom:372.285000px;}
.y1a_c00030{bottom:408.285000px;}
.y19_c00030{bottom:444.285000px;}
.y18_c00030{bottom:480.285000px;}
.y17_c00030{bottom:516.285000px;}
.y16_c00030{bottom:552.285000px;}
.y15_c00030{bottom:588.285000px;}
.y14_c00030{bottom:624.285000px;}
.y13_c00030{bottom:660.285000px;}
.y12_c00030{bottom:696.285000px;}
.y11_c00030{bottom:732.285000px;}
.y10_c00030{bottom:768.285000px;}
.yf_c00030{bottom:804.285000px;}
.ye_c00030{bottom:840.285000px;}
.yd_c00030{bottom:876.285000px;}
.yc_c00030{bottom:912.285000px;}
.yb_c00030{bottom:948.285000px;}
.ya_c00030{bottom:984.645000px;}
.y9_c00030{bottom:1030.725000px;}
.y8_c00030{bottom:1054.125000px;}
.y7_c00030{bottom:1098.045000px;}
.y2_c00030{bottom:1165.365000px;}
.h5_c00030{height:20.880000px;}
.h3_c00030{height:47.988281px;}
.h4_c00030{height:48.645000px;}
.ha_c00030{height:70.628906px;}
.h6_c00030{height:70.664062px;}
.h7_c00030{height:72.562500px;}
.h9_c00030{height:78.367500px;}
.h8_c00030{height:120.453750px;}
.h2_c00030{height:1237.365000px;}
.h0_c00030{height:1262.835000px;}
.h1_c00030{height:1263.000000px;}
.w3_c00030{width:13.320000px;}
.w4_c00030{width:18.000000px;}
.w2_c00030{width:867.465000px;}
.w0_c00030{width:892.935000px;}
.w1_c00030{width:893.250000px;}
.x0_c00030{left:0.000000px;}
.x1_c00030{left:12.735000px;}
.x3_c00030{left:95.406300px;}
.x9_c00030{left:149.394150px;}
.x7_c00030{left:209.009700px;}
.x6_c00030{left:421.975350px;}
.x8_c00030{left:433.650150px;}
.x5_c00030{left:437.535000px;}
.x4_c00030{left:439.695000px;}
.x2_c00030{left:878.550300px;}
@media print{
.v0_c00030{vertical-align:0.000000pt;}
.ls5_c00030{letter-spacing:-0.038400pt;}
.ls6_c00030{letter-spacing:-0.032000pt;}
.ls4_c00030{letter-spacing:-0.019200pt;}
.ls1_c00030{letter-spacing:0.000000pt;}
.ls3_c00030{letter-spacing:0.055296pt;}
.ls0_c00030{letter-spacing:0.172800pt;}
.ls2_c00030{letter-spacing:0.180608pt;}
.ws0_c00030{word-spacing:0.000000pt;}
._0_c00030{margin-left:-0.898560pt;}
._1_c00030{width:1.175040pt;}
._3_c00030{width:2.284800pt;}
._4_c00030{width:3.206400pt;}
._6_c00030{width:4.844800pt;}
._2_c00030{width:5.996800pt;}
._7_c00030{width:6.912000pt;}
._5_c00030{width:7.846400pt;}
.fs0_c00030{font-size:64.000000pt;}
.fs2_c00030{font-size:69.120000pt;}
.fs1_c00030{font-size:106.240000pt;}
.y0_c00030{bottom:0.000000pt;}
.y6_c00030{bottom:4.480000pt;}
.y1_c00030{bottom:11.320000pt;}
.y4_c00030{bottom:28.200000pt;}
.y3_c00030{bottom:37.800000pt;}
.y5_c00030{bottom:45.600000pt;}
.y21_c00030{bottom:138.920000pt;}
.y20_c00030{bottom:170.920000pt;}
.y1f_c00030{bottom:202.920000pt;}
.y1e_c00030{bottom:234.920000pt;}
.y1d_c00030{bottom:266.920000pt;}
.y1c_c00030{bottom:298.920000pt;}
.y1b_c00030{bottom:330.920000pt;}
.y1a_c00030{bottom:362.920000pt;}
.y19_c00030{bottom:394.920000pt;}
.y18_c00030{bottom:426.920000pt;}
.y17_c00030{bottom:458.920000pt;}
.y16_c00030{bottom:490.920000pt;}
.y15_c00030{bottom:522.920000pt;}
.y14_c00030{bottom:554.920000pt;}
.y13_c00030{bottom:586.920000pt;}
.y12_c00030{bottom:618.920000pt;}
.y11_c00030{bottom:650.920000pt;}
.y10_c00030{bottom:682.920000pt;}
.yf_c00030{bottom:714.920000pt;}
.ye_c00030{bottom:746.920000pt;}
.yd_c00030{bottom:778.920000pt;}
.yc_c00030{bottom:810.920000pt;}
.yb_c00030{bottom:842.920000pt;}
.ya_c00030{bottom:875.240000pt;}
.y9_c00030{bottom:916.200000pt;}
.y8_c00030{bottom:937.000000pt;}
.y7_c00030{bottom:976.040000pt;}
.y2_c00030{bottom:1035.880000pt;}
.h5_c00030{height:18.560000pt;}
.h3_c00030{height:42.656250pt;}
.h4_c00030{height:43.240000pt;}
.ha_c00030{height:62.781250pt;}
.h6_c00030{height:62.812500pt;}
.h7_c00030{height:64.500000pt;}
.h9_c00030{height:69.660000pt;}
.h8_c00030{height:107.070000pt;}
.h2_c00030{height:1099.880000pt;}
.h0_c00030{height:1122.520000pt;}
.h1_c00030{height:1122.666667pt;}
.w3_c00030{width:11.840000pt;}
.w4_c00030{width:16.000000pt;}
.w2_c00030{width:771.080000pt;}
.w0_c00030{width:793.720000pt;}
.w1_c00030{width:794.000000pt;}
.x0_c00030{left:0.000000pt;}
.x1_c00030{left:11.320000pt;}
.x3_c00030{left:84.805600pt;}
.x9_c00030{left:132.794800pt;}
.x7_c00030{left:185.786400pt;}
.x6_c00030{left:375.089200pt;}
.x8_c00030{left:385.466800pt;}
.x5_c00030{left:388.920000pt;}
.x4_c00030{left:390.840000pt;}
.x2_c00030{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00031{font-family:ff1_c00031;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00031;src:url('chunks/assets/font_b34e28ebbf2fe173b4f9c970.woff2')format("woff");}.ff2_c00031{font-family:ff2_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:ff3_c00031;src:url('chunks/assets/font_8a54f2653ea48cbd0b78ae9e.woff2')format("woff");}.ff3_c00031{font-family:ff3_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;}
.m0_c00031{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00031{vertical-align:0.000000px;}
.ls2_c00031{letter-spacing:-0.093600px;}
.ls4_c00031{letter-spacing:-0.079200px;}
.ls3_c00031{letter-spacing:-0.072000px;}
.ls1_c00031{letter-spacing:0.000000px;}
.ls5_c00031{letter-spacing:1.504800px;}
.ls0_c00031{letter-spacing:1.512000px;}
.sc__c00031{text-shadow:none;}
.sc0_c00031{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00031{-webkit-text-stroke:0px transparent;}
.sc0_c00031{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00031{word-spacing:-17.928000px;}
.ws1_c00031{word-spacing:0.000000px;}
._7_c00031{margin-left:-1.886400px;}
._4_c00031{width:1.353600px;}
._0_c00031{width:3.081600px;}
._2_c00031{width:4.795200px;}
._6_c00031{width:6.796800px;}
._5_c00031{width:7.920000px;}
._1_c00031{width:9.108000px;}
._8_c00031{width:11.332800px;}
._9_c00031{width:16.185600px;}
._3_c00031{width:26.632800px;}
.fc1_c00031{color:transparent;}
.fc0_c00031{color:rgb(0,0,0);}
.fs0_c00031{font-size:72.000000px;}
.y0_c00031{bottom:0.000000px;}
.y5_c00031{bottom:4.320000px;}
.y1_c00031{bottom:12.735000px;}
.y3_c00031{bottom:42.524850px;}
.y6_c00031{bottom:42.885000px;}
.y4_c00031{bottom:50.940000px;}
.y1a_c00031{bottom:427.725000px;}
.y19_c00031{bottom:448.965000px;}
.y18_c00031{bottom:470.565000px;}
.y17_c00031{bottom:506.565000px;}
.y16_c00031{bottom:542.565000px;}
.y15_c00031{bottom:578.565000px;}
.y14_c00031{bottom:614.565000px;}
.y13_c00031{bottom:650.565000px;}
.y12_c00031{bottom:686.565000px;}
.y11_c00031{bottom:722.565000px;}
.y10_c00031{bottom:758.565000px;}
.yf_c00031{bottom:794.565000px;}
.ye_c00031{bottom:830.565000px;}
.yd_c00031{bottom:866.565000px;}
.yc_c00031{bottom:902.565000px;}
.yb_c00031{bottom:938.565000px;}
.ya_c00031{bottom:974.565000px;}
.y9_c00031{bottom:1010.565000px;}
.y8_c00031{bottom:1046.565000px;}
.y7_c00031{bottom:1082.565000px;}
.y2_c00031{bottom:1163.924850px;}
.h4_c00031{height:21.240000px;}
.h3_c00031{height:47.988281px;}
.h5_c00031{height:59.085000px;}
.h6_c00031{height:70.664062px;}
.h2_c00031{height:1237.365000px;}
.h0_c00031{height:1262.835000px;}
.h1_c00031{height:1263.000000px;}
.w3_c00031{width:13.320000px;}
.w4_c00031{width:18.000000px;}
.w2_c00031{width:867.465000px;}
.w0_c00031{width:892.935000px;}
.w1_c00031{width:893.250000px;}
.x0_c00031{left:0.000000px;}
.x1_c00031{left:12.735000px;}
.x3_c00031{left:95.406300px;}
.x6_c00031{left:149.400150px;}
.x5_c00031{left:437.535000px;}
.x4_c00031{left:439.695000px;}
.x2_c00031{left:892.050300px;}
@media print{
.v0_c00031{vertical-align:0.000000pt;}
.ls2_c00031{letter-spacing:-0.083200pt;}
.ls4_c00031{letter-spacing:-0.070400pt;}
.ls3_c00031{letter-spacing:-0.064000pt;}
.ls1_c00031{letter-spacing:0.000000pt;}
.ls5_c00031{letter-spacing:1.337600pt;}
.ls0_c00031{letter-spacing:1.344000pt;}
.ws0_c00031{word-spacing:-15.936000pt;}
.ws1_c00031{word-spacing:0.000000pt;}
._7_c00031{margin-left:-1.676800pt;}
._4_c00031{width:1.203200pt;}
._0_c00031{width:2.739200pt;}
._2_c00031{width:4.262400pt;}
._6_c00031{width:6.041600pt;}
._5_c00031{width:7.040000pt;}
._1_c00031{width:8.096000pt;}
._8_c00031{width:10.073600pt;}
._9_c00031{width:14.387200pt;}
._3_c00031{width:23.673600pt;}
.fs0_c00031{font-size:64.000000pt;}
.y0_c00031{bottom:0.000000pt;}
.y5_c00031{bottom:3.840000pt;}
.y1_c00031{bottom:11.320000pt;}
.y3_c00031{bottom:37.799867pt;}
.y6_c00031{bottom:38.120000pt;}
.y4_c00031{bottom:45.280000pt;}
.y1a_c00031{bottom:380.200000pt;}
.y19_c00031{bottom:399.080000pt;}
.y18_c00031{bottom:418.280000pt;}
.y17_c00031{bottom:450.280000pt;}
.y16_c00031{bottom:482.280000pt;}
.y15_c00031{bottom:514.280000pt;}
.y14_c00031{bottom:546.280000pt;}
.y13_c00031{bottom:578.280000pt;}
.y12_c00031{bottom:610.280000pt;}
.y11_c00031{bottom:642.280000pt;}
.y10_c00031{bottom:674.280000pt;}
.yf_c00031{bottom:706.280000pt;}
.ye_c00031{bottom:738.280000pt;}
.yd_c00031{bottom:770.280000pt;}
.yc_c00031{bottom:802.280000pt;}
.yb_c00031{bottom:834.280000pt;}
.ya_c00031{bottom:866.280000pt;}
.y9_c00031{bottom:898.280000pt;}
.y8_c00031{bottom:930.280000pt;}
.y7_c00031{bottom:962.280000pt;}
.y2_c00031{bottom:1034.599867pt;}
.h4_c00031{height:18.880000pt;}
.h3_c00031{height:42.656250pt;}
.h5_c00031{height:52.520000pt;}
.h6_c00031{height:62.812500pt;}
.h2_c00031{height:1099.880000pt;}
.h0_c00031{height:1122.520000pt;}
.h1_c00031{height:1122.666667pt;}
.w3_c00031{width:11.840000pt;}
.w4_c00031{width:16.000000pt;}
.w2_c00031{width:771.080000pt;}
.w0_c00031{width:793.720000pt;}
.w1_c00031{width:794.000000pt;}
.x0_c00031{left:0.000000pt;}
.x1_c00031{left:11.320000pt;}
.x3_c00031{left:84.805600pt;}
.x6_c00031{left:132.800133pt;}
.x5_c00031{left:388.920000pt;}
.x4_c00031{left:390.840000pt;}
.x2_c00031{left:792.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00032{font-family:ff1_c00032;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00032;src:url('chunks/assets/font_fcdb1171e4ac92068e489d0c.woff2')format("woff");}.ff2_c00032{font-family:ff2_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;}
.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;}
.ls0_c00032{letter-spacing:0.000000px;}
.sc__c00032{text-shadow:none;}
.sc0_c00032{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00032{-webkit-text-stroke:0px transparent;}
.sc0_c00032{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00032{word-spacing:0.000000px;}
.fc1_c00032{color:transparent;}
.fc0_c00032{color:rgb(0,0,0);}
.fs0_c00032{font-size:72.000000px;}
.y0_c00032{bottom:0.000000px;}
.y6_c00032{bottom:5.040000px;}
.y1_c00032{bottom:12.735000px;}
.y4_c00032{bottom:31.725000px;}
.y3_c00032{bottom:42.525000px;}
.y5_c00032{bottom:51.300000px;}
.y8_c00032{bottom:1077.165000px;}
.y7_c00032{bottom:1098.045000px;}
.y2_c00032{bottom:1165.365000px;}
.h5_c00032{height:20.880000px;}
.h3_c00032{height:47.988281px;}
.h4_c00032{height:48.645000px;}
.h6_c00032{height:70.664062px;}
.h2_c00032{height:1237.365000px;}
.h0_c00032{height:1262.835000px;}
.h1_c00032{height:1263.000000px;}
.w3_c00032{width:13.320000px;}
.w4_c00032{width:18.000000px;}
.w2_c00032{width:867.465000px;}
.w0_c00032{width:892.935000px;}
.w1_c00032{width:893.250000px;}
.x0_c00032{left:0.000000px;}
.x1_c00032{left:12.735000px;}
.x3_c00032{left:95.406300px;}
.x5_c00032{left:437.535000px;}
.x4_c00032{left:439.695000px;}
.x2_c00032{left:878.550300px;}
@media print{
.v0_c00032{vertical-align:0.000000pt;}
.ls0_c00032{letter-spacing:0.000000pt;}
.ws0_c00032{word-spacing:0.000000pt;}
.fs0_c00032{font-size:64.000000pt;}
.y0_c00032{bottom:0.000000pt;}
.y6_c00032{bottom:4.480000pt;}
.y1_c00032{bottom:11.320000pt;}
.y4_c00032{bottom:28.200000pt;}
.y3_c00032{bottom:37.800000pt;}
.y5_c00032{bottom:45.600000pt;}
.y8_c00032{bottom:957.480000pt;}
.y7_c00032{bottom:976.040000pt;}
.y2_c00032{bottom:1035.880000pt;}
.h5_c00032{height:18.560000pt;}
.h3_c00032{height:42.656250pt;}
.h4_c00032{height:43.240000pt;}
.h6_c00032{height:62.812500pt;}
.h2_c00032{height:1099.880000pt;}
.h0_c00032{height:1122.520000pt;}
.h1_c00032{height:1122.666667pt;}
.w3_c00032{width:11.840000pt;}
.w4_c00032{width:16.000000pt;}
.w2_c00032{width:771.080000pt;}
.w0_c00032{width:793.720000pt;}
.w1_c00032{width:794.000000pt;}
.x0_c00032{left:0.000000pt;}
.x1_c00032{left:11.320000pt;}
.x3_c00032{left:84.805600pt;}
.x5_c00032{left:388.920000pt;}
.x4_c00032{left:390.840000pt;}
.x2_c00032{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00033{font-family:ff1_c00033;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00033;src:url('chunks/assets/font_02c6986738311ff9e15cf1f9.woff2')format("woff");}.ff2_c00033{font-family:ff2_c00033;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00033;src:url('chunks/assets/font_08e60047f916822e7c1c8785.woff2')format("woff");}.ff3_c00033{font-family:ff3_c00033;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00033{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00033{vertical-align:0.000000px;}
.ls1_c00033{letter-spacing:0.000000px;}
.ls2_c00033{letter-spacing:0.203184px;}
.ls0_c00033{letter-spacing:0.310752px;}
.ls3_c00033{letter-spacing:0.322704px;}
.sc__c00033{text-shadow:none;}
.sc0_c00033{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00033{-webkit-text-stroke:0px transparent;}
.sc0_c00033{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00033{word-spacing:0.000000px;}
.fc1_c00033{color:transparent;}
.fc0_c00033{color:rgb(0,0,0);}
.fs0_c00033{font-size:72.000000px;}
.fs1_c00033{font-size:119.520000px;}
.y0_c00033{bottom:0.000000px;}
.y5_c00033{bottom:5.040000px;}
.y1_c00033{bottom:12.735000px;}
.y3_c00033{bottom:44.685000px;}
.y4_c00033{bottom:53.460000px;}
.yc_c00033{bottom:897.148800px;}
.yb_c00033{bottom:933.154200px;}
.ya_c00033{bottom:969.159600px;}
.y9_c00033{bottom:1005.165000px;}
.y8_c00033{bottom:1052.685000px;}
.y7_c00033{bottom:1089.045000px;}
.y6_c00033{bottom:1125.045000px;}
.y2_c00033{bottom:1165.365000px;}
.h4_c00033{height:20.880000px;}
.h3_c00033{height:47.988281px;}
.h5_c00033{height:70.664062px;}
.h6_c00033{height:120.453750px;}
.h2_c00033{height:1237.365000px;}
.h0_c00033{height:1262.835000px;}
.h1_c00033{height:1263.000000px;}
.w3_c00033{width:18.000000px;}
.w2_c00033{width:867.465000px;}
.w0_c00033{width:892.935000px;}
.w1_c00033{width:893.250000px;}
.x0_c00033{left:0.000000px;}
.x1_c00033{left:12.735000px;}
.x3_c00033{left:95.406300px;}
.x7_c00033{left:177.434100px;}
.x5_c00033{left:416.175300px;}
.x6_c00033{left:433.684980px;}
.x4_c00033{left:437.535000px;}
.x2_c00033{left:878.550300px;}
@media print{
.v0_c00033{vertical-align:0.000000pt;}
.ls1_c00033{letter-spacing:0.000000pt;}
.ls2_c00033{letter-spacing:0.180608pt;}
.ls0_c00033{letter-spacing:0.276224pt;}
.ls3_c00033{letter-spacing:0.286848pt;}
.ws0_c00033{word-spacing:0.000000pt;}
.fs0_c00033{font-size:64.000000pt;}
.fs1_c00033{font-size:106.240000pt;}
.y0_c00033{bottom:0.000000pt;}
.y5_c00033{bottom:4.480000pt;}
.y1_c00033{bottom:11.320000pt;}
.y3_c00033{bottom:39.720000pt;}
.y4_c00033{bottom:47.520000pt;}
.yc_c00033{bottom:797.465600pt;}
.yb_c00033{bottom:829.470400pt;}
.ya_c00033{bottom:861.475200pt;}
.y9_c00033{bottom:893.480000pt;}
.y8_c00033{bottom:935.720000pt;}
.y7_c00033{bottom:968.040000pt;}
.y6_c00033{bottom:1000.040000pt;}
.y2_c00033{bottom:1035.880000pt;}
.h4_c00033{height:18.560000pt;}
.h3_c00033{height:42.656250pt;}
.h5_c00033{height:62.812500pt;}
.h6_c00033{height:107.070000pt;}
.h2_c00033{height:1099.880000pt;}
.h0_c00033{height:1122.520000pt;}
.h1_c00033{height:1122.666667pt;}
.w3_c00033{width:16.000000pt;}
.w2_c00033{width:771.080000pt;}
.w0_c00033{width:793.720000pt;}
.w1_c00033{width:794.000000pt;}
.x0_c00033{left:0.000000pt;}
.x1_c00033{left:11.320000pt;}
.x3_c00033{left:84.805600pt;}
.x7_c00033{left:157.719200pt;}
.x5_c00033{left:369.933600pt;}
.x6_c00033{left:385.497760pt;}
.x4_c00033{left:388.920000pt;}
.x2_c00033{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00034{font-family:ff1_c00034;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00034;src:url('chunks/assets/font_924f976f05173b260cd29c6c.woff2')format("woff");}.ff2_c00034{font-family:ff2_c00034;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00034;src:url('chunks/assets/font_0fae302074743be1b40878e6.woff2')format("woff");}.ff3_c00034{font-family:ff3_c00034;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;}
.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;}
.ls0_c00034{letter-spacing:0.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;}
}
.ws0_c00034{word-spacing:0.000000px;}
.fc1_c00034{color:transparent;}
.fc0_c00034{color:rgb(0,0,0);}
.fs0_c00034{font-size:72.000000px;}
.fs1_c00034{font-size:119.520000px;}
.y0_c00034{bottom:0.000000px;}
.y5_c00034{bottom:5.040000px;}
.y1_c00034{bottom:12.735000px;}
.y3_c00034{bottom:44.685000px;}
.y4_c00034{bottom:53.460000px;}
.y6_c00034{bottom:1113.525000px;}
.y2_c00034{bottom:1165.365000px;}
.h4_c00034{height:20.880000px;}
.h3_c00034{height:47.988281px;}
.h5_c00034{height:70.664062px;}
.h6_c00034{height:124.422187px;}
.h2_c00034{height:1237.365000px;}
.h0_c00034{height:1262.835000px;}
.h1_c00034{height:1263.000000px;}
.w3_c00034{width:18.000000px;}
.w2_c00034{width:867.465000px;}
.w0_c00034{width:892.935000px;}
.w1_c00034{width:893.250000px;}
.x0_c00034{left:0.000000px;}
.x1_c00034{left:12.735000px;}
.x3_c00034{left:95.406300px;}
.x5_c00034{left:433.687500px;}
.x4_c00034{left:437.535000px;}
.x2_c00034{left:878.550300px;}
@media print{
.v0_c00034{vertical-align:0.000000pt;}
.ls0_c00034{letter-spacing:0.000000pt;}
.ws0_c00034{word-spacing:0.000000pt;}
.fs0_c00034{font-size:64.000000pt;}
.fs1_c00034{font-size:106.240000pt;}
.y0_c00034{bottom:0.000000pt;}
.y5_c00034{bottom:4.480000pt;}
.y1_c00034{bottom:11.320000pt;}
.y3_c00034{bottom:39.720000pt;}
.y4_c00034{bottom:47.520000pt;}
.y6_c00034{bottom:989.800000pt;}
.y2_c00034{bottom:1035.880000pt;}
.h4_c00034{height:18.560000pt;}
.h3_c00034{height:42.656250pt;}
.h5_c00034{height:62.812500pt;}
.h6_c00034{height:110.597500pt;}
.h2_c00034{height:1099.880000pt;}
.h0_c00034{height:1122.520000pt;}
.h1_c00034{height:1122.666667pt;}
.w3_c00034{width:16.000000pt;}
.w2_c00034{width:771.080000pt;}
.w0_c00034{width:793.720000pt;}
.w1_c00034{width:794.000000pt;}
.x0_c00034{left:0.000000pt;}
.x1_c00034{left:11.320000pt;}
.x3_c00034{left:84.805600pt;}
.x5_c00034{left:385.500000pt;}
.x4_c00034{left:388.920000pt;}
.x2_c00034{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88abd9d5f5fcb5c670de7392.woff2')format("woff");}.ff1_c00035{font-family:ff1_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:ff2_c00035;src:url('chunks/assets/font_156add32c004804a38c043e5.woff2')format("woff");}.ff2_c00035{font-family:ff2_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:ff3_c00035;src:url('chunks/assets/font_1c30750af7889e7590c8894c.woff2')format("woff");}.ff3_c00035{font-family:ff3_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:ff4_c00035;src:url('chunks/assets/font_70739e90c33d33db1d2903b8.woff2')format("woff");}.ff4_c00035{font-family:ff4_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;}
.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:-132.479400px;}
.v2_c00035{vertical-align:-77.759400px;}
.v0_c00035{vertical-align:0.000000px;}
.ls10_c00035{letter-spacing:-0.014400px;}
.ls9_c00035{letter-spacing:0.000000px;}
.ls8_c00035{letter-spacing:0.014400px;}
.lsa_c00035{letter-spacing:0.062208px;}
.ls2_c00035{letter-spacing:0.163296px;}
.lsb_c00035{letter-spacing:0.298080px;}
.ls6_c00035{letter-spacing:0.324000px;}
.ls7_c00035{letter-spacing:0.325728px;}
.ls1_c00035{letter-spacing:0.370512px;}
.lse_c00035{letter-spacing:0.524880px;}
.ls5_c00035{letter-spacing:0.602640px;}
.ls4_c00035{letter-spacing:0.648000px;}
.lsd_c00035{letter-spacing:0.680400px;}
.lsc_c00035{letter-spacing:0.725760px;}
.lsf_c00035{letter-spacing:0.751680px;}
.ls0_c00035{letter-spacing:958.900200px;}
.ls3_c00035{letter-spacing:1551.069000px;}
.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:-19.603296px;}
.ws1_c00035{word-spacing:-16.848000px;}
.ws2_c00035{word-spacing:-16.802640px;}
.ws3_c00035{word-spacing:0.000000px;}
._0_c00035{margin-left:-1.275264px;}
._1_c00035{width:1.166400px;}
._6_c00035{width:2.289600px;}
._5_c00035{width:3.340800px;}
._8_c00035{width:4.572000px;}
._9_c00035{width:5.572800px;}
._2_c00035{width:7.855200px;}
._4_c00035{width:10.375200px;}
._7_c00035{width:11.577600px;}
._3_c00035{width:21.348000px;}
.fc2_c00035{color:transparent;}
.fc1_c00035{color:rgb(127,127,127);}
.fc0_c00035{color:rgb(0,0,0);}
.fs3_c00035{font-size:64.800000px;}
.fs0_c00035{font-size:72.000000px;}
.fs2_c00035{font-size:77.760000px;}
.fs4_c00035{font-size:83.520000px;}
.fs1_c00035{font-size:119.520000px;}
.y0_c00035{bottom:0.000000px;}
.y5_c00035{bottom:1.440000px;}
.y1_c00035{bottom:12.735000px;}
.y3_c00035{bottom:45.405000px;}
.y4_c00035{bottom:56.700000px;}
.y21_c00035{bottom:157.725000px;}
.y20_c00035{bottom:193.725000px;}
.y1f_c00035{bottom:229.725000px;}
.y1e_c00035{bottom:265.725000px;}
.y1d_c00035{bottom:301.725000px;}
.y1c_c00035{bottom:337.725000px;}
.y1b_c00035{bottom:373.725000px;}
.y1a_c00035{bottom:409.725000px;}
.y19_c00035{bottom:445.725000px;}
.y18_c00035{bottom:481.725000px;}
.y17_c00035{bottom:517.725000px;}
.y16_c00035{bottom:553.725000px;}
.y15_c00035{bottom:589.725000px;}
.y14_c00035{bottom:626.445000px;}
.y13_c00035{bottom:661.725000px;}
.y12_c00035{bottom:697.725000px;}
.y11_c00035{bottom:733.725000px;}
.y10_c00035{bottom:769.339800px;}
.yf_c00035{bottom:788.423400px;}
.ye_c00035{bottom:807.507000px;}
.yd_c00035{bottom:826.590600px;}
.yc_c00035{bottom:845.317800px;}
.yb_c00035{bottom:864.401400px;}
.ya_c00035{bottom:902.924850px;}
.y9_c00035{bottom:939.282120px;}
.y8_c00035{bottom:975.285000px;}
.y7_c00035{bottom:1010.924850px;}
.y6_c00035{bottom:1082.924850px;}
.y2_c00035{bottom:1165.005000px;}
.h4_c00035{height:17.280000px;}
.h7_c00035{height:63.566016px;}
.h9_c00035{height:70.628906px;}
.h3_c00035{height:70.664062px;}
.h5_c00035{height:72.562500px;}
.h6_c00035{height:78.367500px;}
.h8_c00035{height:81.929531px;}
.h2_c00035{height:1237.365000px;}
.h0_c00035{height:1262.835000px;}
.h1_c00035{height:1263.000000px;}
.w3_c00035{width:47.520000px;}
.w2_c00035{width:867.465000px;}
.w0_c00035{width:892.935000px;}
.w1_c00035{width:893.250000px;}
.x0_c00035{left:0.000000px;}
.x1_c00035{left:12.735000px;}
.x5_c00035{left:14.737500px;}
.x3_c00035{left:95.394300px;}
.x9_c00035{left:149.400150px;}
.x8_c00035{left:193.801680px;}
.x7_c00035{left:305.445600px;}
.xc_c00035{left:355.189200px;}
.x4_c00035{left:422.775000px;}
.x6_c00035{left:433.799850px;}
.xd_c00035{left:656.250000px;}
.xb_c00035{left:681.894600px;}
.xa_c00035{left:772.177200px;}
.x2_c00035{left:880.050300px;}
@media print{
.v1_c00035{vertical-align:-117.759467pt;}
.v2_c00035{vertical-align:-69.119467pt;}
.v0_c00035{vertical-align:0.000000pt;}
.ls10_c00035{letter-spacing:-0.012800pt;}
.ls9_c00035{letter-spacing:0.000000pt;}
.ls8_c00035{letter-spacing:0.012800pt;}
.lsa_c00035{letter-spacing:0.055296pt;}
.ls2_c00035{letter-spacing:0.145152pt;}
.lsb_c00035{letter-spacing:0.264960pt;}
.ls6_c00035{letter-spacing:0.288000pt;}
.ls7_c00035{letter-spacing:0.289536pt;}
.ls1_c00035{letter-spacing:0.329344pt;}
.lse_c00035{letter-spacing:0.466560pt;}
.ls5_c00035{letter-spacing:0.535680pt;}
.ls4_c00035{letter-spacing:0.576000pt;}
.lsd_c00035{letter-spacing:0.604800pt;}
.lsc_c00035{letter-spacing:0.645120pt;}
.lsf_c00035{letter-spacing:0.668160pt;}
.ls0_c00035{letter-spacing:852.355733pt;}
.ls3_c00035{letter-spacing:1378.728000pt;}
.ws0_c00035{word-spacing:-17.425152pt;}
.ws1_c00035{word-spacing:-14.976000pt;}
.ws2_c00035{word-spacing:-14.935680pt;}
.ws3_c00035{word-spacing:0.000000pt;}
._0_c00035{margin-left:-1.133568pt;}
._1_c00035{width:1.036800pt;}
._6_c00035{width:2.035200pt;}
._5_c00035{width:2.969600pt;}
._8_c00035{width:4.064000pt;}
._9_c00035{width:4.953600pt;}
._2_c00035{width:6.982400pt;}
._4_c00035{width:9.222400pt;}
._7_c00035{width:10.291200pt;}
._3_c00035{width:18.976000pt;}
.fs3_c00035{font-size:57.600000pt;}
.fs0_c00035{font-size:64.000000pt;}
.fs2_c00035{font-size:69.120000pt;}
.fs4_c00035{font-size:74.240000pt;}
.fs1_c00035{font-size:106.240000pt;}
.y0_c00035{bottom:0.000000pt;}
.y5_c00035{bottom:1.280000pt;}
.y1_c00035{bottom:11.320000pt;}
.y3_c00035{bottom:40.360000pt;}
.y4_c00035{bottom:50.400000pt;}
.y21_c00035{bottom:140.200000pt;}
.y20_c00035{bottom:172.200000pt;}
.y1f_c00035{bottom:204.200000pt;}
.y1e_c00035{bottom:236.200000pt;}
.y1d_c00035{bottom:268.200000pt;}
.y1c_c00035{bottom:300.200000pt;}
.y1b_c00035{bottom:332.200000pt;}
.y1a_c00035{bottom:364.200000pt;}
.y19_c00035{bottom:396.200000pt;}
.y18_c00035{bottom:428.200000pt;}
.y17_c00035{bottom:460.200000pt;}
.y16_c00035{bottom:492.200000pt;}
.y15_c00035{bottom:524.200000pt;}
.y14_c00035{bottom:556.840000pt;}
.y13_c00035{bottom:588.200000pt;}
.y12_c00035{bottom:620.200000pt;}
.y11_c00035{bottom:652.200000pt;}
.y10_c00035{bottom:683.857600pt;}
.yf_c00035{bottom:700.820800pt;}
.ye_c00035{bottom:717.784000pt;}
.yd_c00035{bottom:734.747200pt;}
.yc_c00035{bottom:751.393600pt;}
.yb_c00035{bottom:768.356800pt;}
.ya_c00035{bottom:802.599867pt;}
.y9_c00035{bottom:834.917440pt;}
.y8_c00035{bottom:866.920000pt;}
.y7_c00035{bottom:898.599867pt;}
.y6_c00035{bottom:962.599867pt;}
.y2_c00035{bottom:1035.560000pt;}
.h4_c00035{height:15.360000pt;}
.h7_c00035{height:56.503125pt;}
.h9_c00035{height:62.781250pt;}
.h3_c00035{height:62.812500pt;}
.h5_c00035{height:64.500000pt;}
.h6_c00035{height:69.660000pt;}
.h8_c00035{height:72.826250pt;}
.h2_c00035{height:1099.880000pt;}
.h0_c00035{height:1122.520000pt;}
.h1_c00035{height:1122.666667pt;}
.w3_c00035{width:42.240000pt;}
.w2_c00035{width:771.080000pt;}
.w0_c00035{width:793.720000pt;}
.w1_c00035{width:794.000000pt;}
.x0_c00035{left:0.000000pt;}
.x1_c00035{left:11.320000pt;}
.x5_c00035{left:13.100000pt;}
.x3_c00035{left:84.794933pt;}
.x9_c00035{left:132.800133pt;}
.x8_c00035{left:172.268160pt;}
.x7_c00035{left:271.507200pt;}
.xc_c00035{left:315.723733pt;}
.x4_c00035{left:375.800000pt;}
.x6_c00035{left:385.599867pt;}
.xd_c00035{left:583.333333pt;}
.xb_c00035{left:606.128533pt;}
.xa_c00035{left:686.379733pt;}
.x2_c00035{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_07503a25988c9f3386ebb098.woff2')format("woff");}.ff1_c00036{font-family:ff1_c00036;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00036;src:url('chunks/assets/font_b748b572685301c867d5aef7.woff2')format("woff");}.ff2_c00036{font-family:ff2_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;}
.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;}
.ls1_c00036{letter-spacing:-0.014400px;}
.ls0_c00036{letter-spacing:0.000000px;}
.ls2_c00036{letter-spacing:0.014400px;}
.sc__c00036{text-shadow:none;}
.sc0_c00036{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00036{-webkit-text-stroke:0px transparent;}
.sc0_c00036{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00036{word-spacing:0.000000px;}
._4_c00036{width:1.713600px;}
._1_c00036{width:2.764800px;}
._9_c00036{width:3.837600px;}
._6_c00036{width:5.068800px;}
._0_c00036{width:6.919200px;}
._7_c00036{width:8.042400px;}
._2_c00036{width:10.008000px;}
._5_c00036{width:11.023200px;}
._a_c00036{width:15.120000px;}
._8_c00036{width:16.588800px;}
._3_c00036{width:19.324800px;}
._b_c00036{width:24.552000px;}
.fc1_c00036{color:transparent;}
.fc0_c00036{color:rgb(0,0,0);}
.fs0_c00036{font-size:72.000000px;}
.y0_c00036{bottom:0.000000px;}
.y5_c00036{bottom:5.040000px;}
.y1_c00036{bottom:12.735000px;}
.y3_c00036{bottom:45.405000px;}
.y4_c00036{bottom:53.100000px;}
.y20_c00036{bottom:146.924850px;}
.y1f_c00036{bottom:182.924850px;}
.y1e_c00036{bottom:218.924850px;}
.y1d_c00036{bottom:254.924850px;}
.y1c_c00036{bottom:290.924850px;}
.y1b_c00036{bottom:326.924850px;}
.y1a_c00036{bottom:362.924850px;}
.y19_c00036{bottom:398.924850px;}
.y18_c00036{bottom:434.924850px;}
.y17_c00036{bottom:470.924850px;}
.y16_c00036{bottom:506.924850px;}
.y15_c00036{bottom:542.924850px;}
.y14_c00036{bottom:578.924850px;}
.y13_c00036{bottom:614.924850px;}
.y12_c00036{bottom:650.924850px;}
.y11_c00036{bottom:686.924850px;}
.y10_c00036{bottom:722.924850px;}
.yf_c00036{bottom:758.924850px;}
.ye_c00036{bottom:794.924850px;}
.yd_c00036{bottom:830.924850px;}
.yc_c00036{bottom:866.924850px;}
.yb_c00036{bottom:902.924850px;}
.ya_c00036{bottom:938.924850px;}
.y9_c00036{bottom:974.924850px;}
.y8_c00036{bottom:1010.924850px;}
.y7_c00036{bottom:1046.924850px;}
.y6_c00036{bottom:1082.924850px;}
.y2_c00036{bottom:1165.005000px;}
.h4_c00036{height:20.880000px;}
.h3_c00036{height:70.664062px;}
.h2_c00036{height:1237.365000px;}
.h0_c00036{height:1262.835000px;}
.h1_c00036{height:1263.000000px;}
.w3_c00036{width:18.000000px;}
.w2_c00036{width:867.465000px;}
.w0_c00036{width:892.935000px;}
.w1_c00036{width:893.250000px;}
.x0_c00036{left:0.000000px;}
.x1_c00036{left:12.735000px;}
.x3_c00036{left:95.394300px;}
.x5_c00036{left:149.400150px;}
.x4_c00036{left:437.535000px;}
.x2_c00036{left:880.050300px;}
@media print{
.v0_c00036{vertical-align:0.000000pt;}
.ls1_c00036{letter-spacing:-0.012800pt;}
.ls0_c00036{letter-spacing:0.000000pt;}
.ls2_c00036{letter-spacing:0.012800pt;}
.ws0_c00036{word-spacing:0.000000pt;}
._4_c00036{width:1.523200pt;}
._1_c00036{width:2.457600pt;}
._9_c00036{width:3.411200pt;}
._6_c00036{width:4.505600pt;}
._0_c00036{width:6.150400pt;}
._7_c00036{width:7.148800pt;}
._2_c00036{width:8.896000pt;}
._5_c00036{width:9.798400pt;}
._a_c00036{width:13.440000pt;}
._8_c00036{width:14.745600pt;}
._3_c00036{width:17.177600pt;}
._b_c00036{width:21.824000pt;}
.fs0_c00036{font-size:64.000000pt;}
.y0_c00036{bottom:0.000000pt;}
.y5_c00036{bottom:4.480000pt;}
.y1_c00036{bottom:11.320000pt;}
.y3_c00036{bottom:40.360000pt;}
.y4_c00036{bottom:47.200000pt;}
.y20_c00036{bottom:130.599867pt;}
.y1f_c00036{bottom:162.599867pt;}
.y1e_c00036{bottom:194.599867pt;}
.y1d_c00036{bottom:226.599867pt;}
.y1c_c00036{bottom:258.599867pt;}
.y1b_c00036{bottom:290.599867pt;}
.y1a_c00036{bottom:322.599867pt;}
.y19_c00036{bottom:354.599867pt;}
.y18_c00036{bottom:386.599867pt;}
.y17_c00036{bottom:418.599867pt;}
.y16_c00036{bottom:450.599867pt;}
.y15_c00036{bottom:482.599867pt;}
.y14_c00036{bottom:514.599867pt;}
.y13_c00036{bottom:546.599867pt;}
.y12_c00036{bottom:578.599867pt;}
.y11_c00036{bottom:610.599867pt;}
.y10_c00036{bottom:642.599867pt;}
.yf_c00036{bottom:674.599867pt;}
.ye_c00036{bottom:706.599867pt;}
.yd_c00036{bottom:738.599867pt;}
.yc_c00036{bottom:770.599867pt;}
.yb_c00036{bottom:802.599867pt;}
.ya_c00036{bottom:834.599867pt;}
.y9_c00036{bottom:866.599867pt;}
.y8_c00036{bottom:898.599867pt;}
.y7_c00036{bottom:930.599867pt;}
.y6_c00036{bottom:962.599867pt;}
.y2_c00036{bottom:1035.560000pt;}
.h4_c00036{height:18.560000pt;}
.h3_c00036{height:62.812500pt;}
.h2_c00036{height:1099.880000pt;}
.h0_c00036{height:1122.520000pt;}
.h1_c00036{height:1122.666667pt;}
.w3_c00036{width:16.000000pt;}
.w2_c00036{width:771.080000pt;}
.w0_c00036{width:793.720000pt;}
.w1_c00036{width:794.000000pt;}
.x0_c00036{left:0.000000pt;}
.x1_c00036{left:11.320000pt;}
.x3_c00036{left:84.794933pt;}
.x5_c00036{left:132.800133pt;}
.x4_c00036{left:388.920000pt;}
.x2_c00036{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dc243803e719b61f8896517.woff2')format("woff");}.ff1_c00037{font-family:ff1_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;}
.m0_c00037{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00037{vertical-align:0.000000px;}
.ls2_c00037{letter-spacing:-0.014400px;}
.ls0_c00037{letter-spacing:0.000000px;}
.ls1_c00037{letter-spacing:0.014400px;}
.sc__c00037{text-shadow:none;}
.sc0_c00037{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00037{-webkit-text-stroke:0px transparent;}
.sc0_c00037{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00037{word-spacing:0.000000px;}
._0_c00037{width:1.224000px;}
._6_c00037{width:2.563200px;}
._5_c00037{width:3.859200px;}
._3_c00037{width:5.119200px;}
._1_c00037{width:6.588000px;}
._8_c00037{width:8.654400px;}
._7_c00037{width:10.483200px;}
._2_c00037{width:11.491200px;}
._c_c00037{width:12.528000px;}
._4_c00037{width:15.451200px;}
._e_c00037{width:16.912800px;}
._a_c00037{width:19.411200px;}
._b_c00037{width:20.455200px;}
._9_c00037{width:21.708000px;}
._d_c00037{width:25.819200px;}
.fc1_c00037{color:transparent;}
.fc0_c00037{color:rgb(0,0,0);}
.fs0_c00037{font-size:72.000000px;}
.y0_c00037{bottom:0.000000px;}
.y5_c00037{bottom:1.440000px;}
.y1_c00037{bottom:12.735000px;}
.y3_c00037{bottom:45.405000px;}
.y4_c00037{bottom:56.700000px;}
.y21_c00037{bottom:110.924850px;}
.y20_c00037{bottom:146.924850px;}
.y1f_c00037{bottom:182.924850px;}
.y1e_c00037{bottom:218.924850px;}
.y1d_c00037{bottom:254.924850px;}
.y1c_c00037{bottom:290.924850px;}
.y1b_c00037{bottom:326.924850px;}
.y1a_c00037{bottom:362.924850px;}
.y19_c00037{bottom:398.924850px;}
.y18_c00037{bottom:434.924850px;}
.y17_c00037{bottom:470.924850px;}
.y16_c00037{bottom:506.924850px;}
.y15_c00037{bottom:542.924850px;}
.y14_c00037{bottom:578.924850px;}
.y13_c00037{bottom:614.924850px;}
.y12_c00037{bottom:650.924850px;}
.y11_c00037{bottom:686.924850px;}
.y10_c00037{bottom:722.924850px;}
.yf_c00037{bottom:758.924850px;}
.ye_c00037{bottom:794.924850px;}
.yd_c00037{bottom:830.924850px;}
.yc_c00037{bottom:866.924850px;}
.yb_c00037{bottom:902.924850px;}
.ya_c00037{bottom:938.924850px;}
.y9_c00037{bottom:974.924850px;}
.y8_c00037{bottom:1010.924850px;}
.y7_c00037{bottom:1046.924850px;}
.y6_c00037{bottom:1082.924850px;}
.y2_c00037{bottom:1165.005000px;}
.h4_c00037{height:17.280000px;}
.h3_c00037{height:70.664062px;}
.h2_c00037{height:1237.365000px;}
.h0_c00037{height:1262.835000px;}
.h1_c00037{height:1263.000000px;}
.w3_c00037{width:47.520000px;}
.w2_c00037{width:867.465000px;}
.w0_c00037{width:892.935000px;}
.w1_c00037{width:893.250000px;}
.x0_c00037{left:0.000000px;}
.x1_c00037{left:12.735000px;}
.x5_c00037{left:14.737500px;}
.x3_c00037{left:95.394300px;}
.x6_c00037{left:149.400150px;}
.x4_c00037{left:422.775000px;}
.x2_c00037{left:880.050300px;}
@media print{
.v0_c00037{vertical-align:0.000000pt;}
.ls2_c00037{letter-spacing:-0.012800pt;}
.ls0_c00037{letter-spacing:0.000000pt;}
.ls1_c00037{letter-spacing:0.012800pt;}
.ws0_c00037{word-spacing:0.000000pt;}
._0_c00037{width:1.088000pt;}
._6_c00037{width:2.278400pt;}
._5_c00037{width:3.430400pt;}
._3_c00037{width:4.550400pt;}
._1_c00037{width:5.856000pt;}
._8_c00037{width:7.692800pt;}
._7_c00037{width:9.318400pt;}
._2_c00037{width:10.214400pt;}
._c_c00037{width:11.136000pt;}
._4_c00037{width:13.734400pt;}
._e_c00037{width:15.033600pt;}
._a_c00037{width:17.254400pt;}
._b_c00037{width:18.182400pt;}
._9_c00037{width:19.296000pt;}
._d_c00037{width:22.950400pt;}
.fs0_c00037{font-size:64.000000pt;}
.y0_c00037{bottom:0.000000pt;}
.y5_c00037{bottom:1.280000pt;}
.y1_c00037{bottom:11.320000pt;}
.y3_c00037{bottom:40.360000pt;}
.y4_c00037{bottom:50.400000pt;}
.y21_c00037{bottom:98.599867pt;}
.y20_c00037{bottom:130.599867pt;}
.y1f_c00037{bottom:162.599867pt;}
.y1e_c00037{bottom:194.599867pt;}
.y1d_c00037{bottom:226.599867pt;}
.y1c_c00037{bottom:258.599867pt;}
.y1b_c00037{bottom:290.599867pt;}
.y1a_c00037{bottom:322.599867pt;}
.y19_c00037{bottom:354.599867pt;}
.y18_c00037{bottom:386.599867pt;}
.y17_c00037{bottom:418.599867pt;}
.y16_c00037{bottom:450.599867pt;}
.y15_c00037{bottom:482.599867pt;}
.y14_c00037{bottom:514.599867pt;}
.y13_c00037{bottom:546.599867pt;}
.y12_c00037{bottom:578.599867pt;}
.y11_c00037{bottom:610.599867pt;}
.y10_c00037{bottom:642.599867pt;}
.yf_c00037{bottom:674.599867pt;}
.ye_c00037{bottom:706.599867pt;}
.yd_c00037{bottom:738.599867pt;}
.yc_c00037{bottom:770.599867pt;}
.yb_c00037{bottom:802.599867pt;}
.ya_c00037{bottom:834.599867pt;}
.y9_c00037{bottom:866.599867pt;}
.y8_c00037{bottom:898.599867pt;}
.y7_c00037{bottom:930.599867pt;}
.y6_c00037{bottom:962.599867pt;}
.y2_c00037{bottom:1035.560000pt;}
.h4_c00037{height:15.360000pt;}
.h3_c00037{height:62.812500pt;}
.h2_c00037{height:1099.880000pt;}
.h0_c00037{height:1122.520000pt;}
.h1_c00037{height:1122.666667pt;}
.w3_c00037{width:42.240000pt;}
.w2_c00037{width:771.080000pt;}
.w0_c00037{width:793.720000pt;}
.w1_c00037{width:794.000000pt;}
.x0_c00037{left:0.000000pt;}
.x1_c00037{left:11.320000pt;}
.x5_c00037{left:13.100000pt;}
.x3_c00037{left:84.794933pt;}
.x6_c00037{left:132.800133pt;}
.x4_c00037{left:375.800000pt;}
.x2_c00037{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_edc53dc069a96b93d3b4d9a3.woff2')format("woff");}.ff1_c00038{font-family:ff1_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:ff2_c00038;src:url('chunks/assets/font_94b0219b3890231c9240fcaf.woff2')format("woff");}.ff2_c00038{font-family:ff2_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;}
.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;}
.ls0_c00038{letter-spacing:0.000000px;}
.sc__c00038{text-shadow:none;}
.sc0_c00038{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00038{-webkit-text-stroke:0px transparent;}
.sc0_c00038{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00038{word-spacing:0.000000px;}
._4_c00038{width:1.447200px;}
._5_c00038{width:2.541600px;}
._6_c00038{width:3.837600px;}
._7_c00038{width:5.630400px;}
._9_c00038{width:6.703200px;}
._b_c00038{width:7.869600px;}
._2_c00038{width:9.748800px;}
._0_c00038{width:11.145600px;}
._1_c00038{width:12.189600px;}
._3_c00038{width:13.716000px;}
._8_c00038{width:19.159200px;}
._a_c00038{width:23.666400px;}
.fc1_c00038{color:transparent;}
.fc0_c00038{color:rgb(0,0,0);}
.fs0_c00038{font-size:72.000000px;}
.y0_c00038{bottom:0.000000px;}
.y5_c00038{bottom:5.040000px;}
.y1_c00038{bottom:12.735000px;}
.y3_c00038{bottom:45.405000px;}
.y4_c00038{bottom:53.100000px;}
.y21_c00038{bottom:110.924850px;}
.y20_c00038{bottom:146.924850px;}
.y1f_c00038{bottom:182.924850px;}
.y1e_c00038{bottom:218.924850px;}
.y1d_c00038{bottom:254.924850px;}
.y1c_c00038{bottom:290.924850px;}
.y1b_c00038{bottom:326.924850px;}
.y1a_c00038{bottom:362.924850px;}
.y19_c00038{bottom:398.924850px;}
.y18_c00038{bottom:434.924850px;}
.y17_c00038{bottom:470.924850px;}
.y16_c00038{bottom:506.924850px;}
.y15_c00038{bottom:542.924850px;}
.y14_c00038{bottom:578.924850px;}
.y13_c00038{bottom:614.924850px;}
.y12_c00038{bottom:650.924850px;}
.y11_c00038{bottom:686.924850px;}
.y10_c00038{bottom:722.924850px;}
.yf_c00038{bottom:758.924850px;}
.ye_c00038{bottom:794.924850px;}
.yd_c00038{bottom:830.924850px;}
.yc_c00038{bottom:866.924850px;}
.yb_c00038{bottom:902.924850px;}
.ya_c00038{bottom:938.924850px;}
.y9_c00038{bottom:974.924850px;}
.y8_c00038{bottom:1010.924850px;}
.y7_c00038{bottom:1046.924850px;}
.y6_c00038{bottom:1082.924850px;}
.y2_c00038{bottom:1165.005000px;}
.h4_c00038{height:20.880000px;}
.h5_c00038{height:70.628906px;}
.h3_c00038{height:70.664062px;}
.h2_c00038{height:1237.365000px;}
.h0_c00038{height:1262.835000px;}
.h1_c00038{height:1263.000000px;}
.w3_c00038{width:18.000000px;}
.w2_c00038{width:867.465000px;}
.w0_c00038{width:892.935000px;}
.w1_c00038{width:893.250000px;}
.x0_c00038{left:0.000000px;}
.x1_c00038{left:12.735000px;}
.x3_c00038{left:95.394300px;}
.x5_c00038{left:149.400150px;}
.x4_c00038{left:437.535000px;}
.x2_c00038{left:880.050300px;}
@media print{
.v0_c00038{vertical-align:0.000000pt;}
.ls0_c00038{letter-spacing:0.000000pt;}
.ws0_c00038{word-spacing:0.000000pt;}
._4_c00038{width:1.286400pt;}
._5_c00038{width:2.259200pt;}
._6_c00038{width:3.411200pt;}
._7_c00038{width:5.004800pt;}
._9_c00038{width:5.958400pt;}
._b_c00038{width:6.995200pt;}
._2_c00038{width:8.665600pt;}
._0_c00038{width:9.907200pt;}
._1_c00038{width:10.835200pt;}
._3_c00038{width:12.192000pt;}
._8_c00038{width:17.030400pt;}
._a_c00038{width:21.036800pt;}
.fs0_c00038{font-size:64.000000pt;}
.y0_c00038{bottom:0.000000pt;}
.y5_c00038{bottom:4.480000pt;}
.y1_c00038{bottom:11.320000pt;}
.y3_c00038{bottom:40.360000pt;}
.y4_c00038{bottom:47.200000pt;}
.y21_c00038{bottom:98.599867pt;}
.y20_c00038{bottom:130.599867pt;}
.y1f_c00038{bottom:162.599867pt;}
.y1e_c00038{bottom:194.599867pt;}
.y1d_c00038{bottom:226.599867pt;}
.y1c_c00038{bottom:258.599867pt;}
.y1b_c00038{bottom:290.599867pt;}
.y1a_c00038{bottom:322.599867pt;}
.y19_c00038{bottom:354.599867pt;}
.y18_c00038{bottom:386.599867pt;}
.y17_c00038{bottom:418.599867pt;}
.y16_c00038{bottom:450.599867pt;}
.y15_c00038{bottom:482.599867pt;}
.y14_c00038{bottom:514.599867pt;}
.y13_c00038{bottom:546.599867pt;}
.y12_c00038{bottom:578.599867pt;}
.y11_c00038{bottom:610.599867pt;}
.y10_c00038{bottom:642.599867pt;}
.yf_c00038{bottom:674.599867pt;}
.ye_c00038{bottom:706.599867pt;}
.yd_c00038{bottom:738.599867pt;}
.yc_c00038{bottom:770.599867pt;}
.yb_c00038{bottom:802.599867pt;}
.ya_c00038{bottom:834.599867pt;}
.y9_c00038{bottom:866.599867pt;}
.y8_c00038{bottom:898.599867pt;}
.y7_c00038{bottom:930.599867pt;}
.y6_c00038{bottom:962.599867pt;}
.y2_c00038{bottom:1035.560000pt;}
.h4_c00038{height:18.560000pt;}
.h5_c00038{height:62.781250pt;}
.h3_c00038{height:62.812500pt;}
.h2_c00038{height:1099.880000pt;}
.h0_c00038{height:1122.520000pt;}
.h1_c00038{height:1122.666667pt;}
.w3_c00038{width:16.000000pt;}
.w2_c00038{width:771.080000pt;}
.w0_c00038{width:793.720000pt;}
.w1_c00038{width:794.000000pt;}
.x0_c00038{left:0.000000pt;}
.x1_c00038{left:11.320000pt;}
.x3_c00038{left:84.794933pt;}
.x5_c00038{left:132.800133pt;}
.x4_c00038{left:388.920000pt;}
.x2_c00038{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_185d267110355f061be6b682.woff2')format("woff");}.ff1_c00039{font-family:ff1_c00039;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00039{letter-spacing:-0.014400px;}
.ls1_c00039{letter-spacing:0.000000px;}
.ls0_c00039{letter-spacing:0.021600px;}
.ls3_c00039{letter-spacing:6.156000px;}
.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;}
}
.ws1_c00039{word-spacing:-18.021600px;}
.ws0_c00039{word-spacing:-18.000000px;}
.ws2_c00039{word-spacing:0.000000px;}
._d_c00039{margin-left:-5.356800px;}
._1_c00039{width:1.274400px;}
._9_c00039{width:2.613600px;}
._b_c00039{width:3.708000px;}
._0_c00039{width:4.744800px;}
._4_c00039{width:6.192000px;}
._2_c00039{width:7.221600px;}
._3_c00039{width:9.079200px;}
._5_c00039{width:10.375200px;}
._a_c00039{width:12.564000px;}
._6_c00039{width:19.720800px;}
._8_c00039{width:20.973600px;}
._c_c00039{width:22.111200px;}
._7_c00039{width:31.377600px;}
.fc1_c00039{color:transparent;}
.fc0_c00039{color:rgb(0,0,0);}
.fs0_c00039{font-size:72.000000px;}
.y0_c00039{bottom:0.000000px;}
.y5_c00039{bottom:1.440000px;}
.y1_c00039{bottom:12.735000px;}
.y3_c00039{bottom:45.405000px;}
.y4_c00039{bottom:56.700000px;}
.y21_c00039{bottom:110.924850px;}
.y20_c00039{bottom:146.924850px;}
.y1f_c00039{bottom:182.924850px;}
.y1e_c00039{bottom:218.924850px;}
.y1d_c00039{bottom:254.924850px;}
.y1c_c00039{bottom:290.924850px;}
.y1b_c00039{bottom:326.924850px;}
.y1a_c00039{bottom:362.924850px;}
.y19_c00039{bottom:398.924850px;}
.y18_c00039{bottom:434.924850px;}
.y17_c00039{bottom:470.924850px;}
.y16_c00039{bottom:506.924850px;}
.y15_c00039{bottom:542.924850px;}
.y14_c00039{bottom:578.924850px;}
.y13_c00039{bottom:614.924850px;}
.y12_c00039{bottom:650.924850px;}
.y11_c00039{bottom:686.924850px;}
.y10_c00039{bottom:722.924850px;}
.yf_c00039{bottom:758.924850px;}
.ye_c00039{bottom:794.924850px;}
.yd_c00039{bottom:830.924850px;}
.yc_c00039{bottom:866.924850px;}
.yb_c00039{bottom:902.924850px;}
.ya_c00039{bottom:938.924850px;}
.y9_c00039{bottom:974.924850px;}
.y8_c00039{bottom:1010.924850px;}
.y7_c00039{bottom:1046.924850px;}
.y6_c00039{bottom:1082.924850px;}
.y2_c00039{bottom:1165.005000px;}
.h4_c00039{height:17.280000px;}
.h3_c00039{height:70.664062px;}
.h2_c00039{height:1237.365000px;}
.h0_c00039{height:1262.835000px;}
.h1_c00039{height:1263.000000px;}
.w3_c00039{width:47.520000px;}
.w2_c00039{width:867.465000px;}
.w0_c00039{width:892.935000px;}
.w1_c00039{width:893.250000px;}
.x0_c00039{left:0.000000px;}
.x1_c00039{left:12.735000px;}
.x5_c00039{left:14.737500px;}
.x3_c00039{left:95.394300px;}
.x6_c00039{left:149.418150px;}
.x4_c00039{left:422.775000px;}
.x2_c00039{left:880.050300px;}
@media print{
.v0_c00039{vertical-align:0.000000pt;}
.ls2_c00039{letter-spacing:-0.012800pt;}
.ls1_c00039{letter-spacing:0.000000pt;}
.ls0_c00039{letter-spacing:0.019200pt;}
.ls3_c00039{letter-spacing:5.472000pt;}
.ws1_c00039{word-spacing:-16.019200pt;}
.ws0_c00039{word-spacing:-16.000000pt;}
.ws2_c00039{word-spacing:0.000000pt;}
._d_c00039{margin-left:-4.761600pt;}
._1_c00039{width:1.132800pt;}
._9_c00039{width:2.323200pt;}
._b_c00039{width:3.296000pt;}
._0_c00039{width:4.217600pt;}
._4_c00039{width:5.504000pt;}
._2_c00039{width:6.419200pt;}
._3_c00039{width:8.070400pt;}
._5_c00039{width:9.222400pt;}
._a_c00039{width:11.168000pt;}
._6_c00039{width:17.529600pt;}
._8_c00039{width:18.643200pt;}
._c_c00039{width:19.654400pt;}
._7_c00039{width:27.891200pt;}
.fs0_c00039{font-size:64.000000pt;}
.y0_c00039{bottom:0.000000pt;}
.y5_c00039{bottom:1.280000pt;}
.y1_c00039{bottom:11.320000pt;}
.y3_c00039{bottom:40.360000pt;}
.y4_c00039{bottom:50.400000pt;}
.y21_c00039{bottom:98.599867pt;}
.y20_c00039{bottom:130.599867pt;}
.y1f_c00039{bottom:162.599867pt;}
.y1e_c00039{bottom:194.599867pt;}
.y1d_c00039{bottom:226.599867pt;}
.y1c_c00039{bottom:258.599867pt;}
.y1b_c00039{bottom:290.599867pt;}
.y1a_c00039{bottom:322.599867pt;}
.y19_c00039{bottom:354.599867pt;}
.y18_c00039{bottom:386.599867pt;}
.y17_c00039{bottom:418.599867pt;}
.y16_c00039{bottom:450.599867pt;}
.y15_c00039{bottom:482.599867pt;}
.y14_c00039{bottom:514.599867pt;}
.y13_c00039{bottom:546.599867pt;}
.y12_c00039{bottom:578.599867pt;}
.y11_c00039{bottom:610.599867pt;}
.y10_c00039{bottom:642.599867pt;}
.yf_c00039{bottom:674.599867pt;}
.ye_c00039{bottom:706.599867pt;}
.yd_c00039{bottom:738.599867pt;}
.yc_c00039{bottom:770.599867pt;}
.yb_c00039{bottom:802.599867pt;}
.ya_c00039{bottom:834.599867pt;}
.y9_c00039{bottom:866.599867pt;}
.y8_c00039{bottom:898.599867pt;}
.y7_c00039{bottom:930.599867pt;}
.y6_c00039{bottom:962.599867pt;}
.y2_c00039{bottom:1035.560000pt;}
.h4_c00039{height:15.360000pt;}
.h3_c00039{height:62.812500pt;}
.h2_c00039{height:1099.880000pt;}
.h0_c00039{height:1122.520000pt;}
.h1_c00039{height:1122.666667pt;}
.w3_c00039{width:42.240000pt;}
.w2_c00039{width:771.080000pt;}
.w0_c00039{width:793.720000pt;}
.w1_c00039{width:794.000000pt;}
.x0_c00039{left:0.000000pt;}
.x1_c00039{left:11.320000pt;}
.x5_c00039{left:13.100000pt;}
.x3_c00039{left:84.794933pt;}
.x6_c00039{left:132.816133pt;}
.x4_c00039{left:375.800000pt;}
.x2_c00039{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0430911e9b461f90c88e88c2.woff2')format("woff");}.ff1_c00040{font-family:ff1_c00040;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00040;src:url('chunks/assets/font_b748b572685301c867d5aef7.woff2')format("woff");}.ff2_c00040{font-family:ff2_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;}
.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;}
.ls1_c00040{letter-spacing:-0.014400px;}
.ls0_c00040{letter-spacing:0.000000px;}
.ls3_c00040{letter-spacing:7.992000px;}
.ls2_c00040{letter-spacing:14.932800px;}
.sc__c00040{text-shadow:none;}
.sc0_c00040{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00040{-webkit-text-stroke:0px transparent;}
.sc0_c00040{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00040{word-spacing:0.000000px;}
._b_c00040{margin-left:-14.990400px;}
._11_c00040{margin-left:-7.603200px;}
._3_c00040{width:1.872000px;}
._9_c00040{width:3.060000px;}
._4_c00040{width:4.464000px;}
._0_c00040{width:6.177600px;}
._7_c00040{width:7.257600px;}
._10_c00040{width:8.740800px;}
._f_c00040{width:10.461600px;}
._a_c00040{width:11.527200px;}
._8_c00040{width:14.198400px;}
._6_c00040{width:15.264000px;}
._5_c00040{width:16.948800px;}
._c_c00040{width:23.436000px;}
._2_c00040{width:24.789600px;}
._e_c00040{width:25.804800px;}
._1_c00040{width:27.000000px;}
._d_c00040{width:33.840000px;}
.fc1_c00040{color:transparent;}
.fc0_c00040{color:rgb(0,0,0);}
.fs0_c00040{font-size:72.000000px;}
.y0_c00040{bottom:0.000000px;}
.y5_c00040{bottom:5.040000px;}
.y1_c00040{bottom:12.735000px;}
.y3_c00040{bottom:45.405000px;}
.y4_c00040{bottom:53.100000px;}
.y21_c00040{bottom:110.924850px;}
.y20_c00040{bottom:146.924850px;}
.y1f_c00040{bottom:182.924850px;}
.y1e_c00040{bottom:218.924850px;}
.y1d_c00040{bottom:254.924850px;}
.y1c_c00040{bottom:290.924850px;}
.y1b_c00040{bottom:326.924850px;}
.y1a_c00040{bottom:362.924850px;}
.y19_c00040{bottom:398.924850px;}
.y18_c00040{bottom:434.924850px;}
.y17_c00040{bottom:470.924850px;}
.y16_c00040{bottom:506.924850px;}
.y15_c00040{bottom:542.924850px;}
.y14_c00040{bottom:578.924850px;}
.y13_c00040{bottom:614.924850px;}
.y12_c00040{bottom:650.924850px;}
.y11_c00040{bottom:686.924850px;}
.y10_c00040{bottom:722.924850px;}
.yf_c00040{bottom:758.924850px;}
.ye_c00040{bottom:794.924850px;}
.yd_c00040{bottom:830.924850px;}
.yc_c00040{bottom:866.924850px;}
.yb_c00040{bottom:902.924850px;}
.ya_c00040{bottom:938.924850px;}
.y9_c00040{bottom:974.924850px;}
.y8_c00040{bottom:1010.924850px;}
.y7_c00040{bottom:1046.924850px;}
.y6_c00040{bottom:1082.924850px;}
.y2_c00040{bottom:1165.005000px;}
.h4_c00040{height:20.880000px;}
.h3_c00040{height:70.664062px;}
.h2_c00040{height:1237.365000px;}
.h0_c00040{height:1262.835000px;}
.h1_c00040{height:1263.000000px;}
.w3_c00040{width:18.000000px;}
.w2_c00040{width:867.465000px;}
.w0_c00040{width:892.935000px;}
.w1_c00040{width:893.250000px;}
.x0_c00040{left:0.000000px;}
.x1_c00040{left:12.735000px;}
.x3_c00040{left:95.394300px;}
.x5_c00040{left:149.400150px;}
.x4_c00040{left:437.535000px;}
.x2_c00040{left:880.050300px;}
@media print{
.v0_c00040{vertical-align:0.000000pt;}
.ls1_c00040{letter-spacing:-0.012800pt;}
.ls0_c00040{letter-spacing:0.000000pt;}
.ls3_c00040{letter-spacing:7.104000pt;}
.ls2_c00040{letter-spacing:13.273600pt;}
.ws0_c00040{word-spacing:0.000000pt;}
._b_c00040{margin-left:-13.324800pt;}
._11_c00040{margin-left:-6.758400pt;}
._3_c00040{width:1.664000pt;}
._9_c00040{width:2.720000pt;}
._4_c00040{width:3.968000pt;}
._0_c00040{width:5.491200pt;}
._7_c00040{width:6.451200pt;}
._10_c00040{width:7.769600pt;}
._f_c00040{width:9.299200pt;}
._a_c00040{width:10.246400pt;}
._8_c00040{width:12.620800pt;}
._6_c00040{width:13.568000pt;}
._5_c00040{width:15.065600pt;}
._c_c00040{width:20.832000pt;}
._2_c00040{width:22.035200pt;}
._e_c00040{width:22.937600pt;}
._1_c00040{width:24.000000pt;}
._d_c00040{width:30.080000pt;}
.fs0_c00040{font-size:64.000000pt;}
.y0_c00040{bottom:0.000000pt;}
.y5_c00040{bottom:4.480000pt;}
.y1_c00040{bottom:11.320000pt;}
.y3_c00040{bottom:40.360000pt;}
.y4_c00040{bottom:47.200000pt;}
.y21_c00040{bottom:98.599867pt;}
.y20_c00040{bottom:130.599867pt;}
.y1f_c00040{bottom:162.599867pt;}
.y1e_c00040{bottom:194.599867pt;}
.y1d_c00040{bottom:226.599867pt;}
.y1c_c00040{bottom:258.599867pt;}
.y1b_c00040{bottom:290.599867pt;}
.y1a_c00040{bottom:322.599867pt;}
.y19_c00040{bottom:354.599867pt;}
.y18_c00040{bottom:386.599867pt;}
.y17_c00040{bottom:418.599867pt;}
.y16_c00040{bottom:450.599867pt;}
.y15_c00040{bottom:482.599867pt;}
.y14_c00040{bottom:514.599867pt;}
.y13_c00040{bottom:546.599867pt;}
.y12_c00040{bottom:578.599867pt;}
.y11_c00040{bottom:610.599867pt;}
.y10_c00040{bottom:642.599867pt;}
.yf_c00040{bottom:674.599867pt;}
.ye_c00040{bottom:706.599867pt;}
.yd_c00040{bottom:738.599867pt;}
.yc_c00040{bottom:770.599867pt;}
.yb_c00040{bottom:802.599867pt;}
.ya_c00040{bottom:834.599867pt;}
.y9_c00040{bottom:866.599867pt;}
.y8_c00040{bottom:898.599867pt;}
.y7_c00040{bottom:930.599867pt;}
.y6_c00040{bottom:962.599867pt;}
.y2_c00040{bottom:1035.560000pt;}
.h4_c00040{height:18.560000pt;}
.h3_c00040{height:62.812500pt;}
.h2_c00040{height:1099.880000pt;}
.h0_c00040{height:1122.520000pt;}
.h1_c00040{height:1122.666667pt;}
.w3_c00040{width:16.000000pt;}
.w2_c00040{width:771.080000pt;}
.w0_c00040{width:793.720000pt;}
.w1_c00040{width:794.000000pt;}
.x0_c00040{left:0.000000pt;}
.x1_c00040{left:11.320000pt;}
.x3_c00040{left:84.794933pt;}
.x5_c00040{left:132.800133pt;}
.x4_c00040{left:388.920000pt;}
.x2_c00040{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c58a1473fcc6aa5b92c6c74.woff2')format("woff");}.ff1_c00041{font-family:ff1_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:ff2_c00041;src:url('chunks/assets/font_5b7c331689a55689655c2d30.woff2')format("woff");}.ff2_c00041{font-family:ff2_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;}
.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;}
.ls1_c00041{letter-spacing:-0.014400px;}
.ls0_c00041{letter-spacing:0.000000px;}
.sc__c00041{text-shadow:none;}
.sc0_c00041{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00041{-webkit-text-stroke:0px transparent;}
.sc0_c00041{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00041{word-spacing:0.000000px;}
._0_c00041{width:1.101600px;}
._6_c00041{width:2.145600px;}
._8_c00041{width:3.398400px;}
._7_c00041{width:4.852800px;}
._4_c00041{width:5.990400px;}
._1_c00041{width:8.150400px;}
._d_c00041{width:9.187200px;}
._5_c00041{width:15.660000px;}
._3_c00041{width:16.984800px;}
._b_c00041{width:20.808000px;}
._c_c00041{width:21.844800px;}
._9_c00041{width:23.212800px;}
._2_c00041{width:25.668000px;}
._a_c00041{width:29.001600px;}
._e_c00041{width:39.002400px;}
.fc1_c00041{color:transparent;}
.fc0_c00041{color:rgb(0,0,0);}
.fs0_c00041{font-size:72.000000px;}
.y0_c00041{bottom:0.000000px;}
.y5_c00041{bottom:1.440000px;}
.y1_c00041{bottom:12.735000px;}
.y3_c00041{bottom:45.405000px;}
.y4_c00041{bottom:56.700000px;}
.y21_c00041{bottom:110.924850px;}
.y20_c00041{bottom:146.924850px;}
.y1f_c00041{bottom:182.924850px;}
.y1e_c00041{bottom:218.924850px;}
.y1d_c00041{bottom:254.924850px;}
.y1c_c00041{bottom:290.924850px;}
.y1b_c00041{bottom:326.924850px;}
.y1a_c00041{bottom:362.924850px;}
.y19_c00041{bottom:398.924850px;}
.y18_c00041{bottom:434.924850px;}
.y17_c00041{bottom:470.924850px;}
.y16_c00041{bottom:506.924850px;}
.y15_c00041{bottom:542.924850px;}
.y14_c00041{bottom:578.924850px;}
.y13_c00041{bottom:614.924850px;}
.y12_c00041{bottom:650.924850px;}
.y11_c00041{bottom:686.924850px;}
.y10_c00041{bottom:722.924850px;}
.yf_c00041{bottom:758.924850px;}
.ye_c00041{bottom:794.924850px;}
.yd_c00041{bottom:830.924850px;}
.yc_c00041{bottom:866.924850px;}
.yb_c00041{bottom:902.924850px;}
.ya_c00041{bottom:938.924850px;}
.y9_c00041{bottom:974.924850px;}
.y8_c00041{bottom:1010.924850px;}
.y7_c00041{bottom:1046.924850px;}
.y6_c00041{bottom:1082.924850px;}
.y2_c00041{bottom:1165.005000px;}
.h4_c00041{height:17.280000px;}
.h3_c00041{height:70.664062px;}
.h2_c00041{height:1237.365000px;}
.h0_c00041{height:1262.835000px;}
.h1_c00041{height:1263.000000px;}
.w3_c00041{width:47.520000px;}
.w2_c00041{width:867.465000px;}
.w0_c00041{width:892.935000px;}
.w1_c00041{width:893.250000px;}
.x0_c00041{left:0.000000px;}
.x1_c00041{left:12.735000px;}
.x5_c00041{left:14.737500px;}
.x3_c00041{left:95.394300px;}
.x6_c00041{left:149.400150px;}
.x4_c00041{left:422.775000px;}
.x2_c00041{left:880.050300px;}
@media print{
.v0_c00041{vertical-align:0.000000pt;}
.ls1_c00041{letter-spacing:-0.012800pt;}
.ls0_c00041{letter-spacing:0.000000pt;}
.ws0_c00041{word-spacing:0.000000pt;}
._0_c00041{width:0.979200pt;}
._6_c00041{width:1.907200pt;}
._8_c00041{width:3.020800pt;}
._7_c00041{width:4.313600pt;}
._4_c00041{width:5.324800pt;}
._1_c00041{width:7.244800pt;}
._d_c00041{width:8.166400pt;}
._5_c00041{width:13.920000pt;}
._3_c00041{width:15.097600pt;}
._b_c00041{width:18.496000pt;}
._c_c00041{width:19.417600pt;}
._9_c00041{width:20.633600pt;}
._2_c00041{width:22.816000pt;}
._a_c00041{width:25.779200pt;}
._e_c00041{width:34.668800pt;}
.fs0_c00041{font-size:64.000000pt;}
.y0_c00041{bottom:0.000000pt;}
.y5_c00041{bottom:1.280000pt;}
.y1_c00041{bottom:11.320000pt;}
.y3_c00041{bottom:40.360000pt;}
.y4_c00041{bottom:50.400000pt;}
.y21_c00041{bottom:98.599867pt;}
.y20_c00041{bottom:130.599867pt;}
.y1f_c00041{bottom:162.599867pt;}
.y1e_c00041{bottom:194.599867pt;}
.y1d_c00041{bottom:226.599867pt;}
.y1c_c00041{bottom:258.599867pt;}
.y1b_c00041{bottom:290.599867pt;}
.y1a_c00041{bottom:322.599867pt;}
.y19_c00041{bottom:354.599867pt;}
.y18_c00041{bottom:386.599867pt;}
.y17_c00041{bottom:418.599867pt;}
.y16_c00041{bottom:450.599867pt;}
.y15_c00041{bottom:482.599867pt;}
.y14_c00041{bottom:514.599867pt;}
.y13_c00041{bottom:546.599867pt;}
.y12_c00041{bottom:578.599867pt;}
.y11_c00041{bottom:610.599867pt;}
.y10_c00041{bottom:642.599867pt;}
.yf_c00041{bottom:674.599867pt;}
.ye_c00041{bottom:706.599867pt;}
.yd_c00041{bottom:738.599867pt;}
.yc_c00041{bottom:770.599867pt;}
.yb_c00041{bottom:802.599867pt;}
.ya_c00041{bottom:834.599867pt;}
.y9_c00041{bottom:866.599867pt;}
.y8_c00041{bottom:898.599867pt;}
.y7_c00041{bottom:930.599867pt;}
.y6_c00041{bottom:962.599867pt;}
.y2_c00041{bottom:1035.560000pt;}
.h4_c00041{height:15.360000pt;}
.h3_c00041{height:62.812500pt;}
.h2_c00041{height:1099.880000pt;}
.h0_c00041{height:1122.520000pt;}
.h1_c00041{height:1122.666667pt;}
.w3_c00041{width:42.240000pt;}
.w2_c00041{width:771.080000pt;}
.w0_c00041{width:793.720000pt;}
.w1_c00041{width:794.000000pt;}
.x0_c00041{left:0.000000pt;}
.x1_c00041{left:11.320000pt;}
.x5_c00041{left:13.100000pt;}
.x3_c00041{left:84.794933pt;}
.x6_c00041{left:132.800133pt;}
.x4_c00041{left:375.800000pt;}
.x2_c00041{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0fc65ada5e37988c2ee3f639.woff2')format("woff");}.ff1_c00042{font-family:ff1_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:ff2_c00042;src:url('chunks/assets/font_4de4d490489dd67946e9e2b6.woff2')format("woff");}.ff2_c00042{font-family:ff2_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;}
.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;}
.ls1_c00042{letter-spacing:-0.014400px;}
.ls0_c00042{letter-spacing:0.000000px;}
.ls2_c00042{letter-spacing:1.094400px;}
.sc__c00042{text-shadow:none;}
.sc0_c00042{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00042{-webkit-text-stroke:0px transparent;}
.sc0_c00042{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00042{word-spacing:-17.985600px;}
.ws1_c00042{word-spacing:0.000000px;}
._b_c00042{margin-left:-1.108800px;}
._4_c00042{width:1.058400px;}
._a_c00042{width:3.614400px;}
._e_c00042{width:4.816800px;}
._2_c00042{width:6.364800px;}
._7_c00042{width:8.323200px;}
._5_c00042{width:9.986400px;}
._6_c00042{width:14.018400px;}
._d_c00042{width:15.811200px;}
._3_c00042{width:16.905600px;}
._0_c00042{width:19.324800px;}
._f_c00042{width:20.872800px;}
._1_c00042{width:22.651200px;}
._c_c00042{width:24.062400px;}
._9_c00042{width:26.431200px;}
._8_c00042{width:27.489600px;}
.fc1_c00042{color:transparent;}
.fc0_c00042{color:rgb(0,0,0);}
.fs0_c00042{font-size:72.000000px;}
.y0_c00042{bottom:0.000000px;}
.y5_c00042{bottom:5.040000px;}
.y1_c00042{bottom:12.735000px;}
.y3_c00042{bottom:45.405000px;}
.y4_c00042{bottom:53.100000px;}
.y20_c00042{bottom:146.924850px;}
.y1f_c00042{bottom:182.924850px;}
.y1e_c00042{bottom:218.924850px;}
.y1d_c00042{bottom:254.924850px;}
.y1c_c00042{bottom:290.924850px;}
.y1b_c00042{bottom:326.924850px;}
.y1a_c00042{bottom:362.924850px;}
.y19_c00042{bottom:398.924850px;}
.y18_c00042{bottom:434.924850px;}
.y17_c00042{bottom:470.924850px;}
.y16_c00042{bottom:506.924850px;}
.y15_c00042{bottom:542.924850px;}
.y14_c00042{bottom:578.924850px;}
.y13_c00042{bottom:614.924850px;}
.y12_c00042{bottom:650.924850px;}
.y11_c00042{bottom:686.924850px;}
.y10_c00042{bottom:722.924850px;}
.yf_c00042{bottom:758.924850px;}
.ye_c00042{bottom:794.924850px;}
.yd_c00042{bottom:830.924850px;}
.yc_c00042{bottom:866.924850px;}
.yb_c00042{bottom:902.924850px;}
.ya_c00042{bottom:938.924850px;}
.y9_c00042{bottom:974.924850px;}
.y8_c00042{bottom:1010.924850px;}
.y7_c00042{bottom:1046.924850px;}
.y6_c00042{bottom:1082.924850px;}
.y2_c00042{bottom:1165.005000px;}
.h4_c00042{height:20.880000px;}
.h3_c00042{height:70.664062px;}
.h2_c00042{height:1237.365000px;}
.h0_c00042{height:1262.835000px;}
.h1_c00042{height:1263.000000px;}
.w3_c00042{width:18.000000px;}
.w2_c00042{width:867.465000px;}
.w0_c00042{width:892.935000px;}
.w1_c00042{width:893.250000px;}
.x0_c00042{left:0.000000px;}
.x1_c00042{left:12.735000px;}
.x3_c00042{left:95.394300px;}
.x5_c00042{left:149.400150px;}
.x4_c00042{left:437.535000px;}
.x2_c00042{left:880.050300px;}
@media print{
.v0_c00042{vertical-align:0.000000pt;}
.ls1_c00042{letter-spacing:-0.012800pt;}
.ls0_c00042{letter-spacing:0.000000pt;}
.ls2_c00042{letter-spacing:0.972800pt;}
.ws0_c00042{word-spacing:-15.987200pt;}
.ws1_c00042{word-spacing:0.000000pt;}
._b_c00042{margin-left:-0.985600pt;}
._4_c00042{width:0.940800pt;}
._a_c00042{width:3.212800pt;}
._e_c00042{width:4.281600pt;}
._2_c00042{width:5.657600pt;}
._7_c00042{width:7.398400pt;}
._5_c00042{width:8.876800pt;}
._6_c00042{width:12.460800pt;}
._d_c00042{width:14.054400pt;}
._3_c00042{width:15.027200pt;}
._0_c00042{width:17.177600pt;}
._f_c00042{width:18.553600pt;}
._1_c00042{width:20.134400pt;}
._c_c00042{width:21.388800pt;}
._9_c00042{width:23.494400pt;}
._8_c00042{width:24.435200pt;}
.fs0_c00042{font-size:64.000000pt;}
.y0_c00042{bottom:0.000000pt;}
.y5_c00042{bottom:4.480000pt;}
.y1_c00042{bottom:11.320000pt;}
.y3_c00042{bottom:40.360000pt;}
.y4_c00042{bottom:47.200000pt;}
.y20_c00042{bottom:130.599867pt;}
.y1f_c00042{bottom:162.599867pt;}
.y1e_c00042{bottom:194.599867pt;}
.y1d_c00042{bottom:226.599867pt;}
.y1c_c00042{bottom:258.599867pt;}
.y1b_c00042{bottom:290.599867pt;}
.y1a_c00042{bottom:322.599867pt;}
.y19_c00042{bottom:354.599867pt;}
.y18_c00042{bottom:386.599867pt;}
.y17_c00042{bottom:418.599867pt;}
.y16_c00042{bottom:450.599867pt;}
.y15_c00042{bottom:482.599867pt;}
.y14_c00042{bottom:514.599867pt;}
.y13_c00042{bottom:546.599867pt;}
.y12_c00042{bottom:578.599867pt;}
.y11_c00042{bottom:610.599867pt;}
.y10_c00042{bottom:642.599867pt;}
.yf_c00042{bottom:674.599867pt;}
.ye_c00042{bottom:706.599867pt;}
.yd_c00042{bottom:738.599867pt;}
.yc_c00042{bottom:770.599867pt;}
.yb_c00042{bottom:802.599867pt;}
.ya_c00042{bottom:834.599867pt;}
.y9_c00042{bottom:866.599867pt;}
.y8_c00042{bottom:898.599867pt;}
.y7_c00042{bottom:930.599867pt;}
.y6_c00042{bottom:962.599867pt;}
.y2_c00042{bottom:1035.560000pt;}
.h4_c00042{height:18.560000pt;}
.h3_c00042{height:62.812500pt;}
.h2_c00042{height:1099.880000pt;}
.h0_c00042{height:1122.520000pt;}
.h1_c00042{height:1122.666667pt;}
.w3_c00042{width:16.000000pt;}
.w2_c00042{width:771.080000pt;}
.w0_c00042{width:793.720000pt;}
.w1_c00042{width:794.000000pt;}
.x0_c00042{left:0.000000pt;}
.x1_c00042{left:11.320000pt;}
.x3_c00042{left:84.794933pt;}
.x5_c00042{left:132.800133pt;}
.x4_c00042{left:388.920000pt;}
.x2_c00042{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b7088d3c5baa36d0f910537.woff2')format("woff");}.ff1_c00043{font-family:ff1_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:ff2_c00043;src:url('chunks/assets/font_5542640ede9a2a7fc560e9a9.woff2')format("woff");}.ff2_c00043{font-family:ff2_c00043;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00043{letter-spacing:-0.014400px;}
.ls0_c00043{letter-spacing:0.000000px;}
.sc__c00043{text-shadow:none;}
.sc0_c00043{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00043{-webkit-text-stroke:0px transparent;}
.sc0_c00043{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00043{word-spacing:0.000000px;}
._a_c00043{width:2.383200px;}
._6_c00043{width:3.492000px;}
._2_c00043{width:4.636800px;}
._0_c00043{width:5.673600px;}
._1_c00043{width:8.157600px;}
._5_c00043{width:9.216000px;}
._7_c00043{width:10.274400px;}
._3_c00043{width:11.599200px;}
._c_c00043{width:13.276800px;}
._9_c00043{width:15.062400px;}
._8_c00043{width:16.992000px;}
._b_c00043{width:19.008000px;}
._4_c00043{width:22.320000px;}
.fc1_c00043{color:transparent;}
.fc0_c00043{color:rgb(0,0,0);}
.fs0_c00043{font-size:72.000000px;}
.y0_c00043{bottom:0.000000px;}
.y5_c00043{bottom:1.440000px;}
.y1_c00043{bottom:12.735000px;}
.y3_c00043{bottom:45.405000px;}
.y4_c00043{bottom:56.700000px;}
.y21_c00043{bottom:110.924850px;}
.y20_c00043{bottom:146.924850px;}
.y1f_c00043{bottom:182.924850px;}
.y1e_c00043{bottom:218.924850px;}
.y1d_c00043{bottom:254.924850px;}
.y1c_c00043{bottom:290.924850px;}
.y1b_c00043{bottom:326.924850px;}
.y1a_c00043{bottom:362.924850px;}
.y19_c00043{bottom:398.924850px;}
.y18_c00043{bottom:434.924850px;}
.y17_c00043{bottom:470.924850px;}
.y16_c00043{bottom:506.924850px;}
.y15_c00043{bottom:542.924850px;}
.y14_c00043{bottom:578.924850px;}
.y13_c00043{bottom:614.924850px;}
.y12_c00043{bottom:650.924850px;}
.y11_c00043{bottom:686.924850px;}
.y10_c00043{bottom:722.924850px;}
.yf_c00043{bottom:758.924850px;}
.ye_c00043{bottom:794.924850px;}
.yd_c00043{bottom:830.924850px;}
.yc_c00043{bottom:866.924850px;}
.yb_c00043{bottom:902.924850px;}
.ya_c00043{bottom:938.924850px;}
.y9_c00043{bottom:974.924850px;}
.y8_c00043{bottom:1010.924850px;}
.y7_c00043{bottom:1046.924850px;}
.y6_c00043{bottom:1082.924850px;}
.y2_c00043{bottom:1165.005000px;}
.h4_c00043{height:17.280000px;}
.h3_c00043{height:70.664062px;}
.h2_c00043{height:1237.365000px;}
.h0_c00043{height:1262.835000px;}
.h1_c00043{height:1263.000000px;}
.w3_c00043{width:47.520000px;}
.w2_c00043{width:867.465000px;}
.w0_c00043{width:892.935000px;}
.w1_c00043{width:893.250000px;}
.x0_c00043{left:0.000000px;}
.x1_c00043{left:12.735000px;}
.x5_c00043{left:14.737500px;}
.x3_c00043{left:95.394300px;}
.x6_c00043{left:149.400150px;}
.x4_c00043{left:422.775000px;}
.x2_c00043{left:880.050300px;}
@media print{
.v0_c00043{vertical-align:0.000000pt;}
.ls1_c00043{letter-spacing:-0.012800pt;}
.ls0_c00043{letter-spacing:0.000000pt;}
.ws0_c00043{word-spacing:0.000000pt;}
._a_c00043{width:2.118400pt;}
._6_c00043{width:3.104000pt;}
._2_c00043{width:4.121600pt;}
._0_c00043{width:5.043200pt;}
._1_c00043{width:7.251200pt;}
._5_c00043{width:8.192000pt;}
._7_c00043{width:9.132800pt;}
._3_c00043{width:10.310400pt;}
._c_c00043{width:11.801600pt;}
._9_c00043{width:13.388800pt;}
._8_c00043{width:15.104000pt;}
._b_c00043{width:16.896000pt;}
._4_c00043{width:19.840000pt;}
.fs0_c00043{font-size:64.000000pt;}
.y0_c00043{bottom:0.000000pt;}
.y5_c00043{bottom:1.280000pt;}
.y1_c00043{bottom:11.320000pt;}
.y3_c00043{bottom:40.360000pt;}
.y4_c00043{bottom:50.400000pt;}
.y21_c00043{bottom:98.599867pt;}
.y20_c00043{bottom:130.599867pt;}
.y1f_c00043{bottom:162.599867pt;}
.y1e_c00043{bottom:194.599867pt;}
.y1d_c00043{bottom:226.599867pt;}
.y1c_c00043{bottom:258.599867pt;}
.y1b_c00043{bottom:290.599867pt;}
.y1a_c00043{bottom:322.599867pt;}
.y19_c00043{bottom:354.599867pt;}
.y18_c00043{bottom:386.599867pt;}
.y17_c00043{bottom:418.599867pt;}
.y16_c00043{bottom:450.599867pt;}
.y15_c00043{bottom:482.599867pt;}
.y14_c00043{bottom:514.599867pt;}
.y13_c00043{bottom:546.599867pt;}
.y12_c00043{bottom:578.599867pt;}
.y11_c00043{bottom:610.599867pt;}
.y10_c00043{bottom:642.599867pt;}
.yf_c00043{bottom:674.599867pt;}
.ye_c00043{bottom:706.599867pt;}
.yd_c00043{bottom:738.599867pt;}
.yc_c00043{bottom:770.599867pt;}
.yb_c00043{bottom:802.599867pt;}
.ya_c00043{bottom:834.599867pt;}
.y9_c00043{bottom:866.599867pt;}
.y8_c00043{bottom:898.599867pt;}
.y7_c00043{bottom:930.599867pt;}
.y6_c00043{bottom:962.599867pt;}
.y2_c00043{bottom:1035.560000pt;}
.h4_c00043{height:15.360000pt;}
.h3_c00043{height:62.812500pt;}
.h2_c00043{height:1099.880000pt;}
.h0_c00043{height:1122.520000pt;}
.h1_c00043{height:1122.666667pt;}
.w3_c00043{width:42.240000pt;}
.w2_c00043{width:771.080000pt;}
.w0_c00043{width:793.720000pt;}
.w1_c00043{width:794.000000pt;}
.x0_c00043{left:0.000000pt;}
.x1_c00043{left:11.320000pt;}
.x5_c00043{left:13.100000pt;}
.x3_c00043{left:84.794933pt;}
.x6_c00043{left:132.800133pt;}
.x4_c00043{left:375.800000pt;}
.x2_c00043{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e4095d4580d90d3ff2161a0b.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;}
.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;}
.ls2_c00044{letter-spacing:-0.014400px;}
.ls1_c00044{letter-spacing:0.000000px;}
.ls0_c00044{letter-spacing:0.014400px;}
.sc__c00044{text-shadow:none;}
.sc0_c00044{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00044{-webkit-text-stroke:0px transparent;}
.sc0_c00044{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00044{word-spacing:0.000000px;}
._b_c00044{width:1.296000px;}
._9_c00044{width:2.412000px;}
._5_c00044{width:3.585600px;}
._6_c00044{width:5.558400px;}
._7_c00044{width:6.955200px;}
._2_c00044{width:7.999200px;}
._8_c00044{width:9.115200px;}
._0_c00044{width:10.144800px;}
._4_c00044{width:11.196000px;}
._c_c00044{width:14.760000px;}
._1_c00044{width:16.668000px;}
._3_c00044{width:19.058400px;}
._a_c00044{width:20.606400px;}
._d_c00044{width:24.026400px;}
.fc1_c00044{color:transparent;}
.fc0_c00044{color:rgb(0,0,0);}
.fs0_c00044{font-size:72.000000px;}
.y0_c00044{bottom:0.000000px;}
.y5_c00044{bottom:5.040000px;}
.y1_c00044{bottom:12.735000px;}
.y3_c00044{bottom:45.405000px;}
.y4_c00044{bottom:53.100000px;}
.y21_c00044{bottom:110.924850px;}
.y20_c00044{bottom:146.924850px;}
.y1f_c00044{bottom:182.924850px;}
.y1e_c00044{bottom:218.924850px;}
.y1d_c00044{bottom:254.924850px;}
.y1c_c00044{bottom:290.924850px;}
.y1b_c00044{bottom:326.924850px;}
.y1a_c00044{bottom:362.924850px;}
.y19_c00044{bottom:398.924850px;}
.y18_c00044{bottom:434.924850px;}
.y17_c00044{bottom:470.924850px;}
.y16_c00044{bottom:506.924850px;}
.y15_c00044{bottom:542.924850px;}
.y14_c00044{bottom:578.924850px;}
.y13_c00044{bottom:614.924850px;}
.y12_c00044{bottom:650.924850px;}
.y11_c00044{bottom:686.924850px;}
.y10_c00044{bottom:722.924850px;}
.yf_c00044{bottom:758.924850px;}
.ye_c00044{bottom:794.924850px;}
.yd_c00044{bottom:830.924850px;}
.yc_c00044{bottom:866.924850px;}
.yb_c00044{bottom:902.924850px;}
.ya_c00044{bottom:938.924850px;}
.y9_c00044{bottom:974.924850px;}
.y8_c00044{bottom:1010.924850px;}
.y7_c00044{bottom:1046.924850px;}
.y6_c00044{bottom:1082.924850px;}
.y2_c00044{bottom:1165.005000px;}
.h4_c00044{height:20.880000px;}
.h3_c00044{height:70.664062px;}
.h2_c00044{height:1237.365000px;}
.h0_c00044{height:1262.835000px;}
.h1_c00044{height:1263.000000px;}
.w3_c00044{width:18.000000px;}
.w2_c00044{width:867.465000px;}
.w0_c00044{width:892.935000px;}
.w1_c00044{width:893.250000px;}
.x0_c00044{left:0.000000px;}
.x1_c00044{left:12.735000px;}
.x3_c00044{left:95.394300px;}
.x5_c00044{left:149.400150px;}
.x4_c00044{left:437.535000px;}
.x2_c00044{left:880.050300px;}
@media print{
.v0_c00044{vertical-align:0.000000pt;}
.ls2_c00044{letter-spacing:-0.012800pt;}
.ls1_c00044{letter-spacing:0.000000pt;}
.ls0_c00044{letter-spacing:0.012800pt;}
.ws0_c00044{word-spacing:0.000000pt;}
._b_c00044{width:1.152000pt;}
._9_c00044{width:2.144000pt;}
._5_c00044{width:3.187200pt;}
._6_c00044{width:4.940800pt;}
._7_c00044{width:6.182400pt;}
._2_c00044{width:7.110400pt;}
._8_c00044{width:8.102400pt;}
._0_c00044{width:9.017600pt;}
._4_c00044{width:9.952000pt;}
._c_c00044{width:13.120000pt;}
._1_c00044{width:14.816000pt;}
._3_c00044{width:16.940800pt;}
._a_c00044{width:18.316800pt;}
._d_c00044{width:21.356800pt;}
.fs0_c00044{font-size:64.000000pt;}
.y0_c00044{bottom:0.000000pt;}
.y5_c00044{bottom:4.480000pt;}
.y1_c00044{bottom:11.320000pt;}
.y3_c00044{bottom:40.360000pt;}
.y4_c00044{bottom:47.200000pt;}
.y21_c00044{bottom:98.599867pt;}
.y20_c00044{bottom:130.599867pt;}
.y1f_c00044{bottom:162.599867pt;}
.y1e_c00044{bottom:194.599867pt;}
.y1d_c00044{bottom:226.599867pt;}
.y1c_c00044{bottom:258.599867pt;}
.y1b_c00044{bottom:290.599867pt;}
.y1a_c00044{bottom:322.599867pt;}
.y19_c00044{bottom:354.599867pt;}
.y18_c00044{bottom:386.599867pt;}
.y17_c00044{bottom:418.599867pt;}
.y16_c00044{bottom:450.599867pt;}
.y15_c00044{bottom:482.599867pt;}
.y14_c00044{bottom:514.599867pt;}
.y13_c00044{bottom:546.599867pt;}
.y12_c00044{bottom:578.599867pt;}
.y11_c00044{bottom:610.599867pt;}
.y10_c00044{bottom:642.599867pt;}
.yf_c00044{bottom:674.599867pt;}
.ye_c00044{bottom:706.599867pt;}
.yd_c00044{bottom:738.599867pt;}
.yc_c00044{bottom:770.599867pt;}
.yb_c00044{bottom:802.599867pt;}
.ya_c00044{bottom:834.599867pt;}
.y9_c00044{bottom:866.599867pt;}
.y8_c00044{bottom:898.599867pt;}
.y7_c00044{bottom:930.599867pt;}
.y6_c00044{bottom:962.599867pt;}
.y2_c00044{bottom:1035.560000pt;}
.h4_c00044{height:18.560000pt;}
.h3_c00044{height:62.812500pt;}
.h2_c00044{height:1099.880000pt;}
.h0_c00044{height:1122.520000pt;}
.h1_c00044{height:1122.666667pt;}
.w3_c00044{width:16.000000pt;}
.w2_c00044{width:771.080000pt;}
.w0_c00044{width:793.720000pt;}
.w1_c00044{width:794.000000pt;}
.x0_c00044{left:0.000000pt;}
.x1_c00044{left:11.320000pt;}
.x3_c00044{left:84.794933pt;}
.x5_c00044{left:132.800133pt;}
.x4_c00044{left:388.920000pt;}
.x2_c00044{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c810af48d1ae59ba4eb28314.woff2')format("woff");}.ff1_c00045{font-family:ff1_c00045;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00045;src:url('chunks/assets/font_ee3997b9a5cf14c95b44e42a.woff2')format("woff");}.ff2_c00045{font-family:ff2_c00045;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00045{letter-spacing:-0.014400px;}
.ls1_c00045{letter-spacing:0.000000px;}
.ls0_c00045{letter-spacing:0.014400px;}
.ls3_c00045{letter-spacing:5.054400px;}
.sc__c00045{text-shadow:none;}
.sc0_c00045{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00045{-webkit-text-stroke:0px transparent;}
.sc0_c00045{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00045{word-spacing:0.000000px;}
._b_c00045{margin-left:-5.292000px;}
._7_c00045{margin-left:-1.065600px;}
._1_c00045{width:1.843200px;}
._5_c00045{width:3.859200px;}
._4_c00045{width:5.335200px;}
._8_c00045{width:6.753600px;}
._2_c00045{width:7.869600px;}
._9_c00045{width:12.312000px;}
._c_c00045{width:13.809600px;}
._0_c00045{width:15.552000px;}
._6_c00045{width:16.761600px;}
._a_c00045{width:21.024000px;}
._3_c00045{width:27.136800px;}
.fc1_c00045{color:transparent;}
.fc0_c00045{color:rgb(0,0,0);}
.fs0_c00045{font-size:72.000000px;}
.y0_c00045{bottom:0.000000px;}
.y5_c00045{bottom:1.440000px;}
.y1_c00045{bottom:12.735000px;}
.y3_c00045{bottom:45.405000px;}
.y4_c00045{bottom:56.700000px;}
.y21_c00045{bottom:110.924850px;}
.y20_c00045{bottom:146.924850px;}
.y1f_c00045{bottom:182.924850px;}
.y1e_c00045{bottom:218.924850px;}
.y1d_c00045{bottom:254.924850px;}
.y1c_c00045{bottom:290.924850px;}
.y1b_c00045{bottom:326.924850px;}
.y1a_c00045{bottom:362.924850px;}
.y19_c00045{bottom:398.924850px;}
.y18_c00045{bottom:434.924850px;}
.y17_c00045{bottom:470.924850px;}
.y16_c00045{bottom:506.924850px;}
.y15_c00045{bottom:542.924850px;}
.y14_c00045{bottom:578.924850px;}
.y13_c00045{bottom:614.924850px;}
.y12_c00045{bottom:650.924850px;}
.y11_c00045{bottom:686.924850px;}
.y10_c00045{bottom:722.924850px;}
.yf_c00045{bottom:758.924850px;}
.ye_c00045{bottom:794.924850px;}
.yd_c00045{bottom:830.924850px;}
.yc_c00045{bottom:866.924850px;}
.yb_c00045{bottom:902.924850px;}
.ya_c00045{bottom:938.924850px;}
.y9_c00045{bottom:974.924850px;}
.y8_c00045{bottom:1010.924850px;}
.y7_c00045{bottom:1046.924850px;}
.y6_c00045{bottom:1082.924850px;}
.y2_c00045{bottom:1165.005000px;}
.h4_c00045{height:17.280000px;}
.h3_c00045{height:70.664062px;}
.h2_c00045{height:1237.365000px;}
.h0_c00045{height:1262.835000px;}
.h1_c00045{height:1263.000000px;}
.w3_c00045{width:47.520000px;}
.w2_c00045{width:867.465000px;}
.w0_c00045{width:892.935000px;}
.w1_c00045{width:893.250000px;}
.x0_c00045{left:0.000000px;}
.x1_c00045{left:12.735000px;}
.x5_c00045{left:14.737500px;}
.x3_c00045{left:95.394300px;}
.x6_c00045{left:149.418150px;}
.x4_c00045{left:422.775000px;}
.x2_c00045{left:880.050300px;}
@media print{
.v0_c00045{vertical-align:0.000000pt;}
.ls2_c00045{letter-spacing:-0.012800pt;}
.ls1_c00045{letter-spacing:0.000000pt;}
.ls0_c00045{letter-spacing:0.012800pt;}
.ls3_c00045{letter-spacing:4.492800pt;}
.ws0_c00045{word-spacing:0.000000pt;}
._b_c00045{margin-left:-4.704000pt;}
._7_c00045{margin-left:-0.947200pt;}
._1_c00045{width:1.638400pt;}
._5_c00045{width:3.430400pt;}
._4_c00045{width:4.742400pt;}
._8_c00045{width:6.003200pt;}
._2_c00045{width:6.995200pt;}
._9_c00045{width:10.944000pt;}
._c_c00045{width:12.275200pt;}
._0_c00045{width:13.824000pt;}
._6_c00045{width:14.899200pt;}
._a_c00045{width:18.688000pt;}
._3_c00045{width:24.121600pt;}
.fs0_c00045{font-size:64.000000pt;}
.y0_c00045{bottom:0.000000pt;}
.y5_c00045{bottom:1.280000pt;}
.y1_c00045{bottom:11.320000pt;}
.y3_c00045{bottom:40.360000pt;}
.y4_c00045{bottom:50.400000pt;}
.y21_c00045{bottom:98.599867pt;}
.y20_c00045{bottom:130.599867pt;}
.y1f_c00045{bottom:162.599867pt;}
.y1e_c00045{bottom:194.599867pt;}
.y1d_c00045{bottom:226.599867pt;}
.y1c_c00045{bottom:258.599867pt;}
.y1b_c00045{bottom:290.599867pt;}
.y1a_c00045{bottom:322.599867pt;}
.y19_c00045{bottom:354.599867pt;}
.y18_c00045{bottom:386.599867pt;}
.y17_c00045{bottom:418.599867pt;}
.y16_c00045{bottom:450.599867pt;}
.y15_c00045{bottom:482.599867pt;}
.y14_c00045{bottom:514.599867pt;}
.y13_c00045{bottom:546.599867pt;}
.y12_c00045{bottom:578.599867pt;}
.y11_c00045{bottom:610.599867pt;}
.y10_c00045{bottom:642.599867pt;}
.yf_c00045{bottom:674.599867pt;}
.ye_c00045{bottom:706.599867pt;}
.yd_c00045{bottom:738.599867pt;}
.yc_c00045{bottom:770.599867pt;}
.yb_c00045{bottom:802.599867pt;}
.ya_c00045{bottom:834.599867pt;}
.y9_c00045{bottom:866.599867pt;}
.y8_c00045{bottom:898.599867pt;}
.y7_c00045{bottom:930.599867pt;}
.y6_c00045{bottom:962.599867pt;}
.y2_c00045{bottom:1035.560000pt;}
.h4_c00045{height:15.360000pt;}
.h3_c00045{height:62.812500pt;}
.h2_c00045{height:1099.880000pt;}
.h0_c00045{height:1122.520000pt;}
.h1_c00045{height:1122.666667pt;}
.w3_c00045{width:42.240000pt;}
.w2_c00045{width:771.080000pt;}
.w0_c00045{width:793.720000pt;}
.w1_c00045{width:794.000000pt;}
.x0_c00045{left:0.000000pt;}
.x1_c00045{left:11.320000pt;}
.x5_c00045{left:13.100000pt;}
.x3_c00045{left:84.794933pt;}
.x6_c00045{left:132.816133pt;}
.x4_c00045{left:375.800000pt;}
.x2_c00045{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4455d4c4e60152262b53986a.woff2')format("woff");}.ff1_c00046{font-family:ff1_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:ff2_c00046;src:url('chunks/assets/font_c622ce1adc4d602626ddc8dd.woff2')format("woff");}.ff2_c00046{font-family:ff2_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;}
.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;}
.ls1_c00046{letter-spacing:-0.014400px;}
.ls0_c00046{letter-spacing:0.000000px;}
.ls2_c00046{letter-spacing:0.242208px;}
.ls3_c00046{letter-spacing:0.317376px;}
.sc__c00046{text-shadow:none;}
.sc0_c00046{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00046{-webkit-text-stroke:0px transparent;}
.sc0_c00046{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00046{word-spacing:0.000000px;}
._0_c00046{width:1.339200px;}
._2_c00046{width:2.714400px;}
._1_c00046{width:5.587200px;}
._5_c00046{width:6.739200px;}
._6_c00046{width:8.539200px;}
._7_c00046{width:10.094400px;}
._8_c00046{width:15.940800px;}
._3_c00046{width:16.963200px;}
._9_c00046{width:23.810400px;}
._4_c00046{width:29.491200px;}
.fc2_c00046{color:transparent;}
.fc1_c00046{color:rgb(127,127,127);}
.fc0_c00046{color:rgb(0,0,0);}
.fs0_c00046{font-size:72.000000px;}
.fs1_c00046{font-size:83.520000px;}
.y0_c00046{bottom:0.000000px;}
.y5_c00046{bottom:5.040000px;}
.y1_c00046{bottom:12.735000px;}
.y3_c00046{bottom:45.405000px;}
.y4_c00046{bottom:53.100000px;}
.y21_c00046{bottom:110.925000px;}
.y20_c00046{bottom:146.925000px;}
.y1f_c00046{bottom:182.925000px;}
.y1e_c00046{bottom:218.925000px;}
.y1d_c00046{bottom:254.925000px;}
.y1c_c00046{bottom:290.925000px;}
.y1b_c00046{bottom:326.925000px;}
.y1a_c00046{bottom:362.925000px;}
.y19_c00046{bottom:398.925000px;}
.y18_c00046{bottom:434.925000px;}
.y17_c00046{bottom:470.925000px;}
.y16_c00046{bottom:507.645000px;}
.y15_c00046{bottom:542.924850px;}
.y14_c00046{bottom:578.924850px;}
.y13_c00046{bottom:614.924850px;}
.y12_c00046{bottom:650.924850px;}
.y11_c00046{bottom:686.924850px;}
.y10_c00046{bottom:722.924850px;}
.yf_c00046{bottom:758.924850px;}
.ye_c00046{bottom:794.924850px;}
.yd_c00046{bottom:830.924850px;}
.yc_c00046{bottom:866.924850px;}
.yb_c00046{bottom:902.924850px;}
.ya_c00046{bottom:938.924850px;}
.y9_c00046{bottom:974.924850px;}
.y8_c00046{bottom:1010.924850px;}
.y7_c00046{bottom:1046.924850px;}
.y6_c00046{bottom:1082.924850px;}
.y2_c00046{bottom:1165.005000px;}
.h4_c00046{height:20.880000px;}
.h6_c00046{height:70.628906px;}
.h3_c00046{height:70.664062px;}
.h5_c00046{height:81.929531px;}
.h2_c00046{height:1237.365000px;}
.h0_c00046{height:1262.835000px;}
.h1_c00046{height:1263.000000px;}
.w3_c00046{width:18.000000px;}
.w2_c00046{width:867.465000px;}
.w0_c00046{width:892.935000px;}
.w1_c00046{width:893.250000px;}
.x0_c00046{left:0.000000px;}
.x1_c00046{left:12.735000px;}
.x3_c00046{left:95.394300px;}
.x5_c00046{left:149.400150px;}
.x4_c00046{left:437.535000px;}
.x2_c00046{left:880.050300px;}
@media print{
.v0_c00046{vertical-align:0.000000pt;}
.ls1_c00046{letter-spacing:-0.012800pt;}
.ls0_c00046{letter-spacing:0.000000pt;}
.ls2_c00046{letter-spacing:0.215296pt;}
.ls3_c00046{letter-spacing:0.282112pt;}
.ws0_c00046{word-spacing:0.000000pt;}
._0_c00046{width:1.190400pt;}
._2_c00046{width:2.412800pt;}
._1_c00046{width:4.966400pt;}
._5_c00046{width:5.990400pt;}
._6_c00046{width:7.590400pt;}
._7_c00046{width:8.972800pt;}
._8_c00046{width:14.169600pt;}
._3_c00046{width:15.078400pt;}
._9_c00046{width:21.164800pt;}
._4_c00046{width:26.214400pt;}
.fs0_c00046{font-size:64.000000pt;}
.fs1_c00046{font-size:74.240000pt;}
.y0_c00046{bottom:0.000000pt;}
.y5_c00046{bottom:4.480000pt;}
.y1_c00046{bottom:11.320000pt;}
.y3_c00046{bottom:40.360000pt;}
.y4_c00046{bottom:47.200000pt;}
.y21_c00046{bottom:98.600000pt;}
.y20_c00046{bottom:130.600000pt;}
.y1f_c00046{bottom:162.600000pt;}
.y1e_c00046{bottom:194.600000pt;}
.y1d_c00046{bottom:226.600000pt;}
.y1c_c00046{bottom:258.600000pt;}
.y1b_c00046{bottom:290.600000pt;}
.y1a_c00046{bottom:322.600000pt;}
.y19_c00046{bottom:354.600000pt;}
.y18_c00046{bottom:386.600000pt;}
.y17_c00046{bottom:418.600000pt;}
.y16_c00046{bottom:451.240000pt;}
.y15_c00046{bottom:482.599867pt;}
.y14_c00046{bottom:514.599867pt;}
.y13_c00046{bottom:546.599867pt;}
.y12_c00046{bottom:578.599867pt;}
.y11_c00046{bottom:610.599867pt;}
.y10_c00046{bottom:642.599867pt;}
.yf_c00046{bottom:674.599867pt;}
.ye_c00046{bottom:706.599867pt;}
.yd_c00046{bottom:738.599867pt;}
.yc_c00046{bottom:770.599867pt;}
.yb_c00046{bottom:802.599867pt;}
.ya_c00046{bottom:834.599867pt;}
.y9_c00046{bottom:866.599867pt;}
.y8_c00046{bottom:898.599867pt;}
.y7_c00046{bottom:930.599867pt;}
.y6_c00046{bottom:962.599867pt;}
.y2_c00046{bottom:1035.560000pt;}
.h4_c00046{height:18.560000pt;}
.h6_c00046{height:62.781250pt;}
.h3_c00046{height:62.812500pt;}
.h5_c00046{height:72.826250pt;}
.h2_c00046{height:1099.880000pt;}
.h0_c00046{height:1122.520000pt;}
.h1_c00046{height:1122.666667pt;}
.w3_c00046{width:16.000000pt;}
.w2_c00046{width:771.080000pt;}
.w0_c00046{width:793.720000pt;}
.w1_c00046{width:794.000000pt;}
.x0_c00046{left:0.000000pt;}
.x1_c00046{left:11.320000pt;}
.x3_c00046{left:84.794933pt;}
.x5_c00046{left:132.800133pt;}
.x4_c00046{left:388.920000pt;}
.x2_c00046{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d889b6d2353b1ed43ee4488f.woff2')format("woff");}.ff1_c00047{font-family:ff1_c00047;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.014400px;}
.ls0_c00047{letter-spacing:0.000000px;}
.sc__c00047{text-shadow:none;}
.sc0_c00047{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00047{-webkit-text-stroke:0px transparent;}
.sc0_c00047{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00047{word-spacing:0.000000px;}
._1_c00047{width:1.339200px;}
._8_c00047{width:2.390400px;}
._a_c00047{width:3.398400px;}
._3_c00047{width:4.831200px;}
._0_c00047{width:5.882400px;}
._e_c00047{width:7.063200px;}
._d_c00047{width:8.704800px;}
._2_c00047{width:10.375200px;}
._f_c00047{width:11.433600px;}
._c_c00047{width:14.277600px;}
._9_c00047{width:15.530400px;}
._6_c00047{width:16.826400px;}
._b_c00047{width:20.001600px;}
._10_c00047{width:22.168800px;}
._7_c00047{width:28.094400px;}
._4_c00047{width:29.160000px;}
._5_c00047{width:39.391200px;}
.fc1_c00047{color:transparent;}
.fc0_c00047{color:rgb(0,0,0);}
.fs0_c00047{font-size:72.000000px;}
.y0_c00047{bottom:0.000000px;}
.y5_c00047{bottom:1.440000px;}
.y1_c00047{bottom:12.735000px;}
.y3_c00047{bottom:45.405000px;}
.y4_c00047{bottom:56.700000px;}
.y21_c00047{bottom:110.924850px;}
.y20_c00047{bottom:146.924850px;}
.y1f_c00047{bottom:182.924850px;}
.y1e_c00047{bottom:218.924850px;}
.y1d_c00047{bottom:254.924850px;}
.y1c_c00047{bottom:290.924850px;}
.y1b_c00047{bottom:326.924850px;}
.y1a_c00047{bottom:362.924850px;}
.y19_c00047{bottom:398.924850px;}
.y18_c00047{bottom:434.924850px;}
.y17_c00047{bottom:470.924850px;}
.y16_c00047{bottom:506.924850px;}
.y15_c00047{bottom:542.924850px;}
.y14_c00047{bottom:578.924850px;}
.y13_c00047{bottom:614.924850px;}
.y12_c00047{bottom:650.924850px;}
.y11_c00047{bottom:686.924850px;}
.y10_c00047{bottom:722.924850px;}
.yf_c00047{bottom:758.924850px;}
.ye_c00047{bottom:794.924850px;}
.yd_c00047{bottom:830.924850px;}
.yc_c00047{bottom:866.924850px;}
.yb_c00047{bottom:902.924850px;}
.ya_c00047{bottom:938.924850px;}
.y9_c00047{bottom:974.924850px;}
.y8_c00047{bottom:1010.924850px;}
.y7_c00047{bottom:1046.924850px;}
.y6_c00047{bottom:1082.924850px;}
.y2_c00047{bottom:1165.005000px;}
.h4_c00047{height:17.280000px;}
.h3_c00047{height:70.664062px;}
.h2_c00047{height:1237.365000px;}
.h0_c00047{height:1262.835000px;}
.h1_c00047{height:1263.000000px;}
.w3_c00047{width:47.520000px;}
.w2_c00047{width:867.465000px;}
.w0_c00047{width:892.935000px;}
.w1_c00047{width:893.250000px;}
.x0_c00047{left:0.000000px;}
.x1_c00047{left:12.735000px;}
.x5_c00047{left:14.737500px;}
.x3_c00047{left:95.394300px;}
.x6_c00047{left:149.400150px;}
.x4_c00047{left:422.775000px;}
.x2_c00047{left:880.050300px;}
@media print{
.v0_c00047{vertical-align:0.000000pt;}
.ls1_c00047{letter-spacing:-0.012800pt;}
.ls0_c00047{letter-spacing:0.000000pt;}
.ws0_c00047{word-spacing:0.000000pt;}
._1_c00047{width:1.190400pt;}
._8_c00047{width:2.124800pt;}
._a_c00047{width:3.020800pt;}
._3_c00047{width:4.294400pt;}
._0_c00047{width:5.228800pt;}
._e_c00047{width:6.278400pt;}
._d_c00047{width:7.737600pt;}
._2_c00047{width:9.222400pt;}
._f_c00047{width:10.163200pt;}
._c_c00047{width:12.691200pt;}
._9_c00047{width:13.804800pt;}
._6_c00047{width:14.956800pt;}
._b_c00047{width:17.779200pt;}
._10_c00047{width:19.705600pt;}
._7_c00047{width:24.972800pt;}
._4_c00047{width:25.920000pt;}
._5_c00047{width:35.014400pt;}
.fs0_c00047{font-size:64.000000pt;}
.y0_c00047{bottom:0.000000pt;}
.y5_c00047{bottom:1.280000pt;}
.y1_c00047{bottom:11.320000pt;}
.y3_c00047{bottom:40.360000pt;}
.y4_c00047{bottom:50.400000pt;}
.y21_c00047{bottom:98.599867pt;}
.y20_c00047{bottom:130.599867pt;}
.y1f_c00047{bottom:162.599867pt;}
.y1e_c00047{bottom:194.599867pt;}
.y1d_c00047{bottom:226.599867pt;}
.y1c_c00047{bottom:258.599867pt;}
.y1b_c00047{bottom:290.599867pt;}
.y1a_c00047{bottom:322.599867pt;}
.y19_c00047{bottom:354.599867pt;}
.y18_c00047{bottom:386.599867pt;}
.y17_c00047{bottom:418.599867pt;}
.y16_c00047{bottom:450.599867pt;}
.y15_c00047{bottom:482.599867pt;}
.y14_c00047{bottom:514.599867pt;}
.y13_c00047{bottom:546.599867pt;}
.y12_c00047{bottom:578.599867pt;}
.y11_c00047{bottom:610.599867pt;}
.y10_c00047{bottom:642.599867pt;}
.yf_c00047{bottom:674.599867pt;}
.ye_c00047{bottom:706.599867pt;}
.yd_c00047{bottom:738.599867pt;}
.yc_c00047{bottom:770.599867pt;}
.yb_c00047{bottom:802.599867pt;}
.ya_c00047{bottom:834.599867pt;}
.y9_c00047{bottom:866.599867pt;}
.y8_c00047{bottom:898.599867pt;}
.y7_c00047{bottom:930.599867pt;}
.y6_c00047{bottom:962.599867pt;}
.y2_c00047{bottom:1035.560000pt;}
.h4_c00047{height:15.360000pt;}
.h3_c00047{height:62.812500pt;}
.h2_c00047{height:1099.880000pt;}
.h0_c00047{height:1122.520000pt;}
.h1_c00047{height:1122.666667pt;}
.w3_c00047{width:42.240000pt;}
.w2_c00047{width:771.080000pt;}
.w0_c00047{width:793.720000pt;}
.w1_c00047{width:794.000000pt;}
.x0_c00047{left:0.000000pt;}
.x1_c00047{left:11.320000pt;}
.x5_c00047{left:13.100000pt;}
.x3_c00047{left:84.794933pt;}
.x6_c00047{left:132.800133pt;}
.x4_c00047{left:375.800000pt;}
.x2_c00047{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d11b4189907734d6f99b0ff7.woff2')format("woff");}.ff1_c00048{font-family:ff1_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:ff2_c00048;src:url('chunks/assets/font_c57e697c4f24dc2a041fb827.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;}
.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;}
.ls0_c00048{letter-spacing:0.000000px;}
.sc__c00048{text-shadow:none;}
.sc0_c00048{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00048{-webkit-text-stroke:0px transparent;}
.sc0_c00048{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00048{word-spacing:0.000000px;}
._2_c00048{width:1.281600px;}
._9_c00048{width:2.376000px;}
._0_c00048{width:3.758400px;}
._7_c00048{width:5.688000px;}
._3_c00048{width:9.007200px;}
._a_c00048{width:10.411200px;}
._8_c00048{width:11.995200px;}
._b_c00048{width:13.802400px;}
._1_c00048{width:16.747200px;}
._6_c00048{width:19.108800px;}
._c_c00048{width:21.463200px;}
._4_c00048{width:29.203200px;}
._5_c00048{width:35.532000px;}
.fc1_c00048{color:transparent;}
.fc0_c00048{color:rgb(0,0,0);}
.fs0_c00048{font-size:72.000000px;}
.y0_c00048{bottom:0.000000px;}
.y5_c00048{bottom:5.040000px;}
.y1_c00048{bottom:12.735000px;}
.y3_c00048{bottom:45.405000px;}
.y4_c00048{bottom:53.100000px;}
.y21_c00048{bottom:110.924850px;}
.y20_c00048{bottom:146.924850px;}
.y1f_c00048{bottom:182.924850px;}
.y1e_c00048{bottom:218.924850px;}
.y1d_c00048{bottom:254.924850px;}
.y1c_c00048{bottom:290.924850px;}
.y1b_c00048{bottom:326.924850px;}
.y1a_c00048{bottom:362.924850px;}
.y19_c00048{bottom:398.924850px;}
.y18_c00048{bottom:434.924850px;}
.y17_c00048{bottom:470.924850px;}
.y16_c00048{bottom:506.924850px;}
.y15_c00048{bottom:542.924850px;}
.y14_c00048{bottom:578.924850px;}
.y13_c00048{bottom:614.924850px;}
.y12_c00048{bottom:650.924850px;}
.y11_c00048{bottom:686.924850px;}
.y10_c00048{bottom:722.924850px;}
.yf_c00048{bottom:758.924850px;}
.ye_c00048{bottom:794.924850px;}
.yd_c00048{bottom:830.924850px;}
.yc_c00048{bottom:866.924850px;}
.yb_c00048{bottom:902.924850px;}
.ya_c00048{bottom:938.924850px;}
.y9_c00048{bottom:974.924850px;}
.y8_c00048{bottom:1010.924850px;}
.y7_c00048{bottom:1046.924850px;}
.y6_c00048{bottom:1082.924850px;}
.y2_c00048{bottom:1165.005000px;}
.h4_c00048{height:20.880000px;}
.h5_c00048{height:70.628906px;}
.h3_c00048{height:70.664062px;}
.h2_c00048{height:1237.365000px;}
.h0_c00048{height:1262.835000px;}
.h1_c00048{height:1263.000000px;}
.w3_c00048{width:18.000000px;}
.w2_c00048{width:867.465000px;}
.w0_c00048{width:892.935000px;}
.w1_c00048{width:893.250000px;}
.x0_c00048{left:0.000000px;}
.x1_c00048{left:12.735000px;}
.x3_c00048{left:95.394300px;}
.x6_c00048{left:148.572150px;}
.x5_c00048{left:203.400150px;}
.x4_c00048{left:437.535000px;}
.x2_c00048{left:880.050300px;}
@media print{
.v0_c00048{vertical-align:0.000000pt;}
.ls0_c00048{letter-spacing:0.000000pt;}
.ws0_c00048{word-spacing:0.000000pt;}
._2_c00048{width:1.139200pt;}
._9_c00048{width:2.112000pt;}
._0_c00048{width:3.340800pt;}
._7_c00048{width:5.056000pt;}
._3_c00048{width:8.006400pt;}
._a_c00048{width:9.254400pt;}
._8_c00048{width:10.662400pt;}
._b_c00048{width:12.268800pt;}
._1_c00048{width:14.886400pt;}
._6_c00048{width:16.985600pt;}
._c_c00048{width:19.078400pt;}
._4_c00048{width:25.958400pt;}
._5_c00048{width:31.584000pt;}
.fs0_c00048{font-size:64.000000pt;}
.y0_c00048{bottom:0.000000pt;}
.y5_c00048{bottom:4.480000pt;}
.y1_c00048{bottom:11.320000pt;}
.y3_c00048{bottom:40.360000pt;}
.y4_c00048{bottom:47.200000pt;}
.y21_c00048{bottom:98.599867pt;}
.y20_c00048{bottom:130.599867pt;}
.y1f_c00048{bottom:162.599867pt;}
.y1e_c00048{bottom:194.599867pt;}
.y1d_c00048{bottom:226.599867pt;}
.y1c_c00048{bottom:258.599867pt;}
.y1b_c00048{bottom:290.599867pt;}
.y1a_c00048{bottom:322.599867pt;}
.y19_c00048{bottom:354.599867pt;}
.y18_c00048{bottom:386.599867pt;}
.y17_c00048{bottom:418.599867pt;}
.y16_c00048{bottom:450.599867pt;}
.y15_c00048{bottom:482.599867pt;}
.y14_c00048{bottom:514.599867pt;}
.y13_c00048{bottom:546.599867pt;}
.y12_c00048{bottom:578.599867pt;}
.y11_c00048{bottom:610.599867pt;}
.y10_c00048{bottom:642.599867pt;}
.yf_c00048{bottom:674.599867pt;}
.ye_c00048{bottom:706.599867pt;}
.yd_c00048{bottom:738.599867pt;}
.yc_c00048{bottom:770.599867pt;}
.yb_c00048{bottom:802.599867pt;}
.ya_c00048{bottom:834.599867pt;}
.y9_c00048{bottom:866.599867pt;}
.y8_c00048{bottom:898.599867pt;}
.y7_c00048{bottom:930.599867pt;}
.y6_c00048{bottom:962.599867pt;}
.y2_c00048{bottom:1035.560000pt;}
.h4_c00048{height:18.560000pt;}
.h5_c00048{height:62.781250pt;}
.h3_c00048{height:62.812500pt;}
.h2_c00048{height:1099.880000pt;}
.h0_c00048{height:1122.520000pt;}
.h1_c00048{height:1122.666667pt;}
.w3_c00048{width:16.000000pt;}
.w2_c00048{width:771.080000pt;}
.w0_c00048{width:793.720000pt;}
.w1_c00048{width:794.000000pt;}
.x0_c00048{left:0.000000pt;}
.x1_c00048{left:11.320000pt;}
.x3_c00048{left:84.794933pt;}
.x6_c00048{left:132.064133pt;}
.x5_c00048{left:180.800133pt;}
.x4_c00048{left:388.920000pt;}
.x2_c00048{left:782.266933pt;}
}





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

.ir_c00049:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00049{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00049;src:url('chunks/assets/font_c588dbe1b9f0765ec07434a9.woff2')format("woff");}.ff1_c00049{font-family:ff1_c00049;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00049{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00049{vertical-align:0.000000px;}
.ls0_c00049{letter-spacing:0.000000px;}
.sc__c00049{text-shadow:none;}
.sc0_c00049{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00049{-webkit-text-stroke:0px transparent;}
.sc0_c00049{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00049{word-spacing:0.000000px;}
._3_c00049{width:1.152000px;}
._7_c00049{width:2.318400px;}
._0_c00049{width:3.564000px;}
._1_c00049{width:4.600800px;}
._2_c00049{width:6.026400px;}
._5_c00049{width:7.250400px;}
._4_c00049{width:8.352000px;}
._9_c00049{width:9.374400px;}
._b_c00049{width:11.210400px;}
._8_c00049{width:16.156800px;}
._a_c00049{width:20.304000px;}
._6_c00049{width:30.520800px;}
.fc1_c00049{color:transparent;}
.fc0_c00049{color:rgb(0,0,0);}
.fs0_c00049{font-size:72.000000px;}
.y0_c00049{bottom:0.000000px;}
.y5_c00049{bottom:1.440000px;}
.y1_c00049{bottom:12.735000px;}
.y3_c00049{bottom:45.405000px;}
.y4_c00049{bottom:56.700000px;}
.y21_c00049{bottom:110.924850px;}
.y20_c00049{bottom:146.924850px;}
.y1f_c00049{bottom:182.924850px;}
.y1e_c00049{bottom:218.924850px;}
.y1d_c00049{bottom:254.924850px;}
.y1c_c00049{bottom:290.924850px;}
.y1b_c00049{bottom:326.924850px;}
.y1a_c00049{bottom:362.924850px;}
.y19_c00049{bottom:398.924850px;}
.y18_c00049{bottom:434.924850px;}
.y17_c00049{bottom:470.924850px;}
.y16_c00049{bottom:506.924850px;}
.y15_c00049{bottom:542.924850px;}
.y14_c00049{bottom:578.924850px;}
.y13_c00049{bottom:614.924850px;}
.y12_c00049{bottom:650.924850px;}
.y11_c00049{bottom:686.924850px;}
.y10_c00049{bottom:722.924850px;}
.yf_c00049{bottom:758.924850px;}
.ye_c00049{bottom:794.924850px;}
.yd_c00049{bottom:830.924850px;}
.yc_c00049{bottom:866.924850px;}
.yb_c00049{bottom:902.924850px;}
.ya_c00049{bottom:938.924850px;}
.y9_c00049{bottom:974.924850px;}
.y8_c00049{bottom:1010.924850px;}
.y7_c00049{bottom:1046.924850px;}
.y6_c00049{bottom:1082.924850px;}
.y2_c00049{bottom:1165.005000px;}
.h4_c00049{height:17.280000px;}
.h3_c00049{height:70.664062px;}
.h2_c00049{height:1237.365000px;}
.h0_c00049{height:1262.835000px;}
.h1_c00049{height:1263.000000px;}
.w3_c00049{width:47.520000px;}
.w2_c00049{width:867.465000px;}
.w0_c00049{width:892.935000px;}
.w1_c00049{width:893.250000px;}
.x0_c00049{left:0.000000px;}
.x1_c00049{left:12.735000px;}
.x5_c00049{left:14.737500px;}
.x3_c00049{left:95.394300px;}
.x6_c00049{left:149.400150px;}
.x4_c00049{left:422.775000px;}
.x2_c00049{left:880.050300px;}
@media print{
.v0_c00049{vertical-align:0.000000pt;}
.ls0_c00049{letter-spacing:0.000000pt;}
.ws0_c00049{word-spacing:0.000000pt;}
._3_c00049{width:1.024000pt;}
._7_c00049{width:2.060800pt;}
._0_c00049{width:3.168000pt;}
._1_c00049{width:4.089600pt;}
._2_c00049{width:5.356800pt;}
._5_c00049{width:6.444800pt;}
._4_c00049{width:7.424000pt;}
._9_c00049{width:8.332800pt;}
._b_c00049{width:9.964800pt;}
._8_c00049{width:14.361600pt;}
._a_c00049{width:18.048000pt;}
._6_c00049{width:27.129600pt;}
.fs0_c00049{font-size:64.000000pt;}
.y0_c00049{bottom:0.000000pt;}
.y5_c00049{bottom:1.280000pt;}
.y1_c00049{bottom:11.320000pt;}
.y3_c00049{bottom:40.360000pt;}
.y4_c00049{bottom:50.400000pt;}
.y21_c00049{bottom:98.599867pt;}
.y20_c00049{bottom:130.599867pt;}
.y1f_c00049{bottom:162.599867pt;}
.y1e_c00049{bottom:194.599867pt;}
.y1d_c00049{bottom:226.599867pt;}
.y1c_c00049{bottom:258.599867pt;}
.y1b_c00049{bottom:290.599867pt;}
.y1a_c00049{bottom:322.599867pt;}
.y19_c00049{bottom:354.599867pt;}
.y18_c00049{bottom:386.599867pt;}
.y17_c00049{bottom:418.599867pt;}
.y16_c00049{bottom:450.599867pt;}
.y15_c00049{bottom:482.599867pt;}
.y14_c00049{bottom:514.599867pt;}
.y13_c00049{bottom:546.599867pt;}
.y12_c00049{bottom:578.599867pt;}
.y11_c00049{bottom:610.599867pt;}
.y10_c00049{bottom:642.599867pt;}
.yf_c00049{bottom:674.599867pt;}
.ye_c00049{bottom:706.599867pt;}
.yd_c00049{bottom:738.599867pt;}
.yc_c00049{bottom:770.599867pt;}
.yb_c00049{bottom:802.599867pt;}
.ya_c00049{bottom:834.599867pt;}
.y9_c00049{bottom:866.599867pt;}
.y8_c00049{bottom:898.599867pt;}
.y7_c00049{bottom:930.599867pt;}
.y6_c00049{bottom:962.599867pt;}
.y2_c00049{bottom:1035.560000pt;}
.h4_c00049{height:15.360000pt;}
.h3_c00049{height:62.812500pt;}
.h2_c00049{height:1099.880000pt;}
.h0_c00049{height:1122.520000pt;}
.h1_c00049{height:1122.666667pt;}
.w3_c00049{width:42.240000pt;}
.w2_c00049{width:771.080000pt;}
.w0_c00049{width:793.720000pt;}
.w1_c00049{width:794.000000pt;}
.x0_c00049{left:0.000000pt;}
.x1_c00049{left:11.320000pt;}
.x5_c00049{left:13.100000pt;}
.x3_c00049{left:84.794933pt;}
.x6_c00049{left:132.800133pt;}
.x4_c00049{left:375.800000pt;}
.x2_c00049{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a40b5593b75a232e13a1254a.woff2')format("woff");}.ff1_c00050{font-family:ff1_c00050;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00050;src:url('chunks/assets/font_8ca3edaa3dd7c31564e5775e.woff2')format("woff");}.ff2_c00050{font-family:ff2_c00050;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00050{letter-spacing:0.000000px;}
.sc__c00050{text-shadow:none;}
.sc0_c00050{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00050{-webkit-text-stroke:0px transparent;}
.sc0_c00050{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00050{word-spacing:0.000000px;}
._0_c00050{width:1.022400px;}
._5_c00050{width:2.433600px;}
._e_c00050{width:4.845600px;}
._d_c00050{width:6.004800px;}
._9_c00050{width:7.531200px;}
._4_c00050{width:8.596800px;}
._7_c00050{width:11.023200px;}
._b_c00050{width:13.795200px;}
._3_c00050{width:14.889600px;}
._1_c00050{width:15.897600px;}
._2_c00050{width:16.984800px;}
._a_c00050{width:23.990400px;}
._c_c00050{width:25.581600px;}
._6_c00050{width:28.000800px;}
._8_c00050{width:29.109600px;}
.fc1_c00050{color:transparent;}
.fc0_c00050{color:rgb(0,0,0);}
.fs0_c00050{font-size:72.000000px;}
.y0_c00050{bottom:0.000000px;}
.y5_c00050{bottom:5.040000px;}
.y1_c00050{bottom:12.735000px;}
.y3_c00050{bottom:45.405000px;}
.y4_c00050{bottom:53.100000px;}
.y20_c00050{bottom:146.924850px;}
.y1f_c00050{bottom:182.924850px;}
.y1e_c00050{bottom:218.924850px;}
.y1d_c00050{bottom:254.924850px;}
.y1c_c00050{bottom:290.924850px;}
.y1b_c00050{bottom:326.924850px;}
.y1a_c00050{bottom:362.924850px;}
.y19_c00050{bottom:398.924850px;}
.y18_c00050{bottom:434.924850px;}
.y17_c00050{bottom:470.924850px;}
.y16_c00050{bottom:506.924850px;}
.y15_c00050{bottom:542.924850px;}
.y14_c00050{bottom:578.924850px;}
.y13_c00050{bottom:614.924850px;}
.y12_c00050{bottom:650.924850px;}
.y11_c00050{bottom:686.924850px;}
.y10_c00050{bottom:722.924850px;}
.yf_c00050{bottom:758.924850px;}
.ye_c00050{bottom:794.924850px;}
.yd_c00050{bottom:830.924850px;}
.yc_c00050{bottom:866.924850px;}
.yb_c00050{bottom:902.924850px;}
.ya_c00050{bottom:938.924850px;}
.y9_c00050{bottom:974.924850px;}
.y8_c00050{bottom:1010.924850px;}
.y7_c00050{bottom:1046.924850px;}
.y6_c00050{bottom:1082.924850px;}
.y2_c00050{bottom:1165.005000px;}
.h4_c00050{height:20.880000px;}
.h3_c00050{height:70.664062px;}
.h2_c00050{height:1237.365000px;}
.h0_c00050{height:1262.835000px;}
.h1_c00050{height:1263.000000px;}
.w3_c00050{width:18.000000px;}
.w2_c00050{width:867.465000px;}
.w0_c00050{width:892.935000px;}
.w1_c00050{width:893.250000px;}
.x0_c00050{left:0.000000px;}
.x1_c00050{left:12.735000px;}
.x3_c00050{left:95.394300px;}
.x5_c00050{left:149.400150px;}
.x4_c00050{left:437.535000px;}
.x2_c00050{left:880.050300px;}
@media print{
.v0_c00050{vertical-align:0.000000pt;}
.ls0_c00050{letter-spacing:0.000000pt;}
.ws0_c00050{word-spacing:0.000000pt;}
._0_c00050{width:0.908800pt;}
._5_c00050{width:2.163200pt;}
._e_c00050{width:4.307200pt;}
._d_c00050{width:5.337600pt;}
._9_c00050{width:6.694400pt;}
._4_c00050{width:7.641600pt;}
._7_c00050{width:9.798400pt;}
._b_c00050{width:12.262400pt;}
._3_c00050{width:13.235200pt;}
._1_c00050{width:14.131200pt;}
._2_c00050{width:15.097600pt;}
._a_c00050{width:21.324800pt;}
._c_c00050{width:22.739200pt;}
._6_c00050{width:24.889600pt;}
._8_c00050{width:25.875200pt;}
.fs0_c00050{font-size:64.000000pt;}
.y0_c00050{bottom:0.000000pt;}
.y5_c00050{bottom:4.480000pt;}
.y1_c00050{bottom:11.320000pt;}
.y3_c00050{bottom:40.360000pt;}
.y4_c00050{bottom:47.200000pt;}
.y20_c00050{bottom:130.599867pt;}
.y1f_c00050{bottom:162.599867pt;}
.y1e_c00050{bottom:194.599867pt;}
.y1d_c00050{bottom:226.599867pt;}
.y1c_c00050{bottom:258.599867pt;}
.y1b_c00050{bottom:290.599867pt;}
.y1a_c00050{bottom:322.599867pt;}
.y19_c00050{bottom:354.599867pt;}
.y18_c00050{bottom:386.599867pt;}
.y17_c00050{bottom:418.599867pt;}
.y16_c00050{bottom:450.599867pt;}
.y15_c00050{bottom:482.599867pt;}
.y14_c00050{bottom:514.599867pt;}
.y13_c00050{bottom:546.599867pt;}
.y12_c00050{bottom:578.599867pt;}
.y11_c00050{bottom:610.599867pt;}
.y10_c00050{bottom:642.599867pt;}
.yf_c00050{bottom:674.599867pt;}
.ye_c00050{bottom:706.599867pt;}
.yd_c00050{bottom:738.599867pt;}
.yc_c00050{bottom:770.599867pt;}
.yb_c00050{bottom:802.599867pt;}
.ya_c00050{bottom:834.599867pt;}
.y9_c00050{bottom:866.599867pt;}
.y8_c00050{bottom:898.599867pt;}
.y7_c00050{bottom:930.599867pt;}
.y6_c00050{bottom:962.599867pt;}
.y2_c00050{bottom:1035.560000pt;}
.h4_c00050{height:18.560000pt;}
.h3_c00050{height:62.812500pt;}
.h2_c00050{height:1099.880000pt;}
.h0_c00050{height:1122.520000pt;}
.h1_c00050{height:1122.666667pt;}
.w3_c00050{width:16.000000pt;}
.w2_c00050{width:771.080000pt;}
.w0_c00050{width:793.720000pt;}
.w1_c00050{width:794.000000pt;}
.x0_c00050{left:0.000000pt;}
.x1_c00050{left:11.320000pt;}
.x3_c00050{left:84.794933pt;}
.x5_c00050{left:132.800133pt;}
.x4_c00050{left:388.920000pt;}
.x2_c00050{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd5b7603a2dfba545dcfdba1.woff2')format("woff");}.ff1_c00051{font-family:ff1_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;}
.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;}
.ls0_c00051{letter-spacing:0.000000px;}
.sc__c00051{text-shadow:none;}
.sc0_c00051{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00051{-webkit-text-stroke:0px transparent;}
.sc0_c00051{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00051{word-spacing:0.000000px;}
._b_c00051{margin-left:-1.029600px;}
._4_c00051{width:1.512000px;}
._5_c00051{width:2.548800px;}
._8_c00051{width:3.643200px;}
._c_c00051{width:4.658400px;}
._9_c00051{width:5.695200px;}
._1_c00051{width:7.020000px;}
._2_c00051{width:8.179200px;}
._e_c00051{width:10.843200px;}
._d_c00051{width:12.427200px;}
._0_c00051{width:19.166400px;}
._7_c00051{width:22.658400px;}
._3_c00051{width:23.983200px;}
._6_c00051{width:27.446400px;}
._a_c00051{width:39.492000px;}
.fc1_c00051{color:transparent;}
.fc0_c00051{color:rgb(0,0,0);}
.fs0_c00051{font-size:72.000000px;}
.y0_c00051{bottom:0.000000px;}
.y5_c00051{bottom:1.440000px;}
.y1_c00051{bottom:12.735000px;}
.y3_c00051{bottom:45.405000px;}
.y4_c00051{bottom:56.700000px;}
.y21_c00051{bottom:110.924850px;}
.y20_c00051{bottom:146.924850px;}
.y1f_c00051{bottom:182.924850px;}
.y1e_c00051{bottom:218.924850px;}
.y1d_c00051{bottom:254.924850px;}
.y1c_c00051{bottom:290.924850px;}
.y1b_c00051{bottom:326.924850px;}
.y1a_c00051{bottom:362.924850px;}
.y19_c00051{bottom:398.924850px;}
.y18_c00051{bottom:434.924850px;}
.y17_c00051{bottom:470.924850px;}
.y16_c00051{bottom:506.924850px;}
.y15_c00051{bottom:542.924850px;}
.y14_c00051{bottom:578.924850px;}
.y13_c00051{bottom:614.924850px;}
.y12_c00051{bottom:650.924850px;}
.y11_c00051{bottom:686.924850px;}
.y10_c00051{bottom:722.924850px;}
.yf_c00051{bottom:758.924850px;}
.ye_c00051{bottom:794.924850px;}
.yd_c00051{bottom:830.924850px;}
.yc_c00051{bottom:866.924850px;}
.yb_c00051{bottom:902.924850px;}
.ya_c00051{bottom:938.924850px;}
.y9_c00051{bottom:974.924850px;}
.y8_c00051{bottom:1010.924850px;}
.y7_c00051{bottom:1046.924850px;}
.y6_c00051{bottom:1082.924850px;}
.y2_c00051{bottom:1165.005000px;}
.h4_c00051{height:17.280000px;}
.h3_c00051{height:70.664062px;}
.h2_c00051{height:1237.365000px;}
.h0_c00051{height:1262.835000px;}
.h1_c00051{height:1263.000000px;}
.w3_c00051{width:47.520000px;}
.w2_c00051{width:867.465000px;}
.w0_c00051{width:892.935000px;}
.w1_c00051{width:893.250000px;}
.x0_c00051{left:0.000000px;}
.x1_c00051{left:12.735000px;}
.x5_c00051{left:14.737500px;}
.x3_c00051{left:95.394300px;}
.x6_c00051{left:149.400150px;}
.x4_c00051{left:422.775000px;}
.x2_c00051{left:880.050300px;}
@media print{
.v0_c00051{vertical-align:0.000000pt;}
.ls0_c00051{letter-spacing:0.000000pt;}
.ws0_c00051{word-spacing:0.000000pt;}
._b_c00051{margin-left:-0.915200pt;}
._4_c00051{width:1.344000pt;}
._5_c00051{width:2.265600pt;}
._8_c00051{width:3.238400pt;}
._c_c00051{width:4.140800pt;}
._9_c00051{width:5.062400pt;}
._1_c00051{width:6.240000pt;}
._2_c00051{width:7.270400pt;}
._e_c00051{width:9.638400pt;}
._d_c00051{width:11.046400pt;}
._0_c00051{width:17.036800pt;}
._7_c00051{width:20.140800pt;}
._3_c00051{width:21.318400pt;}
._6_c00051{width:24.396800pt;}
._a_c00051{width:35.104000pt;}
.fs0_c00051{font-size:64.000000pt;}
.y0_c00051{bottom:0.000000pt;}
.y5_c00051{bottom:1.280000pt;}
.y1_c00051{bottom:11.320000pt;}
.y3_c00051{bottom:40.360000pt;}
.y4_c00051{bottom:50.400000pt;}
.y21_c00051{bottom:98.599867pt;}
.y20_c00051{bottom:130.599867pt;}
.y1f_c00051{bottom:162.599867pt;}
.y1e_c00051{bottom:194.599867pt;}
.y1d_c00051{bottom:226.599867pt;}
.y1c_c00051{bottom:258.599867pt;}
.y1b_c00051{bottom:290.599867pt;}
.y1a_c00051{bottom:322.599867pt;}
.y19_c00051{bottom:354.599867pt;}
.y18_c00051{bottom:386.599867pt;}
.y17_c00051{bottom:418.599867pt;}
.y16_c00051{bottom:450.599867pt;}
.y15_c00051{bottom:482.599867pt;}
.y14_c00051{bottom:514.599867pt;}
.y13_c00051{bottom:546.599867pt;}
.y12_c00051{bottom:578.599867pt;}
.y11_c00051{bottom:610.599867pt;}
.y10_c00051{bottom:642.599867pt;}
.yf_c00051{bottom:674.599867pt;}
.ye_c00051{bottom:706.599867pt;}
.yd_c00051{bottom:738.599867pt;}
.yc_c00051{bottom:770.599867pt;}
.yb_c00051{bottom:802.599867pt;}
.ya_c00051{bottom:834.599867pt;}
.y9_c00051{bottom:866.599867pt;}
.y8_c00051{bottom:898.599867pt;}
.y7_c00051{bottom:930.599867pt;}
.y6_c00051{bottom:962.599867pt;}
.y2_c00051{bottom:1035.560000pt;}
.h4_c00051{height:15.360000pt;}
.h3_c00051{height:62.812500pt;}
.h2_c00051{height:1099.880000pt;}
.h0_c00051{height:1122.520000pt;}
.h1_c00051{height:1122.666667pt;}
.w3_c00051{width:42.240000pt;}
.w2_c00051{width:771.080000pt;}
.w0_c00051{width:793.720000pt;}
.w1_c00051{width:794.000000pt;}
.x0_c00051{left:0.000000pt;}
.x1_c00051{left:11.320000pt;}
.x5_c00051{left:13.100000pt;}
.x3_c00051{left:84.794933pt;}
.x6_c00051{left:132.800133pt;}
.x4_c00051{left:375.800000pt;}
.x2_c00051{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fecdb9c56395c60a45cc203.woff2')format("woff");}.ff1_c00052{font-family:ff1_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:ff2_c00052;src:url('chunks/assets/font_41f7eba626a5cc2010568eaf.woff2')format("woff");}.ff2_c00052{font-family:ff2_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;}
.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;}
.ls0_c00052{letter-spacing:0.000000px;}
.sc__c00052{text-shadow:none;}
.sc0_c00052{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00052{-webkit-text-stroke:0px transparent;}
.sc0_c00052{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00052{word-spacing:0.000000px;}
._6_c00052{width:1.072800px;}
._2_c00052{width:2.376000px;}
._8_c00052{width:3.484800px;}
._b_c00052{width:4.507200px;}
._1_c00052{width:5.810400px;}
._9_c00052{width:7.221600px;}
._4_c00052{width:8.460000px;}
._0_c00052{width:9.684000px;}
._5_c00052{width:11.311200px;}
._d_c00052{width:12.945600px;}
._a_c00052{width:14.760000px;}
._c_c00052{width:19.209600px;}
._7_c00052{width:22.262400px;}
._3_c00052{width:37.332000px;}
.fc1_c00052{color:transparent;}
.fc0_c00052{color:rgb(0,0,0);}
.fs0_c00052{font-size:72.000000px;}
.y0_c00052{bottom:0.000000px;}
.y5_c00052{bottom:5.040000px;}
.y1_c00052{bottom:12.735000px;}
.y3_c00052{bottom:45.405000px;}
.y4_c00052{bottom:53.100000px;}
.y21_c00052{bottom:110.924850px;}
.y20_c00052{bottom:146.924850px;}
.y1f_c00052{bottom:182.924850px;}
.y1e_c00052{bottom:218.924850px;}
.y1d_c00052{bottom:254.924850px;}
.y1c_c00052{bottom:290.924850px;}
.y1b_c00052{bottom:326.924850px;}
.y1a_c00052{bottom:362.924850px;}
.y19_c00052{bottom:398.924850px;}
.y18_c00052{bottom:434.924850px;}
.y17_c00052{bottom:470.924850px;}
.y16_c00052{bottom:506.924850px;}
.y15_c00052{bottom:542.924850px;}
.y14_c00052{bottom:578.924850px;}
.y13_c00052{bottom:614.924850px;}
.y12_c00052{bottom:650.924850px;}
.y11_c00052{bottom:686.924850px;}
.y10_c00052{bottom:722.924850px;}
.yf_c00052{bottom:758.924850px;}
.ye_c00052{bottom:794.924850px;}
.yd_c00052{bottom:830.924850px;}
.yc_c00052{bottom:866.924850px;}
.yb_c00052{bottom:902.924850px;}
.ya_c00052{bottom:938.924850px;}
.y9_c00052{bottom:974.924850px;}
.y8_c00052{bottom:1010.924850px;}
.y7_c00052{bottom:1046.924850px;}
.y6_c00052{bottom:1082.924850px;}
.y2_c00052{bottom:1165.005000px;}
.h4_c00052{height:20.880000px;}
.h5_c00052{height:70.628906px;}
.h3_c00052{height:70.664062px;}
.h2_c00052{height:1237.365000px;}
.h0_c00052{height:1262.835000px;}
.h1_c00052{height:1263.000000px;}
.w3_c00052{width:18.000000px;}
.w2_c00052{width:867.465000px;}
.w0_c00052{width:892.935000px;}
.w1_c00052{width:893.250000px;}
.x0_c00052{left:0.000000px;}
.x1_c00052{left:12.735000px;}
.x3_c00052{left:95.394300px;}
.x5_c00052{left:149.400150px;}
.x4_c00052{left:437.535000px;}
.x2_c00052{left:880.050300px;}
@media print{
.v0_c00052{vertical-align:0.000000pt;}
.ls0_c00052{letter-spacing:0.000000pt;}
.ws0_c00052{word-spacing:0.000000pt;}
._6_c00052{width:0.953600pt;}
._2_c00052{width:2.112000pt;}
._8_c00052{width:3.097600pt;}
._b_c00052{width:4.006400pt;}
._1_c00052{width:5.164800pt;}
._9_c00052{width:6.419200pt;}
._4_c00052{width:7.520000pt;}
._0_c00052{width:8.608000pt;}
._5_c00052{width:10.054400pt;}
._d_c00052{width:11.507200pt;}
._a_c00052{width:13.120000pt;}
._c_c00052{width:17.075200pt;}
._7_c00052{width:19.788800pt;}
._3_c00052{width:33.184000pt;}
.fs0_c00052{font-size:64.000000pt;}
.y0_c00052{bottom:0.000000pt;}
.y5_c00052{bottom:4.480000pt;}
.y1_c00052{bottom:11.320000pt;}
.y3_c00052{bottom:40.360000pt;}
.y4_c00052{bottom:47.200000pt;}
.y21_c00052{bottom:98.599867pt;}
.y20_c00052{bottom:130.599867pt;}
.y1f_c00052{bottom:162.599867pt;}
.y1e_c00052{bottom:194.599867pt;}
.y1d_c00052{bottom:226.599867pt;}
.y1c_c00052{bottom:258.599867pt;}
.y1b_c00052{bottom:290.599867pt;}
.y1a_c00052{bottom:322.599867pt;}
.y19_c00052{bottom:354.599867pt;}
.y18_c00052{bottom:386.599867pt;}
.y17_c00052{bottom:418.599867pt;}
.y16_c00052{bottom:450.599867pt;}
.y15_c00052{bottom:482.599867pt;}
.y14_c00052{bottom:514.599867pt;}
.y13_c00052{bottom:546.599867pt;}
.y12_c00052{bottom:578.599867pt;}
.y11_c00052{bottom:610.599867pt;}
.y10_c00052{bottom:642.599867pt;}
.yf_c00052{bottom:674.599867pt;}
.ye_c00052{bottom:706.599867pt;}
.yd_c00052{bottom:738.599867pt;}
.yc_c00052{bottom:770.599867pt;}
.yb_c00052{bottom:802.599867pt;}
.ya_c00052{bottom:834.599867pt;}
.y9_c00052{bottom:866.599867pt;}
.y8_c00052{bottom:898.599867pt;}
.y7_c00052{bottom:930.599867pt;}
.y6_c00052{bottom:962.599867pt;}
.y2_c00052{bottom:1035.560000pt;}
.h4_c00052{height:18.560000pt;}
.h5_c00052{height:62.781250pt;}
.h3_c00052{height:62.812500pt;}
.h2_c00052{height:1099.880000pt;}
.h0_c00052{height:1122.520000pt;}
.h1_c00052{height:1122.666667pt;}
.w3_c00052{width:16.000000pt;}
.w2_c00052{width:771.080000pt;}
.w0_c00052{width:793.720000pt;}
.w1_c00052{width:794.000000pt;}
.x0_c00052{left:0.000000pt;}
.x1_c00052{left:11.320000pt;}
.x3_c00052{left:84.794933pt;}
.x5_c00052{left:132.800133pt;}
.x4_c00052{left:388.920000pt;}
.x2_c00052{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e48db329fd5736ae793f9dbb.woff2')format("woff");}.ff1_c00053{font-family:ff1_c00053;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00053;src:url('chunks/assets/font_8f34c57dcbab925b8df0eab7.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_dee80dd6bc5ccca99f5333be.woff2')format("woff");}.ff3_c00053{font-family:ff3_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;}
.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.014400px;}
.ls0_c00053{letter-spacing:0.000000px;}
.ls1_c00053{letter-spacing:0.014400px;}
.sc__c00053{text-shadow:none;}
.sc0_c00053{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00053{-webkit-text-stroke:0px transparent;}
.sc0_c00053{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00053{word-spacing:0.000000px;}
._4_c00053{width:1.454400px;}
._7_c00053{width:3.175200px;}
._3_c00053{width:5.184000px;}
._0_c00053{width:6.616800px;}
._6_c00053{width:7.884000px;}
._5_c00053{width:9.316800px;}
._8_c00053{width:10.332000px;}
._2_c00053{width:12.333600px;}
._1_c00053{width:25.077600px;}
.fc1_c00053{color:transparent;}
.fc0_c00053{color:rgb(0,0,0);}
.fs0_c00053{font-size:72.000000px;}
.y0_c00053{bottom:0.000000px;}
.y5_c00053{bottom:1.440000px;}
.y1_c00053{bottom:12.735000px;}
.y3_c00053{bottom:45.405000px;}
.y4_c00053{bottom:56.700000px;}
.y21_c00053{bottom:110.924850px;}
.y20_c00053{bottom:146.924850px;}
.y1f_c00053{bottom:182.924850px;}
.y1e_c00053{bottom:218.924850px;}
.y1d_c00053{bottom:254.924850px;}
.y1c_c00053{bottom:290.924850px;}
.y1b_c00053{bottom:326.924850px;}
.y1a_c00053{bottom:362.924850px;}
.y19_c00053{bottom:398.924850px;}
.y18_c00053{bottom:434.924850px;}
.y17_c00053{bottom:470.924850px;}
.y16_c00053{bottom:506.924850px;}
.y15_c00053{bottom:542.924850px;}
.y14_c00053{bottom:578.924850px;}
.y13_c00053{bottom:614.924850px;}
.y12_c00053{bottom:650.924850px;}
.y11_c00053{bottom:686.924850px;}
.y10_c00053{bottom:722.924850px;}
.yf_c00053{bottom:758.924850px;}
.ye_c00053{bottom:794.924850px;}
.yd_c00053{bottom:830.924850px;}
.yc_c00053{bottom:866.924850px;}
.yb_c00053{bottom:902.924850px;}
.ya_c00053{bottom:938.924850px;}
.y9_c00053{bottom:974.924850px;}
.y8_c00053{bottom:1010.924850px;}
.y7_c00053{bottom:1046.924850px;}
.y6_c00053{bottom:1082.924850px;}
.y2_c00053{bottom:1165.005000px;}
.h4_c00053{height:17.280000px;}
.h5_c00053{height:70.628906px;}
.h3_c00053{height:70.664062px;}
.h2_c00053{height:1237.365000px;}
.h0_c00053{height:1262.835000px;}
.h1_c00053{height:1263.000000px;}
.w3_c00053{width:47.520000px;}
.w2_c00053{width:867.465000px;}
.w0_c00053{width:892.935000px;}
.w1_c00053{width:893.250000px;}
.x0_c00053{left:0.000000px;}
.x1_c00053{left:12.735000px;}
.x5_c00053{left:14.737500px;}
.x3_c00053{left:95.394300px;}
.x6_c00053{left:149.400150px;}
.x4_c00053{left:422.775000px;}
.x2_c00053{left:880.050300px;}
@media print{
.v0_c00053{vertical-align:0.000000pt;}
.ls2_c00053{letter-spacing:-0.012800pt;}
.ls0_c00053{letter-spacing:0.000000pt;}
.ls1_c00053{letter-spacing:0.012800pt;}
.ws0_c00053{word-spacing:0.000000pt;}
._4_c00053{width:1.292800pt;}
._7_c00053{width:2.822400pt;}
._3_c00053{width:4.608000pt;}
._0_c00053{width:5.881600pt;}
._6_c00053{width:7.008000pt;}
._5_c00053{width:8.281600pt;}
._8_c00053{width:9.184000pt;}
._2_c00053{width:10.963200pt;}
._1_c00053{width:22.291200pt;}
.fs0_c00053{font-size:64.000000pt;}
.y0_c00053{bottom:0.000000pt;}
.y5_c00053{bottom:1.280000pt;}
.y1_c00053{bottom:11.320000pt;}
.y3_c00053{bottom:40.360000pt;}
.y4_c00053{bottom:50.400000pt;}
.y21_c00053{bottom:98.599867pt;}
.y20_c00053{bottom:130.599867pt;}
.y1f_c00053{bottom:162.599867pt;}
.y1e_c00053{bottom:194.599867pt;}
.y1d_c00053{bottom:226.599867pt;}
.y1c_c00053{bottom:258.599867pt;}
.y1b_c00053{bottom:290.599867pt;}
.y1a_c00053{bottom:322.599867pt;}
.y19_c00053{bottom:354.599867pt;}
.y18_c00053{bottom:386.599867pt;}
.y17_c00053{bottom:418.599867pt;}
.y16_c00053{bottom:450.599867pt;}
.y15_c00053{bottom:482.599867pt;}
.y14_c00053{bottom:514.599867pt;}
.y13_c00053{bottom:546.599867pt;}
.y12_c00053{bottom:578.599867pt;}
.y11_c00053{bottom:610.599867pt;}
.y10_c00053{bottom:642.599867pt;}
.yf_c00053{bottom:674.599867pt;}
.ye_c00053{bottom:706.599867pt;}
.yd_c00053{bottom:738.599867pt;}
.yc_c00053{bottom:770.599867pt;}
.yb_c00053{bottom:802.599867pt;}
.ya_c00053{bottom:834.599867pt;}
.y9_c00053{bottom:866.599867pt;}
.y8_c00053{bottom:898.599867pt;}
.y7_c00053{bottom:930.599867pt;}
.y6_c00053{bottom:962.599867pt;}
.y2_c00053{bottom:1035.560000pt;}
.h4_c00053{height:15.360000pt;}
.h5_c00053{height:62.781250pt;}
.h3_c00053{height:62.812500pt;}
.h2_c00053{height:1099.880000pt;}
.h0_c00053{height:1122.520000pt;}
.h1_c00053{height:1122.666667pt;}
.w3_c00053{width:42.240000pt;}
.w2_c00053{width:771.080000pt;}
.w0_c00053{width:793.720000pt;}
.w1_c00053{width:794.000000pt;}
.x0_c00053{left:0.000000pt;}
.x1_c00053{left:11.320000pt;}
.x5_c00053{left:13.100000pt;}
.x3_c00053{left:84.794933pt;}
.x6_c00053{left:132.800133pt;}
.x4_c00053{left:375.800000pt;}
.x2_c00053{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2f597976419a574790464984.woff2')format("woff");}.ff1_c00054{font-family:ff1_c00054;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00054;src:url('chunks/assets/font_f8a16640dacfe72922ee1736.woff2')format("woff");}.ff2_c00054{font-family:ff2_c00054;line-height:1.284180;font-style:normal;font-weight:normal;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_5c9cb81a944ebedc7376645a.woff2')format("woff");}.ff3_c00054{font-family:ff3_c00054;line-height:1.284180;font-style: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;}
.ls0_c00054{letter-spacing:0.000000px;}
.sc__c00054{text-shadow:none;}
.sc0_c00054{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00054{-webkit-text-stroke:0px transparent;}
.sc0_c00054{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00054{word-spacing:0.000000px;}
._4_c00054{width:1.627200px;}
._1_c00054{width:2.664000px;}
._a_c00054{width:3.988800px;}
._7_c00054{width:5.839200px;}
._2_c00054{width:7.257600px;}
._0_c00054{width:8.409600px;}
._b_c00054{width:10.144800px;}
._9_c00054{width:11.210400px;}
._3_c00054{width:12.326400px;}
._8_c00054{width:14.752800px;}
._6_c00054{width:22.903200px;}
._5_c00054{width:24.184800px;}
.fc1_c00054{color:transparent;}
.fc0_c00054{color:rgb(0,0,0);}
.fs0_c00054{font-size:72.000000px;}
.y0_c00054{bottom:0.000000px;}
.y5_c00054{bottom:5.040000px;}
.y1_c00054{bottom:12.735000px;}
.y3_c00054{bottom:45.405000px;}
.y4_c00054{bottom:53.100000px;}
.y21_c00054{bottom:110.924850px;}
.y20_c00054{bottom:146.924850px;}
.y1f_c00054{bottom:182.924850px;}
.y1e_c00054{bottom:218.924850px;}
.y1d_c00054{bottom:254.924850px;}
.y1c_c00054{bottom:290.924850px;}
.y1b_c00054{bottom:326.924850px;}
.y1a_c00054{bottom:362.924850px;}
.y19_c00054{bottom:398.924850px;}
.y18_c00054{bottom:434.924850px;}
.y17_c00054{bottom:470.924850px;}
.y16_c00054{bottom:506.924850px;}
.y15_c00054{bottom:542.924850px;}
.y14_c00054{bottom:578.924850px;}
.y13_c00054{bottom:614.924850px;}
.y12_c00054{bottom:650.924850px;}
.y11_c00054{bottom:686.924850px;}
.y10_c00054{bottom:722.924850px;}
.yf_c00054{bottom:758.924850px;}
.ye_c00054{bottom:794.924850px;}
.yd_c00054{bottom:830.924850px;}
.yc_c00054{bottom:866.924850px;}
.yb_c00054{bottom:902.924850px;}
.ya_c00054{bottom:938.924850px;}
.y9_c00054{bottom:974.924850px;}
.y8_c00054{bottom:1010.924850px;}
.y7_c00054{bottom:1046.924850px;}
.y6_c00054{bottom:1082.924850px;}
.y2_c00054{bottom:1165.005000px;}
.h4_c00054{height:20.880000px;}
.h5_c00054{height:70.628906px;}
.h3_c00054{height:70.664062px;}
.h2_c00054{height:1237.365000px;}
.h0_c00054{height:1262.835000px;}
.h1_c00054{height:1263.000000px;}
.w3_c00054{width:18.000000px;}
.w2_c00054{width:867.465000px;}
.w0_c00054{width:892.935000px;}
.w1_c00054{width:893.250000px;}
.x0_c00054{left:0.000000px;}
.x1_c00054{left:12.735000px;}
.x3_c00054{left:95.394300px;}
.x5_c00054{left:149.400150px;}
.x4_c00054{left:437.535000px;}
.x2_c00054{left:880.050300px;}
@media print{
.v0_c00054{vertical-align:0.000000pt;}
.ls0_c00054{letter-spacing:0.000000pt;}
.ws0_c00054{word-spacing:0.000000pt;}
._4_c00054{width:1.446400pt;}
._1_c00054{width:2.368000pt;}
._a_c00054{width:3.545600pt;}
._7_c00054{width:5.190400pt;}
._2_c00054{width:6.451200pt;}
._0_c00054{width:7.475200pt;}
._b_c00054{width:9.017600pt;}
._9_c00054{width:9.964800pt;}
._3_c00054{width:10.956800pt;}
._8_c00054{width:13.113600pt;}
._6_c00054{width:20.358400pt;}
._5_c00054{width:21.497600pt;}
.fs0_c00054{font-size:64.000000pt;}
.y0_c00054{bottom:0.000000pt;}
.y5_c00054{bottom:4.480000pt;}
.y1_c00054{bottom:11.320000pt;}
.y3_c00054{bottom:40.360000pt;}
.y4_c00054{bottom:47.200000pt;}
.y21_c00054{bottom:98.599867pt;}
.y20_c00054{bottom:130.599867pt;}
.y1f_c00054{bottom:162.599867pt;}
.y1e_c00054{bottom:194.599867pt;}
.y1d_c00054{bottom:226.599867pt;}
.y1c_c00054{bottom:258.599867pt;}
.y1b_c00054{bottom:290.599867pt;}
.y1a_c00054{bottom:322.599867pt;}
.y19_c00054{bottom:354.599867pt;}
.y18_c00054{bottom:386.599867pt;}
.y17_c00054{bottom:418.599867pt;}
.y16_c00054{bottom:450.599867pt;}
.y15_c00054{bottom:482.599867pt;}
.y14_c00054{bottom:514.599867pt;}
.y13_c00054{bottom:546.599867pt;}
.y12_c00054{bottom:578.599867pt;}
.y11_c00054{bottom:610.599867pt;}
.y10_c00054{bottom:642.599867pt;}
.yf_c00054{bottom:674.599867pt;}
.ye_c00054{bottom:706.599867pt;}
.yd_c00054{bottom:738.599867pt;}
.yc_c00054{bottom:770.599867pt;}
.yb_c00054{bottom:802.599867pt;}
.ya_c00054{bottom:834.599867pt;}
.y9_c00054{bottom:866.599867pt;}
.y8_c00054{bottom:898.599867pt;}
.y7_c00054{bottom:930.599867pt;}
.y6_c00054{bottom:962.599867pt;}
.y2_c00054{bottom:1035.560000pt;}
.h4_c00054{height:18.560000pt;}
.h5_c00054{height:62.781250pt;}
.h3_c00054{height:62.812500pt;}
.h2_c00054{height:1099.880000pt;}
.h0_c00054{height:1122.520000pt;}
.h1_c00054{height:1122.666667pt;}
.w3_c00054{width:16.000000pt;}
.w2_c00054{width:771.080000pt;}
.w0_c00054{width:793.720000pt;}
.w1_c00054{width:794.000000pt;}
.x0_c00054{left:0.000000pt;}
.x1_c00054{left:11.320000pt;}
.x3_c00054{left:84.794933pt;}
.x5_c00054{left:132.800133pt;}
.x4_c00054{left:388.920000pt;}
.x2_c00054{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_59944d4083a9029653d1b150.woff2')format("woff");}.ff1_c00055{font-family:ff1_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:ff2_c00055;src:url('chunks/assets/font_a43a686fc71a30eedbebcff6.woff2')format("woff");}.ff2_c00055{font-family:ff2_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;}
.m0_c00055{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00055{vertical-align:0.000000px;}
.ls0_c00055{letter-spacing:0.000000px;}
.sc__c00055{text-shadow:none;}
.sc0_c00055{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00055{-webkit-text-stroke:0px transparent;}
.sc0_c00055{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00055{word-spacing:0.000000px;}
._5_c00055{width:1.972800px;}
._2_c00055{width:3.052800px;}
._0_c00055{width:4.939200px;}
._9_c00055{width:6.256800px;}
._1_c00055{width:8.143200px;}
._4_c00055{width:10.792800px;}
._a_c00055{width:14.860800px;}
._8_c00055{width:15.861600px;}
._7_c00055{width:21.981600px;}
._6_c00055{width:27.532800px;}
._3_c00055{width:28.764000px;}
._b_c00055{width:30.621600px;}
._c_c00055{width:37.108800px;}
.fc1_c00055{color:transparent;}
.fc0_c00055{color:rgb(0,0,0);}
.fs0_c00055{font-size:72.000000px;}
.y0_c00055{bottom:0.000000px;}
.y5_c00055{bottom:1.440000px;}
.y1_c00055{bottom:12.735000px;}
.y3_c00055{bottom:45.405000px;}
.y4_c00055{bottom:56.700000px;}
.y21_c00055{bottom:110.924850px;}
.y20_c00055{bottom:146.924850px;}
.y1f_c00055{bottom:182.924850px;}
.y1e_c00055{bottom:218.924850px;}
.y1d_c00055{bottom:254.924850px;}
.y1c_c00055{bottom:290.924850px;}
.y1b_c00055{bottom:326.924850px;}
.y1a_c00055{bottom:362.924850px;}
.y19_c00055{bottom:398.924850px;}
.y18_c00055{bottom:434.924850px;}
.y17_c00055{bottom:470.924850px;}
.y16_c00055{bottom:506.924850px;}
.y15_c00055{bottom:542.924850px;}
.y14_c00055{bottom:578.924850px;}
.y13_c00055{bottom:614.924850px;}
.y12_c00055{bottom:650.924850px;}
.y11_c00055{bottom:686.924850px;}
.y10_c00055{bottom:722.924850px;}
.yf_c00055{bottom:758.924850px;}
.ye_c00055{bottom:794.924850px;}
.yd_c00055{bottom:830.924850px;}
.yc_c00055{bottom:866.924850px;}
.yb_c00055{bottom:902.924850px;}
.ya_c00055{bottom:938.924850px;}
.y9_c00055{bottom:974.924850px;}
.y8_c00055{bottom:1010.924850px;}
.y7_c00055{bottom:1046.924850px;}
.y6_c00055{bottom:1082.924850px;}
.y2_c00055{bottom:1165.005000px;}
.h4_c00055{height:17.280000px;}
.h5_c00055{height:70.628906px;}
.h3_c00055{height:70.664062px;}
.h2_c00055{height:1237.365000px;}
.h0_c00055{height:1262.835000px;}
.h1_c00055{height:1263.000000px;}
.w3_c00055{width:47.520000px;}
.w2_c00055{width:867.465000px;}
.w0_c00055{width:892.935000px;}
.w1_c00055{width:893.250000px;}
.x0_c00055{left:0.000000px;}
.x1_c00055{left:12.735000px;}
.x5_c00055{left:14.737500px;}
.x3_c00055{left:95.394300px;}
.x6_c00055{left:149.400150px;}
.x4_c00055{left:422.775000px;}
.x2_c00055{left:880.050300px;}
@media print{
.v0_c00055{vertical-align:0.000000pt;}
.ls0_c00055{letter-spacing:0.000000pt;}
.ws0_c00055{word-spacing:0.000000pt;}
._5_c00055{width:1.753600pt;}
._2_c00055{width:2.713600pt;}
._0_c00055{width:4.390400pt;}
._9_c00055{width:5.561600pt;}
._1_c00055{width:7.238400pt;}
._4_c00055{width:9.593600pt;}
._a_c00055{width:13.209600pt;}
._8_c00055{width:14.099200pt;}
._7_c00055{width:19.539200pt;}
._6_c00055{width:24.473600pt;}
._3_c00055{width:25.568000pt;}
._b_c00055{width:27.219200pt;}
._c_c00055{width:32.985600pt;}
.fs0_c00055{font-size:64.000000pt;}
.y0_c00055{bottom:0.000000pt;}
.y5_c00055{bottom:1.280000pt;}
.y1_c00055{bottom:11.320000pt;}
.y3_c00055{bottom:40.360000pt;}
.y4_c00055{bottom:50.400000pt;}
.y21_c00055{bottom:98.599867pt;}
.y20_c00055{bottom:130.599867pt;}
.y1f_c00055{bottom:162.599867pt;}
.y1e_c00055{bottom:194.599867pt;}
.y1d_c00055{bottom:226.599867pt;}
.y1c_c00055{bottom:258.599867pt;}
.y1b_c00055{bottom:290.599867pt;}
.y1a_c00055{bottom:322.599867pt;}
.y19_c00055{bottom:354.599867pt;}
.y18_c00055{bottom:386.599867pt;}
.y17_c00055{bottom:418.599867pt;}
.y16_c00055{bottom:450.599867pt;}
.y15_c00055{bottom:482.599867pt;}
.y14_c00055{bottom:514.599867pt;}
.y13_c00055{bottom:546.599867pt;}
.y12_c00055{bottom:578.599867pt;}
.y11_c00055{bottom:610.599867pt;}
.y10_c00055{bottom:642.599867pt;}
.yf_c00055{bottom:674.599867pt;}
.ye_c00055{bottom:706.599867pt;}
.yd_c00055{bottom:738.599867pt;}
.yc_c00055{bottom:770.599867pt;}
.yb_c00055{bottom:802.599867pt;}
.ya_c00055{bottom:834.599867pt;}
.y9_c00055{bottom:866.599867pt;}
.y8_c00055{bottom:898.599867pt;}
.y7_c00055{bottom:930.599867pt;}
.y6_c00055{bottom:962.599867pt;}
.y2_c00055{bottom:1035.560000pt;}
.h4_c00055{height:15.360000pt;}
.h5_c00055{height:62.781250pt;}
.h3_c00055{height:62.812500pt;}
.h2_c00055{height:1099.880000pt;}
.h0_c00055{height:1122.520000pt;}
.h1_c00055{height:1122.666667pt;}
.w3_c00055{width:42.240000pt;}
.w2_c00055{width:771.080000pt;}
.w0_c00055{width:793.720000pt;}
.w1_c00055{width:794.000000pt;}
.x0_c00055{left:0.000000pt;}
.x1_c00055{left:11.320000pt;}
.x5_c00055{left:13.100000pt;}
.x3_c00055{left:84.794933pt;}
.x6_c00055{left:132.800133pt;}
.x4_c00055{left:375.800000pt;}
.x2_c00055{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3414d1516c31caf6ab15f589.woff2')format("woff");}.ff1_c00056{font-family:ff1_c00056;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00056;src:url('chunks/assets/font_0b58c3d0122bd2a7733b76a4.woff2')format("woff");}.ff2_c00056{font-family:ff2_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;}
.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;}
.ls0_c00056{letter-spacing:0.000000px;}
.sc__c00056{text-shadow:none;}
.sc0_c00056{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00056{-webkit-text-stroke:0px transparent;}
.sc0_c00056{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00056{word-spacing:0.000000px;}
._5_c00056{width:1.533600px;}
._3_c00056{width:2.534400px;}
._6_c00056{width:4.132800px;}
._9_c00056{width:5.292000px;}
._2_c00056{width:8.848800px;}
._7_c00056{width:9.972000px;}
._4_c00056{width:14.464800px;}
._1_c00056{width:15.616800px;}
._0_c00056{width:16.783200px;}
._8_c00056{width:24.343200px;}
.fc1_c00056{color:transparent;}
.fc0_c00056{color:rgb(0,0,0);}
.fs0_c00056{font-size:72.000000px;}
.y0_c00056{bottom:0.000000px;}
.y5_c00056{bottom:5.040000px;}
.y1_c00056{bottom:12.735000px;}
.y3_c00056{bottom:45.405000px;}
.y4_c00056{bottom:53.100000px;}
.y20_c00056{bottom:146.924850px;}
.y1f_c00056{bottom:182.924850px;}
.y1e_c00056{bottom:218.924850px;}
.y1d_c00056{bottom:254.924850px;}
.y1c_c00056{bottom:290.924850px;}
.y1b_c00056{bottom:326.924850px;}
.y1a_c00056{bottom:362.924850px;}
.y19_c00056{bottom:398.924850px;}
.y18_c00056{bottom:434.924850px;}
.y17_c00056{bottom:470.924850px;}
.y16_c00056{bottom:506.924850px;}
.y15_c00056{bottom:542.924850px;}
.y14_c00056{bottom:578.924850px;}
.y13_c00056{bottom:614.924850px;}
.y12_c00056{bottom:650.924850px;}
.y11_c00056{bottom:686.924850px;}
.y10_c00056{bottom:722.924850px;}
.yf_c00056{bottom:758.924850px;}
.ye_c00056{bottom:794.924850px;}
.yd_c00056{bottom:830.924850px;}
.yc_c00056{bottom:866.924850px;}
.yb_c00056{bottom:902.924850px;}
.ya_c00056{bottom:938.924850px;}
.y9_c00056{bottom:974.924850px;}
.y8_c00056{bottom:1010.924850px;}
.y7_c00056{bottom:1046.924850px;}
.y6_c00056{bottom:1082.924850px;}
.y2_c00056{bottom:1165.005000px;}
.h4_c00056{height:20.880000px;}
.h5_c00056{height:70.628906px;}
.h3_c00056{height:70.664062px;}
.h2_c00056{height:1237.365000px;}
.h0_c00056{height:1262.835000px;}
.h1_c00056{height:1263.000000px;}
.w3_c00056{width:18.000000px;}
.w2_c00056{width:867.465000px;}
.w0_c00056{width:892.935000px;}
.w1_c00056{width:893.250000px;}
.x0_c00056{left:0.000000px;}
.x1_c00056{left:12.735000px;}
.x3_c00056{left:95.394300px;}
.x5_c00056{left:149.400150px;}
.x4_c00056{left:437.535000px;}
.x2_c00056{left:880.050300px;}
@media print{
.v0_c00056{vertical-align:0.000000pt;}
.ls0_c00056{letter-spacing:0.000000pt;}
.ws0_c00056{word-spacing:0.000000pt;}
._5_c00056{width:1.363200pt;}
._3_c00056{width:2.252800pt;}
._6_c00056{width:3.673600pt;}
._9_c00056{width:4.704000pt;}
._2_c00056{width:7.865600pt;}
._7_c00056{width:8.864000pt;}
._4_c00056{width:12.857600pt;}
._1_c00056{width:13.881600pt;}
._0_c00056{width:14.918400pt;}
._8_c00056{width:21.638400pt;}
.fs0_c00056{font-size:64.000000pt;}
.y0_c00056{bottom:0.000000pt;}
.y5_c00056{bottom:4.480000pt;}
.y1_c00056{bottom:11.320000pt;}
.y3_c00056{bottom:40.360000pt;}
.y4_c00056{bottom:47.200000pt;}
.y20_c00056{bottom:130.599867pt;}
.y1f_c00056{bottom:162.599867pt;}
.y1e_c00056{bottom:194.599867pt;}
.y1d_c00056{bottom:226.599867pt;}
.y1c_c00056{bottom:258.599867pt;}
.y1b_c00056{bottom:290.599867pt;}
.y1a_c00056{bottom:322.599867pt;}
.y19_c00056{bottom:354.599867pt;}
.y18_c00056{bottom:386.599867pt;}
.y17_c00056{bottom:418.599867pt;}
.y16_c00056{bottom:450.599867pt;}
.y15_c00056{bottom:482.599867pt;}
.y14_c00056{bottom:514.599867pt;}
.y13_c00056{bottom:546.599867pt;}
.y12_c00056{bottom:578.599867pt;}
.y11_c00056{bottom:610.599867pt;}
.y10_c00056{bottom:642.599867pt;}
.yf_c00056{bottom:674.599867pt;}
.ye_c00056{bottom:706.599867pt;}
.yd_c00056{bottom:738.599867pt;}
.yc_c00056{bottom:770.599867pt;}
.yb_c00056{bottom:802.599867pt;}
.ya_c00056{bottom:834.599867pt;}
.y9_c00056{bottom:866.599867pt;}
.y8_c00056{bottom:898.599867pt;}
.y7_c00056{bottom:930.599867pt;}
.y6_c00056{bottom:962.599867pt;}
.y2_c00056{bottom:1035.560000pt;}
.h4_c00056{height:18.560000pt;}
.h5_c00056{height:62.781250pt;}
.h3_c00056{height:62.812500pt;}
.h2_c00056{height:1099.880000pt;}
.h0_c00056{height:1122.520000pt;}
.h1_c00056{height:1122.666667pt;}
.w3_c00056{width:16.000000pt;}
.w2_c00056{width:771.080000pt;}
.w0_c00056{width:793.720000pt;}
.w1_c00056{width:794.000000pt;}
.x0_c00056{left:0.000000pt;}
.x1_c00056{left:11.320000pt;}
.x3_c00056{left:84.794933pt;}
.x5_c00056{left:132.800133pt;}
.x4_c00056{left:388.920000pt;}
.x2_c00056{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4042f3af8269f5735c9c1d85.woff2')format("woff");}.ff1_c00057{font-family:ff1_c00057;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00057{letter-spacing:0.000000px;}
.sc__c00057{text-shadow:none;}
.sc0_c00057{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00057{-webkit-text-stroke:0px transparent;}
.sc0_c00057{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00057{word-spacing:0.000000px;}
._1_c00057{width:1.699200px;}
._4_c00057{width:3.297600px;}
._3_c00057{width:5.061600px;}
._0_c00057{width:6.163200px;}
._5_c00057{width:7.502400px;}
._6_c00057{width:12.830400px;}
._a_c00057{width:15.364800px;}
._2_c00057{width:20.347200px;}
._7_c00057{width:23.565600px;}
._8_c00057{width:29.260800px;}
._9_c00057{width:49.586400px;}
.fc1_c00057{color:transparent;}
.fc0_c00057{color:rgb(0,0,0);}
.fs0_c00057{font-size:72.000000px;}
.y0_c00057{bottom:0.000000px;}
.y5_c00057{bottom:1.440000px;}
.y1_c00057{bottom:12.735000px;}
.y3_c00057{bottom:45.405000px;}
.y4_c00057{bottom:56.700000px;}
.y21_c00057{bottom:110.924850px;}
.y20_c00057{bottom:146.924850px;}
.y1f_c00057{bottom:182.924850px;}
.y1e_c00057{bottom:218.924850px;}
.y1d_c00057{bottom:254.924850px;}
.y1c_c00057{bottom:290.924850px;}
.y1b_c00057{bottom:326.924850px;}
.y1a_c00057{bottom:362.924850px;}
.y19_c00057{bottom:398.924850px;}
.y18_c00057{bottom:434.924850px;}
.y17_c00057{bottom:470.924850px;}
.y16_c00057{bottom:506.924850px;}
.y15_c00057{bottom:542.924850px;}
.y14_c00057{bottom:578.924850px;}
.y13_c00057{bottom:614.924850px;}
.y12_c00057{bottom:650.924850px;}
.y11_c00057{bottom:686.924850px;}
.y10_c00057{bottom:722.924850px;}
.yf_c00057{bottom:758.924850px;}
.ye_c00057{bottom:794.924850px;}
.yd_c00057{bottom:830.924850px;}
.yc_c00057{bottom:866.924850px;}
.yb_c00057{bottom:902.924850px;}
.ya_c00057{bottom:938.924850px;}
.y9_c00057{bottom:974.924850px;}
.y8_c00057{bottom:1010.924850px;}
.y7_c00057{bottom:1046.924850px;}
.y6_c00057{bottom:1082.924850px;}
.y2_c00057{bottom:1165.005000px;}
.h4_c00057{height:17.280000px;}
.h3_c00057{height:70.664062px;}
.h2_c00057{height:1237.365000px;}
.h0_c00057{height:1262.835000px;}
.h1_c00057{height:1263.000000px;}
.w3_c00057{width:47.520000px;}
.w2_c00057{width:867.465000px;}
.w0_c00057{width:892.935000px;}
.w1_c00057{width:893.250000px;}
.x0_c00057{left:0.000000px;}
.x1_c00057{left:12.735000px;}
.x5_c00057{left:14.737500px;}
.x3_c00057{left:95.394300px;}
.x6_c00057{left:149.400150px;}
.x4_c00057{left:422.775000px;}
.x2_c00057{left:880.050300px;}
@media print{
.v0_c00057{vertical-align:0.000000pt;}
.ls0_c00057{letter-spacing:0.000000pt;}
.ws0_c00057{word-spacing:0.000000pt;}
._1_c00057{width:1.510400pt;}
._4_c00057{width:2.931200pt;}
._3_c00057{width:4.499200pt;}
._0_c00057{width:5.478400pt;}
._5_c00057{width:6.668800pt;}
._6_c00057{width:11.404800pt;}
._a_c00057{width:13.657600pt;}
._2_c00057{width:18.086400pt;}
._7_c00057{width:20.947200pt;}
._8_c00057{width:26.009600pt;}
._9_c00057{width:44.076800pt;}
.fs0_c00057{font-size:64.000000pt;}
.y0_c00057{bottom:0.000000pt;}
.y5_c00057{bottom:1.280000pt;}
.y1_c00057{bottom:11.320000pt;}
.y3_c00057{bottom:40.360000pt;}
.y4_c00057{bottom:50.400000pt;}
.y21_c00057{bottom:98.599867pt;}
.y20_c00057{bottom:130.599867pt;}
.y1f_c00057{bottom:162.599867pt;}
.y1e_c00057{bottom:194.599867pt;}
.y1d_c00057{bottom:226.599867pt;}
.y1c_c00057{bottom:258.599867pt;}
.y1b_c00057{bottom:290.599867pt;}
.y1a_c00057{bottom:322.599867pt;}
.y19_c00057{bottom:354.599867pt;}
.y18_c00057{bottom:386.599867pt;}
.y17_c00057{bottom:418.599867pt;}
.y16_c00057{bottom:450.599867pt;}
.y15_c00057{bottom:482.599867pt;}
.y14_c00057{bottom:514.599867pt;}
.y13_c00057{bottom:546.599867pt;}
.y12_c00057{bottom:578.599867pt;}
.y11_c00057{bottom:610.599867pt;}
.y10_c00057{bottom:642.599867pt;}
.yf_c00057{bottom:674.599867pt;}
.ye_c00057{bottom:706.599867pt;}
.yd_c00057{bottom:738.599867pt;}
.yc_c00057{bottom:770.599867pt;}
.yb_c00057{bottom:802.599867pt;}
.ya_c00057{bottom:834.599867pt;}
.y9_c00057{bottom:866.599867pt;}
.y8_c00057{bottom:898.599867pt;}
.y7_c00057{bottom:930.599867pt;}
.y6_c00057{bottom:962.599867pt;}
.y2_c00057{bottom:1035.560000pt;}
.h4_c00057{height:15.360000pt;}
.h3_c00057{height:62.812500pt;}
.h2_c00057{height:1099.880000pt;}
.h0_c00057{height:1122.520000pt;}
.h1_c00057{height:1122.666667pt;}
.w3_c00057{width:42.240000pt;}
.w2_c00057{width:771.080000pt;}
.w0_c00057{width:793.720000pt;}
.w1_c00057{width:794.000000pt;}
.x0_c00057{left:0.000000pt;}
.x1_c00057{left:11.320000pt;}
.x5_c00057{left:13.100000pt;}
.x3_c00057{left:84.794933pt;}
.x6_c00057{left:132.800133pt;}
.x4_c00057{left:375.800000pt;}
.x2_c00057{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_642e79ff275d721c41c1e309.woff2')format("woff");}.ff1_c00058{font-family:ff1_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;}
.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;}
.ls0_c00058{letter-spacing:0.000000px;}
.sc__c00058{text-shadow:none;}
.sc0_c00058{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00058{-webkit-text-stroke:0px transparent;}
.sc0_c00058{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00058{word-spacing:0.000000px;}
._e_c00058{width:1.159200px;}
._3_c00058{width:2.296800px;}
._1_c00058{width:3.391200px;}
._a_c00058{width:5.364000px;}
._2_c00058{width:6.832800px;}
._6_c00058{width:8.085600px;}
._b_c00058{width:9.331200px;}
._5_c00058{width:10.411200px;}
._d_c00058{width:12.369600px;}
._c_c00058{width:13.377600px;}
._f_c00058{width:16.178400px;}
._0_c00058{width:19.101600px;}
._7_c00058{width:21.823200px;}
._9_c00058{width:24.451200px;}
._8_c00058{width:25.574400px;}
._4_c00058{width:27.331200px;}
.fc1_c00058{color:transparent;}
.fc0_c00058{color:rgb(0,0,0);}
.fs0_c00058{font-size:72.000000px;}
.y0_c00058{bottom:0.000000px;}
.y5_c00058{bottom:5.040000px;}
.y1_c00058{bottom:12.735000px;}
.y3_c00058{bottom:45.405000px;}
.y4_c00058{bottom:53.100000px;}
.y20_c00058{bottom:146.924850px;}
.y1f_c00058{bottom:182.924850px;}
.y1e_c00058{bottom:218.924850px;}
.y1d_c00058{bottom:254.924850px;}
.y1c_c00058{bottom:290.924850px;}
.y1b_c00058{bottom:326.924850px;}
.y1a_c00058{bottom:362.924850px;}
.y19_c00058{bottom:398.924850px;}
.y18_c00058{bottom:434.924850px;}
.y17_c00058{bottom:470.924850px;}
.y16_c00058{bottom:506.924850px;}
.y15_c00058{bottom:542.924850px;}
.y14_c00058{bottom:578.924850px;}
.y13_c00058{bottom:614.924850px;}
.y12_c00058{bottom:650.924850px;}
.y11_c00058{bottom:686.924850px;}
.y10_c00058{bottom:722.924850px;}
.yf_c00058{bottom:758.924850px;}
.ye_c00058{bottom:794.924850px;}
.yd_c00058{bottom:830.924850px;}
.yc_c00058{bottom:866.924850px;}
.yb_c00058{bottom:902.924850px;}
.ya_c00058{bottom:938.924850px;}
.y9_c00058{bottom:974.924850px;}
.y8_c00058{bottom:1010.924850px;}
.y7_c00058{bottom:1046.924850px;}
.y6_c00058{bottom:1082.924850px;}
.y2_c00058{bottom:1165.005000px;}
.h4_c00058{height:20.880000px;}
.h3_c00058{height:70.664062px;}
.h2_c00058{height:1237.365000px;}
.h0_c00058{height:1262.835000px;}
.h1_c00058{height:1263.000000px;}
.w3_c00058{width:18.000000px;}
.w2_c00058{width:867.465000px;}
.w0_c00058{width:892.935000px;}
.w1_c00058{width:893.250000px;}
.x0_c00058{left:0.000000px;}
.x1_c00058{left:12.735000px;}
.x3_c00058{left:95.394300px;}
.x5_c00058{left:149.400150px;}
.x4_c00058{left:437.535000px;}
.x2_c00058{left:880.050300px;}
@media print{
.v0_c00058{vertical-align:0.000000pt;}
.ls0_c00058{letter-spacing:0.000000pt;}
.ws0_c00058{word-spacing:0.000000pt;}
._e_c00058{width:1.030400pt;}
._3_c00058{width:2.041600pt;}
._1_c00058{width:3.014400pt;}
._a_c00058{width:4.768000pt;}
._2_c00058{width:6.073600pt;}
._6_c00058{width:7.187200pt;}
._b_c00058{width:8.294400pt;}
._5_c00058{width:9.254400pt;}
._d_c00058{width:10.995200pt;}
._c_c00058{width:11.891200pt;}
._f_c00058{width:14.380800pt;}
._0_c00058{width:16.979200pt;}
._7_c00058{width:19.398400pt;}
._9_c00058{width:21.734400pt;}
._8_c00058{width:22.732800pt;}
._4_c00058{width:24.294400pt;}
.fs0_c00058{font-size:64.000000pt;}
.y0_c00058{bottom:0.000000pt;}
.y5_c00058{bottom:4.480000pt;}
.y1_c00058{bottom:11.320000pt;}
.y3_c00058{bottom:40.360000pt;}
.y4_c00058{bottom:47.200000pt;}
.y20_c00058{bottom:130.599867pt;}
.y1f_c00058{bottom:162.599867pt;}
.y1e_c00058{bottom:194.599867pt;}
.y1d_c00058{bottom:226.599867pt;}
.y1c_c00058{bottom:258.599867pt;}
.y1b_c00058{bottom:290.599867pt;}
.y1a_c00058{bottom:322.599867pt;}
.y19_c00058{bottom:354.599867pt;}
.y18_c00058{bottom:386.599867pt;}
.y17_c00058{bottom:418.599867pt;}
.y16_c00058{bottom:450.599867pt;}
.y15_c00058{bottom:482.599867pt;}
.y14_c00058{bottom:514.599867pt;}
.y13_c00058{bottom:546.599867pt;}
.y12_c00058{bottom:578.599867pt;}
.y11_c00058{bottom:610.599867pt;}
.y10_c00058{bottom:642.599867pt;}
.yf_c00058{bottom:674.599867pt;}
.ye_c00058{bottom:706.599867pt;}
.yd_c00058{bottom:738.599867pt;}
.yc_c00058{bottom:770.599867pt;}
.yb_c00058{bottom:802.599867pt;}
.ya_c00058{bottom:834.599867pt;}
.y9_c00058{bottom:866.599867pt;}
.y8_c00058{bottom:898.599867pt;}
.y7_c00058{bottom:930.599867pt;}
.y6_c00058{bottom:962.599867pt;}
.y2_c00058{bottom:1035.560000pt;}
.h4_c00058{height:18.560000pt;}
.h3_c00058{height:62.812500pt;}
.h2_c00058{height:1099.880000pt;}
.h0_c00058{height:1122.520000pt;}
.h1_c00058{height:1122.666667pt;}
.w3_c00058{width:16.000000pt;}
.w2_c00058{width:771.080000pt;}
.w0_c00058{width:793.720000pt;}
.w1_c00058{width:794.000000pt;}
.x0_c00058{left:0.000000pt;}
.x1_c00058{left:11.320000pt;}
.x3_c00058{left:84.794933pt;}
.x5_c00058{left:132.800133pt;}
.x4_c00058{left:388.920000pt;}
.x2_c00058{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fb57e27f04854f7d74e5fe97.woff2')format("woff");}.ff1_c00059{font-family:ff1_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:ff2_c00059;src:url('chunks/assets/font_8303cd1f7b503b74bb087cdc.woff2')format("woff");}.ff2_c00059{font-family:ff2_c00059;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00059{letter-spacing:0.000000px;}
.sc__c00059{text-shadow:none;}
.sc0_c00059{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00059{-webkit-text-stroke:0px transparent;}
.sc0_c00059{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00059{word-spacing:0.000000px;}
._3_c00059{width:1.699200px;}
._7_c00059{width:2.808000px;}
._4_c00059{width:4.932000px;}
._9_c00059{width:6.091200px;}
._5_c00059{width:7.243200px;}
._a_c00059{width:8.424000px;}
._6_c00059{width:10.476000px;}
._8_c00059{width:11.613600px;}
._b_c00059{width:16.624800px;}
._1_c00059{width:22.824000px;}
._0_c00059{width:23.983200px;}
._2_c00059{width:25.617600px;}
.fc1_c00059{color:transparent;}
.fc0_c00059{color:rgb(0,0,0);}
.fs0_c00059{font-size:72.000000px;}
.y0_c00059{bottom:0.000000px;}
.y5_c00059{bottom:1.440000px;}
.y1_c00059{bottom:12.735000px;}
.y3_c00059{bottom:45.405000px;}
.y4_c00059{bottom:56.700000px;}
.y20_c00059{bottom:146.924850px;}
.y1f_c00059{bottom:182.924850px;}
.y1e_c00059{bottom:218.924850px;}
.y1d_c00059{bottom:254.924850px;}
.y1c_c00059{bottom:290.924850px;}
.y1b_c00059{bottom:326.924850px;}
.y1a_c00059{bottom:362.924850px;}
.y19_c00059{bottom:398.924850px;}
.y18_c00059{bottom:434.924850px;}
.y17_c00059{bottom:470.924850px;}
.y16_c00059{bottom:506.924850px;}
.y15_c00059{bottom:542.924850px;}
.y14_c00059{bottom:578.924850px;}
.y13_c00059{bottom:614.924850px;}
.y12_c00059{bottom:650.924850px;}
.y11_c00059{bottom:686.924850px;}
.y10_c00059{bottom:722.924850px;}
.yf_c00059{bottom:758.924850px;}
.ye_c00059{bottom:794.924850px;}
.yd_c00059{bottom:830.924850px;}
.yc_c00059{bottom:866.924850px;}
.yb_c00059{bottom:902.924850px;}
.ya_c00059{bottom:938.924850px;}
.y9_c00059{bottom:974.924850px;}
.y8_c00059{bottom:1010.924850px;}
.y7_c00059{bottom:1046.924850px;}
.y6_c00059{bottom:1082.924850px;}
.y2_c00059{bottom:1165.005000px;}
.h4_c00059{height:17.280000px;}
.h3_c00059{height:70.664062px;}
.h5_c00059{height:71.824219px;}
.h2_c00059{height:1237.365000px;}
.h0_c00059{height:1262.835000px;}
.h1_c00059{height:1263.000000px;}
.w3_c00059{width:47.520000px;}
.w2_c00059{width:867.465000px;}
.w0_c00059{width:892.935000px;}
.w1_c00059{width:893.250000px;}
.x0_c00059{left:0.000000px;}
.x1_c00059{left:12.735000px;}
.x5_c00059{left:14.737500px;}
.x3_c00059{left:95.394300px;}
.x6_c00059{left:149.400150px;}
.x4_c00059{left:422.775000px;}
.x2_c00059{left:880.050300px;}
@media print{
.v0_c00059{vertical-align:0.000000pt;}
.ls0_c00059{letter-spacing:0.000000pt;}
.ws0_c00059{word-spacing:0.000000pt;}
._3_c00059{width:1.510400pt;}
._7_c00059{width:2.496000pt;}
._4_c00059{width:4.384000pt;}
._9_c00059{width:5.414400pt;}
._5_c00059{width:6.438400pt;}
._a_c00059{width:7.488000pt;}
._6_c00059{width:9.312000pt;}
._8_c00059{width:10.323200pt;}
._b_c00059{width:14.777600pt;}
._1_c00059{width:20.288000pt;}
._0_c00059{width:21.318400pt;}
._2_c00059{width:22.771200pt;}
.fs0_c00059{font-size:64.000000pt;}
.y0_c00059{bottom:0.000000pt;}
.y5_c00059{bottom:1.280000pt;}
.y1_c00059{bottom:11.320000pt;}
.y3_c00059{bottom:40.360000pt;}
.y4_c00059{bottom:50.400000pt;}
.y20_c00059{bottom:130.599867pt;}
.y1f_c00059{bottom:162.599867pt;}
.y1e_c00059{bottom:194.599867pt;}
.y1d_c00059{bottom:226.599867pt;}
.y1c_c00059{bottom:258.599867pt;}
.y1b_c00059{bottom:290.599867pt;}
.y1a_c00059{bottom:322.599867pt;}
.y19_c00059{bottom:354.599867pt;}
.y18_c00059{bottom:386.599867pt;}
.y17_c00059{bottom:418.599867pt;}
.y16_c00059{bottom:450.599867pt;}
.y15_c00059{bottom:482.599867pt;}
.y14_c00059{bottom:514.599867pt;}
.y13_c00059{bottom:546.599867pt;}
.y12_c00059{bottom:578.599867pt;}
.y11_c00059{bottom:610.599867pt;}
.y10_c00059{bottom:642.599867pt;}
.yf_c00059{bottom:674.599867pt;}
.ye_c00059{bottom:706.599867pt;}
.yd_c00059{bottom:738.599867pt;}
.yc_c00059{bottom:770.599867pt;}
.yb_c00059{bottom:802.599867pt;}
.ya_c00059{bottom:834.599867pt;}
.y9_c00059{bottom:866.599867pt;}
.y8_c00059{bottom:898.599867pt;}
.y7_c00059{bottom:930.599867pt;}
.y6_c00059{bottom:962.599867pt;}
.y2_c00059{bottom:1035.560000pt;}
.h4_c00059{height:15.360000pt;}
.h3_c00059{height:62.812500pt;}
.h5_c00059{height:63.843750pt;}
.h2_c00059{height:1099.880000pt;}
.h0_c00059{height:1122.520000pt;}
.h1_c00059{height:1122.666667pt;}
.w3_c00059{width:42.240000pt;}
.w2_c00059{width:771.080000pt;}
.w0_c00059{width:793.720000pt;}
.w1_c00059{width:794.000000pt;}
.x0_c00059{left:0.000000pt;}
.x1_c00059{left:11.320000pt;}
.x5_c00059{left:13.100000pt;}
.x3_c00059{left:84.794933pt;}
.x6_c00059{left:132.800133pt;}
.x4_c00059{left:375.800000pt;}
.x2_c00059{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_30bbacaaed7045e870c5e9a3.woff2')format("woff");}.ff1_c00060{font-family:ff1_c00060;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00060{letter-spacing:0.000000px;}
.sc__c00060{text-shadow:none;}
.sc0_c00060{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00060{-webkit-text-stroke:0px transparent;}
.sc0_c00060{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00060{word-spacing:0.000000px;}
._6_c00060{width:1.749600px;}
._8_c00060{width:2.916000px;}
._3_c00060{width:4.320000px;}
._2_c00060{width:6.336000px;}
._0_c00060{width:7.430400px;}
._7_c00060{width:9.014400px;}
._5_c00060{width:11.361600px;}
._9_c00060{width:12.528000px;}
._4_c00060{width:13.694400px;}
._a_c00060{width:15.127200px;}
._1_c00060{width:16.747200px;}
._b_c00060{width:20.440800px;}
.fc1_c00060{color:transparent;}
.fc0_c00060{color:rgb(0,0,0);}
.fs0_c00060{font-size:72.000000px;}
.y0_c00060{bottom:0.000000px;}
.y5_c00060{bottom:5.040000px;}
.y1_c00060{bottom:12.735000px;}
.y3_c00060{bottom:45.405000px;}
.y4_c00060{bottom:53.100000px;}
.y21_c00060{bottom:110.924850px;}
.y20_c00060{bottom:146.924850px;}
.y1f_c00060{bottom:182.924850px;}
.y1e_c00060{bottom:218.924850px;}
.y1d_c00060{bottom:254.924850px;}
.y1c_c00060{bottom:290.924850px;}
.y1b_c00060{bottom:326.924850px;}
.y1a_c00060{bottom:362.924850px;}
.y19_c00060{bottom:398.924850px;}
.y18_c00060{bottom:434.924850px;}
.y17_c00060{bottom:470.924850px;}
.y16_c00060{bottom:506.924850px;}
.y15_c00060{bottom:542.924850px;}
.y14_c00060{bottom:578.924850px;}
.y13_c00060{bottom:614.924850px;}
.y12_c00060{bottom:650.924850px;}
.y11_c00060{bottom:686.924850px;}
.y10_c00060{bottom:722.924850px;}
.yf_c00060{bottom:758.924850px;}
.ye_c00060{bottom:794.924850px;}
.yd_c00060{bottom:830.924850px;}
.yc_c00060{bottom:866.924850px;}
.yb_c00060{bottom:902.924850px;}
.ya_c00060{bottom:938.924850px;}
.y9_c00060{bottom:974.924850px;}
.y8_c00060{bottom:1010.924850px;}
.y7_c00060{bottom:1046.924850px;}
.y6_c00060{bottom:1082.924850px;}
.y2_c00060{bottom:1165.005000px;}
.h4_c00060{height:20.880000px;}
.h3_c00060{height:70.664062px;}
.h2_c00060{height:1237.365000px;}
.h0_c00060{height:1262.835000px;}
.h1_c00060{height:1263.000000px;}
.w3_c00060{width:18.000000px;}
.w2_c00060{width:867.465000px;}
.w0_c00060{width:892.935000px;}
.w1_c00060{width:893.250000px;}
.x0_c00060{left:0.000000px;}
.x1_c00060{left:12.735000px;}
.x3_c00060{left:95.394300px;}
.x5_c00060{left:149.400150px;}
.x4_c00060{left:437.535000px;}
.x2_c00060{left:880.050300px;}
@media print{
.v0_c00060{vertical-align:0.000000pt;}
.ls0_c00060{letter-spacing:0.000000pt;}
.ws0_c00060{word-spacing:0.000000pt;}
._6_c00060{width:1.555200pt;}
._8_c00060{width:2.592000pt;}
._3_c00060{width:3.840000pt;}
._2_c00060{width:5.632000pt;}
._0_c00060{width:6.604800pt;}
._7_c00060{width:8.012800pt;}
._5_c00060{width:10.099200pt;}
._9_c00060{width:11.136000pt;}
._4_c00060{width:12.172800pt;}
._a_c00060{width:13.446400pt;}
._1_c00060{width:14.886400pt;}
._b_c00060{width:18.169600pt;}
.fs0_c00060{font-size:64.000000pt;}
.y0_c00060{bottom:0.000000pt;}
.y5_c00060{bottom:4.480000pt;}
.y1_c00060{bottom:11.320000pt;}
.y3_c00060{bottom:40.360000pt;}
.y4_c00060{bottom:47.200000pt;}
.y21_c00060{bottom:98.599867pt;}
.y20_c00060{bottom:130.599867pt;}
.y1f_c00060{bottom:162.599867pt;}
.y1e_c00060{bottom:194.599867pt;}
.y1d_c00060{bottom:226.599867pt;}
.y1c_c00060{bottom:258.599867pt;}
.y1b_c00060{bottom:290.599867pt;}
.y1a_c00060{bottom:322.599867pt;}
.y19_c00060{bottom:354.599867pt;}
.y18_c00060{bottom:386.599867pt;}
.y17_c00060{bottom:418.599867pt;}
.y16_c00060{bottom:450.599867pt;}
.y15_c00060{bottom:482.599867pt;}
.y14_c00060{bottom:514.599867pt;}
.y13_c00060{bottom:546.599867pt;}
.y12_c00060{bottom:578.599867pt;}
.y11_c00060{bottom:610.599867pt;}
.y10_c00060{bottom:642.599867pt;}
.yf_c00060{bottom:674.599867pt;}
.ye_c00060{bottom:706.599867pt;}
.yd_c00060{bottom:738.599867pt;}
.yc_c00060{bottom:770.599867pt;}
.yb_c00060{bottom:802.599867pt;}
.ya_c00060{bottom:834.599867pt;}
.y9_c00060{bottom:866.599867pt;}
.y8_c00060{bottom:898.599867pt;}
.y7_c00060{bottom:930.599867pt;}
.y6_c00060{bottom:962.599867pt;}
.y2_c00060{bottom:1035.560000pt;}
.h4_c00060{height:18.560000pt;}
.h3_c00060{height:62.812500pt;}
.h2_c00060{height:1099.880000pt;}
.h0_c00060{height:1122.520000pt;}
.h1_c00060{height:1122.666667pt;}
.w3_c00060{width:16.000000pt;}
.w2_c00060{width:771.080000pt;}
.w0_c00060{width:793.720000pt;}
.w1_c00060{width:794.000000pt;}
.x0_c00060{left:0.000000pt;}
.x1_c00060{left:11.320000pt;}
.x3_c00060{left:84.794933pt;}
.x5_c00060{left:132.800133pt;}
.x4_c00060{left:388.920000pt;}
.x2_c00060{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_eae71a37bd22864559fbaf4f.woff2')format("woff");}.ff1_c00061{font-family:ff1_c00061;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00061;src:url('chunks/assets/font_34f369834943a89dce68cea0.woff2')format("woff");}.ff2_c00061{font-family:ff2_c00061;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00061{letter-spacing:0.000000px;}
.sc__c00061{text-shadow:none;}
.sc0_c00061{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00061{-webkit-text-stroke:0px transparent;}
.sc0_c00061{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00061{word-spacing:0.000000px;}
._0_c00061{width:1.238400px;}
._3_c00061{width:2.476800px;}
._5_c00061{width:3.578400px;}
._1_c00061{width:5.320800px;}
._2_c00061{width:6.559200px;}
._9_c00061{width:7.588800px;}
._6_c00061{width:8.668800px;}
._7_c00061{width:10.504800px;}
._8_c00061{width:12.996000px;}
._a_c00061{width:16.725600px;}
._4_c00061{width:22.831200px;}
.fc1_c00061{color:transparent;}
.fc0_c00061{color:rgb(0,0,0);}
.fs0_c00061{font-size:72.000000px;}
.y0_c00061{bottom:0.000000px;}
.y5_c00061{bottom:1.440000px;}
.y1_c00061{bottom:12.735000px;}
.y3_c00061{bottom:45.405000px;}
.y4_c00061{bottom:56.700000px;}
.y21_c00061{bottom:110.924850px;}
.y20_c00061{bottom:146.924850px;}
.y1f_c00061{bottom:182.924850px;}
.y1e_c00061{bottom:218.924850px;}
.y1d_c00061{bottom:254.924850px;}
.y1c_c00061{bottom:290.924850px;}
.y1b_c00061{bottom:326.924850px;}
.y1a_c00061{bottom:362.924850px;}
.y19_c00061{bottom:398.924850px;}
.y18_c00061{bottom:434.924850px;}
.y17_c00061{bottom:470.924850px;}
.y16_c00061{bottom:506.924850px;}
.y15_c00061{bottom:542.924850px;}
.y14_c00061{bottom:578.924850px;}
.y13_c00061{bottom:614.924850px;}
.y12_c00061{bottom:650.924850px;}
.y11_c00061{bottom:686.924850px;}
.y10_c00061{bottom:722.924850px;}
.yf_c00061{bottom:758.924850px;}
.ye_c00061{bottom:794.924850px;}
.yd_c00061{bottom:830.924850px;}
.yc_c00061{bottom:866.924850px;}
.yb_c00061{bottom:902.924850px;}
.ya_c00061{bottom:938.924850px;}
.y9_c00061{bottom:974.924850px;}
.y8_c00061{bottom:1010.924850px;}
.y7_c00061{bottom:1046.924850px;}
.y6_c00061{bottom:1082.924850px;}
.y2_c00061{bottom:1165.005000px;}
.h4_c00061{height:17.280000px;}
.h5_c00061{height:70.628906px;}
.h3_c00061{height:70.664062px;}
.h2_c00061{height:1237.365000px;}
.h0_c00061{height:1262.835000px;}
.h1_c00061{height:1263.000000px;}
.w3_c00061{width:47.520000px;}
.w2_c00061{width:867.465000px;}
.w0_c00061{width:892.935000px;}
.w1_c00061{width:893.250000px;}
.x0_c00061{left:0.000000px;}
.x1_c00061{left:12.735000px;}
.x5_c00061{left:14.737500px;}
.x3_c00061{left:95.394300px;}
.x6_c00061{left:149.400150px;}
.x4_c00061{left:422.775000px;}
.x2_c00061{left:880.050300px;}
@media print{
.v0_c00061{vertical-align:0.000000pt;}
.ls0_c00061{letter-spacing:0.000000pt;}
.ws0_c00061{word-spacing:0.000000pt;}
._0_c00061{width:1.100800pt;}
._3_c00061{width:2.201600pt;}
._5_c00061{width:3.180800pt;}
._1_c00061{width:4.729600pt;}
._2_c00061{width:5.830400pt;}
._9_c00061{width:6.745600pt;}
._6_c00061{width:7.705600pt;}
._7_c00061{width:9.337600pt;}
._8_c00061{width:11.552000pt;}
._a_c00061{width:14.867200pt;}
._4_c00061{width:20.294400pt;}
.fs0_c00061{font-size:64.000000pt;}
.y0_c00061{bottom:0.000000pt;}
.y5_c00061{bottom:1.280000pt;}
.y1_c00061{bottom:11.320000pt;}
.y3_c00061{bottom:40.360000pt;}
.y4_c00061{bottom:50.400000pt;}
.y21_c00061{bottom:98.599867pt;}
.y20_c00061{bottom:130.599867pt;}
.y1f_c00061{bottom:162.599867pt;}
.y1e_c00061{bottom:194.599867pt;}
.y1d_c00061{bottom:226.599867pt;}
.y1c_c00061{bottom:258.599867pt;}
.y1b_c00061{bottom:290.599867pt;}
.y1a_c00061{bottom:322.599867pt;}
.y19_c00061{bottom:354.599867pt;}
.y18_c00061{bottom:386.599867pt;}
.y17_c00061{bottom:418.599867pt;}
.y16_c00061{bottom:450.599867pt;}
.y15_c00061{bottom:482.599867pt;}
.y14_c00061{bottom:514.599867pt;}
.y13_c00061{bottom:546.599867pt;}
.y12_c00061{bottom:578.599867pt;}
.y11_c00061{bottom:610.599867pt;}
.y10_c00061{bottom:642.599867pt;}
.yf_c00061{bottom:674.599867pt;}
.ye_c00061{bottom:706.599867pt;}
.yd_c00061{bottom:738.599867pt;}
.yc_c00061{bottom:770.599867pt;}
.yb_c00061{bottom:802.599867pt;}
.ya_c00061{bottom:834.599867pt;}
.y9_c00061{bottom:866.599867pt;}
.y8_c00061{bottom:898.599867pt;}
.y7_c00061{bottom:930.599867pt;}
.y6_c00061{bottom:962.599867pt;}
.y2_c00061{bottom:1035.560000pt;}
.h4_c00061{height:15.360000pt;}
.h5_c00061{height:62.781250pt;}
.h3_c00061{height:62.812500pt;}
.h2_c00061{height:1099.880000pt;}
.h0_c00061{height:1122.520000pt;}
.h1_c00061{height:1122.666667pt;}
.w3_c00061{width:42.240000pt;}
.w2_c00061{width:771.080000pt;}
.w0_c00061{width:793.720000pt;}
.w1_c00061{width:794.000000pt;}
.x0_c00061{left:0.000000pt;}
.x1_c00061{left:11.320000pt;}
.x5_c00061{left:13.100000pt;}
.x3_c00061{left:84.794933pt;}
.x6_c00061{left:132.800133pt;}
.x4_c00061{left:375.800000pt;}
.x2_c00061{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b88c29f03d44e6d096e4b54c.woff2')format("woff");}.ff1_c00062{font-family:ff1_c00062;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00062{letter-spacing:0.000000px;}
.sc__c00062{text-shadow:none;}
.sc0_c00062{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00062{-webkit-text-stroke:0px transparent;}
.sc0_c00062{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00062{word-spacing:0.000000px;}
._3_c00062{width:1.008000px;}
._4_c00062{width:2.419200px;}
._a_c00062{width:4.168800px;}
._1_c00062{width:5.256000px;}
._0_c00062{width:6.285600px;}
._6_c00062{width:8.150400px;}
._2_c00062{width:9.151200px;}
._9_c00062{width:10.267200px;}
._8_c00062{width:12.549600px;}
._7_c00062{width:13.658400px;}
._5_c00062{width:16.941600px;}
._b_c00062{width:24.206400px;}
.fc1_c00062{color:transparent;}
.fc0_c00062{color:rgb(0,0,0);}
.fs0_c00062{font-size:72.000000px;}
.y0_c00062{bottom:0.000000px;}
.y5_c00062{bottom:5.040000px;}
.y1_c00062{bottom:12.735000px;}
.y3_c00062{bottom:45.405000px;}
.y4_c00062{bottom:53.100000px;}
.y21_c00062{bottom:110.924850px;}
.y20_c00062{bottom:146.924850px;}
.y1f_c00062{bottom:182.924850px;}
.y1e_c00062{bottom:218.924850px;}
.y1d_c00062{bottom:254.924850px;}
.y1c_c00062{bottom:290.924850px;}
.y1b_c00062{bottom:326.924850px;}
.y1a_c00062{bottom:362.924850px;}
.y19_c00062{bottom:398.924850px;}
.y18_c00062{bottom:434.924850px;}
.y17_c00062{bottom:470.924850px;}
.y16_c00062{bottom:506.924850px;}
.y15_c00062{bottom:542.924850px;}
.y14_c00062{bottom:578.924850px;}
.y13_c00062{bottom:614.924850px;}
.y12_c00062{bottom:650.924850px;}
.y11_c00062{bottom:686.924850px;}
.y10_c00062{bottom:722.924850px;}
.yf_c00062{bottom:758.924850px;}
.ye_c00062{bottom:794.924850px;}
.yd_c00062{bottom:830.924850px;}
.yc_c00062{bottom:866.924850px;}
.yb_c00062{bottom:902.924850px;}
.ya_c00062{bottom:938.924850px;}
.y9_c00062{bottom:974.924850px;}
.y8_c00062{bottom:1010.924850px;}
.y7_c00062{bottom:1046.924850px;}
.y6_c00062{bottom:1082.924850px;}
.y2_c00062{bottom:1165.005000px;}
.h4_c00062{height:20.880000px;}
.h3_c00062{height:70.664062px;}
.h2_c00062{height:1237.365000px;}
.h0_c00062{height:1262.835000px;}
.h1_c00062{height:1263.000000px;}
.w3_c00062{width:18.000000px;}
.w2_c00062{width:867.465000px;}
.w0_c00062{width:892.935000px;}
.w1_c00062{width:893.250000px;}
.x0_c00062{left:0.000000px;}
.x1_c00062{left:12.735000px;}
.x3_c00062{left:95.394300px;}
.x5_c00062{left:149.400150px;}
.x4_c00062{left:437.535000px;}
.x2_c00062{left:880.050300px;}
@media print{
.v0_c00062{vertical-align:0.000000pt;}
.ls0_c00062{letter-spacing:0.000000pt;}
.ws0_c00062{word-spacing:0.000000pt;}
._3_c00062{width:0.896000pt;}
._4_c00062{width:2.150400pt;}
._a_c00062{width:3.705600pt;}
._1_c00062{width:4.672000pt;}
._0_c00062{width:5.587200pt;}
._6_c00062{width:7.244800pt;}
._2_c00062{width:8.134400pt;}
._9_c00062{width:9.126400pt;}
._8_c00062{width:11.155200pt;}
._7_c00062{width:12.140800pt;}
._5_c00062{width:15.059200pt;}
._b_c00062{width:21.516800pt;}
.fs0_c00062{font-size:64.000000pt;}
.y0_c00062{bottom:0.000000pt;}
.y5_c00062{bottom:4.480000pt;}
.y1_c00062{bottom:11.320000pt;}
.y3_c00062{bottom:40.360000pt;}
.y4_c00062{bottom:47.200000pt;}
.y21_c00062{bottom:98.599867pt;}
.y20_c00062{bottom:130.599867pt;}
.y1f_c00062{bottom:162.599867pt;}
.y1e_c00062{bottom:194.599867pt;}
.y1d_c00062{bottom:226.599867pt;}
.y1c_c00062{bottom:258.599867pt;}
.y1b_c00062{bottom:290.599867pt;}
.y1a_c00062{bottom:322.599867pt;}
.y19_c00062{bottom:354.599867pt;}
.y18_c00062{bottom:386.599867pt;}
.y17_c00062{bottom:418.599867pt;}
.y16_c00062{bottom:450.599867pt;}
.y15_c00062{bottom:482.599867pt;}
.y14_c00062{bottom:514.599867pt;}
.y13_c00062{bottom:546.599867pt;}
.y12_c00062{bottom:578.599867pt;}
.y11_c00062{bottom:610.599867pt;}
.y10_c00062{bottom:642.599867pt;}
.yf_c00062{bottom:674.599867pt;}
.ye_c00062{bottom:706.599867pt;}
.yd_c00062{bottom:738.599867pt;}
.yc_c00062{bottom:770.599867pt;}
.yb_c00062{bottom:802.599867pt;}
.ya_c00062{bottom:834.599867pt;}
.y9_c00062{bottom:866.599867pt;}
.y8_c00062{bottom:898.599867pt;}
.y7_c00062{bottom:930.599867pt;}
.y6_c00062{bottom:962.599867pt;}
.y2_c00062{bottom:1035.560000pt;}
.h4_c00062{height:18.560000pt;}
.h3_c00062{height:62.812500pt;}
.h2_c00062{height:1099.880000pt;}
.h0_c00062{height:1122.520000pt;}
.h1_c00062{height:1122.666667pt;}
.w3_c00062{width:16.000000pt;}
.w2_c00062{width:771.080000pt;}
.w0_c00062{width:793.720000pt;}
.w1_c00062{width:794.000000pt;}
.x0_c00062{left:0.000000pt;}
.x1_c00062{left:11.320000pt;}
.x3_c00062{left:84.794933pt;}
.x5_c00062{left:132.800133pt;}
.x4_c00062{left:388.920000pt;}
.x2_c00062{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c0b5daf9726ac4de67099727.woff2')format("woff");}.ff1_c00063{font-family:ff1_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;}
.m0_c00063{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00063{vertical-align:0.000000px;}
.ls0_c00063{letter-spacing:0.000000px;}
.sc__c00063{text-shadow:none;}
.sc0_c00063{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00063{-webkit-text-stroke:0px transparent;}
.sc0_c00063{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00063{word-spacing:0.000000px;}
._5_c00063{width:1.843200px;}
._7_c00063{width:2.858400px;}
._c_c00063{width:4.557600px;}
._a_c00063{width:5.572800px;}
._1_c00063{width:7.128000px;}
._2_c00063{width:8.366400px;}
._4_c00063{width:10.166400px;}
._e_c00063{width:11.836800px;}
._0_c00063{width:15.710400px;}
._6_c00063{width:19.036800px;}
._b_c00063{width:21.448800px;}
._d_c00063{width:22.874400px;}
._8_c00063{width:25.725600px;}
._3_c00063{width:30.355200px;}
._9_c00063{width:31.658400px;}
.fc1_c00063{color:transparent;}
.fc0_c00063{color:rgb(0,0,0);}
.fs0_c00063{font-size:72.000000px;}
.y0_c00063{bottom:0.000000px;}
.y5_c00063{bottom:1.440000px;}
.y1_c00063{bottom:12.735000px;}
.y3_c00063{bottom:45.405000px;}
.y4_c00063{bottom:56.700000px;}
.y21_c00063{bottom:110.924850px;}
.y20_c00063{bottom:146.924850px;}
.y1f_c00063{bottom:182.924850px;}
.y1e_c00063{bottom:218.924850px;}
.y1d_c00063{bottom:254.924850px;}
.y1c_c00063{bottom:290.924850px;}
.y1b_c00063{bottom:326.924850px;}
.y1a_c00063{bottom:362.924850px;}
.y19_c00063{bottom:398.924850px;}
.y18_c00063{bottom:434.924850px;}
.y17_c00063{bottom:470.924850px;}
.y16_c00063{bottom:506.924850px;}
.y15_c00063{bottom:542.924850px;}
.y14_c00063{bottom:578.924850px;}
.y13_c00063{bottom:614.924850px;}
.y12_c00063{bottom:650.924850px;}
.y11_c00063{bottom:686.924850px;}
.y10_c00063{bottom:722.924850px;}
.yf_c00063{bottom:758.924850px;}
.ye_c00063{bottom:794.924850px;}
.yd_c00063{bottom:830.924850px;}
.yc_c00063{bottom:866.924850px;}
.yb_c00063{bottom:902.924850px;}
.ya_c00063{bottom:938.924850px;}
.y9_c00063{bottom:974.924850px;}
.y8_c00063{bottom:1010.924850px;}
.y7_c00063{bottom:1046.924850px;}
.y6_c00063{bottom:1082.924850px;}
.y2_c00063{bottom:1165.005000px;}
.h4_c00063{height:17.280000px;}
.h3_c00063{height:70.664062px;}
.h2_c00063{height:1237.365000px;}
.h0_c00063{height:1262.835000px;}
.h1_c00063{height:1263.000000px;}
.w3_c00063{width:47.520000px;}
.w2_c00063{width:867.465000px;}
.w0_c00063{width:892.935000px;}
.w1_c00063{width:893.250000px;}
.x0_c00063{left:0.000000px;}
.x1_c00063{left:12.735000px;}
.x5_c00063{left:14.737500px;}
.x3_c00063{left:95.394300px;}
.x6_c00063{left:149.400150px;}
.x4_c00063{left:422.775000px;}
.x2_c00063{left:880.050300px;}
@media print{
.v0_c00063{vertical-align:0.000000pt;}
.ls0_c00063{letter-spacing:0.000000pt;}
.ws0_c00063{word-spacing:0.000000pt;}
._5_c00063{width:1.638400pt;}
._7_c00063{width:2.540800pt;}
._c_c00063{width:4.051200pt;}
._a_c00063{width:4.953600pt;}
._1_c00063{width:6.336000pt;}
._2_c00063{width:7.436800pt;}
._4_c00063{width:9.036800pt;}
._e_c00063{width:10.521600pt;}
._0_c00063{width:13.964800pt;}
._6_c00063{width:16.921600pt;}
._b_c00063{width:19.065600pt;}
._d_c00063{width:20.332800pt;}
._8_c00063{width:22.867200pt;}
._3_c00063{width:26.982400pt;}
._9_c00063{width:28.140800pt;}
.fs0_c00063{font-size:64.000000pt;}
.y0_c00063{bottom:0.000000pt;}
.y5_c00063{bottom:1.280000pt;}
.y1_c00063{bottom:11.320000pt;}
.y3_c00063{bottom:40.360000pt;}
.y4_c00063{bottom:50.400000pt;}
.y21_c00063{bottom:98.599867pt;}
.y20_c00063{bottom:130.599867pt;}
.y1f_c00063{bottom:162.599867pt;}
.y1e_c00063{bottom:194.599867pt;}
.y1d_c00063{bottom:226.599867pt;}
.y1c_c00063{bottom:258.599867pt;}
.y1b_c00063{bottom:290.599867pt;}
.y1a_c00063{bottom:322.599867pt;}
.y19_c00063{bottom:354.599867pt;}
.y18_c00063{bottom:386.599867pt;}
.y17_c00063{bottom:418.599867pt;}
.y16_c00063{bottom:450.599867pt;}
.y15_c00063{bottom:482.599867pt;}
.y14_c00063{bottom:514.599867pt;}
.y13_c00063{bottom:546.599867pt;}
.y12_c00063{bottom:578.599867pt;}
.y11_c00063{bottom:610.599867pt;}
.y10_c00063{bottom:642.599867pt;}
.yf_c00063{bottom:674.599867pt;}
.ye_c00063{bottom:706.599867pt;}
.yd_c00063{bottom:738.599867pt;}
.yc_c00063{bottom:770.599867pt;}
.yb_c00063{bottom:802.599867pt;}
.ya_c00063{bottom:834.599867pt;}
.y9_c00063{bottom:866.599867pt;}
.y8_c00063{bottom:898.599867pt;}
.y7_c00063{bottom:930.599867pt;}
.y6_c00063{bottom:962.599867pt;}
.y2_c00063{bottom:1035.560000pt;}
.h4_c00063{height:15.360000pt;}
.h3_c00063{height:62.812500pt;}
.h2_c00063{height:1099.880000pt;}
.h0_c00063{height:1122.520000pt;}
.h1_c00063{height:1122.666667pt;}
.w3_c00063{width:42.240000pt;}
.w2_c00063{width:771.080000pt;}
.w0_c00063{width:793.720000pt;}
.w1_c00063{width:794.000000pt;}
.x0_c00063{left:0.000000pt;}
.x1_c00063{left:11.320000pt;}
.x5_c00063{left:13.100000pt;}
.x3_c00063{left:84.794933pt;}
.x6_c00063{left:132.800133pt;}
.x4_c00063{left:375.800000pt;}
.x2_c00063{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_653f0ab116e41e6b8ebc44e4.woff2')format("woff");}.ff1_c00064{font-family:ff1_c00064;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00064;src:url('chunks/assets/font_30810fd5312ddc8fd6c19b97.woff2')format("woff");}.ff2_c00064{font-family:ff2_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;}
.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;}
.ls0_c00064{letter-spacing:0.000000px;}
.sc__c00064{text-shadow:none;}
.sc0_c00064{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00064{-webkit-text-stroke:0px transparent;}
.sc0_c00064{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00064{word-spacing:0.000000px;}
._2_c00064{width:1.699200px;}
._3_c00064{width:2.973600px;}
._9_c00064{width:4.240800px;}
._b_c00064{width:5.306400px;}
._6_c00064{width:6.328800px;}
._4_c00064{width:7.531200px;}
._8_c00064{width:9.460800px;}
._7_c00064{width:11.174400px;}
._5_c00064{width:14.889600px;}
._1_c00064{width:16.012800px;}
._c_c00064{width:24.825600px;}
._a_c00064{width:27.799200px;}
._0_c00064{width:39.520800px;}
.fc1_c00064{color:transparent;}
.fc0_c00064{color:rgb(0,0,0);}
.fs0_c00064{font-size:72.000000px;}
.y0_c00064{bottom:0.000000px;}
.y5_c00064{bottom:5.040000px;}
.y1_c00064{bottom:12.735000px;}
.y3_c00064{bottom:45.405000px;}
.y4_c00064{bottom:53.100000px;}
.y21_c00064{bottom:110.924850px;}
.y20_c00064{bottom:146.924850px;}
.y1f_c00064{bottom:182.924850px;}
.y1e_c00064{bottom:218.924850px;}
.y1d_c00064{bottom:254.924850px;}
.y1c_c00064{bottom:290.924850px;}
.y1b_c00064{bottom:326.924850px;}
.y1a_c00064{bottom:362.924850px;}
.y19_c00064{bottom:398.924850px;}
.y18_c00064{bottom:434.924850px;}
.y17_c00064{bottom:470.924850px;}
.y16_c00064{bottom:506.924850px;}
.y15_c00064{bottom:542.924850px;}
.y14_c00064{bottom:578.924850px;}
.y13_c00064{bottom:614.924850px;}
.y12_c00064{bottom:650.924850px;}
.y11_c00064{bottom:686.924850px;}
.y10_c00064{bottom:722.924850px;}
.yf_c00064{bottom:758.924850px;}
.ye_c00064{bottom:794.924850px;}
.yd_c00064{bottom:830.924850px;}
.yc_c00064{bottom:866.924850px;}
.yb_c00064{bottom:902.924850px;}
.ya_c00064{bottom:938.924850px;}
.y9_c00064{bottom:974.924850px;}
.y8_c00064{bottom:1010.924850px;}
.y7_c00064{bottom:1046.924850px;}
.y6_c00064{bottom:1082.924850px;}
.y2_c00064{bottom:1165.005000px;}
.h4_c00064{height:20.880000px;}
.h3_c00064{height:70.664062px;}
.h2_c00064{height:1237.365000px;}
.h0_c00064{height:1262.835000px;}
.h1_c00064{height:1263.000000px;}
.w3_c00064{width:18.000000px;}
.w2_c00064{width:867.465000px;}
.w0_c00064{width:892.935000px;}
.w1_c00064{width:893.250000px;}
.x0_c00064{left:0.000000px;}
.x1_c00064{left:12.735000px;}
.x3_c00064{left:95.394300px;}
.x5_c00064{left:149.400150px;}
.x4_c00064{left:437.535000px;}
.x2_c00064{left:880.050300px;}
@media print{
.v0_c00064{vertical-align:0.000000pt;}
.ls0_c00064{letter-spacing:0.000000pt;}
.ws0_c00064{word-spacing:0.000000pt;}
._2_c00064{width:1.510400pt;}
._3_c00064{width:2.643200pt;}
._9_c00064{width:3.769600pt;}
._b_c00064{width:4.716800pt;}
._6_c00064{width:5.625600pt;}
._4_c00064{width:6.694400pt;}
._8_c00064{width:8.409600pt;}
._7_c00064{width:9.932800pt;}
._5_c00064{width:13.235200pt;}
._1_c00064{width:14.233600pt;}
._c_c00064{width:22.067200pt;}
._a_c00064{width:24.710400pt;}
._0_c00064{width:35.129600pt;}
.fs0_c00064{font-size:64.000000pt;}
.y0_c00064{bottom:0.000000pt;}
.y5_c00064{bottom:4.480000pt;}
.y1_c00064{bottom:11.320000pt;}
.y3_c00064{bottom:40.360000pt;}
.y4_c00064{bottom:47.200000pt;}
.y21_c00064{bottom:98.599867pt;}
.y20_c00064{bottom:130.599867pt;}
.y1f_c00064{bottom:162.599867pt;}
.y1e_c00064{bottom:194.599867pt;}
.y1d_c00064{bottom:226.599867pt;}
.y1c_c00064{bottom:258.599867pt;}
.y1b_c00064{bottom:290.599867pt;}
.y1a_c00064{bottom:322.599867pt;}
.y19_c00064{bottom:354.599867pt;}
.y18_c00064{bottom:386.599867pt;}
.y17_c00064{bottom:418.599867pt;}
.y16_c00064{bottom:450.599867pt;}
.y15_c00064{bottom:482.599867pt;}
.y14_c00064{bottom:514.599867pt;}
.y13_c00064{bottom:546.599867pt;}
.y12_c00064{bottom:578.599867pt;}
.y11_c00064{bottom:610.599867pt;}
.y10_c00064{bottom:642.599867pt;}
.yf_c00064{bottom:674.599867pt;}
.ye_c00064{bottom:706.599867pt;}
.yd_c00064{bottom:738.599867pt;}
.yc_c00064{bottom:770.599867pt;}
.yb_c00064{bottom:802.599867pt;}
.ya_c00064{bottom:834.599867pt;}
.y9_c00064{bottom:866.599867pt;}
.y8_c00064{bottom:898.599867pt;}
.y7_c00064{bottom:930.599867pt;}
.y6_c00064{bottom:962.599867pt;}
.y2_c00064{bottom:1035.560000pt;}
.h4_c00064{height:18.560000pt;}
.h3_c00064{height:62.812500pt;}
.h2_c00064{height:1099.880000pt;}
.h0_c00064{height:1122.520000pt;}
.h1_c00064{height:1122.666667pt;}
.w3_c00064{width:16.000000pt;}
.w2_c00064{width:771.080000pt;}
.w0_c00064{width:793.720000pt;}
.w1_c00064{width:794.000000pt;}
.x0_c00064{left:0.000000pt;}
.x1_c00064{left:11.320000pt;}
.x3_c00064{left:84.794933pt;}
.x5_c00064{left:132.800133pt;}
.x4_c00064{left:388.920000pt;}
.x2_c00064{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ed178d8a1c7f2aab55d3aef.woff2')format("woff");}.ff1_c00065{font-family:ff1_c00065;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00065;src:url('chunks/assets/font_9c8aac088d9510686d98d64b.woff2')format("woff");}.ff2_c00065{font-family:ff2_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;}
.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;}
.ls0_c00065{letter-spacing:0.000000px;}
.sc__c00065{text-shadow:none;}
.sc0_c00065{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00065{-webkit-text-stroke:0px transparent;}
.sc0_c00065{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00065{word-spacing:0.000000px;}
._0_c00065{width:1.209600px;}
._4_c00065{width:2.577600px;}
._2_c00065{width:3.801600px;}
._6_c00065{width:5.428800px;}
._3_c00065{width:6.796800px;}
._1_c00065{width:8.827200px;}
._5_c00065{width:9.849600px;}
._9_c00065{width:11.008800px;}
._b_c00065{width:12.009600px;}
._a_c00065{width:16.545600px;}
._7_c00065{width:23.205600px;}
._8_c00065{width:24.933600px;}
.fc1_c00065{color:transparent;}
.fc0_c00065{color:rgb(0,0,0);}
.fs0_c00065{font-size:72.000000px;}
.y0_c00065{bottom:0.000000px;}
.y5_c00065{bottom:1.440000px;}
.y1_c00065{bottom:12.735000px;}
.y3_c00065{bottom:45.405000px;}
.y4_c00065{bottom:56.700000px;}
.y21_c00065{bottom:110.924850px;}
.y20_c00065{bottom:146.924850px;}
.y1f_c00065{bottom:182.924850px;}
.y1e_c00065{bottom:218.924850px;}
.y1d_c00065{bottom:254.924850px;}
.y1c_c00065{bottom:290.924850px;}
.y1b_c00065{bottom:326.924850px;}
.y1a_c00065{bottom:362.924850px;}
.y19_c00065{bottom:398.924850px;}
.y18_c00065{bottom:434.924850px;}
.y17_c00065{bottom:470.924850px;}
.y16_c00065{bottom:506.924850px;}
.y15_c00065{bottom:542.924850px;}
.y14_c00065{bottom:578.924850px;}
.y13_c00065{bottom:614.924850px;}
.y12_c00065{bottom:650.924850px;}
.y11_c00065{bottom:686.924850px;}
.y10_c00065{bottom:722.924850px;}
.yf_c00065{bottom:758.924850px;}
.ye_c00065{bottom:794.924850px;}
.yd_c00065{bottom:830.924850px;}
.yc_c00065{bottom:866.924850px;}
.yb_c00065{bottom:902.924850px;}
.ya_c00065{bottom:938.924850px;}
.y9_c00065{bottom:974.924850px;}
.y8_c00065{bottom:1010.924850px;}
.y7_c00065{bottom:1046.924850px;}
.y6_c00065{bottom:1082.924850px;}
.y2_c00065{bottom:1165.005000px;}
.h4_c00065{height:17.280000px;}
.h3_c00065{height:70.664062px;}
.h2_c00065{height:1237.365000px;}
.h0_c00065{height:1262.835000px;}
.h1_c00065{height:1263.000000px;}
.w3_c00065{width:47.520000px;}
.w2_c00065{width:867.465000px;}
.w0_c00065{width:892.935000px;}
.w1_c00065{width:893.250000px;}
.x0_c00065{left:0.000000px;}
.x1_c00065{left:12.735000px;}
.x5_c00065{left:14.737500px;}
.x3_c00065{left:95.394300px;}
.x6_c00065{left:149.400150px;}
.x4_c00065{left:422.775000px;}
.x2_c00065{left:880.050300px;}
@media print{
.v0_c00065{vertical-align:0.000000pt;}
.ls0_c00065{letter-spacing:0.000000pt;}
.ws0_c00065{word-spacing:0.000000pt;}
._0_c00065{width:1.075200pt;}
._4_c00065{width:2.291200pt;}
._2_c00065{width:3.379200pt;}
._6_c00065{width:4.825600pt;}
._3_c00065{width:6.041600pt;}
._1_c00065{width:7.846400pt;}
._5_c00065{width:8.755200pt;}
._9_c00065{width:9.785600pt;}
._b_c00065{width:10.675200pt;}
._a_c00065{width:14.707200pt;}
._7_c00065{width:20.627200pt;}
._8_c00065{width:22.163200pt;}
.fs0_c00065{font-size:64.000000pt;}
.y0_c00065{bottom:0.000000pt;}
.y5_c00065{bottom:1.280000pt;}
.y1_c00065{bottom:11.320000pt;}
.y3_c00065{bottom:40.360000pt;}
.y4_c00065{bottom:50.400000pt;}
.y21_c00065{bottom:98.599867pt;}
.y20_c00065{bottom:130.599867pt;}
.y1f_c00065{bottom:162.599867pt;}
.y1e_c00065{bottom:194.599867pt;}
.y1d_c00065{bottom:226.599867pt;}
.y1c_c00065{bottom:258.599867pt;}
.y1b_c00065{bottom:290.599867pt;}
.y1a_c00065{bottom:322.599867pt;}
.y19_c00065{bottom:354.599867pt;}
.y18_c00065{bottom:386.599867pt;}
.y17_c00065{bottom:418.599867pt;}
.y16_c00065{bottom:450.599867pt;}
.y15_c00065{bottom:482.599867pt;}
.y14_c00065{bottom:514.599867pt;}
.y13_c00065{bottom:546.599867pt;}
.y12_c00065{bottom:578.599867pt;}
.y11_c00065{bottom:610.599867pt;}
.y10_c00065{bottom:642.599867pt;}
.yf_c00065{bottom:674.599867pt;}
.ye_c00065{bottom:706.599867pt;}
.yd_c00065{bottom:738.599867pt;}
.yc_c00065{bottom:770.599867pt;}
.yb_c00065{bottom:802.599867pt;}
.ya_c00065{bottom:834.599867pt;}
.y9_c00065{bottom:866.599867pt;}
.y8_c00065{bottom:898.599867pt;}
.y7_c00065{bottom:930.599867pt;}
.y6_c00065{bottom:962.599867pt;}
.y2_c00065{bottom:1035.560000pt;}
.h4_c00065{height:15.360000pt;}
.h3_c00065{height:62.812500pt;}
.h2_c00065{height:1099.880000pt;}
.h0_c00065{height:1122.520000pt;}
.h1_c00065{height:1122.666667pt;}
.w3_c00065{width:42.240000pt;}
.w2_c00065{width:771.080000pt;}
.w0_c00065{width:793.720000pt;}
.w1_c00065{width:794.000000pt;}
.x0_c00065{left:0.000000pt;}
.x1_c00065{left:11.320000pt;}
.x5_c00065{left:13.100000pt;}
.x3_c00065{left:84.794933pt;}
.x6_c00065{left:132.800133pt;}
.x4_c00065{left:375.800000pt;}
.x2_c00065{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f27c4a015a3d408fbc70283.woff2')format("woff");}.ff1_c00066{font-family:ff1_c00066;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00066;src:url('chunks/assets/font_81723efe641fe455c9182276.woff2')format("woff");}.ff2_c00066{font-family:ff2_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;}
.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.014400px;}
.ls1_c00066{letter-spacing:0.000000px;}
.ls0_c00066{letter-spacing:0.014400px;}
.ls2_c00066{letter-spacing:14.652000px;}
.sc__c00066{text-shadow:none;}
.sc0_c00066{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00066{-webkit-text-stroke:0px transparent;}
.sc0_c00066{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00066{word-spacing:-18.014400px;}
.ws1_c00066{word-spacing:0.000000px;}
._8_c00066{margin-left:-14.335200px;}
._d_c00066{width:1.202400px;}
._6_c00066{width:2.232000px;}
._4_c00066{width:3.290400px;}
._9_c00066{width:4.420800px;}
._5_c00066{width:5.760000px;}
._2_c00066{width:7.416000px;}
._a_c00066{width:8.589600px;}
._3_c00066{width:9.842400px;}
._c_c00066{width:10.922400px;}
._0_c00066{width:13.003200px;}
._7_c00066{width:14.594400px;}
._1_c00066{width:16.156800px;}
._b_c00066{width:21.549600px;}
.fc1_c00066{color:transparent;}
.fc0_c00066{color:rgb(0,0,0);}
.fs0_c00066{font-size:72.000000px;}
.y0_c00066{bottom:0.000000px;}
.y5_c00066{bottom:5.040000px;}
.y1_c00066{bottom:12.735000px;}
.y3_c00066{bottom:45.405000px;}
.y4_c00066{bottom:53.100000px;}
.y20_c00066{bottom:146.924850px;}
.y1f_c00066{bottom:182.924850px;}
.y1e_c00066{bottom:218.924850px;}
.y1d_c00066{bottom:254.924850px;}
.y1c_c00066{bottom:290.924850px;}
.y1b_c00066{bottom:326.924850px;}
.y1a_c00066{bottom:362.924850px;}
.y19_c00066{bottom:398.924850px;}
.y18_c00066{bottom:434.924850px;}
.y17_c00066{bottom:470.924850px;}
.y16_c00066{bottom:506.924850px;}
.y15_c00066{bottom:542.924850px;}
.y14_c00066{bottom:578.924850px;}
.y13_c00066{bottom:614.924850px;}
.y12_c00066{bottom:650.924850px;}
.y11_c00066{bottom:686.924850px;}
.y10_c00066{bottom:722.924850px;}
.yf_c00066{bottom:758.924850px;}
.ye_c00066{bottom:794.924850px;}
.yd_c00066{bottom:830.924850px;}
.yc_c00066{bottom:866.924850px;}
.yb_c00066{bottom:902.924850px;}
.ya_c00066{bottom:938.924850px;}
.y9_c00066{bottom:974.924850px;}
.y8_c00066{bottom:1010.924850px;}
.y7_c00066{bottom:1046.924850px;}
.y6_c00066{bottom:1082.924850px;}
.y2_c00066{bottom:1165.005000px;}
.h4_c00066{height:20.880000px;}
.h5_c00066{height:70.628906px;}
.h3_c00066{height:70.664062px;}
.h2_c00066{height:1237.365000px;}
.h0_c00066{height:1262.835000px;}
.h1_c00066{height:1263.000000px;}
.w3_c00066{width:18.000000px;}
.w2_c00066{width:867.465000px;}
.w0_c00066{width:892.935000px;}
.w1_c00066{width:893.250000px;}
.x0_c00066{left:0.000000px;}
.x1_c00066{left:12.735000px;}
.x3_c00066{left:95.394300px;}
.x5_c00066{left:149.400150px;}
.x4_c00066{left:437.535000px;}
.x2_c00066{left:880.050300px;}
@media print{
.v0_c00066{vertical-align:0.000000pt;}
.ls3_c00066{letter-spacing:-0.012800pt;}
.ls1_c00066{letter-spacing:0.000000pt;}
.ls0_c00066{letter-spacing:0.012800pt;}
.ls2_c00066{letter-spacing:13.024000pt;}
.ws0_c00066{word-spacing:-16.012800pt;}
.ws1_c00066{word-spacing:0.000000pt;}
._8_c00066{margin-left:-12.742400pt;}
._d_c00066{width:1.068800pt;}
._6_c00066{width:1.984000pt;}
._4_c00066{width:2.924800pt;}
._9_c00066{width:3.929600pt;}
._5_c00066{width:5.120000pt;}
._2_c00066{width:6.592000pt;}
._a_c00066{width:7.635200pt;}
._3_c00066{width:8.748800pt;}
._c_c00066{width:9.708800pt;}
._0_c00066{width:11.558400pt;}
._7_c00066{width:12.972800pt;}
._1_c00066{width:14.361600pt;}
._b_c00066{width:19.155200pt;}
.fs0_c00066{font-size:64.000000pt;}
.y0_c00066{bottom:0.000000pt;}
.y5_c00066{bottom:4.480000pt;}
.y1_c00066{bottom:11.320000pt;}
.y3_c00066{bottom:40.360000pt;}
.y4_c00066{bottom:47.200000pt;}
.y20_c00066{bottom:130.599867pt;}
.y1f_c00066{bottom:162.599867pt;}
.y1e_c00066{bottom:194.599867pt;}
.y1d_c00066{bottom:226.599867pt;}
.y1c_c00066{bottom:258.599867pt;}
.y1b_c00066{bottom:290.599867pt;}
.y1a_c00066{bottom:322.599867pt;}
.y19_c00066{bottom:354.599867pt;}
.y18_c00066{bottom:386.599867pt;}
.y17_c00066{bottom:418.599867pt;}
.y16_c00066{bottom:450.599867pt;}
.y15_c00066{bottom:482.599867pt;}
.y14_c00066{bottom:514.599867pt;}
.y13_c00066{bottom:546.599867pt;}
.y12_c00066{bottom:578.599867pt;}
.y11_c00066{bottom:610.599867pt;}
.y10_c00066{bottom:642.599867pt;}
.yf_c00066{bottom:674.599867pt;}
.ye_c00066{bottom:706.599867pt;}
.yd_c00066{bottom:738.599867pt;}
.yc_c00066{bottom:770.599867pt;}
.yb_c00066{bottom:802.599867pt;}
.ya_c00066{bottom:834.599867pt;}
.y9_c00066{bottom:866.599867pt;}
.y8_c00066{bottom:898.599867pt;}
.y7_c00066{bottom:930.599867pt;}
.y6_c00066{bottom:962.599867pt;}
.y2_c00066{bottom:1035.560000pt;}
.h4_c00066{height:18.560000pt;}
.h5_c00066{height:62.781250pt;}
.h3_c00066{height:62.812500pt;}
.h2_c00066{height:1099.880000pt;}
.h0_c00066{height:1122.520000pt;}
.h1_c00066{height:1122.666667pt;}
.w3_c00066{width:16.000000pt;}
.w2_c00066{width:771.080000pt;}
.w0_c00066{width:793.720000pt;}
.w1_c00066{width:794.000000pt;}
.x0_c00066{left:0.000000pt;}
.x1_c00066{left:11.320000pt;}
.x3_c00066{left:84.794933pt;}
.x5_c00066{left:132.800133pt;}
.x4_c00066{left:388.920000pt;}
.x2_c00066{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7a9b8d3047606752fa019cba.woff2')format("woff");}.ff1_c00067{font-family:ff1_c00067;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00067;src:url('chunks/assets/font_b1592766f0c44da07d882918.woff2')format("woff");}.ff2_c00067{font-family:ff2_c00067;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;}
.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;}
.ls1_c00067{letter-spacing:0.000000px;}
.ls0_c00067{letter-spacing:28.656000px;}
.sc__c00067{text-shadow:none;}
.sc0_c00067{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00067{-webkit-text-stroke:0px transparent;}
.sc0_c00067{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00067{word-spacing:0.000000px;}
._4_c00067{width:1.490400px;}
._9_c00067{width:2.880000px;}
._8_c00067{width:4.104000px;}
._0_c00067{width:5.428800px;}
._7_c00067{width:6.681600px;}
._a_c00067{width:9.532800px;}
._2_c00067{width:10.627200px;}
._3_c00067{width:11.952000px;}
._5_c00067{width:22.010400px;}
._b_c00067{width:24.271200px;}
._1_c00067{width:28.663200px;}
._6_c00067{width:57.240000px;}
.fc1_c00067{color:transparent;}
.fc0_c00067{color:rgb(0,0,0);}
.fs0_c00067{font-size:72.000000px;}
.y0_c00067{bottom:0.000000px;}
.y5_c00067{bottom:1.440000px;}
.y1_c00067{bottom:12.735000px;}
.y3_c00067{bottom:45.405000px;}
.y4_c00067{bottom:56.700000px;}
.y21_c00067{bottom:110.924850px;}
.y20_c00067{bottom:146.924850px;}
.y1f_c00067{bottom:182.924850px;}
.y1e_c00067{bottom:218.924850px;}
.y1d_c00067{bottom:254.924850px;}
.y1c_c00067{bottom:290.924850px;}
.y1b_c00067{bottom:326.924850px;}
.y1a_c00067{bottom:362.924850px;}
.y19_c00067{bottom:398.924850px;}
.y18_c00067{bottom:434.924850px;}
.y17_c00067{bottom:470.924850px;}
.y16_c00067{bottom:506.924850px;}
.y15_c00067{bottom:542.924850px;}
.y14_c00067{bottom:578.924850px;}
.y13_c00067{bottom:614.924850px;}
.y12_c00067{bottom:650.924850px;}
.y11_c00067{bottom:686.924850px;}
.y10_c00067{bottom:722.924850px;}
.yf_c00067{bottom:758.924850px;}
.ye_c00067{bottom:794.924850px;}
.yd_c00067{bottom:830.924850px;}
.yc_c00067{bottom:866.924850px;}
.yb_c00067{bottom:902.924850px;}
.ya_c00067{bottom:938.924850px;}
.y9_c00067{bottom:974.924850px;}
.y8_c00067{bottom:1010.924850px;}
.y7_c00067{bottom:1046.924850px;}
.y6_c00067{bottom:1082.924850px;}
.y2_c00067{bottom:1165.005000px;}
.h4_c00067{height:17.280000px;}
.h3_c00067{height:70.664062px;}
.h5_c00067{height:74.953125px;}
.h2_c00067{height:1237.365000px;}
.h0_c00067{height:1262.835000px;}
.h1_c00067{height:1263.000000px;}
.w3_c00067{width:47.520000px;}
.w2_c00067{width:867.465000px;}
.w0_c00067{width:892.935000px;}
.w1_c00067{width:893.250000px;}
.x0_c00067{left:0.000000px;}
.x1_c00067{left:12.735000px;}
.x5_c00067{left:14.737500px;}
.x3_c00067{left:95.394300px;}
.x6_c00067{left:149.400150px;}
.x4_c00067{left:422.775000px;}
.x2_c00067{left:880.050300px;}
@media print{
.v0_c00067{vertical-align:0.000000pt;}
.ls1_c00067{letter-spacing:0.000000pt;}
.ls0_c00067{letter-spacing:25.472000pt;}
.ws0_c00067{word-spacing:0.000000pt;}
._4_c00067{width:1.324800pt;}
._9_c00067{width:2.560000pt;}
._8_c00067{width:3.648000pt;}
._0_c00067{width:4.825600pt;}
._7_c00067{width:5.939200pt;}
._a_c00067{width:8.473600pt;}
._2_c00067{width:9.446400pt;}
._3_c00067{width:10.624000pt;}
._5_c00067{width:19.564800pt;}
._b_c00067{width:21.574400pt;}
._1_c00067{width:25.478400pt;}
._6_c00067{width:50.880000pt;}
.fs0_c00067{font-size:64.000000pt;}
.y0_c00067{bottom:0.000000pt;}
.y5_c00067{bottom:1.280000pt;}
.y1_c00067{bottom:11.320000pt;}
.y3_c00067{bottom:40.360000pt;}
.y4_c00067{bottom:50.400000pt;}
.y21_c00067{bottom:98.599867pt;}
.y20_c00067{bottom:130.599867pt;}
.y1f_c00067{bottom:162.599867pt;}
.y1e_c00067{bottom:194.599867pt;}
.y1d_c00067{bottom:226.599867pt;}
.y1c_c00067{bottom:258.599867pt;}
.y1b_c00067{bottom:290.599867pt;}
.y1a_c00067{bottom:322.599867pt;}
.y19_c00067{bottom:354.599867pt;}
.y18_c00067{bottom:386.599867pt;}
.y17_c00067{bottom:418.599867pt;}
.y16_c00067{bottom:450.599867pt;}
.y15_c00067{bottom:482.599867pt;}
.y14_c00067{bottom:514.599867pt;}
.y13_c00067{bottom:546.599867pt;}
.y12_c00067{bottom:578.599867pt;}
.y11_c00067{bottom:610.599867pt;}
.y10_c00067{bottom:642.599867pt;}
.yf_c00067{bottom:674.599867pt;}
.ye_c00067{bottom:706.599867pt;}
.yd_c00067{bottom:738.599867pt;}
.yc_c00067{bottom:770.599867pt;}
.yb_c00067{bottom:802.599867pt;}
.ya_c00067{bottom:834.599867pt;}
.y9_c00067{bottom:866.599867pt;}
.y8_c00067{bottom:898.599867pt;}
.y7_c00067{bottom:930.599867pt;}
.y6_c00067{bottom:962.599867pt;}
.y2_c00067{bottom:1035.560000pt;}
.h4_c00067{height:15.360000pt;}
.h3_c00067{height:62.812500pt;}
.h5_c00067{height:66.625000pt;}
.h2_c00067{height:1099.880000pt;}
.h0_c00067{height:1122.520000pt;}
.h1_c00067{height:1122.666667pt;}
.w3_c00067{width:42.240000pt;}
.w2_c00067{width:771.080000pt;}
.w0_c00067{width:793.720000pt;}
.w1_c00067{width:794.000000pt;}
.x0_c00067{left:0.000000pt;}
.x1_c00067{left:11.320000pt;}
.x5_c00067{left:13.100000pt;}
.x3_c00067{left:84.794933pt;}
.x6_c00067{left:132.800133pt;}
.x4_c00067{left:375.800000pt;}
.x2_c00067{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d149a7f4f4648ae4dfcf6833.woff2')format("woff");}.ff1_c00068{font-family:ff1_c00068;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00068{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00068{vertical-align:0.000000px;}
.ls0_c00068{letter-spacing:0.000000px;}
.sc__c00068{text-shadow:none;}
.sc0_c00068{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00068{-webkit-text-stroke:0px transparent;}
.sc0_c00068{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00068{word-spacing:0.000000px;}
._4_c00068{width:1.684800px;}
._9_c00068{width:2.793600px;}
._6_c00068{width:4.039200px;}
._2_c00068{width:5.824800px;}
._3_c00068{width:7.293600px;}
._8_c00068{width:10.598400px;}
._c_c00068{width:14.126400px;}
._b_c00068{width:15.595200px;}
._5_c00068{width:16.718400px;}
._1_c00068{width:19.123200px;}
._0_c00068{width:22.831200px;}
._a_c00068{width:26.827200px;}
._7_c00068{width:61.077600px;}
.fc1_c00068{color:transparent;}
.fc0_c00068{color:rgb(0,0,0);}
.fs0_c00068{font-size:72.000000px;}
.y0_c00068{bottom:0.000000px;}
.y5_c00068{bottom:5.040000px;}
.y1_c00068{bottom:12.735000px;}
.y3_c00068{bottom:45.405000px;}
.y4_c00068{bottom:53.100000px;}
.y21_c00068{bottom:110.924850px;}
.y20_c00068{bottom:146.924850px;}
.y1f_c00068{bottom:182.924850px;}
.y1e_c00068{bottom:218.924850px;}
.y1d_c00068{bottom:254.924850px;}
.y1c_c00068{bottom:290.924850px;}
.y1b_c00068{bottom:326.924850px;}
.y1a_c00068{bottom:362.924850px;}
.y19_c00068{bottom:398.924850px;}
.y18_c00068{bottom:434.924850px;}
.y17_c00068{bottom:470.924850px;}
.y16_c00068{bottom:506.924850px;}
.y15_c00068{bottom:542.924850px;}
.y14_c00068{bottom:578.924850px;}
.y13_c00068{bottom:614.924850px;}
.y12_c00068{bottom:650.924850px;}
.y11_c00068{bottom:686.924850px;}
.y10_c00068{bottom:722.924850px;}
.yf_c00068{bottom:758.924850px;}
.ye_c00068{bottom:794.924850px;}
.yd_c00068{bottom:830.924850px;}
.yc_c00068{bottom:866.924850px;}
.yb_c00068{bottom:902.924850px;}
.ya_c00068{bottom:938.924850px;}
.y9_c00068{bottom:974.924850px;}
.y8_c00068{bottom:1010.924850px;}
.y7_c00068{bottom:1046.924850px;}
.y6_c00068{bottom:1082.924850px;}
.y2_c00068{bottom:1165.005000px;}
.h4_c00068{height:20.880000px;}
.h3_c00068{height:70.664062px;}
.h2_c00068{height:1237.365000px;}
.h0_c00068{height:1262.835000px;}
.h1_c00068{height:1263.000000px;}
.w3_c00068{width:18.000000px;}
.w2_c00068{width:867.465000px;}
.w0_c00068{width:892.935000px;}
.w1_c00068{width:893.250000px;}
.x0_c00068{left:0.000000px;}
.x1_c00068{left:12.735000px;}
.x3_c00068{left:95.394300px;}
.x5_c00068{left:149.400150px;}
.x4_c00068{left:437.535000px;}
.x2_c00068{left:880.050300px;}
@media print{
.v0_c00068{vertical-align:0.000000pt;}
.ls0_c00068{letter-spacing:0.000000pt;}
.ws0_c00068{word-spacing:0.000000pt;}
._4_c00068{width:1.497600pt;}
._9_c00068{width:2.483200pt;}
._6_c00068{width:3.590400pt;}
._2_c00068{width:5.177600pt;}
._3_c00068{width:6.483200pt;}
._8_c00068{width:9.420800pt;}
._c_c00068{width:12.556800pt;}
._b_c00068{width:13.862400pt;}
._5_c00068{width:14.860800pt;}
._1_c00068{width:16.998400pt;}
._0_c00068{width:20.294400pt;}
._a_c00068{width:23.846400pt;}
._7_c00068{width:54.291200pt;}
.fs0_c00068{font-size:64.000000pt;}
.y0_c00068{bottom:0.000000pt;}
.y5_c00068{bottom:4.480000pt;}
.y1_c00068{bottom:11.320000pt;}
.y3_c00068{bottom:40.360000pt;}
.y4_c00068{bottom:47.200000pt;}
.y21_c00068{bottom:98.599867pt;}
.y20_c00068{bottom:130.599867pt;}
.y1f_c00068{bottom:162.599867pt;}
.y1e_c00068{bottom:194.599867pt;}
.y1d_c00068{bottom:226.599867pt;}
.y1c_c00068{bottom:258.599867pt;}
.y1b_c00068{bottom:290.599867pt;}
.y1a_c00068{bottom:322.599867pt;}
.y19_c00068{bottom:354.599867pt;}
.y18_c00068{bottom:386.599867pt;}
.y17_c00068{bottom:418.599867pt;}
.y16_c00068{bottom:450.599867pt;}
.y15_c00068{bottom:482.599867pt;}
.y14_c00068{bottom:514.599867pt;}
.y13_c00068{bottom:546.599867pt;}
.y12_c00068{bottom:578.599867pt;}
.y11_c00068{bottom:610.599867pt;}
.y10_c00068{bottom:642.599867pt;}
.yf_c00068{bottom:674.599867pt;}
.ye_c00068{bottom:706.599867pt;}
.yd_c00068{bottom:738.599867pt;}
.yc_c00068{bottom:770.599867pt;}
.yb_c00068{bottom:802.599867pt;}
.ya_c00068{bottom:834.599867pt;}
.y9_c00068{bottom:866.599867pt;}
.y8_c00068{bottom:898.599867pt;}
.y7_c00068{bottom:930.599867pt;}
.y6_c00068{bottom:962.599867pt;}
.y2_c00068{bottom:1035.560000pt;}
.h4_c00068{height:18.560000pt;}
.h3_c00068{height:62.812500pt;}
.h2_c00068{height:1099.880000pt;}
.h0_c00068{height:1122.520000pt;}
.h1_c00068{height:1122.666667pt;}
.w3_c00068{width:16.000000pt;}
.w2_c00068{width:771.080000pt;}
.w0_c00068{width:793.720000pt;}
.w1_c00068{width:794.000000pt;}
.x0_c00068{left:0.000000pt;}
.x1_c00068{left:11.320000pt;}
.x3_c00068{left:84.794933pt;}
.x5_c00068{left:132.800133pt;}
.x4_c00068{left:388.920000pt;}
.x2_c00068{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2404e88fe42468a6ace28734.woff2')format("woff");}.ff1_c00069{font-family:ff1_c00069;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00069;src:url('chunks/assets/font_414b16e77bb8e4e74a232e7a.woff2')format("woff");}.ff2_c00069{font-family:ff2_c00069;line-height:1.284180;font-style: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;}
.ls0_c00069{letter-spacing:0.000000px;}
.sc__c00069{text-shadow:none;}
.sc0_c00069{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00069{-webkit-text-stroke:0px transparent;}
.sc0_c00069{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00069{word-spacing:0.000000px;}
._0_c00069{width:1.036800px;}
._1_c00069{width:3.088800px;}
._3_c00069{width:4.888800px;}
._8_c00069{width:5.997600px;}
._4_c00069{width:7.308000px;}
._2_c00069{width:9.115200px;}
._5_c00069{width:11.124000px;}
._7_c00069{width:15.098400px;}
._9_c00069{width:19.274400px;}
._6_c00069{width:22.996800px;}
.fc1_c00069{color:transparent;}
.fc0_c00069{color:rgb(0,0,0);}
.fs0_c00069{font-size:72.000000px;}
.y0_c00069{bottom:0.000000px;}
.y5_c00069{bottom:1.440000px;}
.y1_c00069{bottom:12.735000px;}
.y3_c00069{bottom:45.405000px;}
.y4_c00069{bottom:56.700000px;}
.y20_c00069{bottom:146.924850px;}
.y1f_c00069{bottom:182.924850px;}
.y1e_c00069{bottom:218.924850px;}
.y1d_c00069{bottom:254.924850px;}
.y1c_c00069{bottom:290.924850px;}
.y1b_c00069{bottom:326.924850px;}
.y1a_c00069{bottom:362.924850px;}
.y19_c00069{bottom:398.924850px;}
.y18_c00069{bottom:434.924850px;}
.y17_c00069{bottom:470.924850px;}
.y16_c00069{bottom:506.924850px;}
.y15_c00069{bottom:542.924850px;}
.y14_c00069{bottom:578.924850px;}
.y13_c00069{bottom:614.924850px;}
.y12_c00069{bottom:650.924850px;}
.y11_c00069{bottom:686.924850px;}
.y10_c00069{bottom:722.924850px;}
.yf_c00069{bottom:758.924850px;}
.ye_c00069{bottom:794.924850px;}
.yd_c00069{bottom:830.924850px;}
.yc_c00069{bottom:866.924850px;}
.yb_c00069{bottom:902.924850px;}
.ya_c00069{bottom:938.924850px;}
.y9_c00069{bottom:974.924850px;}
.y8_c00069{bottom:1010.924850px;}
.y7_c00069{bottom:1046.924850px;}
.y6_c00069{bottom:1082.924850px;}
.y2_c00069{bottom:1165.005000px;}
.h4_c00069{height:17.280000px;}
.h5_c00069{height:70.628906px;}
.h3_c00069{height:70.664062px;}
.h2_c00069{height:1237.365000px;}
.h0_c00069{height:1262.835000px;}
.h1_c00069{height:1263.000000px;}
.w3_c00069{width:47.520000px;}
.w2_c00069{width:867.465000px;}
.w0_c00069{width:892.935000px;}
.w1_c00069{width:893.250000px;}
.x0_c00069{left:0.000000px;}
.x1_c00069{left:12.735000px;}
.x5_c00069{left:14.737500px;}
.x3_c00069{left:95.394300px;}
.x6_c00069{left:149.400150px;}
.x4_c00069{left:422.775000px;}
.x2_c00069{left:880.050300px;}
@media print{
.v0_c00069{vertical-align:0.000000pt;}
.ls0_c00069{letter-spacing:0.000000pt;}
.ws0_c00069{word-spacing:0.000000pt;}
._0_c00069{width:0.921600pt;}
._1_c00069{width:2.745600pt;}
._3_c00069{width:4.345600pt;}
._8_c00069{width:5.331200pt;}
._4_c00069{width:6.496000pt;}
._2_c00069{width:8.102400pt;}
._5_c00069{width:9.888000pt;}
._7_c00069{width:13.420800pt;}
._9_c00069{width:17.132800pt;}
._6_c00069{width:20.441600pt;}
.fs0_c00069{font-size:64.000000pt;}
.y0_c00069{bottom:0.000000pt;}
.y5_c00069{bottom:1.280000pt;}
.y1_c00069{bottom:11.320000pt;}
.y3_c00069{bottom:40.360000pt;}
.y4_c00069{bottom:50.400000pt;}
.y20_c00069{bottom:130.599867pt;}
.y1f_c00069{bottom:162.599867pt;}
.y1e_c00069{bottom:194.599867pt;}
.y1d_c00069{bottom:226.599867pt;}
.y1c_c00069{bottom:258.599867pt;}
.y1b_c00069{bottom:290.599867pt;}
.y1a_c00069{bottom:322.599867pt;}
.y19_c00069{bottom:354.599867pt;}
.y18_c00069{bottom:386.599867pt;}
.y17_c00069{bottom:418.599867pt;}
.y16_c00069{bottom:450.599867pt;}
.y15_c00069{bottom:482.599867pt;}
.y14_c00069{bottom:514.599867pt;}
.y13_c00069{bottom:546.599867pt;}
.y12_c00069{bottom:578.599867pt;}
.y11_c00069{bottom:610.599867pt;}
.y10_c00069{bottom:642.599867pt;}
.yf_c00069{bottom:674.599867pt;}
.ye_c00069{bottom:706.599867pt;}
.yd_c00069{bottom:738.599867pt;}
.yc_c00069{bottom:770.599867pt;}
.yb_c00069{bottom:802.599867pt;}
.ya_c00069{bottom:834.599867pt;}
.y9_c00069{bottom:866.599867pt;}
.y8_c00069{bottom:898.599867pt;}
.y7_c00069{bottom:930.599867pt;}
.y6_c00069{bottom:962.599867pt;}
.y2_c00069{bottom:1035.560000pt;}
.h4_c00069{height:15.360000pt;}
.h5_c00069{height:62.781250pt;}
.h3_c00069{height:62.812500pt;}
.h2_c00069{height:1099.880000pt;}
.h0_c00069{height:1122.520000pt;}
.h1_c00069{height:1122.666667pt;}
.w3_c00069{width:42.240000pt;}
.w2_c00069{width:771.080000pt;}
.w0_c00069{width:793.720000pt;}
.w1_c00069{width:794.000000pt;}
.x0_c00069{left:0.000000pt;}
.x1_c00069{left:11.320000pt;}
.x5_c00069{left:13.100000pt;}
.x3_c00069{left:84.794933pt;}
.x6_c00069{left:132.800133pt;}
.x4_c00069{left:375.800000pt;}
.x2_c00069{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af6e93637381def0b384e2dc.woff2')format("woff");}.ff1_c00070{font-family:ff1_c00070;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00070{letter-spacing:0.000000px;}
.ls1_c00070{letter-spacing:18.619200px;}
.sc__c00070{text-shadow:none;}
.sc0_c00070{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00070{-webkit-text-stroke:0px transparent;}
.sc0_c00070{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00070{word-spacing:0.000000px;}
._9_c00070{margin-left:-18.230400px;}
._7_c00070{width:1.512000px;}
._8_c00070{width:3.096000px;}
._1_c00070{width:4.327200px;}
._0_c00070{width:5.587200px;}
._4_c00070{width:7.351200px;}
._3_c00070{width:9.194400px;}
._b_c00070{width:10.562400px;}
._2_c00070{width:12.312000px;}
._6_c00070{width:19.339200px;}
._a_c00070{width:21.009600px;}
._5_c00070{width:26.200800px;}
.fc1_c00070{color:transparent;}
.fc0_c00070{color:rgb(0,0,0);}
.fs0_c00070{font-size:72.000000px;}
.y0_c00070{bottom:0.000000px;}
.y5_c00070{bottom:5.040000px;}
.y1_c00070{bottom:12.735000px;}
.y3_c00070{bottom:45.405000px;}
.y4_c00070{bottom:53.100000px;}
.y21_c00070{bottom:110.924850px;}
.y20_c00070{bottom:146.924850px;}
.y1f_c00070{bottom:182.924850px;}
.y1e_c00070{bottom:218.924850px;}
.y1d_c00070{bottom:254.924850px;}
.y1c_c00070{bottom:290.924850px;}
.y1b_c00070{bottom:326.924850px;}
.y1a_c00070{bottom:362.924850px;}
.y19_c00070{bottom:398.924850px;}
.y18_c00070{bottom:434.924850px;}
.y17_c00070{bottom:470.924850px;}
.y16_c00070{bottom:506.924850px;}
.y15_c00070{bottom:542.924850px;}
.y14_c00070{bottom:578.924850px;}
.y13_c00070{bottom:614.924850px;}
.y12_c00070{bottom:650.924850px;}
.y11_c00070{bottom:686.924850px;}
.y10_c00070{bottom:722.924850px;}
.yf_c00070{bottom:758.924850px;}
.ye_c00070{bottom:794.924850px;}
.yd_c00070{bottom:830.924850px;}
.yc_c00070{bottom:866.924850px;}
.yb_c00070{bottom:902.924850px;}
.ya_c00070{bottom:938.924850px;}
.y9_c00070{bottom:974.924850px;}
.y8_c00070{bottom:1010.924850px;}
.y7_c00070{bottom:1046.924850px;}
.y6_c00070{bottom:1082.924850px;}
.y2_c00070{bottom:1165.005000px;}
.h4_c00070{height:20.880000px;}
.h3_c00070{height:70.664062px;}
.h2_c00070{height:1237.365000px;}
.h0_c00070{height:1262.835000px;}
.h1_c00070{height:1263.000000px;}
.w3_c00070{width:18.000000px;}
.w2_c00070{width:867.465000px;}
.w0_c00070{width:892.935000px;}
.w1_c00070{width:893.250000px;}
.x0_c00070{left:0.000000px;}
.x1_c00070{left:12.735000px;}
.x3_c00070{left:95.394300px;}
.x5_c00070{left:149.400150px;}
.x4_c00070{left:437.535000px;}
.x2_c00070{left:880.050300px;}
@media print{
.v0_c00070{vertical-align:0.000000pt;}
.ls0_c00070{letter-spacing:0.000000pt;}
.ls1_c00070{letter-spacing:16.550400pt;}
.ws0_c00070{word-spacing:0.000000pt;}
._9_c00070{margin-left:-16.204800pt;}
._7_c00070{width:1.344000pt;}
._8_c00070{width:2.752000pt;}
._1_c00070{width:3.846400pt;}
._0_c00070{width:4.966400pt;}
._4_c00070{width:6.534400pt;}
._3_c00070{width:8.172800pt;}
._b_c00070{width:9.388800pt;}
._2_c00070{width:10.944000pt;}
._6_c00070{width:17.190400pt;}
._a_c00070{width:18.675200pt;}
._5_c00070{width:23.289600pt;}
.fs0_c00070{font-size:64.000000pt;}
.y0_c00070{bottom:0.000000pt;}
.y5_c00070{bottom:4.480000pt;}
.y1_c00070{bottom:11.320000pt;}
.y3_c00070{bottom:40.360000pt;}
.y4_c00070{bottom:47.200000pt;}
.y21_c00070{bottom:98.599867pt;}
.y20_c00070{bottom:130.599867pt;}
.y1f_c00070{bottom:162.599867pt;}
.y1e_c00070{bottom:194.599867pt;}
.y1d_c00070{bottom:226.599867pt;}
.y1c_c00070{bottom:258.599867pt;}
.y1b_c00070{bottom:290.599867pt;}
.y1a_c00070{bottom:322.599867pt;}
.y19_c00070{bottom:354.599867pt;}
.y18_c00070{bottom:386.599867pt;}
.y17_c00070{bottom:418.599867pt;}
.y16_c00070{bottom:450.599867pt;}
.y15_c00070{bottom:482.599867pt;}
.y14_c00070{bottom:514.599867pt;}
.y13_c00070{bottom:546.599867pt;}
.y12_c00070{bottom:578.599867pt;}
.y11_c00070{bottom:610.599867pt;}
.y10_c00070{bottom:642.599867pt;}
.yf_c00070{bottom:674.599867pt;}
.ye_c00070{bottom:706.599867pt;}
.yd_c00070{bottom:738.599867pt;}
.yc_c00070{bottom:770.599867pt;}
.yb_c00070{bottom:802.599867pt;}
.ya_c00070{bottom:834.599867pt;}
.y9_c00070{bottom:866.599867pt;}
.y8_c00070{bottom:898.599867pt;}
.y7_c00070{bottom:930.599867pt;}
.y6_c00070{bottom:962.599867pt;}
.y2_c00070{bottom:1035.560000pt;}
.h4_c00070{height:18.560000pt;}
.h3_c00070{height:62.812500pt;}
.h2_c00070{height:1099.880000pt;}
.h0_c00070{height:1122.520000pt;}
.h1_c00070{height:1122.666667pt;}
.w3_c00070{width:16.000000pt;}
.w2_c00070{width:771.080000pt;}
.w0_c00070{width:793.720000pt;}
.w1_c00070{width:794.000000pt;}
.x0_c00070{left:0.000000pt;}
.x1_c00070{left:11.320000pt;}
.x3_c00070{left:84.794933pt;}
.x5_c00070{left:132.800133pt;}
.x4_c00070{left:388.920000pt;}
.x2_c00070{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1e0dcda8f59edacd25a4cb57.woff2')format("woff");}.ff1_c00071{font-family:ff1_c00071;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00071;src:url('chunks/assets/font_713c895568b2ffa787ad191c.woff2')format("woff");}.ff2_c00071{font-family:ff2_c00071;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;}
.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;}
.ls0_c00071{letter-spacing:0.000000px;}
.sc__c00071{text-shadow:none;}
.sc0_c00071{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00071{-webkit-text-stroke:0px transparent;}
.sc0_c00071{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00071{word-spacing:0.000000px;}
._3_c00071{width:1.000800px;}
._7_c00071{width:2.102400px;}
._5_c00071{width:3.477600px;}
._2_c00071{width:4.716000px;}
._4_c00071{width:6.033600px;}
._9_c00071{width:7.128000px;}
._a_c00071{width:8.604000px;}
._b_c00071{width:11.088000px;}
._1_c00071{width:12.751200px;}
._0_c00071{width:14.155200px;}
._8_c00071{width:15.314400px;}
._6_c00071{width:29.988000px;}
.fc1_c00071{color:transparent;}
.fc0_c00071{color:rgb(0,0,0);}
.fs0_c00071{font-size:72.000000px;}
.y0_c00071{bottom:0.000000px;}
.y5_c00071{bottom:1.440000px;}
.y1_c00071{bottom:12.735000px;}
.y3_c00071{bottom:45.405000px;}
.y4_c00071{bottom:56.700000px;}
.y21_c00071{bottom:110.924850px;}
.y20_c00071{bottom:146.924850px;}
.y1f_c00071{bottom:182.924850px;}
.y1e_c00071{bottom:218.924850px;}
.y1d_c00071{bottom:254.924850px;}
.y1c_c00071{bottom:290.924850px;}
.y1b_c00071{bottom:326.924850px;}
.y1a_c00071{bottom:362.924850px;}
.y19_c00071{bottom:398.924850px;}
.y18_c00071{bottom:434.924850px;}
.y17_c00071{bottom:470.924850px;}
.y16_c00071{bottom:506.924850px;}
.y15_c00071{bottom:542.924850px;}
.y14_c00071{bottom:578.924850px;}
.y13_c00071{bottom:614.924850px;}
.y12_c00071{bottom:650.924850px;}
.y11_c00071{bottom:686.924850px;}
.y10_c00071{bottom:722.924850px;}
.yf_c00071{bottom:758.924850px;}
.ye_c00071{bottom:794.924850px;}
.yd_c00071{bottom:830.924850px;}
.yc_c00071{bottom:866.924850px;}
.yb_c00071{bottom:902.924850px;}
.ya_c00071{bottom:938.924850px;}
.y9_c00071{bottom:974.924850px;}
.y8_c00071{bottom:1010.924850px;}
.y7_c00071{bottom:1046.924850px;}
.y6_c00071{bottom:1082.924850px;}
.y2_c00071{bottom:1165.005000px;}
.h4_c00071{height:17.280000px;}
.h3_c00071{height:70.664062px;}
.h5_c00071{height:74.953125px;}
.h2_c00071{height:1237.365000px;}
.h0_c00071{height:1262.835000px;}
.h1_c00071{height:1263.000000px;}
.w3_c00071{width:47.520000px;}
.w2_c00071{width:867.465000px;}
.w0_c00071{width:892.935000px;}
.w1_c00071{width:893.250000px;}
.x0_c00071{left:0.000000px;}
.x1_c00071{left:12.735000px;}
.x5_c00071{left:14.737500px;}
.x3_c00071{left:95.394300px;}
.x6_c00071{left:149.400150px;}
.x4_c00071{left:422.775000px;}
.x2_c00071{left:880.050300px;}
@media print{
.v0_c00071{vertical-align:0.000000pt;}
.ls0_c00071{letter-spacing:0.000000pt;}
.ws0_c00071{word-spacing:0.000000pt;}
._3_c00071{width:0.889600pt;}
._7_c00071{width:1.868800pt;}
._5_c00071{width:3.091200pt;}
._2_c00071{width:4.192000pt;}
._4_c00071{width:5.363200pt;}
._9_c00071{width:6.336000pt;}
._a_c00071{width:7.648000pt;}
._b_c00071{width:9.856000pt;}
._1_c00071{width:11.334400pt;}
._0_c00071{width:12.582400pt;}
._8_c00071{width:13.612800pt;}
._6_c00071{width:26.656000pt;}
.fs0_c00071{font-size:64.000000pt;}
.y0_c00071{bottom:0.000000pt;}
.y5_c00071{bottom:1.280000pt;}
.y1_c00071{bottom:11.320000pt;}
.y3_c00071{bottom:40.360000pt;}
.y4_c00071{bottom:50.400000pt;}
.y21_c00071{bottom:98.599867pt;}
.y20_c00071{bottom:130.599867pt;}
.y1f_c00071{bottom:162.599867pt;}
.y1e_c00071{bottom:194.599867pt;}
.y1d_c00071{bottom:226.599867pt;}
.y1c_c00071{bottom:258.599867pt;}
.y1b_c00071{bottom:290.599867pt;}
.y1a_c00071{bottom:322.599867pt;}
.y19_c00071{bottom:354.599867pt;}
.y18_c00071{bottom:386.599867pt;}
.y17_c00071{bottom:418.599867pt;}
.y16_c00071{bottom:450.599867pt;}
.y15_c00071{bottom:482.599867pt;}
.y14_c00071{bottom:514.599867pt;}
.y13_c00071{bottom:546.599867pt;}
.y12_c00071{bottom:578.599867pt;}
.y11_c00071{bottom:610.599867pt;}
.y10_c00071{bottom:642.599867pt;}
.yf_c00071{bottom:674.599867pt;}
.ye_c00071{bottom:706.599867pt;}
.yd_c00071{bottom:738.599867pt;}
.yc_c00071{bottom:770.599867pt;}
.yb_c00071{bottom:802.599867pt;}
.ya_c00071{bottom:834.599867pt;}
.y9_c00071{bottom:866.599867pt;}
.y8_c00071{bottom:898.599867pt;}
.y7_c00071{bottom:930.599867pt;}
.y6_c00071{bottom:962.599867pt;}
.y2_c00071{bottom:1035.560000pt;}
.h4_c00071{height:15.360000pt;}
.h3_c00071{height:62.812500pt;}
.h5_c00071{height:66.625000pt;}
.h2_c00071{height:1099.880000pt;}
.h0_c00071{height:1122.520000pt;}
.h1_c00071{height:1122.666667pt;}
.w3_c00071{width:42.240000pt;}
.w2_c00071{width:771.080000pt;}
.w0_c00071{width:793.720000pt;}
.w1_c00071{width:794.000000pt;}
.x0_c00071{left:0.000000pt;}
.x1_c00071{left:11.320000pt;}
.x5_c00071{left:13.100000pt;}
.x3_c00071{left:84.794933pt;}
.x6_c00071{left:132.800133pt;}
.x4_c00071{left:375.800000pt;}
.x2_c00071{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_87b959f0f0b319714e74f5f5.woff2')format("woff");}.ff1_c00072{font-family:ff1_c00072;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00072{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00072{vertical-align:0.000000px;}
.ls0_c00072{letter-spacing:0.000000px;}
.sc__c00072{text-shadow:none;}
.sc0_c00072{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00072{-webkit-text-stroke:0px transparent;}
.sc0_c00072{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00072{word-spacing:0.000000px;}
._b_c00072{width:1.044000px;}
._8_c00072{width:2.052000px;}
._3_c00072{width:3.506400px;}
._c_c00072{width:4.636800px;}
._6_c00072{width:6.998400px;}
._d_c00072{width:8.481600px;}
._a_c00072{width:10.015200px;}
._9_c00072{width:11.073600px;}
._4_c00072{width:12.283200px;}
._2_c00072{width:13.348800px;}
._7_c00072{width:14.385600px;}
._0_c00072{width:15.667200px;}
._e_c00072{width:16.977600px;}
._f_c00072{width:22.824000px;}
._5_c00072{width:23.832000px;}
._1_c00072{width:39.816000px;}
.fc1_c00072{color:transparent;}
.fc0_c00072{color:rgb(0,0,0);}
.fs0_c00072{font-size:72.000000px;}
.y0_c00072{bottom:0.000000px;}
.y5_c00072{bottom:5.040000px;}
.y1_c00072{bottom:12.735000px;}
.y3_c00072{bottom:45.405000px;}
.y4_c00072{bottom:53.100000px;}
.y21_c00072{bottom:110.924850px;}
.y20_c00072{bottom:146.924850px;}
.y1f_c00072{bottom:182.924850px;}
.y1e_c00072{bottom:218.924850px;}
.y1d_c00072{bottom:254.924850px;}
.y1c_c00072{bottom:290.924850px;}
.y1b_c00072{bottom:326.924850px;}
.y1a_c00072{bottom:362.924850px;}
.y19_c00072{bottom:398.924850px;}
.y18_c00072{bottom:434.924850px;}
.y17_c00072{bottom:470.924850px;}
.y16_c00072{bottom:506.924850px;}
.y15_c00072{bottom:542.924850px;}
.y14_c00072{bottom:578.924850px;}
.y13_c00072{bottom:614.924850px;}
.y12_c00072{bottom:650.924850px;}
.y11_c00072{bottom:686.924850px;}
.y10_c00072{bottom:722.924850px;}
.yf_c00072{bottom:758.924850px;}
.ye_c00072{bottom:794.924850px;}
.yd_c00072{bottom:830.924850px;}
.yc_c00072{bottom:866.924850px;}
.yb_c00072{bottom:902.924850px;}
.ya_c00072{bottom:938.924850px;}
.y9_c00072{bottom:974.924850px;}
.y8_c00072{bottom:1010.924850px;}
.y7_c00072{bottom:1046.924850px;}
.y6_c00072{bottom:1082.924850px;}
.y2_c00072{bottom:1165.005000px;}
.h4_c00072{height:20.880000px;}
.h3_c00072{height:70.664062px;}
.h2_c00072{height:1237.365000px;}
.h0_c00072{height:1262.835000px;}
.h1_c00072{height:1263.000000px;}
.w3_c00072{width:18.000000px;}
.w2_c00072{width:867.465000px;}
.w0_c00072{width:892.935000px;}
.w1_c00072{width:893.250000px;}
.x0_c00072{left:0.000000px;}
.x1_c00072{left:12.735000px;}
.x3_c00072{left:95.394300px;}
.x5_c00072{left:149.400150px;}
.x4_c00072{left:437.535000px;}
.x2_c00072{left:880.050300px;}
@media print{
.v0_c00072{vertical-align:0.000000pt;}
.ls0_c00072{letter-spacing:0.000000pt;}
.ws0_c00072{word-spacing:0.000000pt;}
._b_c00072{width:0.928000pt;}
._8_c00072{width:1.824000pt;}
._3_c00072{width:3.116800pt;}
._c_c00072{width:4.121600pt;}
._6_c00072{width:6.220800pt;}
._d_c00072{width:7.539200pt;}
._a_c00072{width:8.902400pt;}
._9_c00072{width:9.843200pt;}
._4_c00072{width:10.918400pt;}
._2_c00072{width:11.865600pt;}
._7_c00072{width:12.787200pt;}
._0_c00072{width:13.926400pt;}
._e_c00072{width:15.091200pt;}
._f_c00072{width:20.288000pt;}
._5_c00072{width:21.184000pt;}
._1_c00072{width:35.392000pt;}
.fs0_c00072{font-size:64.000000pt;}
.y0_c00072{bottom:0.000000pt;}
.y5_c00072{bottom:4.480000pt;}
.y1_c00072{bottom:11.320000pt;}
.y3_c00072{bottom:40.360000pt;}
.y4_c00072{bottom:47.200000pt;}
.y21_c00072{bottom:98.599867pt;}
.y20_c00072{bottom:130.599867pt;}
.y1f_c00072{bottom:162.599867pt;}
.y1e_c00072{bottom:194.599867pt;}
.y1d_c00072{bottom:226.599867pt;}
.y1c_c00072{bottom:258.599867pt;}
.y1b_c00072{bottom:290.599867pt;}
.y1a_c00072{bottom:322.599867pt;}
.y19_c00072{bottom:354.599867pt;}
.y18_c00072{bottom:386.599867pt;}
.y17_c00072{bottom:418.599867pt;}
.y16_c00072{bottom:450.599867pt;}
.y15_c00072{bottom:482.599867pt;}
.y14_c00072{bottom:514.599867pt;}
.y13_c00072{bottom:546.599867pt;}
.y12_c00072{bottom:578.599867pt;}
.y11_c00072{bottom:610.599867pt;}
.y10_c00072{bottom:642.599867pt;}
.yf_c00072{bottom:674.599867pt;}
.ye_c00072{bottom:706.599867pt;}
.yd_c00072{bottom:738.599867pt;}
.yc_c00072{bottom:770.599867pt;}
.yb_c00072{bottom:802.599867pt;}
.ya_c00072{bottom:834.599867pt;}
.y9_c00072{bottom:866.599867pt;}
.y8_c00072{bottom:898.599867pt;}
.y7_c00072{bottom:930.599867pt;}
.y6_c00072{bottom:962.599867pt;}
.y2_c00072{bottom:1035.560000pt;}
.h4_c00072{height:18.560000pt;}
.h3_c00072{height:62.812500pt;}
.h2_c00072{height:1099.880000pt;}
.h0_c00072{height:1122.520000pt;}
.h1_c00072{height:1122.666667pt;}
.w3_c00072{width:16.000000pt;}
.w2_c00072{width:771.080000pt;}
.w0_c00072{width:793.720000pt;}
.w1_c00072{width:794.000000pt;}
.x0_c00072{left:0.000000pt;}
.x1_c00072{left:11.320000pt;}
.x3_c00072{left:84.794933pt;}
.x5_c00072{left:132.800133pt;}
.x4_c00072{left:388.920000pt;}
.x2_c00072{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2e3479eef48a22f7d6421c88.woff2')format("woff");}.ff1_c00073{font-family:ff1_c00073;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00073;src:url('chunks/assets/font_327f9c5e429d950c65d8e645.woff2')format("woff");}.ff2_c00073{font-family:ff2_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;}
.m0_c00073{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00073{vertical-align:0.000000px;}
.ls0_c00073{letter-spacing:0.000000px;}
.sc__c00073{text-shadow:none;}
.sc0_c00073{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00073{-webkit-text-stroke:0px transparent;}
.sc0_c00073{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00073{word-spacing:0.000000px;}
._0_c00073{width:1.353600px;}
._7_c00073{width:2.815200px;}
._b_c00073{width:4.132800px;}
._c_c00073{width:5.198400px;}
._9_c00073{width:6.328800px;}
._a_c00073{width:8.157600px;}
._2_c00073{width:9.986400px;}
._1_c00073{width:11.088000px;}
._8_c00073{width:13.996800px;}
._5_c00073{width:15.660000px;}
._3_c00073{width:19.468800px;}
._6_c00073{width:21.016800px;}
._4_c00073{width:23.493600px;}
.fc1_c00073{color:transparent;}
.fc0_c00073{color:rgb(0,0,0);}
.fs0_c00073{font-size:72.000000px;}
.y0_c00073{bottom:0.000000px;}
.y5_c00073{bottom:1.440000px;}
.y1_c00073{bottom:12.735000px;}
.y3_c00073{bottom:45.405000px;}
.y4_c00073{bottom:56.700000px;}
.y21_c00073{bottom:110.924850px;}
.y20_c00073{bottom:146.924850px;}
.y1f_c00073{bottom:182.924850px;}
.y1e_c00073{bottom:218.924850px;}
.y1d_c00073{bottom:254.924850px;}
.y1c_c00073{bottom:290.924850px;}
.y1b_c00073{bottom:326.924850px;}
.y1a_c00073{bottom:362.924850px;}
.y19_c00073{bottom:398.924850px;}
.y18_c00073{bottom:434.924850px;}
.y17_c00073{bottom:470.924850px;}
.y16_c00073{bottom:506.924850px;}
.y15_c00073{bottom:542.924850px;}
.y14_c00073{bottom:578.924850px;}
.y13_c00073{bottom:614.924850px;}
.y12_c00073{bottom:650.924850px;}
.y11_c00073{bottom:686.924850px;}
.y10_c00073{bottom:722.924850px;}
.yf_c00073{bottom:758.924850px;}
.ye_c00073{bottom:794.924850px;}
.yd_c00073{bottom:830.924850px;}
.yc_c00073{bottom:866.924850px;}
.yb_c00073{bottom:902.924850px;}
.ya_c00073{bottom:938.924850px;}
.y9_c00073{bottom:974.924850px;}
.y8_c00073{bottom:1010.924850px;}
.y7_c00073{bottom:1046.924850px;}
.y6_c00073{bottom:1082.924850px;}
.y2_c00073{bottom:1165.005000px;}
.h4_c00073{height:17.280000px;}
.h3_c00073{height:70.664062px;}
.h2_c00073{height:1237.365000px;}
.h0_c00073{height:1262.835000px;}
.h1_c00073{height:1263.000000px;}
.w3_c00073{width:47.520000px;}
.w2_c00073{width:867.465000px;}
.w0_c00073{width:892.935000px;}
.w1_c00073{width:893.250000px;}
.x0_c00073{left:0.000000px;}
.x1_c00073{left:12.735000px;}
.x5_c00073{left:14.737500px;}
.x3_c00073{left:95.394300px;}
.x6_c00073{left:149.400150px;}
.x4_c00073{left:422.775000px;}
.x2_c00073{left:880.050300px;}
@media print{
.v0_c00073{vertical-align:0.000000pt;}
.ls0_c00073{letter-spacing:0.000000pt;}
.ws0_c00073{word-spacing:0.000000pt;}
._0_c00073{width:1.203200pt;}
._7_c00073{width:2.502400pt;}
._b_c00073{width:3.673600pt;}
._c_c00073{width:4.620800pt;}
._9_c00073{width:5.625600pt;}
._a_c00073{width:7.251200pt;}
._2_c00073{width:8.876800pt;}
._1_c00073{width:9.856000pt;}
._8_c00073{width:12.441600pt;}
._5_c00073{width:13.920000pt;}
._3_c00073{width:17.305600pt;}
._6_c00073{width:18.681600pt;}
._4_c00073{width:20.883200pt;}
.fs0_c00073{font-size:64.000000pt;}
.y0_c00073{bottom:0.000000pt;}
.y5_c00073{bottom:1.280000pt;}
.y1_c00073{bottom:11.320000pt;}
.y3_c00073{bottom:40.360000pt;}
.y4_c00073{bottom:50.400000pt;}
.y21_c00073{bottom:98.599867pt;}
.y20_c00073{bottom:130.599867pt;}
.y1f_c00073{bottom:162.599867pt;}
.y1e_c00073{bottom:194.599867pt;}
.y1d_c00073{bottom:226.599867pt;}
.y1c_c00073{bottom:258.599867pt;}
.y1b_c00073{bottom:290.599867pt;}
.y1a_c00073{bottom:322.599867pt;}
.y19_c00073{bottom:354.599867pt;}
.y18_c00073{bottom:386.599867pt;}
.y17_c00073{bottom:418.599867pt;}
.y16_c00073{bottom:450.599867pt;}
.y15_c00073{bottom:482.599867pt;}
.y14_c00073{bottom:514.599867pt;}
.y13_c00073{bottom:546.599867pt;}
.y12_c00073{bottom:578.599867pt;}
.y11_c00073{bottom:610.599867pt;}
.y10_c00073{bottom:642.599867pt;}
.yf_c00073{bottom:674.599867pt;}
.ye_c00073{bottom:706.599867pt;}
.yd_c00073{bottom:738.599867pt;}
.yc_c00073{bottom:770.599867pt;}
.yb_c00073{bottom:802.599867pt;}
.ya_c00073{bottom:834.599867pt;}
.y9_c00073{bottom:866.599867pt;}
.y8_c00073{bottom:898.599867pt;}
.y7_c00073{bottom:930.599867pt;}
.y6_c00073{bottom:962.599867pt;}
.y2_c00073{bottom:1035.560000pt;}
.h4_c00073{height:15.360000pt;}
.h3_c00073{height:62.812500pt;}
.h2_c00073{height:1099.880000pt;}
.h0_c00073{height:1122.520000pt;}
.h1_c00073{height:1122.666667pt;}
.w3_c00073{width:42.240000pt;}
.w2_c00073{width:771.080000pt;}
.w0_c00073{width:793.720000pt;}
.w1_c00073{width:794.000000pt;}
.x0_c00073{left:0.000000pt;}
.x1_c00073{left:11.320000pt;}
.x5_c00073{left:13.100000pt;}
.x3_c00073{left:84.794933pt;}
.x6_c00073{left:132.800133pt;}
.x4_c00073{left:375.800000pt;}
.x2_c00073{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d250703a0b7587376ba29272.woff2')format("woff");}.ff1_c00074{font-family:ff1_c00074;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00074{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00074{vertical-align:0.000000px;}
.ls0_c00074{letter-spacing:0.000000px;}
.ls1_c00074{letter-spacing:0.014400px;}
.sc__c00074{text-shadow:none;}
.sc0_c00074{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00074{-webkit-text-stroke:0px transparent;}
.sc0_c00074{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00074{word-spacing:0.000000px;}
._0_c00074{width:1.713600px;}
._1_c00074{width:3.585600px;}
._2_c00074{width:5.342400px;}
._9_c00074{width:6.638400px;}
._5_c00074{width:7.833600px;}
._3_c00074{width:9.727200px;}
._7_c00074{width:10.821600px;}
._4_c00074{width:12.765600px;}
._6_c00074{width:19.087200px;}
._8_c00074{width:20.700000px;}
.fc1_c00074{color:transparent;}
.fc0_c00074{color:rgb(0,0,0);}
.fs0_c00074{font-size:72.000000px;}
.y0_c00074{bottom:0.000000px;}
.y5_c00074{bottom:5.040000px;}
.y1_c00074{bottom:12.735000px;}
.y3_c00074{bottom:45.405000px;}
.y4_c00074{bottom:53.100000px;}
.y21_c00074{bottom:110.924850px;}
.y20_c00074{bottom:146.924850px;}
.y1f_c00074{bottom:182.924850px;}
.y1e_c00074{bottom:218.924850px;}
.y1d_c00074{bottom:254.924850px;}
.y1c_c00074{bottom:290.924850px;}
.y1b_c00074{bottom:326.924850px;}
.y1a_c00074{bottom:362.924850px;}
.y19_c00074{bottom:398.924850px;}
.y18_c00074{bottom:434.924850px;}
.y17_c00074{bottom:470.924850px;}
.y16_c00074{bottom:506.924850px;}
.y15_c00074{bottom:542.924850px;}
.y14_c00074{bottom:578.924850px;}
.y13_c00074{bottom:614.924850px;}
.y12_c00074{bottom:650.924850px;}
.y11_c00074{bottom:686.924850px;}
.y10_c00074{bottom:722.924850px;}
.yf_c00074{bottom:758.924850px;}
.ye_c00074{bottom:794.924850px;}
.yd_c00074{bottom:830.924850px;}
.yc_c00074{bottom:866.924850px;}
.yb_c00074{bottom:902.924850px;}
.ya_c00074{bottom:938.924850px;}
.y9_c00074{bottom:974.924850px;}
.y8_c00074{bottom:1010.924850px;}
.y7_c00074{bottom:1046.924850px;}
.y6_c00074{bottom:1082.924850px;}
.y2_c00074{bottom:1165.005000px;}
.h4_c00074{height:20.880000px;}
.h3_c00074{height:70.664062px;}
.h2_c00074{height:1237.365000px;}
.h0_c00074{height:1262.835000px;}
.h1_c00074{height:1263.000000px;}
.w3_c00074{width:18.000000px;}
.w2_c00074{width:867.465000px;}
.w0_c00074{width:892.935000px;}
.w1_c00074{width:893.250000px;}
.x0_c00074{left:0.000000px;}
.x1_c00074{left:12.735000px;}
.x3_c00074{left:95.394300px;}
.x5_c00074{left:149.400150px;}
.x4_c00074{left:437.535000px;}
.x2_c00074{left:880.050300px;}
@media print{
.v0_c00074{vertical-align:0.000000pt;}
.ls0_c00074{letter-spacing:0.000000pt;}
.ls1_c00074{letter-spacing:0.012800pt;}
.ws0_c00074{word-spacing:0.000000pt;}
._0_c00074{width:1.523200pt;}
._1_c00074{width:3.187200pt;}
._2_c00074{width:4.748800pt;}
._9_c00074{width:5.900800pt;}
._5_c00074{width:6.963200pt;}
._3_c00074{width:8.646400pt;}
._7_c00074{width:9.619200pt;}
._4_c00074{width:11.347200pt;}
._6_c00074{width:16.966400pt;}
._8_c00074{width:18.400000pt;}
.fs0_c00074{font-size:64.000000pt;}
.y0_c00074{bottom:0.000000pt;}
.y5_c00074{bottom:4.480000pt;}
.y1_c00074{bottom:11.320000pt;}
.y3_c00074{bottom:40.360000pt;}
.y4_c00074{bottom:47.200000pt;}
.y21_c00074{bottom:98.599867pt;}
.y20_c00074{bottom:130.599867pt;}
.y1f_c00074{bottom:162.599867pt;}
.y1e_c00074{bottom:194.599867pt;}
.y1d_c00074{bottom:226.599867pt;}
.y1c_c00074{bottom:258.599867pt;}
.y1b_c00074{bottom:290.599867pt;}
.y1a_c00074{bottom:322.599867pt;}
.y19_c00074{bottom:354.599867pt;}
.y18_c00074{bottom:386.599867pt;}
.y17_c00074{bottom:418.599867pt;}
.y16_c00074{bottom:450.599867pt;}
.y15_c00074{bottom:482.599867pt;}
.y14_c00074{bottom:514.599867pt;}
.y13_c00074{bottom:546.599867pt;}
.y12_c00074{bottom:578.599867pt;}
.y11_c00074{bottom:610.599867pt;}
.y10_c00074{bottom:642.599867pt;}
.yf_c00074{bottom:674.599867pt;}
.ye_c00074{bottom:706.599867pt;}
.yd_c00074{bottom:738.599867pt;}
.yc_c00074{bottom:770.599867pt;}
.yb_c00074{bottom:802.599867pt;}
.ya_c00074{bottom:834.599867pt;}
.y9_c00074{bottom:866.599867pt;}
.y8_c00074{bottom:898.599867pt;}
.y7_c00074{bottom:930.599867pt;}
.y6_c00074{bottom:962.599867pt;}
.y2_c00074{bottom:1035.560000pt;}
.h4_c00074{height:18.560000pt;}
.h3_c00074{height:62.812500pt;}
.h2_c00074{height:1099.880000pt;}
.h0_c00074{height:1122.520000pt;}
.h1_c00074{height:1122.666667pt;}
.w3_c00074{width:16.000000pt;}
.w2_c00074{width:771.080000pt;}
.w0_c00074{width:793.720000pt;}
.w1_c00074{width:794.000000pt;}
.x0_c00074{left:0.000000pt;}
.x1_c00074{left:11.320000pt;}
.x3_c00074{left:84.794933pt;}
.x5_c00074{left:132.800133pt;}
.x4_c00074{left:388.920000pt;}
.x2_c00074{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_41f772195c067c27444da0ca.woff2')format("woff");}.ff1_c00075{font-family:ff1_c00075;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00075{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00075{vertical-align:0.000000px;}
.ls0_c00075{letter-spacing:0.000000px;}
.sc__c00075{text-shadow:none;}
.sc0_c00075{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00075{-webkit-text-stroke:0px transparent;}
.sc0_c00075{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00075{word-spacing:0.000000px;}
._1_c00075{margin-left:-1.152000px;}
._3_c00075{width:1.036800px;}
._e_c00075{width:2.304000px;}
._7_c00075{width:4.140000px;}
._8_c00075{width:5.522400px;}
._9_c00075{width:6.638400px;}
._6_c00075{width:7.689600px;}
._4_c00075{width:8.784000px;}
._c_c00075{width:10.202400px;}
._10_c00075{width:11.484000px;}
._d_c00075{width:13.593600px;}
._b_c00075{width:15.336000px;}
._0_c00075{width:16.344000px;}
._f_c00075{width:19.756800px;}
._a_c00075{width:24.876000px;}
._5_c00075{width:40.600800px;}
._2_c00075{width:57.751200px;}
.fc1_c00075{color:transparent;}
.fc0_c00075{color:rgb(0,0,0);}
.fs0_c00075{font-size:72.000000px;}
.y0_c00075{bottom:0.000000px;}
.y5_c00075{bottom:1.440000px;}
.y1_c00075{bottom:12.735000px;}
.y3_c00075{bottom:45.405000px;}
.y4_c00075{bottom:56.700000px;}
.y21_c00075{bottom:110.924850px;}
.y20_c00075{bottom:146.924850px;}
.y1f_c00075{bottom:182.924850px;}
.y1e_c00075{bottom:218.924850px;}
.y1d_c00075{bottom:254.924850px;}
.y1c_c00075{bottom:290.924850px;}
.y1b_c00075{bottom:326.924850px;}
.y1a_c00075{bottom:362.924850px;}
.y19_c00075{bottom:398.924850px;}
.y18_c00075{bottom:434.924850px;}
.y17_c00075{bottom:470.924850px;}
.y16_c00075{bottom:506.924850px;}
.y15_c00075{bottom:542.924850px;}
.y14_c00075{bottom:578.924850px;}
.y13_c00075{bottom:614.924850px;}
.y12_c00075{bottom:650.924850px;}
.y11_c00075{bottom:686.924850px;}
.y10_c00075{bottom:722.924850px;}
.yf_c00075{bottom:758.924850px;}
.ye_c00075{bottom:794.924850px;}
.yd_c00075{bottom:830.924850px;}
.yc_c00075{bottom:866.924850px;}
.yb_c00075{bottom:902.924850px;}
.ya_c00075{bottom:938.924850px;}
.y9_c00075{bottom:974.924850px;}
.y8_c00075{bottom:1010.924850px;}
.y7_c00075{bottom:1046.924850px;}
.y6_c00075{bottom:1082.924850px;}
.y2_c00075{bottom:1165.005000px;}
.h4_c00075{height:17.280000px;}
.h3_c00075{height:70.664062px;}
.h2_c00075{height:1237.365000px;}
.h0_c00075{height:1262.835000px;}
.h1_c00075{height:1263.000000px;}
.w3_c00075{width:47.520000px;}
.w2_c00075{width:867.465000px;}
.w0_c00075{width:892.935000px;}
.w1_c00075{width:893.250000px;}
.x0_c00075{left:0.000000px;}
.x1_c00075{left:12.735000px;}
.x5_c00075{left:14.737500px;}
.x3_c00075{left:95.394300px;}
.x6_c00075{left:149.400150px;}
.x4_c00075{left:422.775000px;}
.x2_c00075{left:880.050300px;}
@media print{
.v0_c00075{vertical-align:0.000000pt;}
.ls0_c00075{letter-spacing:0.000000pt;}
.ws0_c00075{word-spacing:0.000000pt;}
._1_c00075{margin-left:-1.024000pt;}
._3_c00075{width:0.921600pt;}
._e_c00075{width:2.048000pt;}
._7_c00075{width:3.680000pt;}
._8_c00075{width:4.908800pt;}
._9_c00075{width:5.900800pt;}
._6_c00075{width:6.835200pt;}
._4_c00075{width:7.808000pt;}
._c_c00075{width:9.068800pt;}
._10_c00075{width:10.208000pt;}
._d_c00075{width:12.083200pt;}
._b_c00075{width:13.632000pt;}
._0_c00075{width:14.528000pt;}
._f_c00075{width:17.561600pt;}
._a_c00075{width:22.112000pt;}
._5_c00075{width:36.089600pt;}
._2_c00075{width:51.334400pt;}
.fs0_c00075{font-size:64.000000pt;}
.y0_c00075{bottom:0.000000pt;}
.y5_c00075{bottom:1.280000pt;}
.y1_c00075{bottom:11.320000pt;}
.y3_c00075{bottom:40.360000pt;}
.y4_c00075{bottom:50.400000pt;}
.y21_c00075{bottom:98.599867pt;}
.y20_c00075{bottom:130.599867pt;}
.y1f_c00075{bottom:162.599867pt;}
.y1e_c00075{bottom:194.599867pt;}
.y1d_c00075{bottom:226.599867pt;}
.y1c_c00075{bottom:258.599867pt;}
.y1b_c00075{bottom:290.599867pt;}
.y1a_c00075{bottom:322.599867pt;}
.y19_c00075{bottom:354.599867pt;}
.y18_c00075{bottom:386.599867pt;}
.y17_c00075{bottom:418.599867pt;}
.y16_c00075{bottom:450.599867pt;}
.y15_c00075{bottom:482.599867pt;}
.y14_c00075{bottom:514.599867pt;}
.y13_c00075{bottom:546.599867pt;}
.y12_c00075{bottom:578.599867pt;}
.y11_c00075{bottom:610.599867pt;}
.y10_c00075{bottom:642.599867pt;}
.yf_c00075{bottom:674.599867pt;}
.ye_c00075{bottom:706.599867pt;}
.yd_c00075{bottom:738.599867pt;}
.yc_c00075{bottom:770.599867pt;}
.yb_c00075{bottom:802.599867pt;}
.ya_c00075{bottom:834.599867pt;}
.y9_c00075{bottom:866.599867pt;}
.y8_c00075{bottom:898.599867pt;}
.y7_c00075{bottom:930.599867pt;}
.y6_c00075{bottom:962.599867pt;}
.y2_c00075{bottom:1035.560000pt;}
.h4_c00075{height:15.360000pt;}
.h3_c00075{height:62.812500pt;}
.h2_c00075{height:1099.880000pt;}
.h0_c00075{height:1122.520000pt;}
.h1_c00075{height:1122.666667pt;}
.w3_c00075{width:42.240000pt;}
.w2_c00075{width:771.080000pt;}
.w0_c00075{width:793.720000pt;}
.w1_c00075{width:794.000000pt;}
.x0_c00075{left:0.000000pt;}
.x1_c00075{left:11.320000pt;}
.x5_c00075{left:13.100000pt;}
.x3_c00075{left:84.794933pt;}
.x6_c00075{left:132.800133pt;}
.x4_c00075{left:375.800000pt;}
.x2_c00075{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_435044b7fbbf56ee55d21275.woff2')format("woff");}.ff1_c00076{font-family:ff1_c00076;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00076;src:url('chunks/assets/font_c44221b61bbf2dff63861073.woff2')format("woff");}.ff2_c00076{font-family:ff2_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;}
.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;}
.ls0_c00076{letter-spacing:0.000000px;}
.sc__c00076{text-shadow:none;}
.sc0_c00076{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00076{-webkit-text-stroke:0px transparent;}
.sc0_c00076{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00076{word-spacing:0.000000px;}
._0_c00076{width:1.728000px;}
._5_c00076{width:2.786400px;}
._4_c00076{width:3.866400px;}
._7_c00076{width:5.097600px;}
._3_c00076{width:6.235200px;}
._6_c00076{width:8.049600px;}
._9_c00076{width:13.579200px;}
._2_c00076{width:15.451200px;}
._1_c00076{width:16.574400px;}
._8_c00076{width:28.224000px;}
._a_c00076{width:31.118400px;}
.fc1_c00076{color:transparent;}
.fc0_c00076{color:rgb(0,0,0);}
.fs0_c00076{font-size:72.000000px;}
.y0_c00076{bottom:0.000000px;}
.y5_c00076{bottom:5.040000px;}
.y1_c00076{bottom:12.735000px;}
.y3_c00076{bottom:45.405000px;}
.y4_c00076{bottom:53.100000px;}
.y21_c00076{bottom:110.924850px;}
.y20_c00076{bottom:146.924850px;}
.y1f_c00076{bottom:182.924850px;}
.y1e_c00076{bottom:218.924850px;}
.y1d_c00076{bottom:254.924850px;}
.y1c_c00076{bottom:290.924850px;}
.y1b_c00076{bottom:326.924850px;}
.y1a_c00076{bottom:362.924850px;}
.y19_c00076{bottom:398.924850px;}
.y18_c00076{bottom:434.924850px;}
.y17_c00076{bottom:470.924850px;}
.y16_c00076{bottom:506.924850px;}
.y15_c00076{bottom:542.924850px;}
.y14_c00076{bottom:578.924850px;}
.y13_c00076{bottom:614.924850px;}
.y12_c00076{bottom:650.924850px;}
.y11_c00076{bottom:686.924850px;}
.y10_c00076{bottom:722.924850px;}
.yf_c00076{bottom:758.924850px;}
.ye_c00076{bottom:794.924850px;}
.yd_c00076{bottom:830.924850px;}
.yc_c00076{bottom:866.924850px;}
.yb_c00076{bottom:902.924850px;}
.ya_c00076{bottom:938.924850px;}
.y9_c00076{bottom:974.924850px;}
.y8_c00076{bottom:1010.924850px;}
.y7_c00076{bottom:1046.924850px;}
.y6_c00076{bottom:1082.924850px;}
.y2_c00076{bottom:1165.005000px;}
.h4_c00076{height:20.880000px;}
.h3_c00076{height:70.664062px;}
.h2_c00076{height:1237.365000px;}
.h0_c00076{height:1262.835000px;}
.h1_c00076{height:1263.000000px;}
.w3_c00076{width:18.000000px;}
.w2_c00076{width:867.465000px;}
.w0_c00076{width:892.935000px;}
.w1_c00076{width:893.250000px;}
.x0_c00076{left:0.000000px;}
.x1_c00076{left:12.735000px;}
.x3_c00076{left:95.394300px;}
.x5_c00076{left:149.400150px;}
.x4_c00076{left:437.535000px;}
.x2_c00076{left:880.050300px;}
@media print{
.v0_c00076{vertical-align:0.000000pt;}
.ls0_c00076{letter-spacing:0.000000pt;}
.ws0_c00076{word-spacing:0.000000pt;}
._0_c00076{width:1.536000pt;}
._5_c00076{width:2.476800pt;}
._4_c00076{width:3.436800pt;}
._7_c00076{width:4.531200pt;}
._3_c00076{width:5.542400pt;}
._6_c00076{width:7.155200pt;}
._9_c00076{width:12.070400pt;}
._2_c00076{width:13.734400pt;}
._1_c00076{width:14.732800pt;}
._8_c00076{width:25.088000pt;}
._a_c00076{width:27.660800pt;}
.fs0_c00076{font-size:64.000000pt;}
.y0_c00076{bottom:0.000000pt;}
.y5_c00076{bottom:4.480000pt;}
.y1_c00076{bottom:11.320000pt;}
.y3_c00076{bottom:40.360000pt;}
.y4_c00076{bottom:47.200000pt;}
.y21_c00076{bottom:98.599867pt;}
.y20_c00076{bottom:130.599867pt;}
.y1f_c00076{bottom:162.599867pt;}
.y1e_c00076{bottom:194.599867pt;}
.y1d_c00076{bottom:226.599867pt;}
.y1c_c00076{bottom:258.599867pt;}
.y1b_c00076{bottom:290.599867pt;}
.y1a_c00076{bottom:322.599867pt;}
.y19_c00076{bottom:354.599867pt;}
.y18_c00076{bottom:386.599867pt;}
.y17_c00076{bottom:418.599867pt;}
.y16_c00076{bottom:450.599867pt;}
.y15_c00076{bottom:482.599867pt;}
.y14_c00076{bottom:514.599867pt;}
.y13_c00076{bottom:546.599867pt;}
.y12_c00076{bottom:578.599867pt;}
.y11_c00076{bottom:610.599867pt;}
.y10_c00076{bottom:642.599867pt;}
.yf_c00076{bottom:674.599867pt;}
.ye_c00076{bottom:706.599867pt;}
.yd_c00076{bottom:738.599867pt;}
.yc_c00076{bottom:770.599867pt;}
.yb_c00076{bottom:802.599867pt;}
.ya_c00076{bottom:834.599867pt;}
.y9_c00076{bottom:866.599867pt;}
.y8_c00076{bottom:898.599867pt;}
.y7_c00076{bottom:930.599867pt;}
.y6_c00076{bottom:962.599867pt;}
.y2_c00076{bottom:1035.560000pt;}
.h4_c00076{height:18.560000pt;}
.h3_c00076{height:62.812500pt;}
.h2_c00076{height:1099.880000pt;}
.h0_c00076{height:1122.520000pt;}
.h1_c00076{height:1122.666667pt;}
.w3_c00076{width:16.000000pt;}
.w2_c00076{width:771.080000pt;}
.w0_c00076{width:793.720000pt;}
.w1_c00076{width:794.000000pt;}
.x0_c00076{left:0.000000pt;}
.x1_c00076{left:11.320000pt;}
.x3_c00076{left:84.794933pt;}
.x5_c00076{left:132.800133pt;}
.x4_c00076{left:388.920000pt;}
.x2_c00076{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a9b111c0e3972303117b228.woff2')format("woff");}.ff1_c00077{font-family:ff1_c00077;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00077{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00077{vertical-align:0.000000px;}
.ls0_c00077{letter-spacing:0.000000px;}
.sc__c00077{text-shadow:none;}
.sc0_c00077{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00077{-webkit-text-stroke:0px transparent;}
.sc0_c00077{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00077{word-spacing:0.000000px;}
._2_c00077{width:1.483200px;}
._3_c00077{width:2.491200px;}
._6_c00077{width:3.542400px;}
._1_c00077{width:5.140800px;}
._0_c00077{width:6.264000px;}
._4_c00077{width:7.689600px;}
._7_c00077{width:8.877600px;}
._8_c00077{width:9.979200px;}
._5_c00077{width:11.858400px;}
._a_c00077{width:16.891200px;}
._9_c00077{width:19.339200px;}
.fc1_c00077{color:transparent;}
.fc0_c00077{color:rgb(0,0,0);}
.fs0_c00077{font-size:72.000000px;}
.y0_c00077{bottom:0.000000px;}
.y5_c00077{bottom:1.440000px;}
.y1_c00077{bottom:12.735000px;}
.y3_c00077{bottom:45.405000px;}
.y4_c00077{bottom:56.700000px;}
.y21_c00077{bottom:110.924850px;}
.y20_c00077{bottom:146.924850px;}
.y1f_c00077{bottom:182.924850px;}
.y1e_c00077{bottom:218.924850px;}
.y1d_c00077{bottom:254.924850px;}
.y1c_c00077{bottom:290.924850px;}
.y1b_c00077{bottom:326.924850px;}
.y1a_c00077{bottom:362.924850px;}
.y19_c00077{bottom:398.924850px;}
.y18_c00077{bottom:434.924850px;}
.y17_c00077{bottom:470.924850px;}
.y16_c00077{bottom:506.924850px;}
.y15_c00077{bottom:542.924850px;}
.y14_c00077{bottom:578.924850px;}
.y13_c00077{bottom:614.924850px;}
.y12_c00077{bottom:650.924850px;}
.y11_c00077{bottom:686.924850px;}
.y10_c00077{bottom:722.924850px;}
.yf_c00077{bottom:758.924850px;}
.ye_c00077{bottom:794.924850px;}
.yd_c00077{bottom:830.924850px;}
.yc_c00077{bottom:866.924850px;}
.yb_c00077{bottom:902.924850px;}
.ya_c00077{bottom:938.924850px;}
.y9_c00077{bottom:974.924850px;}
.y8_c00077{bottom:1010.924850px;}
.y7_c00077{bottom:1046.924850px;}
.y6_c00077{bottom:1082.924850px;}
.y2_c00077{bottom:1165.005000px;}
.h4_c00077{height:17.280000px;}
.h3_c00077{height:70.664062px;}
.h2_c00077{height:1237.365000px;}
.h0_c00077{height:1262.835000px;}
.h1_c00077{height:1263.000000px;}
.w3_c00077{width:47.520000px;}
.w2_c00077{width:867.465000px;}
.w0_c00077{width:892.935000px;}
.w1_c00077{width:893.250000px;}
.x0_c00077{left:0.000000px;}
.x1_c00077{left:12.735000px;}
.x5_c00077{left:14.737500px;}
.x3_c00077{left:95.394300px;}
.x6_c00077{left:149.400150px;}
.x4_c00077{left:422.775000px;}
.x2_c00077{left:880.050300px;}
@media print{
.v0_c00077{vertical-align:0.000000pt;}
.ls0_c00077{letter-spacing:0.000000pt;}
.ws0_c00077{word-spacing:0.000000pt;}
._2_c00077{width:1.318400pt;}
._3_c00077{width:2.214400pt;}
._6_c00077{width:3.148800pt;}
._1_c00077{width:4.569600pt;}
._0_c00077{width:5.568000pt;}
._4_c00077{width:6.835200pt;}
._7_c00077{width:7.891200pt;}
._8_c00077{width:8.870400pt;}
._5_c00077{width:10.540800pt;}
._a_c00077{width:15.014400pt;}
._9_c00077{width:17.190400pt;}
.fs0_c00077{font-size:64.000000pt;}
.y0_c00077{bottom:0.000000pt;}
.y5_c00077{bottom:1.280000pt;}
.y1_c00077{bottom:11.320000pt;}
.y3_c00077{bottom:40.360000pt;}
.y4_c00077{bottom:50.400000pt;}
.y21_c00077{bottom:98.599867pt;}
.y20_c00077{bottom:130.599867pt;}
.y1f_c00077{bottom:162.599867pt;}
.y1e_c00077{bottom:194.599867pt;}
.y1d_c00077{bottom:226.599867pt;}
.y1c_c00077{bottom:258.599867pt;}
.y1b_c00077{bottom:290.599867pt;}
.y1a_c00077{bottom:322.599867pt;}
.y19_c00077{bottom:354.599867pt;}
.y18_c00077{bottom:386.599867pt;}
.y17_c00077{bottom:418.599867pt;}
.y16_c00077{bottom:450.599867pt;}
.y15_c00077{bottom:482.599867pt;}
.y14_c00077{bottom:514.599867pt;}
.y13_c00077{bottom:546.599867pt;}
.y12_c00077{bottom:578.599867pt;}
.y11_c00077{bottom:610.599867pt;}
.y10_c00077{bottom:642.599867pt;}
.yf_c00077{bottom:674.599867pt;}
.ye_c00077{bottom:706.599867pt;}
.yd_c00077{bottom:738.599867pt;}
.yc_c00077{bottom:770.599867pt;}
.yb_c00077{bottom:802.599867pt;}
.ya_c00077{bottom:834.599867pt;}
.y9_c00077{bottom:866.599867pt;}
.y8_c00077{bottom:898.599867pt;}
.y7_c00077{bottom:930.599867pt;}
.y6_c00077{bottom:962.599867pt;}
.y2_c00077{bottom:1035.560000pt;}
.h4_c00077{height:15.360000pt;}
.h3_c00077{height:62.812500pt;}
.h2_c00077{height:1099.880000pt;}
.h0_c00077{height:1122.520000pt;}
.h1_c00077{height:1122.666667pt;}
.w3_c00077{width:42.240000pt;}
.w2_c00077{width:771.080000pt;}
.w0_c00077{width:793.720000pt;}
.w1_c00077{width:794.000000pt;}
.x0_c00077{left:0.000000pt;}
.x1_c00077{left:11.320000pt;}
.x5_c00077{left:13.100000pt;}
.x3_c00077{left:84.794933pt;}
.x6_c00077{left:132.800133pt;}
.x4_c00077{left:375.800000pt;}
.x2_c00077{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_33bbf4ad9c4998d631af89a2.woff2')format("woff");}.ff1_c00078{font-family:ff1_c00078;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00078{letter-spacing:0.000000px;}
.sc__c00078{text-shadow:none;}
.sc0_c00078{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00078{-webkit-text-stroke:0px transparent;}
.sc0_c00078{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00078{word-spacing:0.000000px;}
._7_c00078{width:1.461600px;}
._1_c00078{width:3.175200px;}
._6_c00078{width:4.226400px;}
._3_c00078{width:6.012000px;}
._b_c00078{width:7.509600px;}
._9_c00078{width:10.166400px;}
._4_c00078{width:11.354400px;}
._0_c00078{width:15.652800px;}
._8_c00078{width:16.747200px;}
._5_c00078{width:19.692000px;}
._a_c00078{width:21.340800px;}
._c_c00078{width:26.359200px;}
._2_c00078{width:36.590400px;}
.fc1_c00078{color:transparent;}
.fc0_c00078{color:rgb(0,0,0);}
.fs0_c00078{font-size:72.000000px;}
.y0_c00078{bottom:0.000000px;}
.y5_c00078{bottom:5.040000px;}
.y1_c00078{bottom:12.735000px;}
.y3_c00078{bottom:45.405000px;}
.y4_c00078{bottom:53.100000px;}
.y17_c00078{bottom:470.924850px;}
.y16_c00078{bottom:506.924850px;}
.y15_c00078{bottom:542.924850px;}
.y14_c00078{bottom:578.924850px;}
.y13_c00078{bottom:614.924850px;}
.y12_c00078{bottom:650.924850px;}
.y11_c00078{bottom:686.924850px;}
.y10_c00078{bottom:722.924850px;}
.yf_c00078{bottom:758.924850px;}
.ye_c00078{bottom:794.924850px;}
.yd_c00078{bottom:830.924850px;}
.yc_c00078{bottom:866.924850px;}
.yb_c00078{bottom:902.924850px;}
.ya_c00078{bottom:938.924850px;}
.y9_c00078{bottom:974.924850px;}
.y8_c00078{bottom:1010.924850px;}
.y7_c00078{bottom:1046.924850px;}
.y6_c00078{bottom:1082.924850px;}
.y2_c00078{bottom:1165.005000px;}
.h4_c00078{height:20.880000px;}
.h3_c00078{height:70.664062px;}
.h2_c00078{height:1237.365000px;}
.h0_c00078{height:1262.835000px;}
.h1_c00078{height:1263.000000px;}
.w3_c00078{width:18.000000px;}
.w2_c00078{width:867.465000px;}
.w0_c00078{width:892.935000px;}
.w1_c00078{width:893.250000px;}
.x0_c00078{left:0.000000px;}
.x1_c00078{left:12.735000px;}
.x3_c00078{left:95.394300px;}
.x5_c00078{left:149.400150px;}
.x4_c00078{left:437.535000px;}
.x2_c00078{left:880.050300px;}
@media print{
.v0_c00078{vertical-align:0.000000pt;}
.ls0_c00078{letter-spacing:0.000000pt;}
.ws0_c00078{word-spacing:0.000000pt;}
._7_c00078{width:1.299200pt;}
._1_c00078{width:2.822400pt;}
._6_c00078{width:3.756800pt;}
._3_c00078{width:5.344000pt;}
._b_c00078{width:6.675200pt;}
._9_c00078{width:9.036800pt;}
._4_c00078{width:10.092800pt;}
._0_c00078{width:13.913600pt;}
._8_c00078{width:14.886400pt;}
._5_c00078{width:17.504000pt;}
._a_c00078{width:18.969600pt;}
._c_c00078{width:23.430400pt;}
._2_c00078{width:32.524800pt;}
.fs0_c00078{font-size:64.000000pt;}
.y0_c00078{bottom:0.000000pt;}
.y5_c00078{bottom:4.480000pt;}
.y1_c00078{bottom:11.320000pt;}
.y3_c00078{bottom:40.360000pt;}
.y4_c00078{bottom:47.200000pt;}
.y17_c00078{bottom:418.599867pt;}
.y16_c00078{bottom:450.599867pt;}
.y15_c00078{bottom:482.599867pt;}
.y14_c00078{bottom:514.599867pt;}
.y13_c00078{bottom:546.599867pt;}
.y12_c00078{bottom:578.599867pt;}
.y11_c00078{bottom:610.599867pt;}
.y10_c00078{bottom:642.599867pt;}
.yf_c00078{bottom:674.599867pt;}
.ye_c00078{bottom:706.599867pt;}
.yd_c00078{bottom:738.599867pt;}
.yc_c00078{bottom:770.599867pt;}
.yb_c00078{bottom:802.599867pt;}
.ya_c00078{bottom:834.599867pt;}
.y9_c00078{bottom:866.599867pt;}
.y8_c00078{bottom:898.599867pt;}
.y7_c00078{bottom:930.599867pt;}
.y6_c00078{bottom:962.599867pt;}
.y2_c00078{bottom:1035.560000pt;}
.h4_c00078{height:18.560000pt;}
.h3_c00078{height:62.812500pt;}
.h2_c00078{height:1099.880000pt;}
.h0_c00078{height:1122.520000pt;}
.h1_c00078{height:1122.666667pt;}
.w3_c00078{width:16.000000pt;}
.w2_c00078{width:771.080000pt;}
.w0_c00078{width:793.720000pt;}
.w1_c00078{width:794.000000pt;}
.x0_c00078{left:0.000000pt;}
.x1_c00078{left:11.320000pt;}
.x3_c00078{left:84.794933pt;}
.x5_c00078{left:132.800133pt;}
.x4_c00078{left:388.920000pt;}
.x2_c00078{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1fdc92f1a2e86f6388fd16c8.woff2')format("woff");}.ff1_c00079{font-family:ff1_c00079;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00079;src:url('chunks/assets/font_3cd33e82b3c3e869fda07338.woff2')format("woff");}.ff2_c00079{font-family:ff2_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;}
.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;}
.ls1_c00079{letter-spacing:0.000000px;}
.ls2_c00079{letter-spacing:0.116928px;}
.ls0_c00079{letter-spacing:0.242208px;}
.sc__c00079{text-shadow:none;}
.sc0_c00079{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00079{-webkit-text-stroke:0px transparent;}
.sc0_c00079{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00079{word-spacing:-21.122208px;}
.ws1_c00079{word-spacing:0.000000px;}
._0_c00079{width:1.085760px;}
._6_c00079{width:3.434400px;}
._7_c00079{width:4.543200px;}
._5_c00079{width:5.565600px;}
._b_c00079{width:7.005600px;}
._3_c00079{width:8.172000px;}
._2_c00079{width:9.496800px;}
._4_c00079{width:10.533600px;}
._9_c00079{width:11.836800px;}
._a_c00079{width:13.168800px;}
._8_c00079{width:15.019200px;}
._1_c00079{width:16.171200px;}
.fc2_c00079{color:transparent;}
.fc1_c00079{color:rgb(127,127,127);}
.fc0_c00079{color:rgb(0,0,0);}
.fs0_c00079{font-size:72.000000px;}
.fs1_c00079{font-size:83.520000px;}
.y0_c00079{bottom:0.000000px;}
.y5_c00079{bottom:1.440000px;}
.y1_c00079{bottom:12.735000px;}
.y3_c00079{bottom:45.405000px;}
.y4_c00079{bottom:56.700000px;}
.y20_c00079{bottom:146.924850px;}
.y1f_c00079{bottom:182.924850px;}
.y1e_c00079{bottom:218.924850px;}
.y1d_c00079{bottom:254.924850px;}
.y1c_c00079{bottom:290.924850px;}
.y1b_c00079{bottom:326.924850px;}
.y1a_c00079{bottom:362.924850px;}
.y19_c00079{bottom:398.924850px;}
.y18_c00079{bottom:434.924850px;}
.y17_c00079{bottom:470.924850px;}
.y16_c00079{bottom:506.924850px;}
.y15_c00079{bottom:542.924850px;}
.y14_c00079{bottom:578.924850px;}
.y13_c00079{bottom:614.924850px;}
.y12_c00079{bottom:650.924850px;}
.y11_c00079{bottom:686.924850px;}
.y10_c00079{bottom:722.924850px;}
.yf_c00079{bottom:758.924850px;}
.ye_c00079{bottom:794.924850px;}
.yd_c00079{bottom:830.924850px;}
.yc_c00079{bottom:866.924850px;}
.yb_c00079{bottom:902.924850px;}
.ya_c00079{bottom:938.924850px;}
.y9_c00079{bottom:974.924850px;}
.y8_c00079{bottom:1010.924850px;}
.y7_c00079{bottom:1046.924850px;}
.y6_c00079{bottom:1083.645000px;}
.y2_c00079{bottom:1165.005000px;}
.h4_c00079{height:17.280000px;}
.h6_c00079{height:70.628906px;}
.h3_c00079{height:70.664062px;}
.h5_c00079{height:81.929531px;}
.h2_c00079{height:1237.365000px;}
.h0_c00079{height:1262.835000px;}
.h1_c00079{height:1263.000000px;}
.w3_c00079{width:47.520000px;}
.w2_c00079{width:867.465000px;}
.w0_c00079{width:892.935000px;}
.w1_c00079{width:893.250000px;}
.x0_c00079{left:0.000000px;}
.x1_c00079{left:12.735000px;}
.x5_c00079{left:14.737500px;}
.x3_c00079{left:95.394300px;}
.x6_c00079{left:149.400150px;}
.x4_c00079{left:422.775000px;}
.x2_c00079{left:880.050300px;}
@media print{
.v0_c00079{vertical-align:0.000000pt;}
.ls1_c00079{letter-spacing:0.000000pt;}
.ls2_c00079{letter-spacing:0.103936pt;}
.ls0_c00079{letter-spacing:0.215296pt;}
.ws0_c00079{word-spacing:-18.775296pt;}
.ws1_c00079{word-spacing:0.000000pt;}
._0_c00079{width:0.965120pt;}
._6_c00079{width:3.052800pt;}
._7_c00079{width:4.038400pt;}
._5_c00079{width:4.947200pt;}
._b_c00079{width:6.227200pt;}
._3_c00079{width:7.264000pt;}
._2_c00079{width:8.441600pt;}
._4_c00079{width:9.363200pt;}
._9_c00079{width:10.521600pt;}
._a_c00079{width:11.705600pt;}
._8_c00079{width:13.350400pt;}
._1_c00079{width:14.374400pt;}
.fs0_c00079{font-size:64.000000pt;}
.fs1_c00079{font-size:74.240000pt;}
.y0_c00079{bottom:0.000000pt;}
.y5_c00079{bottom:1.280000pt;}
.y1_c00079{bottom:11.320000pt;}
.y3_c00079{bottom:40.360000pt;}
.y4_c00079{bottom:50.400000pt;}
.y20_c00079{bottom:130.599867pt;}
.y1f_c00079{bottom:162.599867pt;}
.y1e_c00079{bottom:194.599867pt;}
.y1d_c00079{bottom:226.599867pt;}
.y1c_c00079{bottom:258.599867pt;}
.y1b_c00079{bottom:290.599867pt;}
.y1a_c00079{bottom:322.599867pt;}
.y19_c00079{bottom:354.599867pt;}
.y18_c00079{bottom:386.599867pt;}
.y17_c00079{bottom:418.599867pt;}
.y16_c00079{bottom:450.599867pt;}
.y15_c00079{bottom:482.599867pt;}
.y14_c00079{bottom:514.599867pt;}
.y13_c00079{bottom:546.599867pt;}
.y12_c00079{bottom:578.599867pt;}
.y11_c00079{bottom:610.599867pt;}
.y10_c00079{bottom:642.599867pt;}
.yf_c00079{bottom:674.599867pt;}
.ye_c00079{bottom:706.599867pt;}
.yd_c00079{bottom:738.599867pt;}
.yc_c00079{bottom:770.599867pt;}
.yb_c00079{bottom:802.599867pt;}
.ya_c00079{bottom:834.599867pt;}
.y9_c00079{bottom:866.599867pt;}
.y8_c00079{bottom:898.599867pt;}
.y7_c00079{bottom:930.599867pt;}
.y6_c00079{bottom:963.240000pt;}
.y2_c00079{bottom:1035.560000pt;}
.h4_c00079{height:15.360000pt;}
.h6_c00079{height:62.781250pt;}
.h3_c00079{height:62.812500pt;}
.h5_c00079{height:72.826250pt;}
.h2_c00079{height:1099.880000pt;}
.h0_c00079{height:1122.520000pt;}
.h1_c00079{height:1122.666667pt;}
.w3_c00079{width:42.240000pt;}
.w2_c00079{width:771.080000pt;}
.w0_c00079{width:793.720000pt;}
.w1_c00079{width:794.000000pt;}
.x0_c00079{left:0.000000pt;}
.x1_c00079{left:11.320000pt;}
.x5_c00079{left:13.100000pt;}
.x3_c00079{left:84.794933pt;}
.x6_c00079{left:132.800133pt;}
.x4_c00079{left:375.800000pt;}
.x2_c00079{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_282e470dbf4b541ded4b61aa.woff2')format("woff");}.ff1_c00080{font-family:ff1_c00080;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00080{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00080{vertical-align:0.000000px;}
.ls2_c00080{letter-spacing:-0.014400px;}
.ls1_c00080{letter-spacing:0.000000px;}
.ls0_c00080{letter-spacing:0.014400px;}
.sc__c00080{text-shadow:none;}
.sc0_c00080{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00080{-webkit-text-stroke:0px transparent;}
.sc0_c00080{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00080{word-spacing:-18.014400px;}
.ws1_c00080{word-spacing:0.000000px;}
._2_c00080{width:1.159200px;}
._c_c00080{width:2.260800px;}
._4_c00080{width:3.873600px;}
._7_c00080{width:5.882400px;}
._a_c00080{width:8.668800px;}
._8_c00080{width:10.022400px;}
._b_c00080{width:11.743200px;}
._d_c00080{width:13.298400px;}
._6_c00080{width:14.594400px;}
._5_c00080{width:15.818400px;}
._0_c00080{width:19.173600px;}
._9_c00080{width:20.498400px;}
._1_c00080{width:22.341600px;}
._3_c00080{width:37.324800px;}
.fc1_c00080{color:transparent;}
.fc0_c00080{color:rgb(0,0,0);}
.fs0_c00080{font-size:72.000000px;}
.y0_c00080{bottom:0.000000px;}
.y5_c00080{bottom:5.040000px;}
.y1_c00080{bottom:12.735000px;}
.y3_c00080{bottom:45.405000px;}
.y4_c00080{bottom:53.100000px;}
.y21_c00080{bottom:110.924850px;}
.y20_c00080{bottom:146.924850px;}
.y1f_c00080{bottom:182.924850px;}
.y1e_c00080{bottom:218.924850px;}
.y1d_c00080{bottom:254.924850px;}
.y1c_c00080{bottom:290.924850px;}
.y1b_c00080{bottom:326.924850px;}
.y1a_c00080{bottom:362.924850px;}
.y19_c00080{bottom:398.924850px;}
.y18_c00080{bottom:434.924850px;}
.y17_c00080{bottom:470.924850px;}
.y16_c00080{bottom:506.924850px;}
.y15_c00080{bottom:542.924850px;}
.y14_c00080{bottom:578.924850px;}
.y13_c00080{bottom:614.924850px;}
.y12_c00080{bottom:650.924850px;}
.y11_c00080{bottom:686.924850px;}
.y10_c00080{bottom:722.924850px;}
.yf_c00080{bottom:758.924850px;}
.ye_c00080{bottom:794.924850px;}
.yd_c00080{bottom:830.924850px;}
.yc_c00080{bottom:866.924850px;}
.yb_c00080{bottom:902.924850px;}
.ya_c00080{bottom:938.924850px;}
.y9_c00080{bottom:974.924850px;}
.y8_c00080{bottom:1010.924850px;}
.y7_c00080{bottom:1046.924850px;}
.y6_c00080{bottom:1082.924850px;}
.y2_c00080{bottom:1165.005000px;}
.h4_c00080{height:20.880000px;}
.h3_c00080{height:70.664062px;}
.h2_c00080{height:1237.365000px;}
.h0_c00080{height:1262.835000px;}
.h1_c00080{height:1263.000000px;}
.w3_c00080{width:18.000000px;}
.w2_c00080{width:867.465000px;}
.w0_c00080{width:892.935000px;}
.w1_c00080{width:893.250000px;}
.x0_c00080{left:0.000000px;}
.x1_c00080{left:12.735000px;}
.x3_c00080{left:95.394300px;}
.x5_c00080{left:149.400150px;}
.x4_c00080{left:437.535000px;}
.x2_c00080{left:880.050300px;}
@media print{
.v0_c00080{vertical-align:0.000000pt;}
.ls2_c00080{letter-spacing:-0.012800pt;}
.ls1_c00080{letter-spacing:0.000000pt;}
.ls0_c00080{letter-spacing:0.012800pt;}
.ws0_c00080{word-spacing:-16.012800pt;}
.ws1_c00080{word-spacing:0.000000pt;}
._2_c00080{width:1.030400pt;}
._c_c00080{width:2.009600pt;}
._4_c00080{width:3.443200pt;}
._7_c00080{width:5.228800pt;}
._a_c00080{width:7.705600pt;}
._8_c00080{width:8.908800pt;}
._b_c00080{width:10.438400pt;}
._d_c00080{width:11.820800pt;}
._6_c00080{width:12.972800pt;}
._5_c00080{width:14.060800pt;}
._0_c00080{width:17.043200pt;}
._9_c00080{width:18.220800pt;}
._1_c00080{width:19.859200pt;}
._3_c00080{width:33.177600pt;}
.fs0_c00080{font-size:64.000000pt;}
.y0_c00080{bottom:0.000000pt;}
.y5_c00080{bottom:4.480000pt;}
.y1_c00080{bottom:11.320000pt;}
.y3_c00080{bottom:40.360000pt;}
.y4_c00080{bottom:47.200000pt;}
.y21_c00080{bottom:98.599867pt;}
.y20_c00080{bottom:130.599867pt;}
.y1f_c00080{bottom:162.599867pt;}
.y1e_c00080{bottom:194.599867pt;}
.y1d_c00080{bottom:226.599867pt;}
.y1c_c00080{bottom:258.599867pt;}
.y1b_c00080{bottom:290.599867pt;}
.y1a_c00080{bottom:322.599867pt;}
.y19_c00080{bottom:354.599867pt;}
.y18_c00080{bottom:386.599867pt;}
.y17_c00080{bottom:418.599867pt;}
.y16_c00080{bottom:450.599867pt;}
.y15_c00080{bottom:482.599867pt;}
.y14_c00080{bottom:514.599867pt;}
.y13_c00080{bottom:546.599867pt;}
.y12_c00080{bottom:578.599867pt;}
.y11_c00080{bottom:610.599867pt;}
.y10_c00080{bottom:642.599867pt;}
.yf_c00080{bottom:674.599867pt;}
.ye_c00080{bottom:706.599867pt;}
.yd_c00080{bottom:738.599867pt;}
.yc_c00080{bottom:770.599867pt;}
.yb_c00080{bottom:802.599867pt;}
.ya_c00080{bottom:834.599867pt;}
.y9_c00080{bottom:866.599867pt;}
.y8_c00080{bottom:898.599867pt;}
.y7_c00080{bottom:930.599867pt;}
.y6_c00080{bottom:962.599867pt;}
.y2_c00080{bottom:1035.560000pt;}
.h4_c00080{height:18.560000pt;}
.h3_c00080{height:62.812500pt;}
.h2_c00080{height:1099.880000pt;}
.h0_c00080{height:1122.520000pt;}
.h1_c00080{height:1122.666667pt;}
.w3_c00080{width:16.000000pt;}
.w2_c00080{width:771.080000pt;}
.w0_c00080{width:793.720000pt;}
.w1_c00080{width:794.000000pt;}
.x0_c00080{left:0.000000pt;}
.x1_c00080{left:11.320000pt;}
.x3_c00080{left:84.794933pt;}
.x5_c00080{left:132.800133pt;}
.x4_c00080{left:388.920000pt;}
.x2_c00080{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2de307aa95e336d041da1da5.woff2')format("woff");}.ff1_c00081{font-family:ff1_c00081;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00081{letter-spacing:0.000000px;}
.sc__c00081{text-shadow:none;}
.sc0_c00081{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00081{-webkit-text-stroke:0px transparent;}
.sc0_c00081{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00081{word-spacing:0.000000px;}
._1_c00081{width:1.080000px;}
._0_c00081{width:2.620800px;}
._6_c00081{width:3.751200px;}
._9_c00081{width:4.867200px;}
._8_c00081{width:5.875200px;}
._c_c00081{width:7.005600px;}
._3_c00081{width:8.143200px;}
._4_c00081{width:10.159200px;}
._a_c00081{width:11.498400px;}
._5_c00081{width:14.839200px;}
._2_c00081{width:19.209600px;}
._7_c00081{width:20.239200px;}
._b_c00081{width:30.600000px;}
.fc1_c00081{color:transparent;}
.fc0_c00081{color:rgb(0,0,0);}
.fs0_c00081{font-size:72.000000px;}
.y0_c00081{bottom:0.000000px;}
.y5_c00081{bottom:1.440000px;}
.y1_c00081{bottom:12.735000px;}
.y3_c00081{bottom:45.405000px;}
.y4_c00081{bottom:56.700000px;}
.y21_c00081{bottom:110.924850px;}
.y20_c00081{bottom:146.924850px;}
.y1f_c00081{bottom:182.924850px;}
.y1e_c00081{bottom:218.924850px;}
.y1d_c00081{bottom:254.924850px;}
.y1c_c00081{bottom:290.924850px;}
.y1b_c00081{bottom:326.924850px;}
.y1a_c00081{bottom:362.924850px;}
.y19_c00081{bottom:398.924850px;}
.y18_c00081{bottom:434.924850px;}
.y17_c00081{bottom:470.924850px;}
.y16_c00081{bottom:506.924850px;}
.y15_c00081{bottom:542.924850px;}
.y14_c00081{bottom:578.924850px;}
.y13_c00081{bottom:614.924850px;}
.y12_c00081{bottom:650.924850px;}
.y11_c00081{bottom:686.924850px;}
.y10_c00081{bottom:722.924850px;}
.yf_c00081{bottom:758.924850px;}
.ye_c00081{bottom:794.924850px;}
.yd_c00081{bottom:830.924850px;}
.yc_c00081{bottom:866.924850px;}
.yb_c00081{bottom:902.924850px;}
.ya_c00081{bottom:938.924850px;}
.y9_c00081{bottom:974.924850px;}
.y8_c00081{bottom:1010.924850px;}
.y7_c00081{bottom:1046.924850px;}
.y6_c00081{bottom:1082.924850px;}
.y2_c00081{bottom:1165.005000px;}
.h4_c00081{height:17.280000px;}
.h3_c00081{height:70.664062px;}
.h2_c00081{height:1237.365000px;}
.h0_c00081{height:1262.835000px;}
.h1_c00081{height:1263.000000px;}
.w3_c00081{width:47.520000px;}
.w2_c00081{width:867.465000px;}
.w0_c00081{width:892.935000px;}
.w1_c00081{width:893.250000px;}
.x0_c00081{left:0.000000px;}
.x1_c00081{left:12.735000px;}
.x5_c00081{left:14.737500px;}
.x3_c00081{left:95.394300px;}
.x6_c00081{left:149.400150px;}
.x4_c00081{left:422.775000px;}
.x2_c00081{left:880.050300px;}
@media print{
.v0_c00081{vertical-align:0.000000pt;}
.ls0_c00081{letter-spacing:0.000000pt;}
.ws0_c00081{word-spacing:0.000000pt;}
._1_c00081{width:0.960000pt;}
._0_c00081{width:2.329600pt;}
._6_c00081{width:3.334400pt;}
._9_c00081{width:4.326400pt;}
._8_c00081{width:5.222400pt;}
._c_c00081{width:6.227200pt;}
._3_c00081{width:7.238400pt;}
._4_c00081{width:9.030400pt;}
._a_c00081{width:10.220800pt;}
._5_c00081{width:13.190400pt;}
._2_c00081{width:17.075200pt;}
._7_c00081{width:17.990400pt;}
._b_c00081{width:27.200000pt;}
.fs0_c00081{font-size:64.000000pt;}
.y0_c00081{bottom:0.000000pt;}
.y5_c00081{bottom:1.280000pt;}
.y1_c00081{bottom:11.320000pt;}
.y3_c00081{bottom:40.360000pt;}
.y4_c00081{bottom:50.400000pt;}
.y21_c00081{bottom:98.599867pt;}
.y20_c00081{bottom:130.599867pt;}
.y1f_c00081{bottom:162.599867pt;}
.y1e_c00081{bottom:194.599867pt;}
.y1d_c00081{bottom:226.599867pt;}
.y1c_c00081{bottom:258.599867pt;}
.y1b_c00081{bottom:290.599867pt;}
.y1a_c00081{bottom:322.599867pt;}
.y19_c00081{bottom:354.599867pt;}
.y18_c00081{bottom:386.599867pt;}
.y17_c00081{bottom:418.599867pt;}
.y16_c00081{bottom:450.599867pt;}
.y15_c00081{bottom:482.599867pt;}
.y14_c00081{bottom:514.599867pt;}
.y13_c00081{bottom:546.599867pt;}
.y12_c00081{bottom:578.599867pt;}
.y11_c00081{bottom:610.599867pt;}
.y10_c00081{bottom:642.599867pt;}
.yf_c00081{bottom:674.599867pt;}
.ye_c00081{bottom:706.599867pt;}
.yd_c00081{bottom:738.599867pt;}
.yc_c00081{bottom:770.599867pt;}
.yb_c00081{bottom:802.599867pt;}
.ya_c00081{bottom:834.599867pt;}
.y9_c00081{bottom:866.599867pt;}
.y8_c00081{bottom:898.599867pt;}
.y7_c00081{bottom:930.599867pt;}
.y6_c00081{bottom:962.599867pt;}
.y2_c00081{bottom:1035.560000pt;}
.h4_c00081{height:15.360000pt;}
.h3_c00081{height:62.812500pt;}
.h2_c00081{height:1099.880000pt;}
.h0_c00081{height:1122.520000pt;}
.h1_c00081{height:1122.666667pt;}
.w3_c00081{width:42.240000pt;}
.w2_c00081{width:771.080000pt;}
.w0_c00081{width:793.720000pt;}
.w1_c00081{width:794.000000pt;}
.x0_c00081{left:0.000000pt;}
.x1_c00081{left:11.320000pt;}
.x5_c00081{left:13.100000pt;}
.x3_c00081{left:84.794933pt;}
.x6_c00081{left:132.800133pt;}
.x4_c00081{left:375.800000pt;}
.x2_c00081{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_66eed0db4bb2eb8507410bf1.woff2')format("woff");}.ff1_c00082{font-family:ff1_c00082;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00082{text-shadow:none;}
.sc0_c00082{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00082{-webkit-text-stroke:0px transparent;}
.sc0_c00082{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00082{word-spacing:0.000000px;}
._6_c00082{width:1.036800px;}
._1_c00082{width:2.145600px;}
._2_c00082{width:3.974400px;}
._b_c00082{width:5.320800px;}
._4_c00082{width:6.357600px;}
._5_c00082{width:7.653600px;}
._0_c00082{width:8.733600px;}
._3_c00082{width:10.454400px;}
._a_c00082{width:14.270400px;}
._7_c00082{width:15.638400px;}
._8_c00082{width:19.029600px;}
._9_c00082{width:20.988000px;}
._c_c00082{width:27.511200px;}
.fc1_c00082{color:transparent;}
.fc0_c00082{color:rgb(0,0,0);}
.fs0_c00082{font-size:72.000000px;}
.y0_c00082{bottom:0.000000px;}
.y5_c00082{bottom:5.040000px;}
.y1_c00082{bottom:12.735000px;}
.y3_c00082{bottom:45.405000px;}
.y4_c00082{bottom:53.100000px;}
.y21_c00082{bottom:110.924850px;}
.y20_c00082{bottom:146.924850px;}
.y1f_c00082{bottom:182.924850px;}
.y1e_c00082{bottom:218.924850px;}
.y1d_c00082{bottom:254.924850px;}
.y1c_c00082{bottom:290.924850px;}
.y1b_c00082{bottom:326.924850px;}
.y1a_c00082{bottom:362.924850px;}
.y19_c00082{bottom:398.924850px;}
.y18_c00082{bottom:434.924850px;}
.y17_c00082{bottom:470.924850px;}
.y16_c00082{bottom:506.924850px;}
.y15_c00082{bottom:542.924850px;}
.y14_c00082{bottom:578.924850px;}
.y13_c00082{bottom:614.924850px;}
.y12_c00082{bottom:650.924850px;}
.y11_c00082{bottom:686.924850px;}
.y10_c00082{bottom:722.924850px;}
.yf_c00082{bottom:758.924850px;}
.ye_c00082{bottom:794.924850px;}
.yd_c00082{bottom:830.924850px;}
.yc_c00082{bottom:866.924850px;}
.yb_c00082{bottom:902.924850px;}
.ya_c00082{bottom:938.924850px;}
.y9_c00082{bottom:974.924850px;}
.y8_c00082{bottom:1010.924850px;}
.y7_c00082{bottom:1046.924850px;}
.y6_c00082{bottom:1082.924850px;}
.y2_c00082{bottom:1165.005000px;}
.h4_c00082{height:20.880000px;}
.h3_c00082{height:70.664062px;}
.h2_c00082{height:1237.365000px;}
.h0_c00082{height:1262.835000px;}
.h1_c00082{height:1263.000000px;}
.w3_c00082{width:18.000000px;}
.w2_c00082{width:867.465000px;}
.w0_c00082{width:892.935000px;}
.w1_c00082{width:893.250000px;}
.x0_c00082{left:0.000000px;}
.x1_c00082{left:12.735000px;}
.x3_c00082{left:95.394300px;}
.x5_c00082{left:149.400150px;}
.x4_c00082{left:437.535000px;}
.x2_c00082{left:880.050300px;}
@media print{
.v0_c00082{vertical-align:0.000000pt;}
.ls0_c00082{letter-spacing:0.000000pt;}
.ws0_c00082{word-spacing:0.000000pt;}
._6_c00082{width:0.921600pt;}
._1_c00082{width:1.907200pt;}
._2_c00082{width:3.532800pt;}
._b_c00082{width:4.729600pt;}
._4_c00082{width:5.651200pt;}
._5_c00082{width:6.803200pt;}
._0_c00082{width:7.763200pt;}
._3_c00082{width:9.292800pt;}
._a_c00082{width:12.684800pt;}
._7_c00082{width:13.900800pt;}
._8_c00082{width:16.915200pt;}
._9_c00082{width:18.656000pt;}
._c_c00082{width:24.454400pt;}
.fs0_c00082{font-size:64.000000pt;}
.y0_c00082{bottom:0.000000pt;}
.y5_c00082{bottom:4.480000pt;}
.y1_c00082{bottom:11.320000pt;}
.y3_c00082{bottom:40.360000pt;}
.y4_c00082{bottom:47.200000pt;}
.y21_c00082{bottom:98.599867pt;}
.y20_c00082{bottom:130.599867pt;}
.y1f_c00082{bottom:162.599867pt;}
.y1e_c00082{bottom:194.599867pt;}
.y1d_c00082{bottom:226.599867pt;}
.y1c_c00082{bottom:258.599867pt;}
.y1b_c00082{bottom:290.599867pt;}
.y1a_c00082{bottom:322.599867pt;}
.y19_c00082{bottom:354.599867pt;}
.y18_c00082{bottom:386.599867pt;}
.y17_c00082{bottom:418.599867pt;}
.y16_c00082{bottom:450.599867pt;}
.y15_c00082{bottom:482.599867pt;}
.y14_c00082{bottom:514.599867pt;}
.y13_c00082{bottom:546.599867pt;}
.y12_c00082{bottom:578.599867pt;}
.y11_c00082{bottom:610.599867pt;}
.y10_c00082{bottom:642.599867pt;}
.yf_c00082{bottom:674.599867pt;}
.ye_c00082{bottom:706.599867pt;}
.yd_c00082{bottom:738.599867pt;}
.yc_c00082{bottom:770.599867pt;}
.yb_c00082{bottom:802.599867pt;}
.ya_c00082{bottom:834.599867pt;}
.y9_c00082{bottom:866.599867pt;}
.y8_c00082{bottom:898.599867pt;}
.y7_c00082{bottom:930.599867pt;}
.y6_c00082{bottom:962.599867pt;}
.y2_c00082{bottom:1035.560000pt;}
.h4_c00082{height:18.560000pt;}
.h3_c00082{height:62.812500pt;}
.h2_c00082{height:1099.880000pt;}
.h0_c00082{height:1122.520000pt;}
.h1_c00082{height:1122.666667pt;}
.w3_c00082{width:16.000000pt;}
.w2_c00082{width:771.080000pt;}
.w0_c00082{width:793.720000pt;}
.w1_c00082{width:794.000000pt;}
.x0_c00082{left:0.000000pt;}
.x1_c00082{left:11.320000pt;}
.x3_c00082{left:84.794933pt;}
.x5_c00082{left:132.800133pt;}
.x4_c00082{left:388.920000pt;}
.x2_c00082{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e91dd7b384dd2b0bf46860db.woff2')format("woff");}.ff1_c00083{font-family:ff1_c00083;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00083{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00083{vertical-align:0.000000px;}
.ls2_c00083{letter-spacing:-0.014400px;}
.ls0_c00083{letter-spacing:0.000000px;}
.ls1_c00083{letter-spacing:3.427200px;}
.sc__c00083{text-shadow:none;}
.sc0_c00083{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00083{-webkit-text-stroke:0px transparent;}
.sc0_c00083{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00083{word-spacing:0.000000px;}
._3_c00083{margin-left:-3.686400px;}
._4_c00083{width:1.972800px;}
._2_c00083{width:3.427200px;}
._8_c00083{width:5.400000px;}
._9_c00083{width:6.422400px;}
._a_c00083{width:7.639200px;}
._d_c00083{width:8.733600px;}
._0_c00083{width:9.835200px;}
._c_c00083{width:11.196000px;}
._1_c00083{width:12.232800px;}
._7_c00083{width:13.694400px;}
._6_c00083{width:14.767200px;}
._5_c00083{width:16.012800px;}
._b_c00083{width:19.519200px;}
.fc1_c00083{color:transparent;}
.fc0_c00083{color:rgb(0,0,0);}
.fs0_c00083{font-size:72.000000px;}
.y0_c00083{bottom:0.000000px;}
.y5_c00083{bottom:1.440000px;}
.y1_c00083{bottom:12.735000px;}
.y3_c00083{bottom:45.405000px;}
.y4_c00083{bottom:56.700000px;}
.y20_c00083{bottom:146.924850px;}
.y1f_c00083{bottom:182.924850px;}
.y1e_c00083{bottom:218.924850px;}
.y1d_c00083{bottom:254.924850px;}
.y1c_c00083{bottom:290.924850px;}
.y1b_c00083{bottom:326.924850px;}
.y1a_c00083{bottom:362.924850px;}
.y19_c00083{bottom:398.924850px;}
.y18_c00083{bottom:434.924850px;}
.y17_c00083{bottom:470.924850px;}
.y16_c00083{bottom:506.924850px;}
.y15_c00083{bottom:542.924850px;}
.y14_c00083{bottom:578.924850px;}
.y13_c00083{bottom:614.924850px;}
.y12_c00083{bottom:650.924850px;}
.y11_c00083{bottom:686.924850px;}
.y10_c00083{bottom:722.924850px;}
.yf_c00083{bottom:758.924850px;}
.ye_c00083{bottom:794.924850px;}
.yd_c00083{bottom:830.924850px;}
.yc_c00083{bottom:866.924850px;}
.yb_c00083{bottom:902.924850px;}
.ya_c00083{bottom:938.924850px;}
.y9_c00083{bottom:974.924850px;}
.y8_c00083{bottom:1010.924850px;}
.y7_c00083{bottom:1046.924850px;}
.y6_c00083{bottom:1082.924850px;}
.y2_c00083{bottom:1165.005000px;}
.h4_c00083{height:17.280000px;}
.h3_c00083{height:70.664062px;}
.h2_c00083{height:1237.365000px;}
.h0_c00083{height:1262.835000px;}
.h1_c00083{height:1263.000000px;}
.w3_c00083{width:47.520000px;}
.w2_c00083{width:867.465000px;}
.w0_c00083{width:892.935000px;}
.w1_c00083{width:893.250000px;}
.x0_c00083{left:0.000000px;}
.x1_c00083{left:12.735000px;}
.x5_c00083{left:14.737500px;}
.x3_c00083{left:95.394300px;}
.x6_c00083{left:149.400150px;}
.x4_c00083{left:422.775000px;}
.x2_c00083{left:880.050300px;}
@media print{
.v0_c00083{vertical-align:0.000000pt;}
.ls2_c00083{letter-spacing:-0.012800pt;}
.ls0_c00083{letter-spacing:0.000000pt;}
.ls1_c00083{letter-spacing:3.046400pt;}
.ws0_c00083{word-spacing:0.000000pt;}
._3_c00083{margin-left:-3.276800pt;}
._4_c00083{width:1.753600pt;}
._2_c00083{width:3.046400pt;}
._8_c00083{width:4.800000pt;}
._9_c00083{width:5.708800pt;}
._a_c00083{width:6.790400pt;}
._d_c00083{width:7.763200pt;}
._0_c00083{width:8.742400pt;}
._c_c00083{width:9.952000pt;}
._1_c00083{width:10.873600pt;}
._7_c00083{width:12.172800pt;}
._6_c00083{width:13.126400pt;}
._5_c00083{width:14.233600pt;}
._b_c00083{width:17.350400pt;}
.fs0_c00083{font-size:64.000000pt;}
.y0_c00083{bottom:0.000000pt;}
.y5_c00083{bottom:1.280000pt;}
.y1_c00083{bottom:11.320000pt;}
.y3_c00083{bottom:40.360000pt;}
.y4_c00083{bottom:50.400000pt;}
.y20_c00083{bottom:130.599867pt;}
.y1f_c00083{bottom:162.599867pt;}
.y1e_c00083{bottom:194.599867pt;}
.y1d_c00083{bottom:226.599867pt;}
.y1c_c00083{bottom:258.599867pt;}
.y1b_c00083{bottom:290.599867pt;}
.y1a_c00083{bottom:322.599867pt;}
.y19_c00083{bottom:354.599867pt;}
.y18_c00083{bottom:386.599867pt;}
.y17_c00083{bottom:418.599867pt;}
.y16_c00083{bottom:450.599867pt;}
.y15_c00083{bottom:482.599867pt;}
.y14_c00083{bottom:514.599867pt;}
.y13_c00083{bottom:546.599867pt;}
.y12_c00083{bottom:578.599867pt;}
.y11_c00083{bottom:610.599867pt;}
.y10_c00083{bottom:642.599867pt;}
.yf_c00083{bottom:674.599867pt;}
.ye_c00083{bottom:706.599867pt;}
.yd_c00083{bottom:738.599867pt;}
.yc_c00083{bottom:770.599867pt;}
.yb_c00083{bottom:802.599867pt;}
.ya_c00083{bottom:834.599867pt;}
.y9_c00083{bottom:866.599867pt;}
.y8_c00083{bottom:898.599867pt;}
.y7_c00083{bottom:930.599867pt;}
.y6_c00083{bottom:962.599867pt;}
.y2_c00083{bottom:1035.560000pt;}
.h4_c00083{height:15.360000pt;}
.h3_c00083{height:62.812500pt;}
.h2_c00083{height:1099.880000pt;}
.h0_c00083{height:1122.520000pt;}
.h1_c00083{height:1122.666667pt;}
.w3_c00083{width:42.240000pt;}
.w2_c00083{width:771.080000pt;}
.w0_c00083{width:793.720000pt;}
.w1_c00083{width:794.000000pt;}
.x0_c00083{left:0.000000pt;}
.x1_c00083{left:11.320000pt;}
.x5_c00083{left:13.100000pt;}
.x3_c00083{left:84.794933pt;}
.x6_c00083{left:132.800133pt;}
.x4_c00083{left:375.800000pt;}
.x2_c00083{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5754e06cbee8a600693bf752.woff2')format("woff");}.ff1_c00084{font-family:ff1_c00084;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00084{letter-spacing:0.000000px;}
.sc__c00084{text-shadow:none;}
.sc0_c00084{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00084{-webkit-text-stroke:0px transparent;}
.sc0_c00084{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00084{word-spacing:0.000000px;}
._1_c00084{width:1.152000px;}
._2_c00084{width:3.081600px;}
._3_c00084{width:4.147200px;}
._6_c00084{width:6.148800px;}
._5_c00084{width:7.588800px;}
._4_c00084{width:11.016000px;}
._0_c00084{width:15.984000px;}
.fc1_c00084{color:transparent;}
.fc0_c00084{color:rgb(0,0,0);}
.fs0_c00084{font-size:72.000000px;}
.y0_c00084{bottom:0.000000px;}
.y5_c00084{bottom:5.040000px;}
.y1_c00084{bottom:12.735000px;}
.y3_c00084{bottom:45.405000px;}
.y4_c00084{bottom:53.100000px;}
.y20_c00084{bottom:146.924850px;}
.y1f_c00084{bottom:182.924850px;}
.y1e_c00084{bottom:218.924850px;}
.y1d_c00084{bottom:254.924850px;}
.y1c_c00084{bottom:290.924850px;}
.y1b_c00084{bottom:326.924850px;}
.y1a_c00084{bottom:362.924850px;}
.y19_c00084{bottom:398.924850px;}
.y18_c00084{bottom:434.924850px;}
.y17_c00084{bottom:470.924850px;}
.y16_c00084{bottom:506.924850px;}
.y15_c00084{bottom:542.924850px;}
.y14_c00084{bottom:578.924850px;}
.y13_c00084{bottom:614.924850px;}
.y12_c00084{bottom:650.924850px;}
.y11_c00084{bottom:686.924850px;}
.y10_c00084{bottom:722.924850px;}
.yf_c00084{bottom:758.924850px;}
.ye_c00084{bottom:794.924850px;}
.yd_c00084{bottom:830.924850px;}
.yc_c00084{bottom:866.924850px;}
.yb_c00084{bottom:902.924850px;}
.ya_c00084{bottom:938.924850px;}
.y9_c00084{bottom:974.924850px;}
.y8_c00084{bottom:1010.924850px;}
.y7_c00084{bottom:1046.924850px;}
.y6_c00084{bottom:1082.924850px;}
.y2_c00084{bottom:1165.005000px;}
.h4_c00084{height:20.880000px;}
.h3_c00084{height:70.664062px;}
.h2_c00084{height:1237.365000px;}
.h0_c00084{height:1262.835000px;}
.h1_c00084{height:1263.000000px;}
.w3_c00084{width:18.000000px;}
.w2_c00084{width:867.465000px;}
.w0_c00084{width:892.935000px;}
.w1_c00084{width:893.250000px;}
.x0_c00084{left:0.000000px;}
.x1_c00084{left:12.735000px;}
.x3_c00084{left:95.394300px;}
.x5_c00084{left:149.400150px;}
.x4_c00084{left:437.535000px;}
.x2_c00084{left:880.050300px;}
@media print{
.v0_c00084{vertical-align:0.000000pt;}
.ls0_c00084{letter-spacing:0.000000pt;}
.ws0_c00084{word-spacing:0.000000pt;}
._1_c00084{width:1.024000pt;}
._2_c00084{width:2.739200pt;}
._3_c00084{width:3.686400pt;}
._6_c00084{width:5.465600pt;}
._5_c00084{width:6.745600pt;}
._4_c00084{width:9.792000pt;}
._0_c00084{width:14.208000pt;}
.fs0_c00084{font-size:64.000000pt;}
.y0_c00084{bottom:0.000000pt;}
.y5_c00084{bottom:4.480000pt;}
.y1_c00084{bottom:11.320000pt;}
.y3_c00084{bottom:40.360000pt;}
.y4_c00084{bottom:47.200000pt;}
.y20_c00084{bottom:130.599867pt;}
.y1f_c00084{bottom:162.599867pt;}
.y1e_c00084{bottom:194.599867pt;}
.y1d_c00084{bottom:226.599867pt;}
.y1c_c00084{bottom:258.599867pt;}
.y1b_c00084{bottom:290.599867pt;}
.y1a_c00084{bottom:322.599867pt;}
.y19_c00084{bottom:354.599867pt;}
.y18_c00084{bottom:386.599867pt;}
.y17_c00084{bottom:418.599867pt;}
.y16_c00084{bottom:450.599867pt;}
.y15_c00084{bottom:482.599867pt;}
.y14_c00084{bottom:514.599867pt;}
.y13_c00084{bottom:546.599867pt;}
.y12_c00084{bottom:578.599867pt;}
.y11_c00084{bottom:610.599867pt;}
.y10_c00084{bottom:642.599867pt;}
.yf_c00084{bottom:674.599867pt;}
.ye_c00084{bottom:706.599867pt;}
.yd_c00084{bottom:738.599867pt;}
.yc_c00084{bottom:770.599867pt;}
.yb_c00084{bottom:802.599867pt;}
.ya_c00084{bottom:834.599867pt;}
.y9_c00084{bottom:866.599867pt;}
.y8_c00084{bottom:898.599867pt;}
.y7_c00084{bottom:930.599867pt;}
.y6_c00084{bottom:962.599867pt;}
.y2_c00084{bottom:1035.560000pt;}
.h4_c00084{height:18.560000pt;}
.h3_c00084{height:62.812500pt;}
.h2_c00084{height:1099.880000pt;}
.h0_c00084{height:1122.520000pt;}
.h1_c00084{height:1122.666667pt;}
.w3_c00084{width:16.000000pt;}
.w2_c00084{width:771.080000pt;}
.w0_c00084{width:793.720000pt;}
.w1_c00084{width:794.000000pt;}
.x0_c00084{left:0.000000pt;}
.x1_c00084{left:11.320000pt;}
.x3_c00084{left:84.794933pt;}
.x5_c00084{left:132.800133pt;}
.x4_c00084{left:388.920000pt;}
.x2_c00084{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1ba04f7ac2d0514add7f1796.woff2')format("woff");}.ff1_c00085{font-family:ff1_c00085;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00085;src:url('chunks/assets/font_0d8d08510642c29ee3c7ab9a.woff2')format("woff");}.ff2_c00085{font-family:ff2_c00085;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00085{letter-spacing:-0.014400px;}
.ls0_c00085{letter-spacing:0.000000px;}
.ls1_c00085{letter-spacing:24.372000px;}
.sc__c00085{text-shadow:none;}
.sc0_c00085{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00085{-webkit-text-stroke:0px transparent;}
.sc0_c00085{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00085{word-spacing:0.000000px;}
._8_c00085{margin-left:-24.652800px;}
._a_c00085{margin-left:-1.044000px;}
._3_c00085{width:1.994400px;}
._6_c00085{width:3.405600px;}
._1_c00085{width:4.773600px;}
._0_c00085{width:7.387200px;}
._5_c00085{width:8.553600px;}
._9_c00085{width:10.692000px;}
._4_c00085{width:12.636000px;}
._2_c00085{width:21.780000px;}
._7_c00085{width:24.379200px;}
.fc1_c00085{color:transparent;}
.fc0_c00085{color:rgb(0,0,0);}
.fs0_c00085{font-size:72.000000px;}
.y0_c00085{bottom:0.000000px;}
.y5_c00085{bottom:1.440000px;}
.y1_c00085{bottom:12.735000px;}
.y3_c00085{bottom:45.405000px;}
.y4_c00085{bottom:56.700000px;}
.y20_c00085{bottom:146.924850px;}
.y1f_c00085{bottom:182.924850px;}
.y1e_c00085{bottom:218.924850px;}
.y1d_c00085{bottom:254.924850px;}
.y1c_c00085{bottom:290.924850px;}
.y1b_c00085{bottom:326.924850px;}
.y1a_c00085{bottom:362.924850px;}
.y19_c00085{bottom:398.924850px;}
.y18_c00085{bottom:434.924850px;}
.y17_c00085{bottom:470.924850px;}
.y16_c00085{bottom:506.924850px;}
.y15_c00085{bottom:542.924850px;}
.y14_c00085{bottom:578.924850px;}
.y13_c00085{bottom:614.924850px;}
.y12_c00085{bottom:650.924850px;}
.y11_c00085{bottom:686.924850px;}
.y10_c00085{bottom:722.924850px;}
.yf_c00085{bottom:758.924850px;}
.ye_c00085{bottom:794.924850px;}
.yd_c00085{bottom:830.924850px;}
.yc_c00085{bottom:866.924850px;}
.yb_c00085{bottom:902.924850px;}
.ya_c00085{bottom:938.924850px;}
.y9_c00085{bottom:974.924850px;}
.y8_c00085{bottom:1010.924850px;}
.y7_c00085{bottom:1046.924850px;}
.y6_c00085{bottom:1082.924850px;}
.y2_c00085{bottom:1165.005000px;}
.h4_c00085{height:17.280000px;}
.h5_c00085{height:70.628906px;}
.h3_c00085{height:70.664062px;}
.h2_c00085{height:1237.365000px;}
.h0_c00085{height:1262.835000px;}
.h1_c00085{height:1263.000000px;}
.w3_c00085{width:47.520000px;}
.w2_c00085{width:867.465000px;}
.w0_c00085{width:892.935000px;}
.w1_c00085{width:893.250000px;}
.x0_c00085{left:0.000000px;}
.x1_c00085{left:12.735000px;}
.x5_c00085{left:14.737500px;}
.x3_c00085{left:95.394300px;}
.x6_c00085{left:149.400150px;}
.x4_c00085{left:422.775000px;}
.x2_c00085{left:880.050300px;}
@media print{
.v0_c00085{vertical-align:0.000000pt;}
.ls2_c00085{letter-spacing:-0.012800pt;}
.ls0_c00085{letter-spacing:0.000000pt;}
.ls1_c00085{letter-spacing:21.664000pt;}
.ws0_c00085{word-spacing:0.000000pt;}
._8_c00085{margin-left:-21.913600pt;}
._a_c00085{margin-left:-0.928000pt;}
._3_c00085{width:1.772800pt;}
._6_c00085{width:3.027200pt;}
._1_c00085{width:4.243200pt;}
._0_c00085{width:6.566400pt;}
._5_c00085{width:7.603200pt;}
._9_c00085{width:9.504000pt;}
._4_c00085{width:11.232000pt;}
._2_c00085{width:19.360000pt;}
._7_c00085{width:21.670400pt;}
.fs0_c00085{font-size:64.000000pt;}
.y0_c00085{bottom:0.000000pt;}
.y5_c00085{bottom:1.280000pt;}
.y1_c00085{bottom:11.320000pt;}
.y3_c00085{bottom:40.360000pt;}
.y4_c00085{bottom:50.400000pt;}
.y20_c00085{bottom:130.599867pt;}
.y1f_c00085{bottom:162.599867pt;}
.y1e_c00085{bottom:194.599867pt;}
.y1d_c00085{bottom:226.599867pt;}
.y1c_c00085{bottom:258.599867pt;}
.y1b_c00085{bottom:290.599867pt;}
.y1a_c00085{bottom:322.599867pt;}
.y19_c00085{bottom:354.599867pt;}
.y18_c00085{bottom:386.599867pt;}
.y17_c00085{bottom:418.599867pt;}
.y16_c00085{bottom:450.599867pt;}
.y15_c00085{bottom:482.599867pt;}
.y14_c00085{bottom:514.599867pt;}
.y13_c00085{bottom:546.599867pt;}
.y12_c00085{bottom:578.599867pt;}
.y11_c00085{bottom:610.599867pt;}
.y10_c00085{bottom:642.599867pt;}
.yf_c00085{bottom:674.599867pt;}
.ye_c00085{bottom:706.599867pt;}
.yd_c00085{bottom:738.599867pt;}
.yc_c00085{bottom:770.599867pt;}
.yb_c00085{bottom:802.599867pt;}
.ya_c00085{bottom:834.599867pt;}
.y9_c00085{bottom:866.599867pt;}
.y8_c00085{bottom:898.599867pt;}
.y7_c00085{bottom:930.599867pt;}
.y6_c00085{bottom:962.599867pt;}
.y2_c00085{bottom:1035.560000pt;}
.h4_c00085{height:15.360000pt;}
.h5_c00085{height:62.781250pt;}
.h3_c00085{height:62.812500pt;}
.h2_c00085{height:1099.880000pt;}
.h0_c00085{height:1122.520000pt;}
.h1_c00085{height:1122.666667pt;}
.w3_c00085{width:42.240000pt;}
.w2_c00085{width:771.080000pt;}
.w0_c00085{width:793.720000pt;}
.w1_c00085{width:794.000000pt;}
.x0_c00085{left:0.000000pt;}
.x1_c00085{left:11.320000pt;}
.x5_c00085{left:13.100000pt;}
.x3_c00085{left:84.794933pt;}
.x6_c00085{left:132.800133pt;}
.x4_c00085{left:375.800000pt;}
.x2_c00085{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_606632908bd02bf0b31ae4f7.woff2')format("woff");}.ff1_c00086{font-family:ff1_c00086;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00086{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00086{vertical-align:0.000000px;}
.ls2_c00086{letter-spacing:-0.014400px;}
.ls0_c00086{letter-spacing:0.000000px;}
.ls1_c00086{letter-spacing:4.471200px;}
.sc__c00086{text-shadow:none;}
.sc0_c00086{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00086{-webkit-text-stroke:0px transparent;}
.sc0_c00086{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00086{word-spacing:0.000000px;}
._1_c00086{margin-left:-4.593600px;}
._6_c00086{width:1.231200px;}
._5_c00086{width:2.584800px;}
._0_c00086{width:4.471200px;}
._8_c00086{width:5.680800px;}
._4_c00086{width:7.286400px;}
._7_c00086{width:8.856000px;}
._3_c00086{width:11.383200px;}
._2_c00086{width:12.952800px;}
._b_c00086{width:14.616000px;}
._a_c00086{width:15.724800px;}
._c_c00086{width:20.995200px;}
._9_c00086{width:28.562400px;}
.fc1_c00086{color:transparent;}
.fc0_c00086{color:rgb(0,0,0);}
.fs0_c00086{font-size:72.000000px;}
.y0_c00086{bottom:0.000000px;}
.y5_c00086{bottom:5.040000px;}
.y1_c00086{bottom:12.735000px;}
.y3_c00086{bottom:45.405000px;}
.y4_c00086{bottom:53.100000px;}
.y20_c00086{bottom:146.924850px;}
.y1f_c00086{bottom:182.924850px;}
.y1e_c00086{bottom:218.924850px;}
.y1d_c00086{bottom:254.924850px;}
.y1c_c00086{bottom:290.924850px;}
.y1b_c00086{bottom:326.924850px;}
.y1a_c00086{bottom:362.924850px;}
.y19_c00086{bottom:398.924850px;}
.y18_c00086{bottom:434.924850px;}
.y17_c00086{bottom:470.924850px;}
.y16_c00086{bottom:506.924850px;}
.y15_c00086{bottom:542.924850px;}
.y14_c00086{bottom:578.924850px;}
.y13_c00086{bottom:614.924850px;}
.y12_c00086{bottom:650.924850px;}
.y11_c00086{bottom:686.924850px;}
.y10_c00086{bottom:722.924850px;}
.yf_c00086{bottom:758.924850px;}
.ye_c00086{bottom:794.924850px;}
.yd_c00086{bottom:830.924850px;}
.yc_c00086{bottom:866.924850px;}
.yb_c00086{bottom:902.924850px;}
.ya_c00086{bottom:938.924850px;}
.y9_c00086{bottom:974.924850px;}
.y8_c00086{bottom:1010.924850px;}
.y7_c00086{bottom:1046.924850px;}
.y6_c00086{bottom:1082.924850px;}
.y2_c00086{bottom:1165.005000px;}
.h4_c00086{height:20.880000px;}
.h3_c00086{height:70.664062px;}
.h2_c00086{height:1237.365000px;}
.h0_c00086{height:1262.835000px;}
.h1_c00086{height:1263.000000px;}
.w3_c00086{width:18.000000px;}
.w2_c00086{width:867.465000px;}
.w0_c00086{width:892.935000px;}
.w1_c00086{width:893.250000px;}
.x0_c00086{left:0.000000px;}
.x1_c00086{left:12.735000px;}
.x3_c00086{left:95.394300px;}
.x5_c00086{left:149.400150px;}
.x4_c00086{left:437.535000px;}
.x2_c00086{left:880.050300px;}
@media print{
.v0_c00086{vertical-align:0.000000pt;}
.ls2_c00086{letter-spacing:-0.012800pt;}
.ls0_c00086{letter-spacing:0.000000pt;}
.ls1_c00086{letter-spacing:3.974400pt;}
.ws0_c00086{word-spacing:0.000000pt;}
._1_c00086{margin-left:-4.083200pt;}
._6_c00086{width:1.094400pt;}
._5_c00086{width:2.297600pt;}
._0_c00086{width:3.974400pt;}
._8_c00086{width:5.049600pt;}
._4_c00086{width:6.476800pt;}
._7_c00086{width:7.872000pt;}
._3_c00086{width:10.118400pt;}
._2_c00086{width:11.513600pt;}
._b_c00086{width:12.992000pt;}
._a_c00086{width:13.977600pt;}
._c_c00086{width:18.662400pt;}
._9_c00086{width:25.388800pt;}
.fs0_c00086{font-size:64.000000pt;}
.y0_c00086{bottom:0.000000pt;}
.y5_c00086{bottom:4.480000pt;}
.y1_c00086{bottom:11.320000pt;}
.y3_c00086{bottom:40.360000pt;}
.y4_c00086{bottom:47.200000pt;}
.y20_c00086{bottom:130.599867pt;}
.y1f_c00086{bottom:162.599867pt;}
.y1e_c00086{bottom:194.599867pt;}
.y1d_c00086{bottom:226.599867pt;}
.y1c_c00086{bottom:258.599867pt;}
.y1b_c00086{bottom:290.599867pt;}
.y1a_c00086{bottom:322.599867pt;}
.y19_c00086{bottom:354.599867pt;}
.y18_c00086{bottom:386.599867pt;}
.y17_c00086{bottom:418.599867pt;}
.y16_c00086{bottom:450.599867pt;}
.y15_c00086{bottom:482.599867pt;}
.y14_c00086{bottom:514.599867pt;}
.y13_c00086{bottom:546.599867pt;}
.y12_c00086{bottom:578.599867pt;}
.y11_c00086{bottom:610.599867pt;}
.y10_c00086{bottom:642.599867pt;}
.yf_c00086{bottom:674.599867pt;}
.ye_c00086{bottom:706.599867pt;}
.yd_c00086{bottom:738.599867pt;}
.yc_c00086{bottom:770.599867pt;}
.yb_c00086{bottom:802.599867pt;}
.ya_c00086{bottom:834.599867pt;}
.y9_c00086{bottom:866.599867pt;}
.y8_c00086{bottom:898.599867pt;}
.y7_c00086{bottom:930.599867pt;}
.y6_c00086{bottom:962.599867pt;}
.y2_c00086{bottom:1035.560000pt;}
.h4_c00086{height:18.560000pt;}
.h3_c00086{height:62.812500pt;}
.h2_c00086{height:1099.880000pt;}
.h0_c00086{height:1122.520000pt;}
.h1_c00086{height:1122.666667pt;}
.w3_c00086{width:16.000000pt;}
.w2_c00086{width:771.080000pt;}
.w0_c00086{width:793.720000pt;}
.w1_c00086{width:794.000000pt;}
.x0_c00086{left:0.000000pt;}
.x1_c00086{left:11.320000pt;}
.x3_c00086{left:84.794933pt;}
.x5_c00086{left:132.800133pt;}
.x4_c00086{left:388.920000pt;}
.x2_c00086{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_356fbb05902ed4ea7408d68c.woff2')format("woff");}.ff1_c00087{font-family:ff1_c00087;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00087{letter-spacing:-0.014400px;}
.ls0_c00087{letter-spacing:0.000000px;}
.ls1_c00087{letter-spacing:4.399200px;}
.sc__c00087{text-shadow:none;}
.sc0_c00087{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00087{-webkit-text-stroke:0px transparent;}
.sc0_c00087{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00087{word-spacing:0.000000px;}
._b_c00087{margin-left:-4.413600px;}
._d_c00087{width:1.245600px;}
._5_c00087{width:2.757600px;}
._a_c00087{width:4.399200px;}
._0_c00087{width:5.875200px;}
._1_c00087{width:7.142400px;}
._c_c00087{width:9.064800px;}
._e_c00087{width:10.123200px;}
._2_c00087{width:11.577600px;}
._9_c00087{width:13.752000px;}
._7_c00087{width:15.120000px;}
._3_c00087{width:16.200000px;}
._4_c00087{width:20.498400px;}
._6_c00087{width:22.068000px;}
._8_c00087{width:23.529600px;}
.fc1_c00087{color:transparent;}
.fc0_c00087{color:rgb(0,0,0);}
.fs0_c00087{font-size:72.000000px;}
.y0_c00087{bottom:0.000000px;}
.y5_c00087{bottom:1.440000px;}
.y1_c00087{bottom:12.735000px;}
.y3_c00087{bottom:45.405000px;}
.y4_c00087{bottom:56.700000px;}
.y21_c00087{bottom:110.924850px;}
.y20_c00087{bottom:146.924850px;}
.y1f_c00087{bottom:182.924850px;}
.y1e_c00087{bottom:218.924850px;}
.y1d_c00087{bottom:254.924850px;}
.y1c_c00087{bottom:290.924850px;}
.y1b_c00087{bottom:326.924850px;}
.y1a_c00087{bottom:362.924850px;}
.y19_c00087{bottom:398.924850px;}
.y18_c00087{bottom:434.924850px;}
.y17_c00087{bottom:470.924850px;}
.y16_c00087{bottom:506.924850px;}
.y15_c00087{bottom:542.924850px;}
.y14_c00087{bottom:578.924850px;}
.y13_c00087{bottom:614.924850px;}
.y12_c00087{bottom:650.924850px;}
.y11_c00087{bottom:686.924850px;}
.y10_c00087{bottom:722.924850px;}
.yf_c00087{bottom:758.924850px;}
.ye_c00087{bottom:794.924850px;}
.yd_c00087{bottom:830.924850px;}
.yc_c00087{bottom:866.924850px;}
.yb_c00087{bottom:902.924850px;}
.ya_c00087{bottom:938.924850px;}
.y9_c00087{bottom:974.924850px;}
.y8_c00087{bottom:1010.924850px;}
.y7_c00087{bottom:1046.924850px;}
.y6_c00087{bottom:1082.924850px;}
.y2_c00087{bottom:1165.005000px;}
.h4_c00087{height:17.280000px;}
.h3_c00087{height:70.664062px;}
.h2_c00087{height:1237.365000px;}
.h0_c00087{height:1262.835000px;}
.h1_c00087{height:1263.000000px;}
.w3_c00087{width:47.520000px;}
.w2_c00087{width:867.465000px;}
.w0_c00087{width:892.935000px;}
.w1_c00087{width:893.250000px;}
.x0_c00087{left:0.000000px;}
.x1_c00087{left:12.735000px;}
.x5_c00087{left:14.737500px;}
.x3_c00087{left:95.394300px;}
.x6_c00087{left:149.400150px;}
.x4_c00087{left:422.775000px;}
.x2_c00087{left:880.050300px;}
@media print{
.v0_c00087{vertical-align:0.000000pt;}
.ls2_c00087{letter-spacing:-0.012800pt;}
.ls0_c00087{letter-spacing:0.000000pt;}
.ls1_c00087{letter-spacing:3.910400pt;}
.ws0_c00087{word-spacing:0.000000pt;}
._b_c00087{margin-left:-3.923200pt;}
._d_c00087{width:1.107200pt;}
._5_c00087{width:2.451200pt;}
._a_c00087{width:3.910400pt;}
._0_c00087{width:5.222400pt;}
._1_c00087{width:6.348800pt;}
._c_c00087{width:8.057600pt;}
._e_c00087{width:8.998400pt;}
._2_c00087{width:10.291200pt;}
._9_c00087{width:12.224000pt;}
._7_c00087{width:13.440000pt;}
._3_c00087{width:14.400000pt;}
._4_c00087{width:18.220800pt;}
._6_c00087{width:19.616000pt;}
._8_c00087{width:20.915200pt;}
.fs0_c00087{font-size:64.000000pt;}
.y0_c00087{bottom:0.000000pt;}
.y5_c00087{bottom:1.280000pt;}
.y1_c00087{bottom:11.320000pt;}
.y3_c00087{bottom:40.360000pt;}
.y4_c00087{bottom:50.400000pt;}
.y21_c00087{bottom:98.599867pt;}
.y20_c00087{bottom:130.599867pt;}
.y1f_c00087{bottom:162.599867pt;}
.y1e_c00087{bottom:194.599867pt;}
.y1d_c00087{bottom:226.599867pt;}
.y1c_c00087{bottom:258.599867pt;}
.y1b_c00087{bottom:290.599867pt;}
.y1a_c00087{bottom:322.599867pt;}
.y19_c00087{bottom:354.599867pt;}
.y18_c00087{bottom:386.599867pt;}
.y17_c00087{bottom:418.599867pt;}
.y16_c00087{bottom:450.599867pt;}
.y15_c00087{bottom:482.599867pt;}
.y14_c00087{bottom:514.599867pt;}
.y13_c00087{bottom:546.599867pt;}
.y12_c00087{bottom:578.599867pt;}
.y11_c00087{bottom:610.599867pt;}
.y10_c00087{bottom:642.599867pt;}
.yf_c00087{bottom:674.599867pt;}
.ye_c00087{bottom:706.599867pt;}
.yd_c00087{bottom:738.599867pt;}
.yc_c00087{bottom:770.599867pt;}
.yb_c00087{bottom:802.599867pt;}
.ya_c00087{bottom:834.599867pt;}
.y9_c00087{bottom:866.599867pt;}
.y8_c00087{bottom:898.599867pt;}
.y7_c00087{bottom:930.599867pt;}
.y6_c00087{bottom:962.599867pt;}
.y2_c00087{bottom:1035.560000pt;}
.h4_c00087{height:15.360000pt;}
.h3_c00087{height:62.812500pt;}
.h2_c00087{height:1099.880000pt;}
.h0_c00087{height:1122.520000pt;}
.h1_c00087{height:1122.666667pt;}
.w3_c00087{width:42.240000pt;}
.w2_c00087{width:771.080000pt;}
.w0_c00087{width:793.720000pt;}
.w1_c00087{width:794.000000pt;}
.x0_c00087{left:0.000000pt;}
.x1_c00087{left:11.320000pt;}
.x5_c00087{left:13.100000pt;}
.x3_c00087{left:84.794933pt;}
.x6_c00087{left:132.800133pt;}
.x4_c00087{left:375.800000pt;}
.x2_c00087{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_72de172c9feaf867b7a3ba2c.woff2')format("woff");}.ff1_c00088{font-family:ff1_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;}
.m0_c00088{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00088{vertical-align:0.000000px;}
.ls1_c00088{letter-spacing:-0.014400px;}
.ls0_c00088{letter-spacing:0.000000px;}
.ls2_c00088{letter-spacing:13.284000px;}
.sc__c00088{text-shadow:none;}
.sc0_c00088{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00088{-webkit-text-stroke:0px transparent;}
.sc0_c00088{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00088{word-spacing:0.000000px;}
._9_c00088{margin-left:-12.650400px;}
._0_c00088{width:1.684800px;}
._8_c00088{width:3.448800px;}
._a_c00088{width:4.766400px;}
._2_c00088{width:6.019200px;}
._7_c00088{width:7.423200px;}
._4_c00088{width:10.922400px;}
._5_c00088{width:12.470400px;}
._1_c00088{width:13.564800px;}
._6_c00088{width:15.408000px;}
._3_c00088{width:16.992000px;}
.fc1_c00088{color:transparent;}
.fc0_c00088{color:rgb(0,0,0);}
.fs0_c00088{font-size:72.000000px;}
.y0_c00088{bottom:0.000000px;}
.y5_c00088{bottom:5.040000px;}
.y1_c00088{bottom:12.735000px;}
.y3_c00088{bottom:45.405000px;}
.y4_c00088{bottom:53.100000px;}
.y21_c00088{bottom:110.924850px;}
.y20_c00088{bottom:146.924850px;}
.y1f_c00088{bottom:182.924850px;}
.y1e_c00088{bottom:218.924850px;}
.y1d_c00088{bottom:254.924850px;}
.y1c_c00088{bottom:290.924850px;}
.y1b_c00088{bottom:326.924850px;}
.y1a_c00088{bottom:362.924850px;}
.y19_c00088{bottom:398.924850px;}
.y18_c00088{bottom:434.924850px;}
.y17_c00088{bottom:470.924850px;}
.y16_c00088{bottom:506.924850px;}
.y15_c00088{bottom:542.924850px;}
.y14_c00088{bottom:578.924850px;}
.y13_c00088{bottom:614.924850px;}
.y12_c00088{bottom:650.924850px;}
.y11_c00088{bottom:686.924850px;}
.y10_c00088{bottom:722.924850px;}
.yf_c00088{bottom:758.924850px;}
.ye_c00088{bottom:794.924850px;}
.yd_c00088{bottom:830.924850px;}
.yc_c00088{bottom:866.924850px;}
.yb_c00088{bottom:902.924850px;}
.ya_c00088{bottom:938.924850px;}
.y9_c00088{bottom:974.924850px;}
.y8_c00088{bottom:1010.924850px;}
.y7_c00088{bottom:1046.924850px;}
.y6_c00088{bottom:1082.924850px;}
.y2_c00088{bottom:1165.005000px;}
.h4_c00088{height:20.880000px;}
.h3_c00088{height:70.664062px;}
.h2_c00088{height:1237.365000px;}
.h0_c00088{height:1262.835000px;}
.h1_c00088{height:1263.000000px;}
.w3_c00088{width:18.000000px;}
.w2_c00088{width:867.465000px;}
.w0_c00088{width:892.935000px;}
.w1_c00088{width:893.250000px;}
.x0_c00088{left:0.000000px;}
.x1_c00088{left:12.735000px;}
.x3_c00088{left:95.394300px;}
.x5_c00088{left:149.400150px;}
.x4_c00088{left:437.535000px;}
.x2_c00088{left:880.050300px;}
@media print{
.v0_c00088{vertical-align:0.000000pt;}
.ls1_c00088{letter-spacing:-0.012800pt;}
.ls0_c00088{letter-spacing:0.000000pt;}
.ls2_c00088{letter-spacing:11.808000pt;}
.ws0_c00088{word-spacing:0.000000pt;}
._9_c00088{margin-left:-11.244800pt;}
._0_c00088{width:1.497600pt;}
._8_c00088{width:3.065600pt;}
._a_c00088{width:4.236800pt;}
._2_c00088{width:5.350400pt;}
._7_c00088{width:6.598400pt;}
._4_c00088{width:9.708800pt;}
._5_c00088{width:11.084800pt;}
._1_c00088{width:12.057600pt;}
._6_c00088{width:13.696000pt;}
._3_c00088{width:15.104000pt;}
.fs0_c00088{font-size:64.000000pt;}
.y0_c00088{bottom:0.000000pt;}
.y5_c00088{bottom:4.480000pt;}
.y1_c00088{bottom:11.320000pt;}
.y3_c00088{bottom:40.360000pt;}
.y4_c00088{bottom:47.200000pt;}
.y21_c00088{bottom:98.599867pt;}
.y20_c00088{bottom:130.599867pt;}
.y1f_c00088{bottom:162.599867pt;}
.y1e_c00088{bottom:194.599867pt;}
.y1d_c00088{bottom:226.599867pt;}
.y1c_c00088{bottom:258.599867pt;}
.y1b_c00088{bottom:290.599867pt;}
.y1a_c00088{bottom:322.599867pt;}
.y19_c00088{bottom:354.599867pt;}
.y18_c00088{bottom:386.599867pt;}
.y17_c00088{bottom:418.599867pt;}
.y16_c00088{bottom:450.599867pt;}
.y15_c00088{bottom:482.599867pt;}
.y14_c00088{bottom:514.599867pt;}
.y13_c00088{bottom:546.599867pt;}
.y12_c00088{bottom:578.599867pt;}
.y11_c00088{bottom:610.599867pt;}
.y10_c00088{bottom:642.599867pt;}
.yf_c00088{bottom:674.599867pt;}
.ye_c00088{bottom:706.599867pt;}
.yd_c00088{bottom:738.599867pt;}
.yc_c00088{bottom:770.599867pt;}
.yb_c00088{bottom:802.599867pt;}
.ya_c00088{bottom:834.599867pt;}
.y9_c00088{bottom:866.599867pt;}
.y8_c00088{bottom:898.599867pt;}
.y7_c00088{bottom:930.599867pt;}
.y6_c00088{bottom:962.599867pt;}
.y2_c00088{bottom:1035.560000pt;}
.h4_c00088{height:18.560000pt;}
.h3_c00088{height:62.812500pt;}
.h2_c00088{height:1099.880000pt;}
.h0_c00088{height:1122.520000pt;}
.h1_c00088{height:1122.666667pt;}
.w3_c00088{width:16.000000pt;}
.w2_c00088{width:771.080000pt;}
.w0_c00088{width:793.720000pt;}
.w1_c00088{width:794.000000pt;}
.x0_c00088{left:0.000000pt;}
.x1_c00088{left:11.320000pt;}
.x3_c00088{left:84.794933pt;}
.x5_c00088{left:132.800133pt;}
.x4_c00088{left:388.920000pt;}
.x2_c00088{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c23c7daa513a670c4f412978.woff2')format("woff");}.ff1_c00089{font-family:ff1_c00089;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00089;src:url('chunks/assets/font_7190dcec40d5c6da8ab7aea9.woff2')format("woff");}.ff2_c00089{font-family:ff2_c00089;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00089;src:url('chunks/assets/font_a625a3f11ccb7f8d851c1790.woff2')format("woff");}.ff3_c00089{font-family:ff3_c00089;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.014400px;}
.ls0_c00089{letter-spacing:0.000000px;}
.ls3_c00089{letter-spacing:0.014400px;}
.ls2_c00089{letter-spacing:0.237600px;}
.sc__c00089{text-shadow:none;}
.sc0_c00089{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00089{-webkit-text-stroke:0px transparent;}
.sc0_c00089{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00089{word-spacing:0.000000px;}
._3_c00089{width:1.879200px;}
._1_c00089{width:3.067200px;}
._0_c00089{width:4.370400px;}
._a_c00089{width:5.428800px;}
._4_c00089{width:6.480000px;}
._7_c00089{width:8.676000px;}
._2_c00089{width:9.712800px;}
._5_c00089{width:13.888800px;}
._8_c00089{width:15.336000px;}
._9_c00089{width:16.920000px;}
._6_c00089{width:27.511200px;}
.fc1_c00089{color:transparent;}
.fc0_c00089{color:rgb(0,0,0);}
.fs0_c00089{font-size:72.000000px;}
.y0_c00089{bottom:0.000000px;}
.y5_c00089{bottom:1.440000px;}
.y1_c00089{bottom:12.735000px;}
.y3_c00089{bottom:45.405000px;}
.y4_c00089{bottom:56.700000px;}
.y21_c00089{bottom:110.924850px;}
.y20_c00089{bottom:146.924850px;}
.y1f_c00089{bottom:182.924850px;}
.y1e_c00089{bottom:218.924850px;}
.y1d_c00089{bottom:254.924850px;}
.y1c_c00089{bottom:290.924850px;}
.y1b_c00089{bottom:326.924850px;}
.y1a_c00089{bottom:362.924850px;}
.y19_c00089{bottom:398.924850px;}
.y18_c00089{bottom:434.924850px;}
.y17_c00089{bottom:470.924850px;}
.y16_c00089{bottom:506.924850px;}
.y15_c00089{bottom:542.924850px;}
.y14_c00089{bottom:578.924850px;}
.y13_c00089{bottom:614.924850px;}
.y12_c00089{bottom:650.924850px;}
.y11_c00089{bottom:686.924850px;}
.y10_c00089{bottom:722.924850px;}
.yf_c00089{bottom:758.924850px;}
.ye_c00089{bottom:794.924850px;}
.yd_c00089{bottom:830.924850px;}
.yc_c00089{bottom:866.924850px;}
.yb_c00089{bottom:902.924850px;}
.ya_c00089{bottom:938.924850px;}
.y9_c00089{bottom:974.924850px;}
.y8_c00089{bottom:1010.924850px;}
.y7_c00089{bottom:1046.924850px;}
.y6_c00089{bottom:1082.924850px;}
.y2_c00089{bottom:1165.005000px;}
.h4_c00089{height:17.280000px;}
.h5_c00089{height:70.628906px;}
.h3_c00089{height:70.664062px;}
.h2_c00089{height:1237.365000px;}
.h0_c00089{height:1262.835000px;}
.h1_c00089{height:1263.000000px;}
.w3_c00089{width:47.520000px;}
.w2_c00089{width:867.465000px;}
.w0_c00089{width:892.935000px;}
.w1_c00089{width:893.250000px;}
.x0_c00089{left:0.000000px;}
.x1_c00089{left:12.735000px;}
.x5_c00089{left:14.737500px;}
.x3_c00089{left:95.394300px;}
.x6_c00089{left:149.400150px;}
.x4_c00089{left:422.775000px;}
.x2_c00089{left:880.050300px;}
@media print{
.v0_c00089{vertical-align:0.000000pt;}
.ls1_c00089{letter-spacing:-0.012800pt;}
.ls0_c00089{letter-spacing:0.000000pt;}
.ls3_c00089{letter-spacing:0.012800pt;}
.ls2_c00089{letter-spacing:0.211200pt;}
.ws0_c00089{word-spacing:0.000000pt;}
._3_c00089{width:1.670400pt;}
._1_c00089{width:2.726400pt;}
._0_c00089{width:3.884800pt;}
._a_c00089{width:4.825600pt;}
._4_c00089{width:5.760000pt;}
._7_c00089{width:7.712000pt;}
._2_c00089{width:8.633600pt;}
._5_c00089{width:12.345600pt;}
._8_c00089{width:13.632000pt;}
._9_c00089{width:15.040000pt;}
._6_c00089{width:24.454400pt;}
.fs0_c00089{font-size:64.000000pt;}
.y0_c00089{bottom:0.000000pt;}
.y5_c00089{bottom:1.280000pt;}
.y1_c00089{bottom:11.320000pt;}
.y3_c00089{bottom:40.360000pt;}
.y4_c00089{bottom:50.400000pt;}
.y21_c00089{bottom:98.599867pt;}
.y20_c00089{bottom:130.599867pt;}
.y1f_c00089{bottom:162.599867pt;}
.y1e_c00089{bottom:194.599867pt;}
.y1d_c00089{bottom:226.599867pt;}
.y1c_c00089{bottom:258.599867pt;}
.y1b_c00089{bottom:290.599867pt;}
.y1a_c00089{bottom:322.599867pt;}
.y19_c00089{bottom:354.599867pt;}
.y18_c00089{bottom:386.599867pt;}
.y17_c00089{bottom:418.599867pt;}
.y16_c00089{bottom:450.599867pt;}
.y15_c00089{bottom:482.599867pt;}
.y14_c00089{bottom:514.599867pt;}
.y13_c00089{bottom:546.599867pt;}
.y12_c00089{bottom:578.599867pt;}
.y11_c00089{bottom:610.599867pt;}
.y10_c00089{bottom:642.599867pt;}
.yf_c00089{bottom:674.599867pt;}
.ye_c00089{bottom:706.599867pt;}
.yd_c00089{bottom:738.599867pt;}
.yc_c00089{bottom:770.599867pt;}
.yb_c00089{bottom:802.599867pt;}
.ya_c00089{bottom:834.599867pt;}
.y9_c00089{bottom:866.599867pt;}
.y8_c00089{bottom:898.599867pt;}
.y7_c00089{bottom:930.599867pt;}
.y6_c00089{bottom:962.599867pt;}
.y2_c00089{bottom:1035.560000pt;}
.h4_c00089{height:15.360000pt;}
.h5_c00089{height:62.781250pt;}
.h3_c00089{height:62.812500pt;}
.h2_c00089{height:1099.880000pt;}
.h0_c00089{height:1122.520000pt;}
.h1_c00089{height:1122.666667pt;}
.w3_c00089{width:42.240000pt;}
.w2_c00089{width:771.080000pt;}
.w0_c00089{width:793.720000pt;}
.w1_c00089{width:794.000000pt;}
.x0_c00089{left:0.000000pt;}
.x1_c00089{left:11.320000pt;}
.x5_c00089{left:13.100000pt;}
.x3_c00089{left:84.794933pt;}
.x6_c00089{left:132.800133pt;}
.x4_c00089{left:375.800000pt;}
.x2_c00089{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d1260d066bde5205dddd046.woff2')format("woff");}.ff1_c00090{font-family:ff1_c00090;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00090{letter-spacing:-0.014400px;}
.ls0_c00090{letter-spacing:0.000000px;}
.sc__c00090{text-shadow:none;}
.sc0_c00090{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00090{-webkit-text-stroke:0px transparent;}
.sc0_c00090{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00090{word-spacing:0.000000px;}
._2_c00090{width:1.648800px;}
._1_c00090{width:3.650400px;}
._6_c00090{width:5.702400px;}
._4_c00090{width:6.753600px;}
._7_c00090{width:7.804800px;}
._0_c00090{width:8.928000px;}
._3_c00090{width:10.267200px;}
._5_c00090{width:11.433600px;}
._8_c00090{width:12.614400px;}
._9_c00090{width:13.651200px;}
.fc1_c00090{color:transparent;}
.fc0_c00090{color:rgb(0,0,0);}
.fs0_c00090{font-size:72.000000px;}
.y0_c00090{bottom:0.000000px;}
.y5_c00090{bottom:5.040000px;}
.y1_c00090{bottom:12.735000px;}
.y3_c00090{bottom:45.405000px;}
.y4_c00090{bottom:53.100000px;}
.y20_c00090{bottom:146.924850px;}
.y1f_c00090{bottom:182.924850px;}
.y1e_c00090{bottom:218.924850px;}
.y1d_c00090{bottom:254.924850px;}
.y1c_c00090{bottom:290.924850px;}
.y1b_c00090{bottom:326.924850px;}
.y1a_c00090{bottom:362.924850px;}
.y19_c00090{bottom:398.924850px;}
.y18_c00090{bottom:434.924850px;}
.y17_c00090{bottom:470.924850px;}
.y16_c00090{bottom:506.924850px;}
.y15_c00090{bottom:542.924850px;}
.y14_c00090{bottom:578.924850px;}
.y13_c00090{bottom:614.924850px;}
.y12_c00090{bottom:650.924850px;}
.y11_c00090{bottom:686.924850px;}
.y10_c00090{bottom:722.924850px;}
.yf_c00090{bottom:758.924850px;}
.ye_c00090{bottom:794.924850px;}
.yd_c00090{bottom:830.924850px;}
.yc_c00090{bottom:866.924850px;}
.yb_c00090{bottom:902.924850px;}
.ya_c00090{bottom:938.924850px;}
.y9_c00090{bottom:974.924850px;}
.y8_c00090{bottom:1010.924850px;}
.y7_c00090{bottom:1046.924850px;}
.y6_c00090{bottom:1082.924850px;}
.y2_c00090{bottom:1165.005000px;}
.h4_c00090{height:20.880000px;}
.h3_c00090{height:70.664062px;}
.h2_c00090{height:1237.365000px;}
.h0_c00090{height:1262.835000px;}
.h1_c00090{height:1263.000000px;}
.w3_c00090{width:18.000000px;}
.w2_c00090{width:867.465000px;}
.w0_c00090{width:892.935000px;}
.w1_c00090{width:893.250000px;}
.x0_c00090{left:0.000000px;}
.x1_c00090{left:12.735000px;}
.x3_c00090{left:95.394300px;}
.x5_c00090{left:149.400150px;}
.x4_c00090{left:437.535000px;}
.x2_c00090{left:880.050300px;}
@media print{
.v0_c00090{vertical-align:0.000000pt;}
.ls1_c00090{letter-spacing:-0.012800pt;}
.ls0_c00090{letter-spacing:0.000000pt;}
.ws0_c00090{word-spacing:0.000000pt;}
._2_c00090{width:1.465600pt;}
._1_c00090{width:3.244800pt;}
._6_c00090{width:5.068800pt;}
._4_c00090{width:6.003200pt;}
._7_c00090{width:6.937600pt;}
._0_c00090{width:7.936000pt;}
._3_c00090{width:9.126400pt;}
._5_c00090{width:10.163200pt;}
._8_c00090{width:11.212800pt;}
._9_c00090{width:12.134400pt;}
.fs0_c00090{font-size:64.000000pt;}
.y0_c00090{bottom:0.000000pt;}
.y5_c00090{bottom:4.480000pt;}
.y1_c00090{bottom:11.320000pt;}
.y3_c00090{bottom:40.360000pt;}
.y4_c00090{bottom:47.200000pt;}
.y20_c00090{bottom:130.599867pt;}
.y1f_c00090{bottom:162.599867pt;}
.y1e_c00090{bottom:194.599867pt;}
.y1d_c00090{bottom:226.599867pt;}
.y1c_c00090{bottom:258.599867pt;}
.y1b_c00090{bottom:290.599867pt;}
.y1a_c00090{bottom:322.599867pt;}
.y19_c00090{bottom:354.599867pt;}
.y18_c00090{bottom:386.599867pt;}
.y17_c00090{bottom:418.599867pt;}
.y16_c00090{bottom:450.599867pt;}
.y15_c00090{bottom:482.599867pt;}
.y14_c00090{bottom:514.599867pt;}
.y13_c00090{bottom:546.599867pt;}
.y12_c00090{bottom:578.599867pt;}
.y11_c00090{bottom:610.599867pt;}
.y10_c00090{bottom:642.599867pt;}
.yf_c00090{bottom:674.599867pt;}
.ye_c00090{bottom:706.599867pt;}
.yd_c00090{bottom:738.599867pt;}
.yc_c00090{bottom:770.599867pt;}
.yb_c00090{bottom:802.599867pt;}
.ya_c00090{bottom:834.599867pt;}
.y9_c00090{bottom:866.599867pt;}
.y8_c00090{bottom:898.599867pt;}
.y7_c00090{bottom:930.599867pt;}
.y6_c00090{bottom:962.599867pt;}
.y2_c00090{bottom:1035.560000pt;}
.h4_c00090{height:18.560000pt;}
.h3_c00090{height:62.812500pt;}
.h2_c00090{height:1099.880000pt;}
.h0_c00090{height:1122.520000pt;}
.h1_c00090{height:1122.666667pt;}
.w3_c00090{width:16.000000pt;}
.w2_c00090{width:771.080000pt;}
.w0_c00090{width:793.720000pt;}
.w1_c00090{width:794.000000pt;}
.x0_c00090{left:0.000000pt;}
.x1_c00090{left:11.320000pt;}
.x3_c00090{left:84.794933pt;}
.x5_c00090{left:132.800133pt;}
.x4_c00090{left:388.920000pt;}
.x2_c00090{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88b259979f88bbd48c98472d.woff2')format("woff");}.ff1_c00091{font-family:ff1_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:ff2_c00091;src:url('chunks/assets/font_b329c697f4de732b118b98c3.woff2')format("woff");}.ff2_c00091{font-family:ff2_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;}
.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;}
.ls2_c00091{letter-spacing:-0.014400px;}
.ls1_c00091{letter-spacing:0.000000px;}
.ls0_c00091{letter-spacing:3.232800px;}
.sc__c00091{text-shadow:none;}
.sc0_c00091{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00091{-webkit-text-stroke:0px transparent;}
.sc0_c00091{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00091{word-spacing:0.000000px;}
._1_c00091{width:1.216800px;}
._3_c00091{width:3.031200px;}
._5_c00091{width:4.032000px;}
._a_c00091{width:5.112000px;}
._2_c00091{width:6.170400px;}
._9_c00091{width:7.192800px;}
._4_c00091{width:8.676000px;}
._8_c00091{width:9.900000px;}
._0_c00091{width:11.995200px;}
._b_c00091{width:13.003200px;}
._6_c00091{width:14.911200px;}
._7_c00091{width:16.156800px;}
.fc1_c00091{color:transparent;}
.fc0_c00091{color:rgb(0,0,0);}
.fs0_c00091{font-size:72.000000px;}
.y0_c00091{bottom:0.000000px;}
.y5_c00091{bottom:1.440000px;}
.y1_c00091{bottom:12.735000px;}
.y3_c00091{bottom:45.405000px;}
.y4_c00091{bottom:56.700000px;}
.y21_c00091{bottom:110.924850px;}
.y20_c00091{bottom:146.924850px;}
.y1f_c00091{bottom:182.924850px;}
.y1e_c00091{bottom:218.924850px;}
.y1d_c00091{bottom:254.924850px;}
.y1c_c00091{bottom:290.924850px;}
.y1b_c00091{bottom:326.924850px;}
.y1a_c00091{bottom:362.924850px;}
.y19_c00091{bottom:398.924850px;}
.y18_c00091{bottom:434.924850px;}
.y17_c00091{bottom:470.924850px;}
.y16_c00091{bottom:506.924850px;}
.y15_c00091{bottom:542.924850px;}
.y14_c00091{bottom:578.924850px;}
.y13_c00091{bottom:614.924850px;}
.y12_c00091{bottom:650.924850px;}
.y11_c00091{bottom:686.924850px;}
.y10_c00091{bottom:722.924850px;}
.yf_c00091{bottom:758.924850px;}
.ye_c00091{bottom:794.924850px;}
.yd_c00091{bottom:830.924850px;}
.yc_c00091{bottom:866.924850px;}
.yb_c00091{bottom:902.924850px;}
.ya_c00091{bottom:938.924850px;}
.y9_c00091{bottom:974.924850px;}
.y8_c00091{bottom:1010.924850px;}
.y7_c00091{bottom:1046.924850px;}
.y6_c00091{bottom:1082.924850px;}
.y2_c00091{bottom:1165.005000px;}
.h4_c00091{height:17.280000px;}
.h5_c00091{height:70.628906px;}
.h3_c00091{height:70.664062px;}
.h2_c00091{height:1237.365000px;}
.h0_c00091{height:1262.835000px;}
.h1_c00091{height:1263.000000px;}
.w3_c00091{width:47.520000px;}
.w2_c00091{width:867.465000px;}
.w0_c00091{width:892.935000px;}
.w1_c00091{width:893.250000px;}
.x0_c00091{left:0.000000px;}
.x1_c00091{left:12.735000px;}
.x5_c00091{left:14.737500px;}
.x3_c00091{left:95.394300px;}
.x6_c00091{left:149.400150px;}
.x4_c00091{left:422.775000px;}
.x2_c00091{left:880.050300px;}
@media print{
.v0_c00091{vertical-align:0.000000pt;}
.ls2_c00091{letter-spacing:-0.012800pt;}
.ls1_c00091{letter-spacing:0.000000pt;}
.ls0_c00091{letter-spacing:2.873600pt;}
.ws0_c00091{word-spacing:0.000000pt;}
._1_c00091{width:1.081600pt;}
._3_c00091{width:2.694400pt;}
._5_c00091{width:3.584000pt;}
._a_c00091{width:4.544000pt;}
._2_c00091{width:5.484800pt;}
._9_c00091{width:6.393600pt;}
._4_c00091{width:7.712000pt;}
._8_c00091{width:8.800000pt;}
._0_c00091{width:10.662400pt;}
._b_c00091{width:11.558400pt;}
._6_c00091{width:13.254400pt;}
._7_c00091{width:14.361600pt;}
.fs0_c00091{font-size:64.000000pt;}
.y0_c00091{bottom:0.000000pt;}
.y5_c00091{bottom:1.280000pt;}
.y1_c00091{bottom:11.320000pt;}
.y3_c00091{bottom:40.360000pt;}
.y4_c00091{bottom:50.400000pt;}
.y21_c00091{bottom:98.599867pt;}
.y20_c00091{bottom:130.599867pt;}
.y1f_c00091{bottom:162.599867pt;}
.y1e_c00091{bottom:194.599867pt;}
.y1d_c00091{bottom:226.599867pt;}
.y1c_c00091{bottom:258.599867pt;}
.y1b_c00091{bottom:290.599867pt;}
.y1a_c00091{bottom:322.599867pt;}
.y19_c00091{bottom:354.599867pt;}
.y18_c00091{bottom:386.599867pt;}
.y17_c00091{bottom:418.599867pt;}
.y16_c00091{bottom:450.599867pt;}
.y15_c00091{bottom:482.599867pt;}
.y14_c00091{bottom:514.599867pt;}
.y13_c00091{bottom:546.599867pt;}
.y12_c00091{bottom:578.599867pt;}
.y11_c00091{bottom:610.599867pt;}
.y10_c00091{bottom:642.599867pt;}
.yf_c00091{bottom:674.599867pt;}
.ye_c00091{bottom:706.599867pt;}
.yd_c00091{bottom:738.599867pt;}
.yc_c00091{bottom:770.599867pt;}
.yb_c00091{bottom:802.599867pt;}
.ya_c00091{bottom:834.599867pt;}
.y9_c00091{bottom:866.599867pt;}
.y8_c00091{bottom:898.599867pt;}
.y7_c00091{bottom:930.599867pt;}
.y6_c00091{bottom:962.599867pt;}
.y2_c00091{bottom:1035.560000pt;}
.h4_c00091{height:15.360000pt;}
.h5_c00091{height:62.781250pt;}
.h3_c00091{height:62.812500pt;}
.h2_c00091{height:1099.880000pt;}
.h0_c00091{height:1122.520000pt;}
.h1_c00091{height:1122.666667pt;}
.w3_c00091{width:42.240000pt;}
.w2_c00091{width:771.080000pt;}
.w0_c00091{width:793.720000pt;}
.w1_c00091{width:794.000000pt;}
.x0_c00091{left:0.000000pt;}
.x1_c00091{left:11.320000pt;}
.x5_c00091{left:13.100000pt;}
.x3_c00091{left:84.794933pt;}
.x6_c00091{left:132.800133pt;}
.x4_c00091{left:375.800000pt;}
.x2_c00091{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f67bf0c73dcd8f2e77c64a2a.woff2')format("woff");}.ff1_c00092{font-family:ff1_c00092;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00092{letter-spacing:0.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;}
}
.ws0_c00092{word-spacing:0.000000px;}
._8_c00092{width:1.231200px;}
._b_c00092{width:2.728800px;}
._9_c00092{width:3.866400px;}
._a_c00092{width:4.903200px;}
._5_c00092{width:6.134400px;}
._7_c00092{width:7.192800px;}
._0_c00092{width:10.015200px;}
._1_c00092{width:11.167200px;}
._2_c00092{width:12.643200px;}
._4_c00092{width:13.672800px;}
._3_c00092{width:15.976800px;}
._6_c00092{width:25.574400px;}
.fc1_c00092{color:transparent;}
.fc0_c00092{color:rgb(0,0,0);}
.fs0_c00092{font-size:72.000000px;}
.y0_c00092{bottom:0.000000px;}
.y5_c00092{bottom:5.040000px;}
.y1_c00092{bottom:12.735000px;}
.y3_c00092{bottom:45.405000px;}
.y4_c00092{bottom:53.100000px;}
.y21_c00092{bottom:110.924850px;}
.y20_c00092{bottom:146.924850px;}
.y1f_c00092{bottom:182.924850px;}
.y1e_c00092{bottom:218.924850px;}
.y1d_c00092{bottom:254.924850px;}
.y1c_c00092{bottom:290.924850px;}
.y1b_c00092{bottom:326.924850px;}
.y1a_c00092{bottom:362.924850px;}
.y19_c00092{bottom:398.924850px;}
.y18_c00092{bottom:434.924850px;}
.y17_c00092{bottom:470.924850px;}
.y16_c00092{bottom:506.924850px;}
.y15_c00092{bottom:542.924850px;}
.y14_c00092{bottom:578.924850px;}
.y13_c00092{bottom:614.924850px;}
.y12_c00092{bottom:650.924850px;}
.y11_c00092{bottom:686.924850px;}
.y10_c00092{bottom:722.924850px;}
.yf_c00092{bottom:758.924850px;}
.ye_c00092{bottom:794.924850px;}
.yd_c00092{bottom:830.924850px;}
.yc_c00092{bottom:866.924850px;}
.yb_c00092{bottom:902.924850px;}
.ya_c00092{bottom:938.924850px;}
.y9_c00092{bottom:974.924850px;}
.y8_c00092{bottom:1010.924850px;}
.y7_c00092{bottom:1046.924850px;}
.y6_c00092{bottom:1082.924850px;}
.y2_c00092{bottom:1165.005000px;}
.h4_c00092{height:20.880000px;}
.h3_c00092{height:70.664062px;}
.h2_c00092{height:1237.365000px;}
.h0_c00092{height:1262.835000px;}
.h1_c00092{height:1263.000000px;}
.w3_c00092{width:18.000000px;}
.w2_c00092{width:867.465000px;}
.w0_c00092{width:892.935000px;}
.w1_c00092{width:893.250000px;}
.x0_c00092{left:0.000000px;}
.x1_c00092{left:12.735000px;}
.x3_c00092{left:95.394300px;}
.x5_c00092{left:149.400150px;}
.x4_c00092{left:437.535000px;}
.x2_c00092{left:880.050300px;}
@media print{
.v0_c00092{vertical-align:0.000000pt;}
.ls0_c00092{letter-spacing:0.000000pt;}
.ws0_c00092{word-spacing:0.000000pt;}
._8_c00092{width:1.094400pt;}
._b_c00092{width:2.425600pt;}
._9_c00092{width:3.436800pt;}
._a_c00092{width:4.358400pt;}
._5_c00092{width:5.452800pt;}
._7_c00092{width:6.393600pt;}
._0_c00092{width:8.902400pt;}
._1_c00092{width:9.926400pt;}
._2_c00092{width:11.238400pt;}
._4_c00092{width:12.153600pt;}
._3_c00092{width:14.201600pt;}
._6_c00092{width:22.732800pt;}
.fs0_c00092{font-size:64.000000pt;}
.y0_c00092{bottom:0.000000pt;}
.y5_c00092{bottom:4.480000pt;}
.y1_c00092{bottom:11.320000pt;}
.y3_c00092{bottom:40.360000pt;}
.y4_c00092{bottom:47.200000pt;}
.y21_c00092{bottom:98.599867pt;}
.y20_c00092{bottom:130.599867pt;}
.y1f_c00092{bottom:162.599867pt;}
.y1e_c00092{bottom:194.599867pt;}
.y1d_c00092{bottom:226.599867pt;}
.y1c_c00092{bottom:258.599867pt;}
.y1b_c00092{bottom:290.599867pt;}
.y1a_c00092{bottom:322.599867pt;}
.y19_c00092{bottom:354.599867pt;}
.y18_c00092{bottom:386.599867pt;}
.y17_c00092{bottom:418.599867pt;}
.y16_c00092{bottom:450.599867pt;}
.y15_c00092{bottom:482.599867pt;}
.y14_c00092{bottom:514.599867pt;}
.y13_c00092{bottom:546.599867pt;}
.y12_c00092{bottom:578.599867pt;}
.y11_c00092{bottom:610.599867pt;}
.y10_c00092{bottom:642.599867pt;}
.yf_c00092{bottom:674.599867pt;}
.ye_c00092{bottom:706.599867pt;}
.yd_c00092{bottom:738.599867pt;}
.yc_c00092{bottom:770.599867pt;}
.yb_c00092{bottom:802.599867pt;}
.ya_c00092{bottom:834.599867pt;}
.y9_c00092{bottom:866.599867pt;}
.y8_c00092{bottom:898.599867pt;}
.y7_c00092{bottom:930.599867pt;}
.y6_c00092{bottom:962.599867pt;}
.y2_c00092{bottom:1035.560000pt;}
.h4_c00092{height:18.560000pt;}
.h3_c00092{height:62.812500pt;}
.h2_c00092{height:1099.880000pt;}
.h0_c00092{height:1122.520000pt;}
.h1_c00092{height:1122.666667pt;}
.w3_c00092{width:16.000000pt;}
.w2_c00092{width:771.080000pt;}
.w0_c00092{width:793.720000pt;}
.w1_c00092{width:794.000000pt;}
.x0_c00092{left:0.000000pt;}
.x1_c00092{left:11.320000pt;}
.x3_c00092{left:84.794933pt;}
.x5_c00092{left:132.800133pt;}
.x4_c00092{left:388.920000pt;}
.x2_c00092{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c17e867b7ea6598076ed8b6b.woff2')format("woff");}.ff1_c00093{font-family:ff1_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:ff2_c00093;src:url('chunks/assets/font_6db655e678cf8477ccfb37c2.woff2')format("woff");}.ff2_c00093{font-family:ff2_c00093;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00093;src:url('chunks/assets/font_3ef384bd3b9b82b76c8a3974.woff2')format("woff");}.ff3_c00093{font-family:ff3_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;}
.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;}
.ls0_c00093{letter-spacing:0.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;}
}
.ws0_c00093{word-spacing:0.000000px;}
._c_c00093{margin-left:-1.123200px;}
._d_c00093{width:1.087200px;}
._e_c00093{width:2.563200px;}
._6_c00093{width:3.916800px;}
._2_c00093{width:5.457600px;}
._7_c00093{width:6.645600px;}
._8_c00093{width:7.740000px;}
._3_c00093{width:9.000000px;}
._4_c00093{width:10.123200px;}
._9_c00093{width:11.764800px;}
._1_c00093{width:13.176000px;}
._0_c00093{width:14.472000px;}
._5_c00093{width:21.607200px;}
._b_c00093{width:25.639200px;}
._a_c00093{width:30.657600px;}
.fc1_c00093{color:transparent;}
.fc0_c00093{color:rgb(0,0,0);}
.fs0_c00093{font-size:72.000000px;}
.y0_c00093{bottom:0.000000px;}
.y5_c00093{bottom:1.440000px;}
.y1_c00093{bottom:12.735000px;}
.y3_c00093{bottom:45.405000px;}
.y4_c00093{bottom:56.700000px;}
.y21_c00093{bottom:110.924850px;}
.y20_c00093{bottom:146.924850px;}
.y1f_c00093{bottom:182.924850px;}
.y1e_c00093{bottom:218.924850px;}
.y1d_c00093{bottom:254.924850px;}
.y1c_c00093{bottom:290.924850px;}
.y1b_c00093{bottom:326.924850px;}
.y1a_c00093{bottom:362.924850px;}
.y19_c00093{bottom:398.924850px;}
.y18_c00093{bottom:434.924850px;}
.y17_c00093{bottom:470.924850px;}
.y16_c00093{bottom:506.924850px;}
.y15_c00093{bottom:542.924850px;}
.y14_c00093{bottom:578.924850px;}
.y13_c00093{bottom:614.924850px;}
.y12_c00093{bottom:650.924850px;}
.y11_c00093{bottom:686.924850px;}
.y10_c00093{bottom:722.924850px;}
.yf_c00093{bottom:758.924850px;}
.ye_c00093{bottom:794.924850px;}
.yd_c00093{bottom:830.924850px;}
.yc_c00093{bottom:866.924850px;}
.yb_c00093{bottom:902.924850px;}
.ya_c00093{bottom:938.924850px;}
.y9_c00093{bottom:974.924850px;}
.y8_c00093{bottom:1010.924850px;}
.y7_c00093{bottom:1046.924850px;}
.y6_c00093{bottom:1082.924850px;}
.y2_c00093{bottom:1165.005000px;}
.h4_c00093{height:17.280000px;}
.h5_c00093{height:70.628906px;}
.h3_c00093{height:70.664062px;}
.h2_c00093{height:1237.365000px;}
.h0_c00093{height:1262.835000px;}
.h1_c00093{height:1263.000000px;}
.w3_c00093{width:47.520000px;}
.w2_c00093{width:867.465000px;}
.w0_c00093{width:892.935000px;}
.w1_c00093{width:893.250000px;}
.x0_c00093{left:0.000000px;}
.x1_c00093{left:12.735000px;}
.x5_c00093{left:14.737500px;}
.x3_c00093{left:95.394300px;}
.x6_c00093{left:149.400150px;}
.x4_c00093{left:422.775000px;}
.x2_c00093{left:880.050300px;}
@media print{
.v0_c00093{vertical-align:0.000000pt;}
.ls0_c00093{letter-spacing:0.000000pt;}
.ws0_c00093{word-spacing:0.000000pt;}
._c_c00093{margin-left:-0.998400pt;}
._d_c00093{width:0.966400pt;}
._e_c00093{width:2.278400pt;}
._6_c00093{width:3.481600pt;}
._2_c00093{width:4.851200pt;}
._7_c00093{width:5.907200pt;}
._8_c00093{width:6.880000pt;}
._3_c00093{width:8.000000pt;}
._4_c00093{width:8.998400pt;}
._9_c00093{width:10.457600pt;}
._1_c00093{width:11.712000pt;}
._0_c00093{width:12.864000pt;}
._5_c00093{width:19.206400pt;}
._b_c00093{width:22.790400pt;}
._a_c00093{width:27.251200pt;}
.fs0_c00093{font-size:64.000000pt;}
.y0_c00093{bottom:0.000000pt;}
.y5_c00093{bottom:1.280000pt;}
.y1_c00093{bottom:11.320000pt;}
.y3_c00093{bottom:40.360000pt;}
.y4_c00093{bottom:50.400000pt;}
.y21_c00093{bottom:98.599867pt;}
.y20_c00093{bottom:130.599867pt;}
.y1f_c00093{bottom:162.599867pt;}
.y1e_c00093{bottom:194.599867pt;}
.y1d_c00093{bottom:226.599867pt;}
.y1c_c00093{bottom:258.599867pt;}
.y1b_c00093{bottom:290.599867pt;}
.y1a_c00093{bottom:322.599867pt;}
.y19_c00093{bottom:354.599867pt;}
.y18_c00093{bottom:386.599867pt;}
.y17_c00093{bottom:418.599867pt;}
.y16_c00093{bottom:450.599867pt;}
.y15_c00093{bottom:482.599867pt;}
.y14_c00093{bottom:514.599867pt;}
.y13_c00093{bottom:546.599867pt;}
.y12_c00093{bottom:578.599867pt;}
.y11_c00093{bottom:610.599867pt;}
.y10_c00093{bottom:642.599867pt;}
.yf_c00093{bottom:674.599867pt;}
.ye_c00093{bottom:706.599867pt;}
.yd_c00093{bottom:738.599867pt;}
.yc_c00093{bottom:770.599867pt;}
.yb_c00093{bottom:802.599867pt;}
.ya_c00093{bottom:834.599867pt;}
.y9_c00093{bottom:866.599867pt;}
.y8_c00093{bottom:898.599867pt;}
.y7_c00093{bottom:930.599867pt;}
.y6_c00093{bottom:962.599867pt;}
.y2_c00093{bottom:1035.560000pt;}
.h4_c00093{height:15.360000pt;}
.h5_c00093{height:62.781250pt;}
.h3_c00093{height:62.812500pt;}
.h2_c00093{height:1099.880000pt;}
.h0_c00093{height:1122.520000pt;}
.h1_c00093{height:1122.666667pt;}
.w3_c00093{width:42.240000pt;}
.w2_c00093{width:771.080000pt;}
.w0_c00093{width:793.720000pt;}
.w1_c00093{width:794.000000pt;}
.x0_c00093{left:0.000000pt;}
.x1_c00093{left:11.320000pt;}
.x5_c00093{left:13.100000pt;}
.x3_c00093{left:84.794933pt;}
.x6_c00093{left:132.800133pt;}
.x4_c00093{left:375.800000pt;}
.x2_c00093{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bf6cdaa9c041b919af20b4d6.woff2')format("woff");}.ff1_c00094{font-family:ff1_c00094;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00094;src:url('chunks/assets/font_472854bf2fdbadbf58f06afa.woff2')format("woff");}.ff2_c00094{font-family:ff2_c00094;line-height:1.284180;font-style: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;}
.ls2_c00094{letter-spacing:-0.014400px;}
.ls1_c00094{letter-spacing:0.000000px;}
.ls3_c00094{letter-spacing:0.050400px;}
.ls0_c00094{letter-spacing:5.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:-18.050400px;}
.ws1_c00094{word-spacing:0.000000px;}
._d_c00094{margin-left:-1.094400px;}
._8_c00094{width:1.353600px;}
._0_c00094{width:3.074400px;}
._5_c00094{width:4.370400px;}
._7_c00094{width:6.264000px;}
._2_c00094{width:7.272000px;}
._3_c00094{width:8.625600px;}
._4_c00094{width:9.720000px;}
._a_c00094{width:10.872000px;}
._b_c00094{width:13.312800px;}
._1_c00094{width:14.407200px;}
._9_c00094{width:15.616800px;}
._6_c00094{width:25.329600px;}
._c_c00094{width:44.553600px;}
.fc1_c00094{color:transparent;}
.fc0_c00094{color:rgb(0,0,0);}
.fs0_c00094{font-size:72.000000px;}
.y0_c00094{bottom:0.000000px;}
.y5_c00094{bottom:5.040000px;}
.y1_c00094{bottom:12.735000px;}
.y3_c00094{bottom:45.405000px;}
.y4_c00094{bottom:53.100000px;}
.y21_c00094{bottom:110.924850px;}
.y20_c00094{bottom:146.924850px;}
.y1f_c00094{bottom:182.924850px;}
.y1e_c00094{bottom:218.924850px;}
.y1d_c00094{bottom:254.924850px;}
.y1c_c00094{bottom:290.924850px;}
.y1b_c00094{bottom:326.924850px;}
.y1a_c00094{bottom:362.924850px;}
.y19_c00094{bottom:398.924850px;}
.y18_c00094{bottom:434.924850px;}
.y17_c00094{bottom:470.924850px;}
.y16_c00094{bottom:506.924850px;}
.y15_c00094{bottom:542.924850px;}
.y14_c00094{bottom:578.924850px;}
.y13_c00094{bottom:614.924850px;}
.y12_c00094{bottom:650.924850px;}
.y11_c00094{bottom:686.924850px;}
.y10_c00094{bottom:722.924850px;}
.yf_c00094{bottom:758.924850px;}
.ye_c00094{bottom:794.924850px;}
.yd_c00094{bottom:830.924850px;}
.yc_c00094{bottom:866.924850px;}
.yb_c00094{bottom:902.924850px;}
.ya_c00094{bottom:938.924850px;}
.y9_c00094{bottom:974.924850px;}
.y8_c00094{bottom:1010.924850px;}
.y7_c00094{bottom:1046.924850px;}
.y6_c00094{bottom:1082.924850px;}
.y2_c00094{bottom:1165.005000px;}
.h4_c00094{height:20.880000px;}
.h3_c00094{height:70.664062px;}
.h2_c00094{height:1237.365000px;}
.h0_c00094{height:1262.835000px;}
.h1_c00094{height:1263.000000px;}
.w3_c00094{width:18.000000px;}
.w2_c00094{width:867.465000px;}
.w0_c00094{width:892.935000px;}
.w1_c00094{width:893.250000px;}
.x0_c00094{left:0.000000px;}
.x1_c00094{left:12.735000px;}
.x3_c00094{left:95.394300px;}
.x5_c00094{left:149.400150px;}
.x4_c00094{left:437.535000px;}
.x2_c00094{left:880.050300px;}
@media print{
.v0_c00094{vertical-align:0.000000pt;}
.ls2_c00094{letter-spacing:-0.012800pt;}
.ls1_c00094{letter-spacing:0.000000pt;}
.ls3_c00094{letter-spacing:0.044800pt;}
.ls0_c00094{letter-spacing:4.800000pt;}
.ws0_c00094{word-spacing:-16.044800pt;}
.ws1_c00094{word-spacing:0.000000pt;}
._d_c00094{margin-left:-0.972800pt;}
._8_c00094{width:1.203200pt;}
._0_c00094{width:2.732800pt;}
._5_c00094{width:3.884800pt;}
._7_c00094{width:5.568000pt;}
._2_c00094{width:6.464000pt;}
._3_c00094{width:7.667200pt;}
._4_c00094{width:8.640000pt;}
._a_c00094{width:9.664000pt;}
._b_c00094{width:11.833600pt;}
._1_c00094{width:12.806400pt;}
._9_c00094{width:13.881600pt;}
._6_c00094{width:22.515200pt;}
._c_c00094{width:39.603200pt;}
.fs0_c00094{font-size:64.000000pt;}
.y0_c00094{bottom:0.000000pt;}
.y5_c00094{bottom:4.480000pt;}
.y1_c00094{bottom:11.320000pt;}
.y3_c00094{bottom:40.360000pt;}
.y4_c00094{bottom:47.200000pt;}
.y21_c00094{bottom:98.599867pt;}
.y20_c00094{bottom:130.599867pt;}
.y1f_c00094{bottom:162.599867pt;}
.y1e_c00094{bottom:194.599867pt;}
.y1d_c00094{bottom:226.599867pt;}
.y1c_c00094{bottom:258.599867pt;}
.y1b_c00094{bottom:290.599867pt;}
.y1a_c00094{bottom:322.599867pt;}
.y19_c00094{bottom:354.599867pt;}
.y18_c00094{bottom:386.599867pt;}
.y17_c00094{bottom:418.599867pt;}
.y16_c00094{bottom:450.599867pt;}
.y15_c00094{bottom:482.599867pt;}
.y14_c00094{bottom:514.599867pt;}
.y13_c00094{bottom:546.599867pt;}
.y12_c00094{bottom:578.599867pt;}
.y11_c00094{bottom:610.599867pt;}
.y10_c00094{bottom:642.599867pt;}
.yf_c00094{bottom:674.599867pt;}
.ye_c00094{bottom:706.599867pt;}
.yd_c00094{bottom:738.599867pt;}
.yc_c00094{bottom:770.599867pt;}
.yb_c00094{bottom:802.599867pt;}
.ya_c00094{bottom:834.599867pt;}
.y9_c00094{bottom:866.599867pt;}
.y8_c00094{bottom:898.599867pt;}
.y7_c00094{bottom:930.599867pt;}
.y6_c00094{bottom:962.599867pt;}
.y2_c00094{bottom:1035.560000pt;}
.h4_c00094{height:18.560000pt;}
.h3_c00094{height:62.812500pt;}
.h2_c00094{height:1099.880000pt;}
.h0_c00094{height:1122.520000pt;}
.h1_c00094{height:1122.666667pt;}
.w3_c00094{width:16.000000pt;}
.w2_c00094{width:771.080000pt;}
.w0_c00094{width:793.720000pt;}
.w1_c00094{width:794.000000pt;}
.x0_c00094{left:0.000000pt;}
.x1_c00094{left:11.320000pt;}
.x3_c00094{left:84.794933pt;}
.x5_c00094{left:132.800133pt;}
.x4_c00094{left:388.920000pt;}
.x2_c00094{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2afe8c14468bd44690d3669a.woff2')format("woff");}.ff1_c00095{font-family:ff1_c00095;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00095;src:url('chunks/assets/font_f7c6f81a11232e0d13e4e482.woff2')format("woff");}.ff2_c00095{font-family:ff2_c00095;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00095{letter-spacing:-0.014400px;}
.ls0_c00095{letter-spacing:0.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;}
}
.ws0_c00095{word-spacing:0.000000px;}
._c_c00095{margin-left:-1.152000px;}
._3_c00095{width:1.202400px;}
._a_c00095{width:2.347200px;}
._7_c00095{width:3.866400px;}
._0_c00095{width:5.371200px;}
._5_c00095{width:6.897600px;}
._b_c00095{width:7.934400px;}
._2_c00095{width:9.295200px;}
._1_c00095{width:10.418400px;}
._4_c00095{width:11.628000px;}
._8_c00095{width:13.622400px;}
._9_c00095{width:15.228000px;}
._6_c00095{width:16.387200px;}
.fc1_c00095{color:transparent;}
.fc0_c00095{color:rgb(0,0,0);}
.fs0_c00095{font-size:72.000000px;}
.y0_c00095{bottom:0.000000px;}
.y5_c00095{bottom:1.440000px;}
.y1_c00095{bottom:12.735000px;}
.y3_c00095{bottom:45.405000px;}
.y4_c00095{bottom:56.700000px;}
.y21_c00095{bottom:110.924850px;}
.y20_c00095{bottom:146.924850px;}
.y1f_c00095{bottom:182.924850px;}
.y1e_c00095{bottom:218.924850px;}
.y1d_c00095{bottom:254.924850px;}
.y1c_c00095{bottom:290.924850px;}
.y1b_c00095{bottom:326.924850px;}
.y1a_c00095{bottom:362.924850px;}
.y19_c00095{bottom:398.924850px;}
.y18_c00095{bottom:434.924850px;}
.y17_c00095{bottom:470.924850px;}
.y16_c00095{bottom:506.924850px;}
.y15_c00095{bottom:542.924850px;}
.y14_c00095{bottom:578.924850px;}
.y13_c00095{bottom:614.924850px;}
.y12_c00095{bottom:650.924850px;}
.y11_c00095{bottom:686.924850px;}
.y10_c00095{bottom:722.924850px;}
.yf_c00095{bottom:758.924850px;}
.ye_c00095{bottom:794.924850px;}
.yd_c00095{bottom:830.924850px;}
.yc_c00095{bottom:866.924850px;}
.yb_c00095{bottom:902.924850px;}
.ya_c00095{bottom:938.924850px;}
.y9_c00095{bottom:974.924850px;}
.y8_c00095{bottom:1010.924850px;}
.y7_c00095{bottom:1046.924850px;}
.y6_c00095{bottom:1082.924850px;}
.y2_c00095{bottom:1165.005000px;}
.h4_c00095{height:17.280000px;}
.h3_c00095{height:70.664062px;}
.h2_c00095{height:1237.365000px;}
.h0_c00095{height:1262.835000px;}
.h1_c00095{height:1263.000000px;}
.w3_c00095{width:47.520000px;}
.w2_c00095{width:867.465000px;}
.w0_c00095{width:892.935000px;}
.w1_c00095{width:893.250000px;}
.x0_c00095{left:0.000000px;}
.x1_c00095{left:12.735000px;}
.x5_c00095{left:14.737500px;}
.x3_c00095{left:95.394300px;}
.x6_c00095{left:149.418150px;}
.x4_c00095{left:422.775000px;}
.x2_c00095{left:880.050300px;}
@media print{
.v0_c00095{vertical-align:0.000000pt;}
.ls1_c00095{letter-spacing:-0.012800pt;}
.ls0_c00095{letter-spacing:0.000000pt;}
.ws0_c00095{word-spacing:0.000000pt;}
._c_c00095{margin-left:-1.024000pt;}
._3_c00095{width:1.068800pt;}
._a_c00095{width:2.086400pt;}
._7_c00095{width:3.436800pt;}
._0_c00095{width:4.774400pt;}
._5_c00095{width:6.131200pt;}
._b_c00095{width:7.052800pt;}
._2_c00095{width:8.262400pt;}
._1_c00095{width:9.260800pt;}
._4_c00095{width:10.336000pt;}
._8_c00095{width:12.108800pt;}
._9_c00095{width:13.536000pt;}
._6_c00095{width:14.566400pt;}
.fs0_c00095{font-size:64.000000pt;}
.y0_c00095{bottom:0.000000pt;}
.y5_c00095{bottom:1.280000pt;}
.y1_c00095{bottom:11.320000pt;}
.y3_c00095{bottom:40.360000pt;}
.y4_c00095{bottom:50.400000pt;}
.y21_c00095{bottom:98.599867pt;}
.y20_c00095{bottom:130.599867pt;}
.y1f_c00095{bottom:162.599867pt;}
.y1e_c00095{bottom:194.599867pt;}
.y1d_c00095{bottom:226.599867pt;}
.y1c_c00095{bottom:258.599867pt;}
.y1b_c00095{bottom:290.599867pt;}
.y1a_c00095{bottom:322.599867pt;}
.y19_c00095{bottom:354.599867pt;}
.y18_c00095{bottom:386.599867pt;}
.y17_c00095{bottom:418.599867pt;}
.y16_c00095{bottom:450.599867pt;}
.y15_c00095{bottom:482.599867pt;}
.y14_c00095{bottom:514.599867pt;}
.y13_c00095{bottom:546.599867pt;}
.y12_c00095{bottom:578.599867pt;}
.y11_c00095{bottom:610.599867pt;}
.y10_c00095{bottom:642.599867pt;}
.yf_c00095{bottom:674.599867pt;}
.ye_c00095{bottom:706.599867pt;}
.yd_c00095{bottom:738.599867pt;}
.yc_c00095{bottom:770.599867pt;}
.yb_c00095{bottom:802.599867pt;}
.ya_c00095{bottom:834.599867pt;}
.y9_c00095{bottom:866.599867pt;}
.y8_c00095{bottom:898.599867pt;}
.y7_c00095{bottom:930.599867pt;}
.y6_c00095{bottom:962.599867pt;}
.y2_c00095{bottom:1035.560000pt;}
.h4_c00095{height:15.360000pt;}
.h3_c00095{height:62.812500pt;}
.h2_c00095{height:1099.880000pt;}
.h0_c00095{height:1122.520000pt;}
.h1_c00095{height:1122.666667pt;}
.w3_c00095{width:42.240000pt;}
.w2_c00095{width:771.080000pt;}
.w0_c00095{width:793.720000pt;}
.w1_c00095{width:794.000000pt;}
.x0_c00095{left:0.000000pt;}
.x1_c00095{left:11.320000pt;}
.x5_c00095{left:13.100000pt;}
.x3_c00095{left:84.794933pt;}
.x6_c00095{left:132.816133pt;}
.x4_c00095{left:375.800000pt;}
.x2_c00095{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b2a35648010d6be35c419663.woff2')format("woff");}.ff1_c00096{font-family:ff1_c00096;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00096;src:url('chunks/assets/font_f73e08f93dc4d2d1e87dd84e.woff2')format("woff");}.ff2_c00096{font-family:ff2_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:ff3_c00096;src:url('chunks/assets/font_fc42ff9022201c6a8b63605a.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;}
.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;}
.ls2_c00096{letter-spacing:-0.014400px;}
.ls1_c00096{letter-spacing:0.000000px;}
.ls0_c00096{letter-spacing:0.014400px;}
.sc__c00096{text-shadow:none;}
.sc0_c00096{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00096{-webkit-text-stroke:0px transparent;}
.sc0_c00096{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00096{word-spacing:0.000000px;}
._4_c00096{width:1.497600px;}
._0_c00096{width:2.736000px;}
._8_c00096{width:3.931200px;}
._3_c00096{width:6.170400px;}
._5_c00096{width:8.172000px;}
._9_c00096{width:9.748800px;}
._7_c00096{width:10.800000px;}
._6_c00096{width:12.009600px;}
._b_c00096{width:13.845600px;}
._1_c00096{width:16.020000px;}
._2_c00096{width:21.268800px;}
._a_c00096{width:22.708800px;}
.fc1_c00096{color:transparent;}
.fc0_c00096{color:rgb(0,0,0);}
.fs0_c00096{font-size:72.000000px;}
.y0_c00096{bottom:0.000000px;}
.y5_c00096{bottom:5.040000px;}
.y1_c00096{bottom:12.735000px;}
.y3_c00096{bottom:45.405000px;}
.y4_c00096{bottom:53.100000px;}
.y1f_c00096{bottom:182.924850px;}
.y1e_c00096{bottom:218.924850px;}
.y1d_c00096{bottom:254.924850px;}
.y1c_c00096{bottom:290.924850px;}
.y1b_c00096{bottom:326.924850px;}
.y1a_c00096{bottom:362.924850px;}
.y19_c00096{bottom:398.924850px;}
.y18_c00096{bottom:434.924850px;}
.y17_c00096{bottom:470.924850px;}
.y16_c00096{bottom:506.924850px;}
.y15_c00096{bottom:542.924850px;}
.y14_c00096{bottom:578.924850px;}
.y13_c00096{bottom:614.924850px;}
.y12_c00096{bottom:650.924850px;}
.y11_c00096{bottom:686.924850px;}
.y10_c00096{bottom:722.924850px;}
.yf_c00096{bottom:758.924850px;}
.ye_c00096{bottom:794.924850px;}
.yd_c00096{bottom:830.924850px;}
.yc_c00096{bottom:866.924850px;}
.yb_c00096{bottom:902.924850px;}
.ya_c00096{bottom:938.924850px;}
.y9_c00096{bottom:974.924850px;}
.y8_c00096{bottom:1010.924850px;}
.y7_c00096{bottom:1046.924850px;}
.y6_c00096{bottom:1082.924850px;}
.y2_c00096{bottom:1165.005000px;}
.h4_c00096{height:20.880000px;}
.h5_c00096{height:70.628906px;}
.h3_c00096{height:70.664062px;}
.h2_c00096{height:1237.365000px;}
.h0_c00096{height:1262.835000px;}
.h1_c00096{height:1263.000000px;}
.w3_c00096{width:18.000000px;}
.w2_c00096{width:867.465000px;}
.w0_c00096{width:892.935000px;}
.w1_c00096{width:893.250000px;}
.x0_c00096{left:0.000000px;}
.x1_c00096{left:12.735000px;}
.x3_c00096{left:95.394300px;}
.x5_c00096{left:149.400150px;}
.x4_c00096{left:437.535000px;}
.x2_c00096{left:880.050300px;}
@media print{
.v0_c00096{vertical-align:0.000000pt;}
.ls2_c00096{letter-spacing:-0.012800pt;}
.ls1_c00096{letter-spacing:0.000000pt;}
.ls0_c00096{letter-spacing:0.012800pt;}
.ws0_c00096{word-spacing:0.000000pt;}
._4_c00096{width:1.331200pt;}
._0_c00096{width:2.432000pt;}
._8_c00096{width:3.494400pt;}
._3_c00096{width:5.484800pt;}
._5_c00096{width:7.264000pt;}
._9_c00096{width:8.665600pt;}
._7_c00096{width:9.600000pt;}
._6_c00096{width:10.675200pt;}
._b_c00096{width:12.307200pt;}
._1_c00096{width:14.240000pt;}
._2_c00096{width:18.905600pt;}
._a_c00096{width:20.185600pt;}
.fs0_c00096{font-size:64.000000pt;}
.y0_c00096{bottom:0.000000pt;}
.y5_c00096{bottom:4.480000pt;}
.y1_c00096{bottom:11.320000pt;}
.y3_c00096{bottom:40.360000pt;}
.y4_c00096{bottom:47.200000pt;}
.y1f_c00096{bottom:162.599867pt;}
.y1e_c00096{bottom:194.599867pt;}
.y1d_c00096{bottom:226.599867pt;}
.y1c_c00096{bottom:258.599867pt;}
.y1b_c00096{bottom:290.599867pt;}
.y1a_c00096{bottom:322.599867pt;}
.y19_c00096{bottom:354.599867pt;}
.y18_c00096{bottom:386.599867pt;}
.y17_c00096{bottom:418.599867pt;}
.y16_c00096{bottom:450.599867pt;}
.y15_c00096{bottom:482.599867pt;}
.y14_c00096{bottom:514.599867pt;}
.y13_c00096{bottom:546.599867pt;}
.y12_c00096{bottom:578.599867pt;}
.y11_c00096{bottom:610.599867pt;}
.y10_c00096{bottom:642.599867pt;}
.yf_c00096{bottom:674.599867pt;}
.ye_c00096{bottom:706.599867pt;}
.yd_c00096{bottom:738.599867pt;}
.yc_c00096{bottom:770.599867pt;}
.yb_c00096{bottom:802.599867pt;}
.ya_c00096{bottom:834.599867pt;}
.y9_c00096{bottom:866.599867pt;}
.y8_c00096{bottom:898.599867pt;}
.y7_c00096{bottom:930.599867pt;}
.y6_c00096{bottom:962.599867pt;}
.y2_c00096{bottom:1035.560000pt;}
.h4_c00096{height:18.560000pt;}
.h5_c00096{height:62.781250pt;}
.h3_c00096{height:62.812500pt;}
.h2_c00096{height:1099.880000pt;}
.h0_c00096{height:1122.520000pt;}
.h1_c00096{height:1122.666667pt;}
.w3_c00096{width:16.000000pt;}
.w2_c00096{width:771.080000pt;}
.w0_c00096{width:793.720000pt;}
.w1_c00096{width:794.000000pt;}
.x0_c00096{left:0.000000pt;}
.x1_c00096{left:11.320000pt;}
.x3_c00096{left:84.794933pt;}
.x5_c00096{left:132.800133pt;}
.x4_c00096{left:388.920000pt;}
.x2_c00096{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c67271dbb14e352db49de07.woff2')format("woff");}.ff1_c00097{font-family:ff1_c00097;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00097;src:url('chunks/assets/font_9270449b7d40c342e37e77f6.woff2')format("woff");}.ff2_c00097{font-family:ff2_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;}
.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;}
.ls3_c00097{letter-spacing:-0.014400px;}
.ls2_c00097{letter-spacing:0.000000px;}
.ls4_c00097{letter-spacing:0.014400px;}
.ls0_c00097{letter-spacing:2.808000px;}
.ls1_c00097{letter-spacing:3.312000px;}
.sc__c00097{text-shadow:none;}
.sc0_c00097{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00097{-webkit-text-stroke:0px transparent;}
.sc0_c00097{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00097{word-spacing:0.000000px;}
._9_c00097{width:1.008000px;}
._2_c00097{width:2.152800px;}
._3_c00097{width:3.434400px;}
._6_c00097{width:4.528800px;}
._7_c00097{width:6.516000px;}
._1_c00097{width:8.308800px;}
._a_c00097{width:10.238400px;}
._5_c00097{width:11.851200px;}
._8_c00097{width:13.824000px;}
._b_c00097{width:15.825600px;}
._4_c00097{width:19.144800px;}
._0_c00097{width:21.535200px;}
.fc1_c00097{color:transparent;}
.fc0_c00097{color:rgb(0,0,0);}
.fs0_c00097{font-size:72.000000px;}
.y0_c00097{bottom:0.000000px;}
.y5_c00097{bottom:1.440000px;}
.y1_c00097{bottom:12.735000px;}
.y3_c00097{bottom:45.405000px;}
.y4_c00097{bottom:56.700000px;}
.y21_c00097{bottom:110.924850px;}
.y20_c00097{bottom:146.924850px;}
.y1f_c00097{bottom:182.924850px;}
.y1e_c00097{bottom:218.924850px;}
.y1d_c00097{bottom:254.924850px;}
.y1c_c00097{bottom:290.924850px;}
.y1b_c00097{bottom:326.924850px;}
.y1a_c00097{bottom:362.924850px;}
.y19_c00097{bottom:398.924850px;}
.y18_c00097{bottom:434.924850px;}
.y17_c00097{bottom:470.924850px;}
.y16_c00097{bottom:506.924850px;}
.y15_c00097{bottom:542.924850px;}
.y14_c00097{bottom:578.924850px;}
.y13_c00097{bottom:614.924850px;}
.y12_c00097{bottom:650.924850px;}
.y11_c00097{bottom:686.924850px;}
.y10_c00097{bottom:722.924850px;}
.yf_c00097{bottom:758.924850px;}
.ye_c00097{bottom:794.924850px;}
.yd_c00097{bottom:830.924850px;}
.yc_c00097{bottom:866.924850px;}
.yb_c00097{bottom:902.924850px;}
.ya_c00097{bottom:938.924850px;}
.y9_c00097{bottom:974.924850px;}
.y8_c00097{bottom:1010.924850px;}
.y7_c00097{bottom:1046.924850px;}
.y6_c00097{bottom:1082.924850px;}
.y2_c00097{bottom:1165.005000px;}
.h4_c00097{height:17.280000px;}
.h5_c00097{height:70.628906px;}
.h3_c00097{height:70.664062px;}
.h2_c00097{height:1237.365000px;}
.h0_c00097{height:1262.835000px;}
.h1_c00097{height:1263.000000px;}
.w3_c00097{width:47.520000px;}
.w2_c00097{width:867.465000px;}
.w0_c00097{width:892.935000px;}
.w1_c00097{width:893.250000px;}
.x0_c00097{left:0.000000px;}
.x1_c00097{left:12.735000px;}
.x5_c00097{left:14.737500px;}
.x3_c00097{left:95.394300px;}
.x6_c00097{left:149.400150px;}
.x4_c00097{left:422.775000px;}
.x2_c00097{left:880.050300px;}
@media print{
.v0_c00097{vertical-align:0.000000pt;}
.ls3_c00097{letter-spacing:-0.012800pt;}
.ls2_c00097{letter-spacing:0.000000pt;}
.ls4_c00097{letter-spacing:0.012800pt;}
.ls0_c00097{letter-spacing:2.496000pt;}
.ls1_c00097{letter-spacing:2.944000pt;}
.ws0_c00097{word-spacing:0.000000pt;}
._9_c00097{width:0.896000pt;}
._2_c00097{width:1.913600pt;}
._3_c00097{width:3.052800pt;}
._6_c00097{width:4.025600pt;}
._7_c00097{width:5.792000pt;}
._1_c00097{width:7.385600pt;}
._a_c00097{width:9.100800pt;}
._5_c00097{width:10.534400pt;}
._8_c00097{width:12.288000pt;}
._b_c00097{width:14.067200pt;}
._4_c00097{width:17.017600pt;}
._0_c00097{width:19.142400pt;}
.fs0_c00097{font-size:64.000000pt;}
.y0_c00097{bottom:0.000000pt;}
.y5_c00097{bottom:1.280000pt;}
.y1_c00097{bottom:11.320000pt;}
.y3_c00097{bottom:40.360000pt;}
.y4_c00097{bottom:50.400000pt;}
.y21_c00097{bottom:98.599867pt;}
.y20_c00097{bottom:130.599867pt;}
.y1f_c00097{bottom:162.599867pt;}
.y1e_c00097{bottom:194.599867pt;}
.y1d_c00097{bottom:226.599867pt;}
.y1c_c00097{bottom:258.599867pt;}
.y1b_c00097{bottom:290.599867pt;}
.y1a_c00097{bottom:322.599867pt;}
.y19_c00097{bottom:354.599867pt;}
.y18_c00097{bottom:386.599867pt;}
.y17_c00097{bottom:418.599867pt;}
.y16_c00097{bottom:450.599867pt;}
.y15_c00097{bottom:482.599867pt;}
.y14_c00097{bottom:514.599867pt;}
.y13_c00097{bottom:546.599867pt;}
.y12_c00097{bottom:578.599867pt;}
.y11_c00097{bottom:610.599867pt;}
.y10_c00097{bottom:642.599867pt;}
.yf_c00097{bottom:674.599867pt;}
.ye_c00097{bottom:706.599867pt;}
.yd_c00097{bottom:738.599867pt;}
.yc_c00097{bottom:770.599867pt;}
.yb_c00097{bottom:802.599867pt;}
.ya_c00097{bottom:834.599867pt;}
.y9_c00097{bottom:866.599867pt;}
.y8_c00097{bottom:898.599867pt;}
.y7_c00097{bottom:930.599867pt;}
.y6_c00097{bottom:962.599867pt;}
.y2_c00097{bottom:1035.560000pt;}
.h4_c00097{height:15.360000pt;}
.h5_c00097{height:62.781250pt;}
.h3_c00097{height:62.812500pt;}
.h2_c00097{height:1099.880000pt;}
.h0_c00097{height:1122.520000pt;}
.h1_c00097{height:1122.666667pt;}
.w3_c00097{width:42.240000pt;}
.w2_c00097{width:771.080000pt;}
.w0_c00097{width:793.720000pt;}
.w1_c00097{width:794.000000pt;}
.x0_c00097{left:0.000000pt;}
.x1_c00097{left:11.320000pt;}
.x5_c00097{left:13.100000pt;}
.x3_c00097{left:84.794933pt;}
.x6_c00097{left:132.800133pt;}
.x4_c00097{left:375.800000pt;}
.x2_c00097{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9b25eb3c9ff8e12f0fae84cd.woff2')format("woff");}.ff1_c00098{font-family:ff1_c00098;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00098;src:url('chunks/assets/font_e6fe02b2e97b99576c7fe721.woff2')format("woff");}.ff2_c00098{font-family:ff2_c00098;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00098{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00098{vertical-align:0.000000px;}
.ls0_c00098{letter-spacing:0.000000px;}
.ls1_c00098{letter-spacing:1.159200px;}
.sc__c00098{text-shadow:none;}
.sc0_c00098{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00098{-webkit-text-stroke:0px transparent;}
.sc0_c00098{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00098{word-spacing:0.000000px;}
._6_c00098{margin-left:-1.684800px;}
._5_c00098{width:1.180800px;}
._9_c00098{width:2.685600px;}
._3_c00098{width:3.751200px;}
._b_c00098{width:4.759200px;}
._7_c00098{width:5.853600px;}
._8_c00098{width:7.308000px;}
._1_c00098{width:8.532000px;}
._a_c00098{width:10.332000px;}
._2_c00098{width:16.768800px;}
._4_c00098{width:19.641600px;}
._0_c00098{width:30.758400px;}
.fc1_c00098{color:transparent;}
.fc0_c00098{color:rgb(0,0,0);}
.fs0_c00098{font-size:72.000000px;}
.y0_c00098{bottom:0.000000px;}
.y5_c00098{bottom:5.040000px;}
.y1_c00098{bottom:12.735000px;}
.y3_c00098{bottom:45.405000px;}
.y4_c00098{bottom:53.100000px;}
.y21_c00098{bottom:110.924850px;}
.y20_c00098{bottom:146.924850px;}
.y1f_c00098{bottom:182.924850px;}
.y1e_c00098{bottom:218.924850px;}
.y1d_c00098{bottom:254.924850px;}
.y1c_c00098{bottom:290.924850px;}
.y1b_c00098{bottom:326.924850px;}
.y1a_c00098{bottom:362.924850px;}
.y19_c00098{bottom:398.924850px;}
.y18_c00098{bottom:434.924850px;}
.y17_c00098{bottom:470.924850px;}
.y16_c00098{bottom:506.924850px;}
.y15_c00098{bottom:542.924850px;}
.y14_c00098{bottom:578.924850px;}
.y13_c00098{bottom:614.924850px;}
.y12_c00098{bottom:650.924850px;}
.y11_c00098{bottom:686.924850px;}
.y10_c00098{bottom:722.924850px;}
.yf_c00098{bottom:758.924850px;}
.ye_c00098{bottom:794.924850px;}
.yd_c00098{bottom:830.924850px;}
.yc_c00098{bottom:866.924850px;}
.yb_c00098{bottom:902.924850px;}
.ya_c00098{bottom:938.924850px;}
.y9_c00098{bottom:974.924850px;}
.y8_c00098{bottom:1010.924850px;}
.y7_c00098{bottom:1046.924850px;}
.y6_c00098{bottom:1082.924850px;}
.y2_c00098{bottom:1165.005000px;}
.h4_c00098{height:20.880000px;}
.h3_c00098{height:70.664062px;}
.h2_c00098{height:1237.365000px;}
.h0_c00098{height:1262.835000px;}
.h1_c00098{height:1263.000000px;}
.w3_c00098{width:18.000000px;}
.w2_c00098{width:867.465000px;}
.w0_c00098{width:892.935000px;}
.w1_c00098{width:893.250000px;}
.x0_c00098{left:0.000000px;}
.x1_c00098{left:12.735000px;}
.x3_c00098{left:95.394300px;}
.x5_c00098{left:149.400150px;}
.x4_c00098{left:437.535000px;}
.x2_c00098{left:880.050300px;}
@media print{
.v0_c00098{vertical-align:0.000000pt;}
.ls0_c00098{letter-spacing:0.000000pt;}
.ls1_c00098{letter-spacing:1.030400pt;}
.ws0_c00098{word-spacing:0.000000pt;}
._6_c00098{margin-left:-1.497600pt;}
._5_c00098{width:1.049600pt;}
._9_c00098{width:2.387200pt;}
._3_c00098{width:3.334400pt;}
._b_c00098{width:4.230400pt;}
._7_c00098{width:5.203200pt;}
._8_c00098{width:6.496000pt;}
._1_c00098{width:7.584000pt;}
._a_c00098{width:9.184000pt;}
._2_c00098{width:14.905600pt;}
._4_c00098{width:17.459200pt;}
._0_c00098{width:27.340800pt;}
.fs0_c00098{font-size:64.000000pt;}
.y0_c00098{bottom:0.000000pt;}
.y5_c00098{bottom:4.480000pt;}
.y1_c00098{bottom:11.320000pt;}
.y3_c00098{bottom:40.360000pt;}
.y4_c00098{bottom:47.200000pt;}
.y21_c00098{bottom:98.599867pt;}
.y20_c00098{bottom:130.599867pt;}
.y1f_c00098{bottom:162.599867pt;}
.y1e_c00098{bottom:194.599867pt;}
.y1d_c00098{bottom:226.599867pt;}
.y1c_c00098{bottom:258.599867pt;}
.y1b_c00098{bottom:290.599867pt;}
.y1a_c00098{bottom:322.599867pt;}
.y19_c00098{bottom:354.599867pt;}
.y18_c00098{bottom:386.599867pt;}
.y17_c00098{bottom:418.599867pt;}
.y16_c00098{bottom:450.599867pt;}
.y15_c00098{bottom:482.599867pt;}
.y14_c00098{bottom:514.599867pt;}
.y13_c00098{bottom:546.599867pt;}
.y12_c00098{bottom:578.599867pt;}
.y11_c00098{bottom:610.599867pt;}
.y10_c00098{bottom:642.599867pt;}
.yf_c00098{bottom:674.599867pt;}
.ye_c00098{bottom:706.599867pt;}
.yd_c00098{bottom:738.599867pt;}
.yc_c00098{bottom:770.599867pt;}
.yb_c00098{bottom:802.599867pt;}
.ya_c00098{bottom:834.599867pt;}
.y9_c00098{bottom:866.599867pt;}
.y8_c00098{bottom:898.599867pt;}
.y7_c00098{bottom:930.599867pt;}
.y6_c00098{bottom:962.599867pt;}
.y2_c00098{bottom:1035.560000pt;}
.h4_c00098{height:18.560000pt;}
.h3_c00098{height:62.812500pt;}
.h2_c00098{height:1099.880000pt;}
.h0_c00098{height:1122.520000pt;}
.h1_c00098{height:1122.666667pt;}
.w3_c00098{width:16.000000pt;}
.w2_c00098{width:771.080000pt;}
.w0_c00098{width:793.720000pt;}
.w1_c00098{width:794.000000pt;}
.x0_c00098{left:0.000000pt;}
.x1_c00098{left:11.320000pt;}
.x3_c00098{left:84.794933pt;}
.x5_c00098{left:132.800133pt;}
.x4_c00098{left:388.920000pt;}
.x2_c00098{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e1b3d593dcf5ae78c972f0fd.woff2')format("woff");}.ff1_c00099{font-family:ff1_c00099;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00099;src:url('chunks/assets/font_5dde864a2f9dac24e72887c6.woff2')format("woff");}.ff2_c00099{font-family:ff2_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;}
.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;}
.ls1_c00099{letter-spacing:0.000000px;}
.ls0_c00099{letter-spacing:0.014400px;}
.sc__c00099{text-shadow:none;}
.sc0_c00099{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00099{-webkit-text-stroke:0px transparent;}
.sc0_c00099{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00099{word-spacing:0.000000px;}
._3_c00099{width:1.008000px;}
._7_c00099{width:2.736000px;}
._9_c00099{width:4.521600px;}
._5_c00099{width:6.192000px;}
._a_c00099{width:7.646400px;}
._6_c00099{width:8.784000px;}
._0_c00099{width:10.317600px;}
._1_c00099{width:11.800800px;}
._c_c00099{width:12.952800px;}
._2_c00099{width:14.011200px;}
._4_c00099{width:19.058400px;}
._b_c00099{width:21.117600px;}
._8_c00099{width:22.140000px;}
.fc1_c00099{color:transparent;}
.fc0_c00099{color:rgb(0,0,0);}
.fs0_c00099{font-size:72.000000px;}
.y0_c00099{bottom:0.000000px;}
.y5_c00099{bottom:1.440000px;}
.y1_c00099{bottom:12.735000px;}
.y3_c00099{bottom:45.405000px;}
.y4_c00099{bottom:56.700000px;}
.y21_c00099{bottom:110.924850px;}
.y20_c00099{bottom:146.924850px;}
.y1f_c00099{bottom:182.924850px;}
.y1e_c00099{bottom:218.924850px;}
.y1d_c00099{bottom:254.924850px;}
.y1c_c00099{bottom:290.924850px;}
.y1b_c00099{bottom:326.924850px;}
.y1a_c00099{bottom:362.924850px;}
.y19_c00099{bottom:398.924850px;}
.y18_c00099{bottom:434.924850px;}
.y17_c00099{bottom:470.924850px;}
.y16_c00099{bottom:506.924850px;}
.y15_c00099{bottom:542.924850px;}
.y14_c00099{bottom:578.924850px;}
.y13_c00099{bottom:614.924850px;}
.y12_c00099{bottom:650.924850px;}
.y11_c00099{bottom:686.924850px;}
.y10_c00099{bottom:722.924850px;}
.yf_c00099{bottom:758.924850px;}
.ye_c00099{bottom:794.924850px;}
.yd_c00099{bottom:830.924850px;}
.yc_c00099{bottom:866.924850px;}
.yb_c00099{bottom:902.924850px;}
.ya_c00099{bottom:938.924850px;}
.y9_c00099{bottom:974.924850px;}
.y8_c00099{bottom:1010.924850px;}
.y7_c00099{bottom:1046.924850px;}
.y6_c00099{bottom:1082.924850px;}
.y2_c00099{bottom:1165.005000px;}
.h4_c00099{height:17.280000px;}
.h3_c00099{height:70.664062px;}
.h2_c00099{height:1237.365000px;}
.h0_c00099{height:1262.835000px;}
.h1_c00099{height:1263.000000px;}
.w3_c00099{width:47.520000px;}
.w2_c00099{width:867.465000px;}
.w0_c00099{width:892.935000px;}
.w1_c00099{width:893.250000px;}
.x0_c00099{left:0.000000px;}
.x1_c00099{left:12.735000px;}
.x5_c00099{left:14.737500px;}
.x3_c00099{left:95.394300px;}
.x6_c00099{left:149.400150px;}
.x4_c00099{left:422.775000px;}
.x2_c00099{left:880.050300px;}
@media print{
.v0_c00099{vertical-align:0.000000pt;}
.ls1_c00099{letter-spacing:0.000000pt;}
.ls0_c00099{letter-spacing:0.012800pt;}
.ws0_c00099{word-spacing:0.000000pt;}
._3_c00099{width:0.896000pt;}
._7_c00099{width:2.432000pt;}
._9_c00099{width:4.019200pt;}
._5_c00099{width:5.504000pt;}
._a_c00099{width:6.796800pt;}
._6_c00099{width:7.808000pt;}
._0_c00099{width:9.171200pt;}
._1_c00099{width:10.489600pt;}
._c_c00099{width:11.513600pt;}
._2_c00099{width:12.454400pt;}
._4_c00099{width:16.940800pt;}
._b_c00099{width:18.771200pt;}
._8_c00099{width:19.680000pt;}
.fs0_c00099{font-size:64.000000pt;}
.y0_c00099{bottom:0.000000pt;}
.y5_c00099{bottom:1.280000pt;}
.y1_c00099{bottom:11.320000pt;}
.y3_c00099{bottom:40.360000pt;}
.y4_c00099{bottom:50.400000pt;}
.y21_c00099{bottom:98.599867pt;}
.y20_c00099{bottom:130.599867pt;}
.y1f_c00099{bottom:162.599867pt;}
.y1e_c00099{bottom:194.599867pt;}
.y1d_c00099{bottom:226.599867pt;}
.y1c_c00099{bottom:258.599867pt;}
.y1b_c00099{bottom:290.599867pt;}
.y1a_c00099{bottom:322.599867pt;}
.y19_c00099{bottom:354.599867pt;}
.y18_c00099{bottom:386.599867pt;}
.y17_c00099{bottom:418.599867pt;}
.y16_c00099{bottom:450.599867pt;}
.y15_c00099{bottom:482.599867pt;}
.y14_c00099{bottom:514.599867pt;}
.y13_c00099{bottom:546.599867pt;}
.y12_c00099{bottom:578.599867pt;}
.y11_c00099{bottom:610.599867pt;}
.y10_c00099{bottom:642.599867pt;}
.yf_c00099{bottom:674.599867pt;}
.ye_c00099{bottom:706.599867pt;}
.yd_c00099{bottom:738.599867pt;}
.yc_c00099{bottom:770.599867pt;}
.yb_c00099{bottom:802.599867pt;}
.ya_c00099{bottom:834.599867pt;}
.y9_c00099{bottom:866.599867pt;}
.y8_c00099{bottom:898.599867pt;}
.y7_c00099{bottom:930.599867pt;}
.y6_c00099{bottom:962.599867pt;}
.y2_c00099{bottom:1035.560000pt;}
.h4_c00099{height:15.360000pt;}
.h3_c00099{height:62.812500pt;}
.h2_c00099{height:1099.880000pt;}
.h0_c00099{height:1122.520000pt;}
.h1_c00099{height:1122.666667pt;}
.w3_c00099{width:42.240000pt;}
.w2_c00099{width:771.080000pt;}
.w0_c00099{width:793.720000pt;}
.w1_c00099{width:794.000000pt;}
.x0_c00099{left:0.000000pt;}
.x1_c00099{left:11.320000pt;}
.x5_c00099{left:13.100000pt;}
.x3_c00099{left:84.794933pt;}
.x6_c00099{left:132.800133pt;}
.x4_c00099{left:375.800000pt;}
.x2_c00099{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e3e18e46f7597f5393d2c654.woff2')format("woff");}.ff1_c00100{font-family:ff1_c00100;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00100{letter-spacing:0.000000px;}
.sc__c00100{text-shadow:none;}
.sc0_c00100{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00100{-webkit-text-stroke:0px transparent;}
.sc0_c00100{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00100{word-spacing:0.000000px;}
._3_c00100{width:1.562400px;}
._0_c00100{width:2.671200px;}
._7_c00100{width:4.608000px;}
._9_c00100{width:5.688000px;}
._b_c00100{width:6.696000px;}
._1_c00100{width:7.984800px;}
._a_c00100{width:9.799200px;}
._8_c00100{width:11.700000px;}
._6_c00100{width:12.808800px;}
._5_c00100{width:19.080000px;}
._4_c00100{width:20.131200px;}
._2_c00100{width:21.384000px;}
.fc1_c00100{color:transparent;}
.fc0_c00100{color:rgb(0,0,0);}
.fs0_c00100{font-size:72.000000px;}
.y0_c00100{bottom:0.000000px;}
.y5_c00100{bottom:5.040000px;}
.y1_c00100{bottom:12.735000px;}
.y3_c00100{bottom:45.405000px;}
.y4_c00100{bottom:53.100000px;}
.y19_c00100{bottom:398.924850px;}
.y18_c00100{bottom:434.924850px;}
.y17_c00100{bottom:470.924850px;}
.y16_c00100{bottom:506.924850px;}
.y15_c00100{bottom:542.924850px;}
.y14_c00100{bottom:578.924850px;}
.y13_c00100{bottom:614.924850px;}
.y12_c00100{bottom:650.924850px;}
.y11_c00100{bottom:686.924850px;}
.y10_c00100{bottom:722.924850px;}
.yf_c00100{bottom:758.924850px;}
.ye_c00100{bottom:794.924850px;}
.yd_c00100{bottom:830.924850px;}
.yc_c00100{bottom:866.924850px;}
.yb_c00100{bottom:902.924850px;}
.ya_c00100{bottom:938.924850px;}
.y9_c00100{bottom:974.924850px;}
.y8_c00100{bottom:1010.924850px;}
.y7_c00100{bottom:1046.924850px;}
.y6_c00100{bottom:1082.924850px;}
.y2_c00100{bottom:1165.005000px;}
.h4_c00100{height:20.880000px;}
.h3_c00100{height:70.664062px;}
.h2_c00100{height:1237.365000px;}
.h0_c00100{height:1262.835000px;}
.h1_c00100{height:1263.000000px;}
.w3_c00100{width:18.000000px;}
.w2_c00100{width:867.465000px;}
.w0_c00100{width:892.935000px;}
.w1_c00100{width:893.250000px;}
.x0_c00100{left:0.000000px;}
.x1_c00100{left:12.735000px;}
.x3_c00100{left:95.394300px;}
.x5_c00100{left:149.400150px;}
.x4_c00100{left:437.535000px;}
.x2_c00100{left:880.050300px;}
@media print{
.v0_c00100{vertical-align:0.000000pt;}
.ls0_c00100{letter-spacing:0.000000pt;}
.ws0_c00100{word-spacing:0.000000pt;}
._3_c00100{width:1.388800pt;}
._0_c00100{width:2.374400pt;}
._7_c00100{width:4.096000pt;}
._9_c00100{width:5.056000pt;}
._b_c00100{width:5.952000pt;}
._1_c00100{width:7.097600pt;}
._a_c00100{width:8.710400pt;}
._8_c00100{width:10.400000pt;}
._6_c00100{width:11.385600pt;}
._5_c00100{width:16.960000pt;}
._4_c00100{width:17.894400pt;}
._2_c00100{width:19.008000pt;}
.fs0_c00100{font-size:64.000000pt;}
.y0_c00100{bottom:0.000000pt;}
.y5_c00100{bottom:4.480000pt;}
.y1_c00100{bottom:11.320000pt;}
.y3_c00100{bottom:40.360000pt;}
.y4_c00100{bottom:47.200000pt;}
.y19_c00100{bottom:354.599867pt;}
.y18_c00100{bottom:386.599867pt;}
.y17_c00100{bottom:418.599867pt;}
.y16_c00100{bottom:450.599867pt;}
.y15_c00100{bottom:482.599867pt;}
.y14_c00100{bottom:514.599867pt;}
.y13_c00100{bottom:546.599867pt;}
.y12_c00100{bottom:578.599867pt;}
.y11_c00100{bottom:610.599867pt;}
.y10_c00100{bottom:642.599867pt;}
.yf_c00100{bottom:674.599867pt;}
.ye_c00100{bottom:706.599867pt;}
.yd_c00100{bottom:738.599867pt;}
.yc_c00100{bottom:770.599867pt;}
.yb_c00100{bottom:802.599867pt;}
.ya_c00100{bottom:834.599867pt;}
.y9_c00100{bottom:866.599867pt;}
.y8_c00100{bottom:898.599867pt;}
.y7_c00100{bottom:930.599867pt;}
.y6_c00100{bottom:962.599867pt;}
.y2_c00100{bottom:1035.560000pt;}
.h4_c00100{height:18.560000pt;}
.h3_c00100{height:62.812500pt;}
.h2_c00100{height:1099.880000pt;}
.h0_c00100{height:1122.520000pt;}
.h1_c00100{height:1122.666667pt;}
.w3_c00100{width:16.000000pt;}
.w2_c00100{width:771.080000pt;}
.w0_c00100{width:793.720000pt;}
.w1_c00100{width:794.000000pt;}
.x0_c00100{left:0.000000pt;}
.x1_c00100{left:11.320000pt;}
.x3_c00100{left:84.794933pt;}
.x5_c00100{left:132.800133pt;}
.x4_c00100{left:388.920000pt;}
.x2_c00100{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1937a49e17b2f205a4b1a978.woff2')format("woff");}.ff1_c00101{font-family:ff1_c00101;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00101;src:url('chunks/assets/font_c5d92a75dae7caf9fc2565fc.woff2')format("woff");}.ff2_c00101{font-family:ff2_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;}
.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;}
.ls2_c00101{letter-spacing:0.000000px;}
.ls3_c00101{letter-spacing:0.116928px;}
.ls0_c00101{letter-spacing:0.242208px;}
.ls1_c00101{letter-spacing:0.283968px;}
.sc__c00101{text-shadow:none;}
.sc0_c00101{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00101{-webkit-text-stroke:0px transparent;}
.sc0_c00101{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00101{word-spacing:-21.122208px;}
.ws1_c00101{word-spacing:0.000000px;}
._0_c00101{width:1.166400px;}
._4_c00101{width:2.390400px;}
._5_c00101{width:3.420000px;}
._3_c00101{width:4.888800px;}
._7_c00101{width:6.076800px;}
._1_c00101{width:7.149600px;}
._6_c00101{width:9.187200px;}
._9_c00101{width:16.934400px;}
._8_c00101{width:21.067200px;}
._2_c00101{width:23.184000px;}
.fc2_c00101{color:transparent;}
.fc1_c00101{color:rgb(127,127,127);}
.fc0_c00101{color:rgb(0,0,0);}
.fs0_c00101{font-size:72.000000px;}
.fs1_c00101{font-size:83.520000px;}
.y0_c00101{bottom:0.000000px;}
.y5_c00101{bottom:1.440000px;}
.y1_c00101{bottom:12.735000px;}
.y3_c00101{bottom:45.405000px;}
.y4_c00101{bottom:56.700000px;}
.y21_c00101{bottom:110.924850px;}
.y20_c00101{bottom:146.924850px;}
.y1f_c00101{bottom:182.924850px;}
.y1e_c00101{bottom:218.924850px;}
.y1d_c00101{bottom:254.924850px;}
.y1c_c00101{bottom:290.924850px;}
.y1b_c00101{bottom:326.924850px;}
.y1a_c00101{bottom:362.924850px;}
.y19_c00101{bottom:398.924850px;}
.y18_c00101{bottom:434.924850px;}
.y17_c00101{bottom:470.924850px;}
.y16_c00101{bottom:506.924850px;}
.y15_c00101{bottom:542.924850px;}
.y14_c00101{bottom:578.924850px;}
.y13_c00101{bottom:614.924850px;}
.y12_c00101{bottom:650.924850px;}
.y11_c00101{bottom:686.924850px;}
.y10_c00101{bottom:722.924850px;}
.yf_c00101{bottom:758.924850px;}
.ye_c00101{bottom:794.924850px;}
.yd_c00101{bottom:830.924850px;}
.yc_c00101{bottom:866.924850px;}
.yb_c00101{bottom:902.924850px;}
.ya_c00101{bottom:938.924850px;}
.y9_c00101{bottom:974.924850px;}
.y8_c00101{bottom:1010.924850px;}
.y7_c00101{bottom:1046.924850px;}
.y6_c00101{bottom:1083.645000px;}
.y2_c00101{bottom:1165.005000px;}
.h4_c00101{height:17.280000px;}
.h6_c00101{height:70.628906px;}
.h3_c00101{height:70.664062px;}
.h5_c00101{height:81.929531px;}
.h2_c00101{height:1237.365000px;}
.h0_c00101{height:1262.835000px;}
.h1_c00101{height:1263.000000px;}
.w3_c00101{width:47.520000px;}
.w2_c00101{width:867.465000px;}
.w0_c00101{width:892.935000px;}
.w1_c00101{width:893.250000px;}
.x0_c00101{left:0.000000px;}
.x1_c00101{left:12.735000px;}
.x5_c00101{left:14.737500px;}
.x3_c00101{left:95.394300px;}
.x6_c00101{left:149.400150px;}
.x4_c00101{left:422.775000px;}
.x2_c00101{left:880.050300px;}
@media print{
.v0_c00101{vertical-align:0.000000pt;}
.ls2_c00101{letter-spacing:0.000000pt;}
.ls3_c00101{letter-spacing:0.103936pt;}
.ls0_c00101{letter-spacing:0.215296pt;}
.ls1_c00101{letter-spacing:0.252416pt;}
.ws0_c00101{word-spacing:-18.775296pt;}
.ws1_c00101{word-spacing:0.000000pt;}
._0_c00101{width:1.036800pt;}
._4_c00101{width:2.124800pt;}
._5_c00101{width:3.040000pt;}
._3_c00101{width:4.345600pt;}
._7_c00101{width:5.401600pt;}
._1_c00101{width:6.355200pt;}
._6_c00101{width:8.166400pt;}
._9_c00101{width:15.052800pt;}
._8_c00101{width:18.726400pt;}
._2_c00101{width:20.608000pt;}
.fs0_c00101{font-size:64.000000pt;}
.fs1_c00101{font-size:74.240000pt;}
.y0_c00101{bottom:0.000000pt;}
.y5_c00101{bottom:1.280000pt;}
.y1_c00101{bottom:11.320000pt;}
.y3_c00101{bottom:40.360000pt;}
.y4_c00101{bottom:50.400000pt;}
.y21_c00101{bottom:98.599867pt;}
.y20_c00101{bottom:130.599867pt;}
.y1f_c00101{bottom:162.599867pt;}
.y1e_c00101{bottom:194.599867pt;}
.y1d_c00101{bottom:226.599867pt;}
.y1c_c00101{bottom:258.599867pt;}
.y1b_c00101{bottom:290.599867pt;}
.y1a_c00101{bottom:322.599867pt;}
.y19_c00101{bottom:354.599867pt;}
.y18_c00101{bottom:386.599867pt;}
.y17_c00101{bottom:418.599867pt;}
.y16_c00101{bottom:450.599867pt;}
.y15_c00101{bottom:482.599867pt;}
.y14_c00101{bottom:514.599867pt;}
.y13_c00101{bottom:546.599867pt;}
.y12_c00101{bottom:578.599867pt;}
.y11_c00101{bottom:610.599867pt;}
.y10_c00101{bottom:642.599867pt;}
.yf_c00101{bottom:674.599867pt;}
.ye_c00101{bottom:706.599867pt;}
.yd_c00101{bottom:738.599867pt;}
.yc_c00101{bottom:770.599867pt;}
.yb_c00101{bottom:802.599867pt;}
.ya_c00101{bottom:834.599867pt;}
.y9_c00101{bottom:866.599867pt;}
.y8_c00101{bottom:898.599867pt;}
.y7_c00101{bottom:930.599867pt;}
.y6_c00101{bottom:963.240000pt;}
.y2_c00101{bottom:1035.560000pt;}
.h4_c00101{height:15.360000pt;}
.h6_c00101{height:62.781250pt;}
.h3_c00101{height:62.812500pt;}
.h5_c00101{height:72.826250pt;}
.h2_c00101{height:1099.880000pt;}
.h0_c00101{height:1122.520000pt;}
.h1_c00101{height:1122.666667pt;}
.w3_c00101{width:42.240000pt;}
.w2_c00101{width:771.080000pt;}
.w0_c00101{width:793.720000pt;}
.w1_c00101{width:794.000000pt;}
.x0_c00101{left:0.000000pt;}
.x1_c00101{left:11.320000pt;}
.x5_c00101{left:13.100000pt;}
.x3_c00101{left:84.794933pt;}
.x6_c00101{left:132.800133pt;}
.x4_c00101{left:375.800000pt;}
.x2_c00101{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dcfb9ac91fc1693226954b57.woff2')format("woff");}.ff1_c00102{font-family:ff1_c00102;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00102;src:url('chunks/assets/font_9d6bf2d06017f6748586f67e.woff2')format("woff");}.ff2_c00102{font-family:ff2_c00102;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00102{letter-spacing:-0.014400px;}
.ls0_c00102{letter-spacing:0.000000px;}
.ls2_c00102{letter-spacing:30.967200px;}
.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:0.000000px;}
._9_c00102{margin-left:-31.060800px;}
._3_c00102{width:2.671200px;}
._7_c00102{width:4.003200px;}
._6_c00102{width:5.018400px;}
._b_c00102{width:6.127200px;}
._5_c00102{width:7.135200px;}
._a_c00102{width:9.424800px;}
._4_c00102{width:11.253600px;}
._0_c00102{width:13.190400px;}
._1_c00102{width:14.752800px;}
._2_c00102{width:16.531200px;}
._c_c00102{width:22.536000px;}
._8_c00102{width:30.967200px;}
.fc1_c00102{color:transparent;}
.fc0_c00102{color:rgb(0,0,0);}
.fs0_c00102{font-size:72.000000px;}
.y0_c00102{bottom:0.000000px;}
.y5_c00102{bottom:5.040000px;}
.y1_c00102{bottom:12.735000px;}
.y3_c00102{bottom:45.405000px;}
.y4_c00102{bottom:53.100000px;}
.y21_c00102{bottom:110.924850px;}
.y20_c00102{bottom:146.924850px;}
.y1f_c00102{bottom:182.924850px;}
.y1e_c00102{bottom:218.924850px;}
.y1d_c00102{bottom:254.924850px;}
.y1c_c00102{bottom:290.924850px;}
.y1b_c00102{bottom:326.924850px;}
.y1a_c00102{bottom:362.924850px;}
.y19_c00102{bottom:398.924850px;}
.y18_c00102{bottom:434.924850px;}
.y17_c00102{bottom:470.924850px;}
.y16_c00102{bottom:506.924850px;}
.y15_c00102{bottom:542.924850px;}
.y14_c00102{bottom:578.924850px;}
.y13_c00102{bottom:614.924850px;}
.y12_c00102{bottom:650.924850px;}
.y11_c00102{bottom:686.924850px;}
.y10_c00102{bottom:722.924850px;}
.yf_c00102{bottom:758.924850px;}
.ye_c00102{bottom:794.924850px;}
.yd_c00102{bottom:830.924850px;}
.yc_c00102{bottom:866.924850px;}
.yb_c00102{bottom:902.924850px;}
.ya_c00102{bottom:938.924850px;}
.y9_c00102{bottom:974.924850px;}
.y8_c00102{bottom:1010.924850px;}
.y7_c00102{bottom:1046.924850px;}
.y6_c00102{bottom:1082.924850px;}
.y2_c00102{bottom:1165.005000px;}
.h4_c00102{height:20.880000px;}
.h3_c00102{height:70.664062px;}
.h2_c00102{height:1237.365000px;}
.h0_c00102{height:1262.835000px;}
.h1_c00102{height:1263.000000px;}
.w3_c00102{width:18.000000px;}
.w2_c00102{width:867.465000px;}
.w0_c00102{width:892.935000px;}
.w1_c00102{width:893.250000px;}
.x0_c00102{left:0.000000px;}
.x1_c00102{left:12.735000px;}
.x3_c00102{left:95.394300px;}
.x5_c00102{left:149.400150px;}
.x4_c00102{left:437.535000px;}
.x2_c00102{left:880.050300px;}
@media print{
.v0_c00102{vertical-align:0.000000pt;}
.ls1_c00102{letter-spacing:-0.012800pt;}
.ls0_c00102{letter-spacing:0.000000pt;}
.ls2_c00102{letter-spacing:27.526400pt;}
.ws0_c00102{word-spacing:0.000000pt;}
._9_c00102{margin-left:-27.609600pt;}
._3_c00102{width:2.374400pt;}
._7_c00102{width:3.558400pt;}
._6_c00102{width:4.460800pt;}
._b_c00102{width:5.446400pt;}
._5_c00102{width:6.342400pt;}
._a_c00102{width:8.377600pt;}
._4_c00102{width:10.003200pt;}
._0_c00102{width:11.724800pt;}
._1_c00102{width:13.113600pt;}
._2_c00102{width:14.694400pt;}
._c_c00102{width:20.032000pt;}
._8_c00102{width:27.526400pt;}
.fs0_c00102{font-size:64.000000pt;}
.y0_c00102{bottom:0.000000pt;}
.y5_c00102{bottom:4.480000pt;}
.y1_c00102{bottom:11.320000pt;}
.y3_c00102{bottom:40.360000pt;}
.y4_c00102{bottom:47.200000pt;}
.y21_c00102{bottom:98.599867pt;}
.y20_c00102{bottom:130.599867pt;}
.y1f_c00102{bottom:162.599867pt;}
.y1e_c00102{bottom:194.599867pt;}
.y1d_c00102{bottom:226.599867pt;}
.y1c_c00102{bottom:258.599867pt;}
.y1b_c00102{bottom:290.599867pt;}
.y1a_c00102{bottom:322.599867pt;}
.y19_c00102{bottom:354.599867pt;}
.y18_c00102{bottom:386.599867pt;}
.y17_c00102{bottom:418.599867pt;}
.y16_c00102{bottom:450.599867pt;}
.y15_c00102{bottom:482.599867pt;}
.y14_c00102{bottom:514.599867pt;}
.y13_c00102{bottom:546.599867pt;}
.y12_c00102{bottom:578.599867pt;}
.y11_c00102{bottom:610.599867pt;}
.y10_c00102{bottom:642.599867pt;}
.yf_c00102{bottom:674.599867pt;}
.ye_c00102{bottom:706.599867pt;}
.yd_c00102{bottom:738.599867pt;}
.yc_c00102{bottom:770.599867pt;}
.yb_c00102{bottom:802.599867pt;}
.ya_c00102{bottom:834.599867pt;}
.y9_c00102{bottom:866.599867pt;}
.y8_c00102{bottom:898.599867pt;}
.y7_c00102{bottom:930.599867pt;}
.y6_c00102{bottom:962.599867pt;}
.y2_c00102{bottom:1035.560000pt;}
.h4_c00102{height:18.560000pt;}
.h3_c00102{height:62.812500pt;}
.h2_c00102{height:1099.880000pt;}
.h0_c00102{height:1122.520000pt;}
.h1_c00102{height:1122.666667pt;}
.w3_c00102{width:16.000000pt;}
.w2_c00102{width:771.080000pt;}
.w0_c00102{width:793.720000pt;}
.w1_c00102{width:794.000000pt;}
.x0_c00102{left:0.000000pt;}
.x1_c00102{left:11.320000pt;}
.x3_c00102{left:84.794933pt;}
.x5_c00102{left:132.800133pt;}
.x4_c00102{left:388.920000pt;}
.x2_c00102{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2c2f7d1a3676f3ebfb7df81d.woff2')format("woff");}.ff1_c00103{font-family:ff1_c00103;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00103;src:url('chunks/assets/font_e183a15f1dbd6fec9da7066c.woff2')format("woff");}.ff2_c00103{font-family:ff2_c00103;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00103;src:url('chunks/assets/font_07bfa7f6f07dfc82a1d979b7.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;}
.m0_c00103{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00103{vertical-align:0.000000px;}
.ls0_c00103{letter-spacing:0.000000px;}
.sc__c00103{text-shadow:none;}
.sc0_c00103{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00103{-webkit-text-stroke:0px transparent;}
.sc0_c00103{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00103{word-spacing:0.000000px;}
._4_c00103{width:1.879200px;}
._9_c00103{width:3.096000px;}
._0_c00103{width:4.622400px;}
._5_c00103{width:7.020000px;}
._6_c00103{width:8.452800px;}
._2_c00103{width:10.245600px;}
._3_c00103{width:11.649600px;}
._8_c00103{width:13.060800px;}
._7_c00103{width:14.616000px;}
._1_c00103{width:19.137600px;}
.fc1_c00103{color:transparent;}
.fc0_c00103{color:rgb(0,0,0);}
.fs0_c00103{font-size:72.000000px;}
.y0_c00103{bottom:0.000000px;}
.y5_c00103{bottom:1.440000px;}
.y1_c00103{bottom:12.735000px;}
.y3_c00103{bottom:45.405000px;}
.y4_c00103{bottom:56.700000px;}
.y21_c00103{bottom:110.925000px;}
.y20_c00103{bottom:146.925000px;}
.y1f_c00103{bottom:182.925000px;}
.y1e_c00103{bottom:218.925000px;}
.y1d_c00103{bottom:254.925000px;}
.y1c_c00103{bottom:290.925000px;}
.y1b_c00103{bottom:326.925000px;}
.y1a_c00103{bottom:362.925000px;}
.y19_c00103{bottom:398.925000px;}
.y18_c00103{bottom:434.925000px;}
.y17_c00103{bottom:470.925000px;}
.y16_c00103{bottom:506.925000px;}
.y15_c00103{bottom:542.924850px;}
.y14_c00103{bottom:578.924850px;}
.y13_c00103{bottom:614.924850px;}
.y12_c00103{bottom:650.924850px;}
.y11_c00103{bottom:686.924850px;}
.y10_c00103{bottom:722.924850px;}
.yf_c00103{bottom:758.924850px;}
.ye_c00103{bottom:794.924850px;}
.yd_c00103{bottom:830.924850px;}
.yc_c00103{bottom:866.924850px;}
.yb_c00103{bottom:902.924850px;}
.ya_c00103{bottom:938.924850px;}
.y9_c00103{bottom:974.924850px;}
.y8_c00103{bottom:1010.924850px;}
.y7_c00103{bottom:1046.924850px;}
.y6_c00103{bottom:1082.924850px;}
.y2_c00103{bottom:1165.005000px;}
.h4_c00103{height:17.280000px;}
.h6_c00103{height:70.628906px;}
.h5_c00103{height:70.629506px;}
.h3_c00103{height:70.664062px;}
.h2_c00103{height:1237.365000px;}
.h0_c00103{height:1262.835000px;}
.h1_c00103{height:1263.000000px;}
.w3_c00103{width:47.520000px;}
.w2_c00103{width:867.465000px;}
.w0_c00103{width:892.935000px;}
.w1_c00103{width:893.250000px;}
.x0_c00103{left:0.000000px;}
.x1_c00103{left:12.735000px;}
.x5_c00103{left:14.737500px;}
.x3_c00103{left:95.394300px;}
.x6_c00103{left:149.400150px;}
.x4_c00103{left:422.775000px;}
.x2_c00103{left:880.050300px;}
@media print{
.v0_c00103{vertical-align:0.000000pt;}
.ls0_c00103{letter-spacing:0.000000pt;}
.ws0_c00103{word-spacing:0.000000pt;}
._4_c00103{width:1.670400pt;}
._9_c00103{width:2.752000pt;}
._0_c00103{width:4.108800pt;}
._5_c00103{width:6.240000pt;}
._6_c00103{width:7.513600pt;}
._2_c00103{width:9.107200pt;}
._3_c00103{width:10.355200pt;}
._8_c00103{width:11.609600pt;}
._7_c00103{width:12.992000pt;}
._1_c00103{width:17.011200pt;}
.fs0_c00103{font-size:64.000000pt;}
.y0_c00103{bottom:0.000000pt;}
.y5_c00103{bottom:1.280000pt;}
.y1_c00103{bottom:11.320000pt;}
.y3_c00103{bottom:40.360000pt;}
.y4_c00103{bottom:50.400000pt;}
.y21_c00103{bottom:98.600000pt;}
.y20_c00103{bottom:130.600000pt;}
.y1f_c00103{bottom:162.600000pt;}
.y1e_c00103{bottom:194.600000pt;}
.y1d_c00103{bottom:226.600000pt;}
.y1c_c00103{bottom:258.600000pt;}
.y1b_c00103{bottom:290.600000pt;}
.y1a_c00103{bottom:322.600000pt;}
.y19_c00103{bottom:354.600000pt;}
.y18_c00103{bottom:386.600000pt;}
.y17_c00103{bottom:418.600000pt;}
.y16_c00103{bottom:450.600000pt;}
.y15_c00103{bottom:482.599867pt;}
.y14_c00103{bottom:514.599867pt;}
.y13_c00103{bottom:546.599867pt;}
.y12_c00103{bottom:578.599867pt;}
.y11_c00103{bottom:610.599867pt;}
.y10_c00103{bottom:642.599867pt;}
.yf_c00103{bottom:674.599867pt;}
.ye_c00103{bottom:706.599867pt;}
.yd_c00103{bottom:738.599867pt;}
.yc_c00103{bottom:770.599867pt;}
.yb_c00103{bottom:802.599867pt;}
.ya_c00103{bottom:834.599867pt;}
.y9_c00103{bottom:866.599867pt;}
.y8_c00103{bottom:898.599867pt;}
.y7_c00103{bottom:930.599867pt;}
.y6_c00103{bottom:962.599867pt;}
.y2_c00103{bottom:1035.560000pt;}
.h4_c00103{height:15.360000pt;}
.h6_c00103{height:62.781250pt;}
.h5_c00103{height:62.781783pt;}
.h3_c00103{height:62.812500pt;}
.h2_c00103{height:1099.880000pt;}
.h0_c00103{height:1122.520000pt;}
.h1_c00103{height:1122.666667pt;}
.w3_c00103{width:42.240000pt;}
.w2_c00103{width:771.080000pt;}
.w0_c00103{width:793.720000pt;}
.w1_c00103{width:794.000000pt;}
.x0_c00103{left:0.000000pt;}
.x1_c00103{left:11.320000pt;}
.x5_c00103{left:13.100000pt;}
.x3_c00103{left:84.794933pt;}
.x6_c00103{left:132.800133pt;}
.x4_c00103{left:375.800000pt;}
.x2_c00103{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4b13a7c9d1f0af6a2eb39d8c.woff2')format("woff");}.ff1_c00104{font-family:ff1_c00104;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00104;src:url('chunks/assets/font_2413732464a3215f2a19a4a3.woff2')format("woff");}.ff2_c00104{font-family:ff2_c00104;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00104{letter-spacing:0.000000px;}
.sc__c00104{text-shadow:none;}
.sc0_c00104{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00104{-webkit-text-stroke:0px transparent;}
.sc0_c00104{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00104{word-spacing:0.000000px;}
._5_c00104{width:1.692000px;}
._9_c00104{width:2.944800px;}
._8_c00104{width:4.183200px;}
._1_c00104{width:5.688000px;}
._3_c00104{width:7.545600px;}
._7_c00104{width:8.697600px;}
._6_c00104{width:10.123200px;}
._2_c00104{width:11.332800px;}
._a_c00104{width:13.600800px;}
._4_c00104{width:21.585600px;}
._c_c00104{width:23.328000px;}
._b_c00104{width:26.287200px;}
._0_c00104{width:28.951200px;}
.fc1_c00104{color:transparent;}
.fc0_c00104{color:rgb(0,0,0);}
.fs0_c00104{font-size:72.000000px;}
.y0_c00104{bottom:0.000000px;}
.y5_c00104{bottom:5.040000px;}
.y1_c00104{bottom:12.735000px;}
.y3_c00104{bottom:45.405000px;}
.y4_c00104{bottom:53.100000px;}
.y20_c00104{bottom:146.924850px;}
.y1f_c00104{bottom:182.924850px;}
.y1e_c00104{bottom:218.924850px;}
.y1d_c00104{bottom:254.924850px;}
.y1c_c00104{bottom:290.924850px;}
.y1b_c00104{bottom:326.924850px;}
.y1a_c00104{bottom:362.924850px;}
.y19_c00104{bottom:398.924850px;}
.y18_c00104{bottom:434.924850px;}
.y17_c00104{bottom:470.924850px;}
.y16_c00104{bottom:506.924850px;}
.y15_c00104{bottom:542.924850px;}
.y14_c00104{bottom:578.924850px;}
.y13_c00104{bottom:614.924850px;}
.y12_c00104{bottom:650.924850px;}
.y11_c00104{bottom:686.924850px;}
.y10_c00104{bottom:722.924850px;}
.yf_c00104{bottom:758.924850px;}
.ye_c00104{bottom:794.924850px;}
.yd_c00104{bottom:830.924850px;}
.yc_c00104{bottom:866.924850px;}
.yb_c00104{bottom:902.924850px;}
.ya_c00104{bottom:938.924850px;}
.y9_c00104{bottom:974.924850px;}
.y8_c00104{bottom:1010.924850px;}
.y7_c00104{bottom:1046.924850px;}
.y6_c00104{bottom:1082.924850px;}
.y2_c00104{bottom:1165.005000px;}
.h4_c00104{height:20.880000px;}
.h3_c00104{height:70.664062px;}
.h5_c00104{height:71.824219px;}
.h2_c00104{height:1237.365000px;}
.h0_c00104{height:1262.835000px;}
.h1_c00104{height:1263.000000px;}
.w3_c00104{width:18.000000px;}
.w2_c00104{width:867.465000px;}
.w0_c00104{width:892.935000px;}
.w1_c00104{width:893.250000px;}
.x0_c00104{left:0.000000px;}
.x1_c00104{left:12.735000px;}
.x3_c00104{left:95.394300px;}
.x5_c00104{left:149.400150px;}
.x4_c00104{left:437.535000px;}
.x2_c00104{left:880.050300px;}
@media print{
.v0_c00104{vertical-align:0.000000pt;}
.ls0_c00104{letter-spacing:0.000000pt;}
.ws0_c00104{word-spacing:0.000000pt;}
._5_c00104{width:1.504000pt;}
._9_c00104{width:2.617600pt;}
._8_c00104{width:3.718400pt;}
._1_c00104{width:5.056000pt;}
._3_c00104{width:6.707200pt;}
._7_c00104{width:7.731200pt;}
._6_c00104{width:8.998400pt;}
._2_c00104{width:10.073600pt;}
._a_c00104{width:12.089600pt;}
._4_c00104{width:19.187200pt;}
._c_c00104{width:20.736000pt;}
._b_c00104{width:23.366400pt;}
._0_c00104{width:25.734400pt;}
.fs0_c00104{font-size:64.000000pt;}
.y0_c00104{bottom:0.000000pt;}
.y5_c00104{bottom:4.480000pt;}
.y1_c00104{bottom:11.320000pt;}
.y3_c00104{bottom:40.360000pt;}
.y4_c00104{bottom:47.200000pt;}
.y20_c00104{bottom:130.599867pt;}
.y1f_c00104{bottom:162.599867pt;}
.y1e_c00104{bottom:194.599867pt;}
.y1d_c00104{bottom:226.599867pt;}
.y1c_c00104{bottom:258.599867pt;}
.y1b_c00104{bottom:290.599867pt;}
.y1a_c00104{bottom:322.599867pt;}
.y19_c00104{bottom:354.599867pt;}
.y18_c00104{bottom:386.599867pt;}
.y17_c00104{bottom:418.599867pt;}
.y16_c00104{bottom:450.599867pt;}
.y15_c00104{bottom:482.599867pt;}
.y14_c00104{bottom:514.599867pt;}
.y13_c00104{bottom:546.599867pt;}
.y12_c00104{bottom:578.599867pt;}
.y11_c00104{bottom:610.599867pt;}
.y10_c00104{bottom:642.599867pt;}
.yf_c00104{bottom:674.599867pt;}
.ye_c00104{bottom:706.599867pt;}
.yd_c00104{bottom:738.599867pt;}
.yc_c00104{bottom:770.599867pt;}
.yb_c00104{bottom:802.599867pt;}
.ya_c00104{bottom:834.599867pt;}
.y9_c00104{bottom:866.599867pt;}
.y8_c00104{bottom:898.599867pt;}
.y7_c00104{bottom:930.599867pt;}
.y6_c00104{bottom:962.599867pt;}
.y2_c00104{bottom:1035.560000pt;}
.h4_c00104{height:18.560000pt;}
.h3_c00104{height:62.812500pt;}
.h5_c00104{height:63.843750pt;}
.h2_c00104{height:1099.880000pt;}
.h0_c00104{height:1122.520000pt;}
.h1_c00104{height:1122.666667pt;}
.w3_c00104{width:16.000000pt;}
.w2_c00104{width:771.080000pt;}
.w0_c00104{width:793.720000pt;}
.w1_c00104{width:794.000000pt;}
.x0_c00104{left:0.000000pt;}
.x1_c00104{left:11.320000pt;}
.x3_c00104{left:84.794933pt;}
.x5_c00104{left:132.800133pt;}
.x4_c00104{left:388.920000pt;}
.x2_c00104{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45f7066de92729a62d0fcc3c.woff2')format("woff");}.ff1_c00105{font-family:ff1_c00105;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00105;src:url('chunks/assets/font_9928e6fac8684e826fe7cbc3.woff2')format("woff");}.ff2_c00105{font-family:ff2_c00105;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00105{letter-spacing:-0.014400px;}
.ls0_c00105{letter-spacing:0.000000px;}
.ls2_c00105{letter-spacing:0.036000px;}
.ls1_c00105{letter-spacing:11.383200px;}
.sc__c00105{text-shadow:none;}
.sc0_c00105{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00105{-webkit-text-stroke:0px transparent;}
.sc0_c00105{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00105{word-spacing:-18.036000px;}
.ws1_c00105{word-spacing:0.000000px;}
._b_c00105{margin-left:-10.807200px;}
._6_c00105{width:1.332000px;}
._0_c00105{width:2.433600px;}
._9_c00105{width:3.520800px;}
._2_c00105{width:4.788000px;}
._8_c00105{width:6.184800px;}
._a_c00105{width:7.956000px;}
._5_c00105{width:11.253600px;}
._7_c00105{width:12.304800px;}
._1_c00105{width:14.421600px;}
._4_c00105{width:19.382400px;}
._3_c00105{width:20.476800px;}
.fc1_c00105{color:transparent;}
.fc0_c00105{color:rgb(0,0,0);}
.fs0_c00105{font-size:72.000000px;}
.y0_c00105{bottom:0.000000px;}
.y5_c00105{bottom:1.440000px;}
.y1_c00105{bottom:12.735000px;}
.y3_c00105{bottom:45.405000px;}
.y4_c00105{bottom:56.700000px;}
.y21_c00105{bottom:110.924850px;}
.y20_c00105{bottom:146.924850px;}
.y1f_c00105{bottom:182.924850px;}
.y1e_c00105{bottom:218.924850px;}
.y1d_c00105{bottom:254.924850px;}
.y1c_c00105{bottom:290.924850px;}
.y1b_c00105{bottom:326.924850px;}
.y1a_c00105{bottom:362.924850px;}
.y19_c00105{bottom:398.924850px;}
.y18_c00105{bottom:434.924850px;}
.y17_c00105{bottom:470.924850px;}
.y16_c00105{bottom:506.924850px;}
.y15_c00105{bottom:542.924850px;}
.y14_c00105{bottom:578.924850px;}
.y13_c00105{bottom:614.924850px;}
.y12_c00105{bottom:650.924850px;}
.y11_c00105{bottom:686.924850px;}
.y10_c00105{bottom:722.924850px;}
.yf_c00105{bottom:758.924850px;}
.ye_c00105{bottom:794.924850px;}
.yd_c00105{bottom:830.924850px;}
.yc_c00105{bottom:866.924850px;}
.yb_c00105{bottom:902.924850px;}
.ya_c00105{bottom:938.924850px;}
.y9_c00105{bottom:974.924850px;}
.y8_c00105{bottom:1010.924850px;}
.y7_c00105{bottom:1046.924850px;}
.y6_c00105{bottom:1082.924850px;}
.y2_c00105{bottom:1165.005000px;}
.h4_c00105{height:17.280000px;}
.h5_c00105{height:70.628906px;}
.h3_c00105{height:70.664062px;}
.h2_c00105{height:1237.365000px;}
.h0_c00105{height:1262.835000px;}
.h1_c00105{height:1263.000000px;}
.w3_c00105{width:47.520000px;}
.w2_c00105{width:867.465000px;}
.w0_c00105{width:892.935000px;}
.w1_c00105{width:893.250000px;}
.x0_c00105{left:0.000000px;}
.x1_c00105{left:12.735000px;}
.x5_c00105{left:14.737500px;}
.x3_c00105{left:95.394300px;}
.x6_c00105{left:149.400150px;}
.x4_c00105{left:422.775000px;}
.x2_c00105{left:880.050300px;}
@media print{
.v0_c00105{vertical-align:0.000000pt;}
.ls3_c00105{letter-spacing:-0.012800pt;}
.ls0_c00105{letter-spacing:0.000000pt;}
.ls2_c00105{letter-spacing:0.032000pt;}
.ls1_c00105{letter-spacing:10.118400pt;}
.ws0_c00105{word-spacing:-16.032000pt;}
.ws1_c00105{word-spacing:0.000000pt;}
._b_c00105{margin-left:-9.606400pt;}
._6_c00105{width:1.184000pt;}
._0_c00105{width:2.163200pt;}
._9_c00105{width:3.129600pt;}
._2_c00105{width:4.256000pt;}
._8_c00105{width:5.497600pt;}
._a_c00105{width:7.072000pt;}
._5_c00105{width:10.003200pt;}
._7_c00105{width:10.937600pt;}
._1_c00105{width:12.819200pt;}
._4_c00105{width:17.228800pt;}
._3_c00105{width:18.201600pt;}
.fs0_c00105{font-size:64.000000pt;}
.y0_c00105{bottom:0.000000pt;}
.y5_c00105{bottom:1.280000pt;}
.y1_c00105{bottom:11.320000pt;}
.y3_c00105{bottom:40.360000pt;}
.y4_c00105{bottom:50.400000pt;}
.y21_c00105{bottom:98.599867pt;}
.y20_c00105{bottom:130.599867pt;}
.y1f_c00105{bottom:162.599867pt;}
.y1e_c00105{bottom:194.599867pt;}
.y1d_c00105{bottom:226.599867pt;}
.y1c_c00105{bottom:258.599867pt;}
.y1b_c00105{bottom:290.599867pt;}
.y1a_c00105{bottom:322.599867pt;}
.y19_c00105{bottom:354.599867pt;}
.y18_c00105{bottom:386.599867pt;}
.y17_c00105{bottom:418.599867pt;}
.y16_c00105{bottom:450.599867pt;}
.y15_c00105{bottom:482.599867pt;}
.y14_c00105{bottom:514.599867pt;}
.y13_c00105{bottom:546.599867pt;}
.y12_c00105{bottom:578.599867pt;}
.y11_c00105{bottom:610.599867pt;}
.y10_c00105{bottom:642.599867pt;}
.yf_c00105{bottom:674.599867pt;}
.ye_c00105{bottom:706.599867pt;}
.yd_c00105{bottom:738.599867pt;}
.yc_c00105{bottom:770.599867pt;}
.yb_c00105{bottom:802.599867pt;}
.ya_c00105{bottom:834.599867pt;}
.y9_c00105{bottom:866.599867pt;}
.y8_c00105{bottom:898.599867pt;}
.y7_c00105{bottom:930.599867pt;}
.y6_c00105{bottom:962.599867pt;}
.y2_c00105{bottom:1035.560000pt;}
.h4_c00105{height:15.360000pt;}
.h5_c00105{height:62.781250pt;}
.h3_c00105{height:62.812500pt;}
.h2_c00105{height:1099.880000pt;}
.h0_c00105{height:1122.520000pt;}
.h1_c00105{height:1122.666667pt;}
.w3_c00105{width:42.240000pt;}
.w2_c00105{width:771.080000pt;}
.w0_c00105{width:793.720000pt;}
.w1_c00105{width:794.000000pt;}
.x0_c00105{left:0.000000pt;}
.x1_c00105{left:11.320000pt;}
.x5_c00105{left:13.100000pt;}
.x3_c00105{left:84.794933pt;}
.x6_c00105{left:132.800133pt;}
.x4_c00105{left:375.800000pt;}
.x2_c00105{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_606815e686e2ef2530948628.woff2')format("woff");}.ff1_c00106{font-family:ff1_c00106;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00106;src:url('chunks/assets/font_2d73283df8ae8e4892921e25.woff2')format("woff");}.ff2_c00106{font-family:ff2_c00106;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00106{letter-spacing:0.000000px;}
.ls1_c00106{letter-spacing:0.014400px;}
.sc__c00106{text-shadow:none;}
.sc0_c00106{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00106{-webkit-text-stroke:0px transparent;}
.sc0_c00106{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00106{word-spacing:0.000000px;}
._7_c00106{width:1.332000px;}
._2_c00106{width:2.563200px;}
._3_c00106{width:3.880800px;}
._6_c00106{width:5.047200px;}
._0_c00106{width:6.156000px;}
._1_c00106{width:7.207200px;}
._4_c00106{width:9.763200px;}
._8_c00106{width:11.008800px;}
._5_c00106{width:13.723200px;}
._9_c00106{width:16.171200px;}
._b_c00106{width:19.807200px;}
._a_c00106{width:25.005600px;}
._c_c00106{width:36.669600px;}
._d_c00106{width:38.325600px;}
.fc1_c00106{color:transparent;}
.fc0_c00106{color:rgb(0,0,0);}
.fs0_c00106{font-size:72.000000px;}
.y0_c00106{bottom:0.000000px;}
.y5_c00106{bottom:5.040000px;}
.y1_c00106{bottom:12.735000px;}
.y3_c00106{bottom:45.405000px;}
.y4_c00106{bottom:53.100000px;}
.y20_c00106{bottom:146.924850px;}
.y1f_c00106{bottom:182.924850px;}
.y1e_c00106{bottom:218.924850px;}
.y1d_c00106{bottom:254.924850px;}
.y1c_c00106{bottom:290.924850px;}
.y1b_c00106{bottom:326.924850px;}
.y1a_c00106{bottom:362.924850px;}
.y19_c00106{bottom:398.924850px;}
.y18_c00106{bottom:434.924850px;}
.y17_c00106{bottom:470.924850px;}
.y16_c00106{bottom:506.924850px;}
.y15_c00106{bottom:542.924850px;}
.y14_c00106{bottom:578.924850px;}
.y13_c00106{bottom:614.924850px;}
.y12_c00106{bottom:650.924850px;}
.y11_c00106{bottom:686.924850px;}
.y10_c00106{bottom:722.924850px;}
.yf_c00106{bottom:758.924850px;}
.ye_c00106{bottom:794.924850px;}
.yd_c00106{bottom:830.924850px;}
.yc_c00106{bottom:866.924850px;}
.yb_c00106{bottom:902.924850px;}
.ya_c00106{bottom:938.924850px;}
.y9_c00106{bottom:974.924850px;}
.y8_c00106{bottom:1010.924850px;}
.y7_c00106{bottom:1046.924850px;}
.y6_c00106{bottom:1082.924850px;}
.y2_c00106{bottom:1165.005000px;}
.h4_c00106{height:20.880000px;}
.h5_c00106{height:70.628906px;}
.h3_c00106{height:70.664062px;}
.h2_c00106{height:1237.365000px;}
.h0_c00106{height:1262.835000px;}
.h1_c00106{height:1263.000000px;}
.w3_c00106{width:18.000000px;}
.w2_c00106{width:867.465000px;}
.w0_c00106{width:892.935000px;}
.w1_c00106{width:893.250000px;}
.x0_c00106{left:0.000000px;}
.x1_c00106{left:12.735000px;}
.x3_c00106{left:95.394300px;}
.x5_c00106{left:149.400150px;}
.x4_c00106{left:437.535000px;}
.x2_c00106{left:880.050300px;}
@media print{
.v0_c00106{vertical-align:0.000000pt;}
.ls0_c00106{letter-spacing:0.000000pt;}
.ls1_c00106{letter-spacing:0.012800pt;}
.ws0_c00106{word-spacing:0.000000pt;}
._7_c00106{width:1.184000pt;}
._2_c00106{width:2.278400pt;}
._3_c00106{width:3.449600pt;}
._6_c00106{width:4.486400pt;}
._0_c00106{width:5.472000pt;}
._1_c00106{width:6.406400pt;}
._4_c00106{width:8.678400pt;}
._8_c00106{width:9.785600pt;}
._5_c00106{width:12.198400pt;}
._9_c00106{width:14.374400pt;}
._b_c00106{width:17.606400pt;}
._a_c00106{width:22.227200pt;}
._c_c00106{width:32.595200pt;}
._d_c00106{width:34.067200pt;}
.fs0_c00106{font-size:64.000000pt;}
.y0_c00106{bottom:0.000000pt;}
.y5_c00106{bottom:4.480000pt;}
.y1_c00106{bottom:11.320000pt;}
.y3_c00106{bottom:40.360000pt;}
.y4_c00106{bottom:47.200000pt;}
.y20_c00106{bottom:130.599867pt;}
.y1f_c00106{bottom:162.599867pt;}
.y1e_c00106{bottom:194.599867pt;}
.y1d_c00106{bottom:226.599867pt;}
.y1c_c00106{bottom:258.599867pt;}
.y1b_c00106{bottom:290.599867pt;}
.y1a_c00106{bottom:322.599867pt;}
.y19_c00106{bottom:354.599867pt;}
.y18_c00106{bottom:386.599867pt;}
.y17_c00106{bottom:418.599867pt;}
.y16_c00106{bottom:450.599867pt;}
.y15_c00106{bottom:482.599867pt;}
.y14_c00106{bottom:514.599867pt;}
.y13_c00106{bottom:546.599867pt;}
.y12_c00106{bottom:578.599867pt;}
.y11_c00106{bottom:610.599867pt;}
.y10_c00106{bottom:642.599867pt;}
.yf_c00106{bottom:674.599867pt;}
.ye_c00106{bottom:706.599867pt;}
.yd_c00106{bottom:738.599867pt;}
.yc_c00106{bottom:770.599867pt;}
.yb_c00106{bottom:802.599867pt;}
.ya_c00106{bottom:834.599867pt;}
.y9_c00106{bottom:866.599867pt;}
.y8_c00106{bottom:898.599867pt;}
.y7_c00106{bottom:930.599867pt;}
.y6_c00106{bottom:962.599867pt;}
.y2_c00106{bottom:1035.560000pt;}
.h4_c00106{height:18.560000pt;}
.h5_c00106{height:62.781250pt;}
.h3_c00106{height:62.812500pt;}
.h2_c00106{height:1099.880000pt;}
.h0_c00106{height:1122.520000pt;}
.h1_c00106{height:1122.666667pt;}
.w3_c00106{width:16.000000pt;}
.w2_c00106{width:771.080000pt;}
.w0_c00106{width:793.720000pt;}
.w1_c00106{width:794.000000pt;}
.x0_c00106{left:0.000000pt;}
.x1_c00106{left:11.320000pt;}
.x3_c00106{left:84.794933pt;}
.x5_c00106{left:132.800133pt;}
.x4_c00106{left:388.920000pt;}
.x2_c00106{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e1bdff1ca638eb7cf9a84b7.woff2')format("woff");}.ff1_c00107{font-family:ff1_c00107;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00107;src:url('chunks/assets/font_a1c90767a95b059918d77cd8.woff2')format("woff");}.ff2_c00107{font-family:ff2_c00107;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00107;src:url('chunks/assets/font_8c2f1eb30e57af17665ce4e6.woff2')format("woff");}.ff3_c00107{font-family:ff3_c00107;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00107{letter-spacing:-0.014400px;}
.ls1_c00107{letter-spacing:0.000000px;}
.ls2_c00107{letter-spacing:0.036000px;}
.ls0_c00107{letter-spacing:0.727200px;}
.sc__c00107{text-shadow:none;}
.sc0_c00107{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00107{-webkit-text-stroke:0px transparent;}
.sc0_c00107{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00107{word-spacing:-18.036000px;}
.ws1_c00107{word-spacing:0.000000px;}
._5_c00107{width:1.008000px;}
._2_c00107{width:2.685600px;}
._4_c00107{width:3.744000px;}
._1_c00107{width:4.852800px;}
._3_c00107{width:5.918400px;}
._7_c00107{width:16.992000px;}
._0_c00107{width:19.166400px;}
._8_c00107{width:21.801600px;}
._6_c00107{width:23.385600px;}
.fc1_c00107{color:transparent;}
.fc0_c00107{color:rgb(0,0,0);}
.fs0_c00107{font-size:72.000000px;}
.y0_c00107{bottom:0.000000px;}
.y5_c00107{bottom:1.440000px;}
.y1_c00107{bottom:12.735000px;}
.y3_c00107{bottom:45.405000px;}
.y4_c00107{bottom:56.700000px;}
.y20_c00107{bottom:146.924850px;}
.y1f_c00107{bottom:182.924850px;}
.y1e_c00107{bottom:218.924850px;}
.y1d_c00107{bottom:254.924850px;}
.y1c_c00107{bottom:290.924850px;}
.y1b_c00107{bottom:326.924850px;}
.y1a_c00107{bottom:362.924850px;}
.y19_c00107{bottom:398.924850px;}
.y18_c00107{bottom:434.924850px;}
.y17_c00107{bottom:470.924850px;}
.y16_c00107{bottom:506.924850px;}
.y15_c00107{bottom:542.924850px;}
.y14_c00107{bottom:578.924850px;}
.y13_c00107{bottom:614.924850px;}
.y12_c00107{bottom:650.924850px;}
.y11_c00107{bottom:686.924850px;}
.y10_c00107{bottom:722.924850px;}
.yf_c00107{bottom:758.924850px;}
.ye_c00107{bottom:794.924850px;}
.yd_c00107{bottom:830.924850px;}
.yc_c00107{bottom:866.924850px;}
.yb_c00107{bottom:902.924850px;}
.ya_c00107{bottom:938.924850px;}
.y9_c00107{bottom:974.924850px;}
.y8_c00107{bottom:1010.924850px;}
.y7_c00107{bottom:1046.924850px;}
.y6_c00107{bottom:1082.924850px;}
.y2_c00107{bottom:1165.005000px;}
.h4_c00107{height:17.280000px;}
.h5_c00107{height:70.628906px;}
.h3_c00107{height:70.664062px;}
.h2_c00107{height:1237.365000px;}
.h0_c00107{height:1262.835000px;}
.h1_c00107{height:1263.000000px;}
.w3_c00107{width:47.520000px;}
.w2_c00107{width:867.465000px;}
.w0_c00107{width:892.935000px;}
.w1_c00107{width:893.250000px;}
.x0_c00107{left:0.000000px;}
.x1_c00107{left:12.735000px;}
.x5_c00107{left:14.737500px;}
.x3_c00107{left:95.394300px;}
.x6_c00107{left:149.400150px;}
.x4_c00107{left:422.775000px;}
.x2_c00107{left:880.050300px;}
@media print{
.v0_c00107{vertical-align:0.000000pt;}
.ls3_c00107{letter-spacing:-0.012800pt;}
.ls1_c00107{letter-spacing:0.000000pt;}
.ls2_c00107{letter-spacing:0.032000pt;}
.ls0_c00107{letter-spacing:0.646400pt;}
.ws0_c00107{word-spacing:-16.032000pt;}
.ws1_c00107{word-spacing:0.000000pt;}
._5_c00107{width:0.896000pt;}
._2_c00107{width:2.387200pt;}
._4_c00107{width:3.328000pt;}
._1_c00107{width:4.313600pt;}
._3_c00107{width:5.260800pt;}
._7_c00107{width:15.104000pt;}
._0_c00107{width:17.036800pt;}
._8_c00107{width:19.379200pt;}
._6_c00107{width:20.787200pt;}
.fs0_c00107{font-size:64.000000pt;}
.y0_c00107{bottom:0.000000pt;}
.y5_c00107{bottom:1.280000pt;}
.y1_c00107{bottom:11.320000pt;}
.y3_c00107{bottom:40.360000pt;}
.y4_c00107{bottom:50.400000pt;}
.y20_c00107{bottom:130.599867pt;}
.y1f_c00107{bottom:162.599867pt;}
.y1e_c00107{bottom:194.599867pt;}
.y1d_c00107{bottom:226.599867pt;}
.y1c_c00107{bottom:258.599867pt;}
.y1b_c00107{bottom:290.599867pt;}
.y1a_c00107{bottom:322.599867pt;}
.y19_c00107{bottom:354.599867pt;}
.y18_c00107{bottom:386.599867pt;}
.y17_c00107{bottom:418.599867pt;}
.y16_c00107{bottom:450.599867pt;}
.y15_c00107{bottom:482.599867pt;}
.y14_c00107{bottom:514.599867pt;}
.y13_c00107{bottom:546.599867pt;}
.y12_c00107{bottom:578.599867pt;}
.y11_c00107{bottom:610.599867pt;}
.y10_c00107{bottom:642.599867pt;}
.yf_c00107{bottom:674.599867pt;}
.ye_c00107{bottom:706.599867pt;}
.yd_c00107{bottom:738.599867pt;}
.yc_c00107{bottom:770.599867pt;}
.yb_c00107{bottom:802.599867pt;}
.ya_c00107{bottom:834.599867pt;}
.y9_c00107{bottom:866.599867pt;}
.y8_c00107{bottom:898.599867pt;}
.y7_c00107{bottom:930.599867pt;}
.y6_c00107{bottom:962.599867pt;}
.y2_c00107{bottom:1035.560000pt;}
.h4_c00107{height:15.360000pt;}
.h5_c00107{height:62.781250pt;}
.h3_c00107{height:62.812500pt;}
.h2_c00107{height:1099.880000pt;}
.h0_c00107{height:1122.520000pt;}
.h1_c00107{height:1122.666667pt;}
.w3_c00107{width:42.240000pt;}
.w2_c00107{width:771.080000pt;}
.w0_c00107{width:793.720000pt;}
.w1_c00107{width:794.000000pt;}
.x0_c00107{left:0.000000pt;}
.x1_c00107{left:11.320000pt;}
.x5_c00107{left:13.100000pt;}
.x3_c00107{left:84.794933pt;}
.x6_c00107{left:132.800133pt;}
.x4_c00107{left:375.800000pt;}
.x2_c00107{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e247f0caef5a1e25f0b895da.woff2')format("woff");}.ff1_c00108{font-family:ff1_c00108;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00108;src:url('chunks/assets/font_0b009b53a6403f7f2141313f.woff2')format("woff");}.ff2_c00108{font-family:ff2_c00108;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00108{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00108{vertical-align:0.000000px;}
.ls1_c00108{letter-spacing:-0.014400px;}
.ls0_c00108{letter-spacing:0.000000px;}
.sc__c00108{text-shadow:none;}
.sc0_c00108{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00108{-webkit-text-stroke:0px transparent;}
.sc0_c00108{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00108{word-spacing:0.000000px;}
._5_c00108{width:1.454400px;}
._1_c00108{width:2.851200px;}
._a_c00108{width:4.550400px;}
._7_c00108{width:5.868000px;}
._2_c00108{width:6.984000px;}
._d_c00108{width:8.020800px;}
._b_c00108{width:9.187200px;}
._6_c00108{width:10.641600px;}
._c_c00108{width:11.721600px;}
._4_c00108{width:13.845600px;}
._e_c00108{width:15.991200px;}
._0_c00108{width:19.288800px;}
._9_c00108{width:22.824000px;}
._8_c00108{width:24.984000px;}
._3_c00108{width:36.590400px;}
.fc1_c00108{color:transparent;}
.fc0_c00108{color:rgb(0,0,0);}
.fs0_c00108{font-size:72.000000px;}
.y0_c00108{bottom:0.000000px;}
.y5_c00108{bottom:5.040000px;}
.y1_c00108{bottom:12.735000px;}
.y3_c00108{bottom:45.405000px;}
.y4_c00108{bottom:53.100000px;}
.y21_c00108{bottom:110.924850px;}
.y20_c00108{bottom:146.924850px;}
.y1f_c00108{bottom:182.924850px;}
.y1e_c00108{bottom:218.924850px;}
.y1d_c00108{bottom:254.924850px;}
.y1c_c00108{bottom:290.924850px;}
.y1b_c00108{bottom:326.924850px;}
.y1a_c00108{bottom:362.924850px;}
.y19_c00108{bottom:398.924850px;}
.y18_c00108{bottom:434.924850px;}
.y17_c00108{bottom:470.924850px;}
.y16_c00108{bottom:506.924850px;}
.y15_c00108{bottom:542.924850px;}
.y14_c00108{bottom:578.924850px;}
.y13_c00108{bottom:614.924850px;}
.y12_c00108{bottom:650.924850px;}
.y11_c00108{bottom:686.924850px;}
.y10_c00108{bottom:722.924850px;}
.yf_c00108{bottom:758.924850px;}
.ye_c00108{bottom:794.924850px;}
.yd_c00108{bottom:830.924850px;}
.yc_c00108{bottom:866.924850px;}
.yb_c00108{bottom:902.924850px;}
.ya_c00108{bottom:938.924850px;}
.y9_c00108{bottom:974.924850px;}
.y8_c00108{bottom:1010.924850px;}
.y7_c00108{bottom:1046.924850px;}
.y6_c00108{bottom:1082.924850px;}
.y2_c00108{bottom:1165.005000px;}
.h4_c00108{height:20.880000px;}
.h5_c00108{height:70.628906px;}
.h3_c00108{height:70.664062px;}
.h2_c00108{height:1237.365000px;}
.h0_c00108{height:1262.835000px;}
.h1_c00108{height:1263.000000px;}
.w3_c00108{width:27.360000px;}
.w2_c00108{width:867.465000px;}
.w0_c00108{width:892.935000px;}
.w1_c00108{width:893.250000px;}
.x0_c00108{left:0.000000px;}
.x1_c00108{left:12.735000px;}
.x3_c00108{left:95.394300px;}
.x5_c00108{left:149.400150px;}
.x4_c00108{left:432.855000px;}
.x2_c00108{left:880.050300px;}
@media print{
.v0_c00108{vertical-align:0.000000pt;}
.ls1_c00108{letter-spacing:-0.012800pt;}
.ls0_c00108{letter-spacing:0.000000pt;}
.ws0_c00108{word-spacing:0.000000pt;}
._5_c00108{width:1.292800pt;}
._1_c00108{width:2.534400pt;}
._a_c00108{width:4.044800pt;}
._7_c00108{width:5.216000pt;}
._2_c00108{width:6.208000pt;}
._d_c00108{width:7.129600pt;}
._b_c00108{width:8.166400pt;}
._6_c00108{width:9.459200pt;}
._c_c00108{width:10.419200pt;}
._4_c00108{width:12.307200pt;}
._e_c00108{width:14.214400pt;}
._0_c00108{width:17.145600pt;}
._9_c00108{width:20.288000pt;}
._8_c00108{width:22.208000pt;}
._3_c00108{width:32.524800pt;}
.fs0_c00108{font-size:64.000000pt;}
.y0_c00108{bottom:0.000000pt;}
.y5_c00108{bottom:4.480000pt;}
.y1_c00108{bottom:11.320000pt;}
.y3_c00108{bottom:40.360000pt;}
.y4_c00108{bottom:47.200000pt;}
.y21_c00108{bottom:98.599867pt;}
.y20_c00108{bottom:130.599867pt;}
.y1f_c00108{bottom:162.599867pt;}
.y1e_c00108{bottom:194.599867pt;}
.y1d_c00108{bottom:226.599867pt;}
.y1c_c00108{bottom:258.599867pt;}
.y1b_c00108{bottom:290.599867pt;}
.y1a_c00108{bottom:322.599867pt;}
.y19_c00108{bottom:354.599867pt;}
.y18_c00108{bottom:386.599867pt;}
.y17_c00108{bottom:418.599867pt;}
.y16_c00108{bottom:450.599867pt;}
.y15_c00108{bottom:482.599867pt;}
.y14_c00108{bottom:514.599867pt;}
.y13_c00108{bottom:546.599867pt;}
.y12_c00108{bottom:578.599867pt;}
.y11_c00108{bottom:610.599867pt;}
.y10_c00108{bottom:642.599867pt;}
.yf_c00108{bottom:674.599867pt;}
.ye_c00108{bottom:706.599867pt;}
.yd_c00108{bottom:738.599867pt;}
.yc_c00108{bottom:770.599867pt;}
.yb_c00108{bottom:802.599867pt;}
.ya_c00108{bottom:834.599867pt;}
.y9_c00108{bottom:866.599867pt;}
.y8_c00108{bottom:898.599867pt;}
.y7_c00108{bottom:930.599867pt;}
.y6_c00108{bottom:962.599867pt;}
.y2_c00108{bottom:1035.560000pt;}
.h4_c00108{height:18.560000pt;}
.h5_c00108{height:62.781250pt;}
.h3_c00108{height:62.812500pt;}
.h2_c00108{height:1099.880000pt;}
.h0_c00108{height:1122.520000pt;}
.h1_c00108{height:1122.666667pt;}
.w3_c00108{width:24.320000pt;}
.w2_c00108{width:771.080000pt;}
.w0_c00108{width:793.720000pt;}
.w1_c00108{width:794.000000pt;}
.x0_c00108{left:0.000000pt;}
.x1_c00108{left:11.320000pt;}
.x3_c00108{left:84.794933pt;}
.x5_c00108{left:132.800133pt;}
.x4_c00108{left:384.760000pt;}
.x2_c00108{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7eb04fb05224af3a3ca38c7.woff2')format("woff");}.ff1_c00109{font-family:ff1_c00109;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00109{letter-spacing:0.000000px;}
.sc__c00109{text-shadow:none;}
.sc0_c00109{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00109{-webkit-text-stroke:0px transparent;}
.sc0_c00109{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00109{word-spacing:0.000000px;}
._2_c00109{width:1.072800px;}
._b_c00109{width:2.750400px;}
._4_c00109{width:4.492800px;}
._3_c00109{width:5.745600px;}
._1_c00109{width:6.847200px;}
._9_c00109{width:8.503200px;}
._6_c00109{width:9.993600px;}
._0_c00109{width:12.297600px;}
._5_c00109{width:13.420800px;}
._a_c00109{width:19.108800px;}
._8_c00109{width:20.743200px;}
._7_c00109{width:29.484000px;}
.fc1_c00109{color:transparent;}
.fc0_c00109{color:rgb(0,0,0);}
.fs0_c00109{font-size:72.000000px;}
.y0_c00109{bottom:0.000000px;}
.y5_c00109{bottom:1.440000px;}
.y1_c00109{bottom:12.735000px;}
.y3_c00109{bottom:45.405000px;}
.y4_c00109{bottom:56.700000px;}
.y20_c00109{bottom:146.924850px;}
.y1f_c00109{bottom:182.924850px;}
.y1e_c00109{bottom:218.924850px;}
.y1d_c00109{bottom:254.924850px;}
.y1c_c00109{bottom:290.924850px;}
.y1b_c00109{bottom:326.924850px;}
.y1a_c00109{bottom:362.924850px;}
.y19_c00109{bottom:398.924850px;}
.y18_c00109{bottom:434.924850px;}
.y17_c00109{bottom:470.924850px;}
.y16_c00109{bottom:506.924850px;}
.y15_c00109{bottom:542.924850px;}
.y14_c00109{bottom:578.924850px;}
.y13_c00109{bottom:614.924850px;}
.y12_c00109{bottom:650.924850px;}
.y11_c00109{bottom:686.924850px;}
.y10_c00109{bottom:722.924850px;}
.yf_c00109{bottom:758.924850px;}
.ye_c00109{bottom:794.924850px;}
.yd_c00109{bottom:830.924850px;}
.yc_c00109{bottom:866.924850px;}
.yb_c00109{bottom:902.924850px;}
.ya_c00109{bottom:938.924850px;}
.y9_c00109{bottom:974.924850px;}
.y8_c00109{bottom:1010.924850px;}
.y7_c00109{bottom:1046.924850px;}
.y6_c00109{bottom:1082.924850px;}
.y2_c00109{bottom:1165.005000px;}
.h4_c00109{height:17.280000px;}
.h3_c00109{height:70.664062px;}
.h2_c00109{height:1237.365000px;}
.h0_c00109{height:1262.835000px;}
.h1_c00109{height:1263.000000px;}
.w3_c00109{width:47.520000px;}
.w2_c00109{width:867.465000px;}
.w0_c00109{width:892.935000px;}
.w1_c00109{width:893.250000px;}
.x0_c00109{left:0.000000px;}
.x5_c00109{left:10.237500px;}
.x1_c00109{left:12.735000px;}
.x3_c00109{left:95.394300px;}
.x6_c00109{left:149.400150px;}
.x4_c00109{left:422.775000px;}
.x2_c00109{left:880.050300px;}
@media print{
.v0_c00109{vertical-align:0.000000pt;}
.ls0_c00109{letter-spacing:0.000000pt;}
.ws0_c00109{word-spacing:0.000000pt;}
._2_c00109{width:0.953600pt;}
._b_c00109{width:2.444800pt;}
._4_c00109{width:3.993600pt;}
._3_c00109{width:5.107200pt;}
._1_c00109{width:6.086400pt;}
._9_c00109{width:7.558400pt;}
._6_c00109{width:8.883200pt;}
._0_c00109{width:10.931200pt;}
._5_c00109{width:11.929600pt;}
._a_c00109{width:16.985600pt;}
._8_c00109{width:18.438400pt;}
._7_c00109{width:26.208000pt;}
.fs0_c00109{font-size:64.000000pt;}
.y0_c00109{bottom:0.000000pt;}
.y5_c00109{bottom:1.280000pt;}
.y1_c00109{bottom:11.320000pt;}
.y3_c00109{bottom:40.360000pt;}
.y4_c00109{bottom:50.400000pt;}
.y20_c00109{bottom:130.599867pt;}
.y1f_c00109{bottom:162.599867pt;}
.y1e_c00109{bottom:194.599867pt;}
.y1d_c00109{bottom:226.599867pt;}
.y1c_c00109{bottom:258.599867pt;}
.y1b_c00109{bottom:290.599867pt;}
.y1a_c00109{bottom:322.599867pt;}
.y19_c00109{bottom:354.599867pt;}
.y18_c00109{bottom:386.599867pt;}
.y17_c00109{bottom:418.599867pt;}
.y16_c00109{bottom:450.599867pt;}
.y15_c00109{bottom:482.599867pt;}
.y14_c00109{bottom:514.599867pt;}
.y13_c00109{bottom:546.599867pt;}
.y12_c00109{bottom:578.599867pt;}
.y11_c00109{bottom:610.599867pt;}
.y10_c00109{bottom:642.599867pt;}
.yf_c00109{bottom:674.599867pt;}
.ye_c00109{bottom:706.599867pt;}
.yd_c00109{bottom:738.599867pt;}
.yc_c00109{bottom:770.599867pt;}
.yb_c00109{bottom:802.599867pt;}
.ya_c00109{bottom:834.599867pt;}
.y9_c00109{bottom:866.599867pt;}
.y8_c00109{bottom:898.599867pt;}
.y7_c00109{bottom:930.599867pt;}
.y6_c00109{bottom:962.599867pt;}
.y2_c00109{bottom:1035.560000pt;}
.h4_c00109{height:15.360000pt;}
.h3_c00109{height:62.812500pt;}
.h2_c00109{height:1099.880000pt;}
.h0_c00109{height:1122.520000pt;}
.h1_c00109{height:1122.666667pt;}
.w3_c00109{width:42.240000pt;}
.w2_c00109{width:771.080000pt;}
.w0_c00109{width:793.720000pt;}
.w1_c00109{width:794.000000pt;}
.x0_c00109{left:0.000000pt;}
.x5_c00109{left:9.100000pt;}
.x1_c00109{left:11.320000pt;}
.x3_c00109{left:84.794933pt;}
.x6_c00109{left:132.800133pt;}
.x4_c00109{left:375.800000pt;}
.x2_c00109{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_54befa64e47da1d51dc97fc3.woff2')format("woff");}.ff1_c00110{font-family:ff1_c00110;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00110{letter-spacing:0.000000px;}
.ls3_c00110{letter-spacing:0.014400px;}
.ls1_c00110{letter-spacing:4.406400px;}
.ls2_c00110{letter-spacing:21.996000px;}
.sc__c00110{text-shadow:none;}
.sc0_c00110{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00110{-webkit-text-stroke:0px transparent;}
.sc0_c00110{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00110{word-spacing:0.000000px;}
._f_c00110{margin-left:-22.406400px;}
._10_c00110{margin-left:-21.218400px;}
._8_c00110{margin-left:-3.535200px;}
._4_c00110{margin-left:-1.022400px;}
._2_c00110{width:1.036800px;}
._3_c00110{width:2.800800px;}
._0_c00110{width:4.269600px;}
._1_c00110{width:6.148800px;}
._11_c00110{width:7.149600px;}
._b_c00110{width:8.193600px;}
._7_c00110{width:9.259200px;}
._6_c00110{width:11.023200px;}
._9_c00110{width:13.132800px;}
._a_c00110{width:14.263200px;}
._d_c00110{width:15.429600px;}
._5_c00110{width:19.166400px;}
._e_c00110{width:22.003200px;}
._c_c00110{width:24.580800px;}
.fc1_c00110{color:transparent;}
.fc0_c00110{color:rgb(0,0,0);}
.fs0_c00110{font-size:72.000000px;}
.y0_c00110{bottom:0.000000px;}
.y5_c00110{bottom:5.040000px;}
.y1_c00110{bottom:12.735000px;}
.y3_c00110{bottom:45.405000px;}
.y4_c00110{bottom:53.100000px;}
.y21_c00110{bottom:110.924850px;}
.y20_c00110{bottom:146.924850px;}
.y1f_c00110{bottom:182.924850px;}
.y1e_c00110{bottom:218.924850px;}
.y1d_c00110{bottom:254.924850px;}
.y1c_c00110{bottom:290.924850px;}
.y1b_c00110{bottom:326.924850px;}
.y1a_c00110{bottom:362.924850px;}
.y19_c00110{bottom:398.924850px;}
.y18_c00110{bottom:434.924850px;}
.y17_c00110{bottom:470.924850px;}
.y16_c00110{bottom:506.924850px;}
.y15_c00110{bottom:542.924850px;}
.y14_c00110{bottom:578.924850px;}
.y13_c00110{bottom:614.924850px;}
.y12_c00110{bottom:650.924850px;}
.y11_c00110{bottom:686.924850px;}
.y10_c00110{bottom:722.924850px;}
.yf_c00110{bottom:758.924850px;}
.ye_c00110{bottom:794.924850px;}
.yd_c00110{bottom:830.924850px;}
.yc_c00110{bottom:866.924850px;}
.yb_c00110{bottom:902.924850px;}
.ya_c00110{bottom:938.924850px;}
.y9_c00110{bottom:974.924850px;}
.y8_c00110{bottom:1010.924850px;}
.y7_c00110{bottom:1046.924850px;}
.y6_c00110{bottom:1082.924850px;}
.y2_c00110{bottom:1165.005000px;}
.h4_c00110{height:20.880000px;}
.h3_c00110{height:70.664062px;}
.h2_c00110{height:1237.365000px;}
.h0_c00110{height:1262.835000px;}
.h1_c00110{height:1263.000000px;}
.w3_c00110{width:27.360000px;}
.w2_c00110{width:867.465000px;}
.w0_c00110{width:892.935000px;}
.w1_c00110{width:893.250000px;}
.x0_c00110{left:0.000000px;}
.x1_c00110{left:12.735000px;}
.x3_c00110{left:95.394300px;}
.x5_c00110{left:149.400150px;}
.x4_c00110{left:432.855000px;}
.x2_c00110{left:880.050300px;}
@media print{
.v0_c00110{vertical-align:0.000000pt;}
.ls0_c00110{letter-spacing:0.000000pt;}
.ls3_c00110{letter-spacing:0.012800pt;}
.ls1_c00110{letter-spacing:3.916800pt;}
.ls2_c00110{letter-spacing:19.552000pt;}
.ws0_c00110{word-spacing:0.000000pt;}
._f_c00110{margin-left:-19.916800pt;}
._10_c00110{margin-left:-18.860800pt;}
._8_c00110{margin-left:-3.142400pt;}
._4_c00110{margin-left:-0.908800pt;}
._2_c00110{width:0.921600pt;}
._3_c00110{width:2.489600pt;}
._0_c00110{width:3.795200pt;}
._1_c00110{width:5.465600pt;}
._11_c00110{width:6.355200pt;}
._b_c00110{width:7.283200pt;}
._7_c00110{width:8.230400pt;}
._6_c00110{width:9.798400pt;}
._9_c00110{width:11.673600pt;}
._a_c00110{width:12.678400pt;}
._d_c00110{width:13.715200pt;}
._5_c00110{width:17.036800pt;}
._e_c00110{width:19.558400pt;}
._c_c00110{width:21.849600pt;}
.fs0_c00110{font-size:64.000000pt;}
.y0_c00110{bottom:0.000000pt;}
.y5_c00110{bottom:4.480000pt;}
.y1_c00110{bottom:11.320000pt;}
.y3_c00110{bottom:40.360000pt;}
.y4_c00110{bottom:47.200000pt;}
.y21_c00110{bottom:98.599867pt;}
.y20_c00110{bottom:130.599867pt;}
.y1f_c00110{bottom:162.599867pt;}
.y1e_c00110{bottom:194.599867pt;}
.y1d_c00110{bottom:226.599867pt;}
.y1c_c00110{bottom:258.599867pt;}
.y1b_c00110{bottom:290.599867pt;}
.y1a_c00110{bottom:322.599867pt;}
.y19_c00110{bottom:354.599867pt;}
.y18_c00110{bottom:386.599867pt;}
.y17_c00110{bottom:418.599867pt;}
.y16_c00110{bottom:450.599867pt;}
.y15_c00110{bottom:482.599867pt;}
.y14_c00110{bottom:514.599867pt;}
.y13_c00110{bottom:546.599867pt;}
.y12_c00110{bottom:578.599867pt;}
.y11_c00110{bottom:610.599867pt;}
.y10_c00110{bottom:642.599867pt;}
.yf_c00110{bottom:674.599867pt;}
.ye_c00110{bottom:706.599867pt;}
.yd_c00110{bottom:738.599867pt;}
.yc_c00110{bottom:770.599867pt;}
.yb_c00110{bottom:802.599867pt;}
.ya_c00110{bottom:834.599867pt;}
.y9_c00110{bottom:866.599867pt;}
.y8_c00110{bottom:898.599867pt;}
.y7_c00110{bottom:930.599867pt;}
.y6_c00110{bottom:962.599867pt;}
.y2_c00110{bottom:1035.560000pt;}
.h4_c00110{height:18.560000pt;}
.h3_c00110{height:62.812500pt;}
.h2_c00110{height:1099.880000pt;}
.h0_c00110{height:1122.520000pt;}
.h1_c00110{height:1122.666667pt;}
.w3_c00110{width:24.320000pt;}
.w2_c00110{width:771.080000pt;}
.w0_c00110{width:793.720000pt;}
.w1_c00110{width:794.000000pt;}
.x0_c00110{left:0.000000pt;}
.x1_c00110{left:11.320000pt;}
.x3_c00110{left:84.794933pt;}
.x5_c00110{left:132.800133pt;}
.x4_c00110{left:384.760000pt;}
.x2_c00110{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35a48862f726793052ef3b23.woff2')format("woff");}.ff1_c00111{font-family:ff1_c00111;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00111;src:url('chunks/assets/font_3fda60eca83cbb08c1d130fe.woff2')format("woff");}.ff2_c00111{font-family:ff2_c00111;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00111{letter-spacing:0.000000px;}
.ls1_c00111{letter-spacing:3.715200px;}
.sc__c00111{text-shadow:none;}
.sc0_c00111{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00111{-webkit-text-stroke:0px transparent;}
.sc0_c00111{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00111{word-spacing:0.000000px;}
._1_c00111{margin-left:-3.700800px;}
._7_c00111{width:1.022400px;}
._d_c00111{width:2.174400px;}
._0_c00111{width:3.672000px;}
._9_c00111{width:5.227200px;}
._6_c00111{width:6.508800px;}
._5_c00111{width:7.826400px;}
._2_c00111{width:9.511200px;}
._f_c00111{width:10.634400px;}
._3_c00111{width:11.635200px;}
._b_c00111{width:12.823200px;}
._c_c00111{width:19.872000px;}
._8_c00111{width:21.146400px;}
._4_c00111{width:22.442400px;}
._e_c00111{width:26.395200px;}
._a_c00111{width:27.849600px;}
.fc1_c00111{color:transparent;}
.fc0_c00111{color:rgb(0,0,0);}
.fs0_c00111{font-size:72.000000px;}
.y0_c00111{bottom:0.000000px;}
.y5_c00111{bottom:1.440000px;}
.y1_c00111{bottom:12.735000px;}
.y3_c00111{bottom:45.405000px;}
.y4_c00111{bottom:56.700000px;}
.y20_c00111{bottom:146.924850px;}
.y1f_c00111{bottom:182.924850px;}
.y1e_c00111{bottom:218.924850px;}
.y1d_c00111{bottom:254.924850px;}
.y1c_c00111{bottom:290.924850px;}
.y1b_c00111{bottom:326.924850px;}
.y1a_c00111{bottom:362.924850px;}
.y19_c00111{bottom:398.924850px;}
.y18_c00111{bottom:434.924850px;}
.y17_c00111{bottom:470.924850px;}
.y16_c00111{bottom:506.924850px;}
.y15_c00111{bottom:542.924850px;}
.y14_c00111{bottom:578.924850px;}
.y13_c00111{bottom:614.924850px;}
.y12_c00111{bottom:650.924850px;}
.y11_c00111{bottom:686.924850px;}
.y10_c00111{bottom:722.924850px;}
.yf_c00111{bottom:758.924850px;}
.ye_c00111{bottom:794.924850px;}
.yd_c00111{bottom:830.924850px;}
.yc_c00111{bottom:866.924850px;}
.yb_c00111{bottom:902.924850px;}
.ya_c00111{bottom:938.924850px;}
.y9_c00111{bottom:974.924850px;}
.y8_c00111{bottom:1010.924850px;}
.y7_c00111{bottom:1046.924850px;}
.y6_c00111{bottom:1082.924850px;}
.y2_c00111{bottom:1165.005000px;}
.h4_c00111{height:17.280000px;}
.h3_c00111{height:70.664062px;}
.h2_c00111{height:1237.365000px;}
.h0_c00111{height:1262.835000px;}
.h1_c00111{height:1263.000000px;}
.w3_c00111{width:47.520000px;}
.w2_c00111{width:867.465000px;}
.w0_c00111{width:892.935000px;}
.w1_c00111{width:893.250000px;}
.x0_c00111{left:0.000000px;}
.x5_c00111{left:10.237500px;}
.x1_c00111{left:12.735000px;}
.x3_c00111{left:95.394300px;}
.x6_c00111{left:149.400150px;}
.x4_c00111{left:422.775000px;}
.x2_c00111{left:880.050300px;}
@media print{
.v0_c00111{vertical-align:0.000000pt;}
.ls0_c00111{letter-spacing:0.000000pt;}
.ls1_c00111{letter-spacing:3.302400pt;}
.ws0_c00111{word-spacing:0.000000pt;}
._1_c00111{margin-left:-3.289600pt;}
._7_c00111{width:0.908800pt;}
._d_c00111{width:1.932800pt;}
._0_c00111{width:3.264000pt;}
._9_c00111{width:4.646400pt;}
._6_c00111{width:5.785600pt;}
._5_c00111{width:6.956800pt;}
._2_c00111{width:8.454400pt;}
._f_c00111{width:9.452800pt;}
._3_c00111{width:10.342400pt;}
._b_c00111{width:11.398400pt;}
._c_c00111{width:17.664000pt;}
._8_c00111{width:18.796800pt;}
._4_c00111{width:19.948800pt;}
._e_c00111{width:23.462400pt;}
._a_c00111{width:24.755200pt;}
.fs0_c00111{font-size:64.000000pt;}
.y0_c00111{bottom:0.000000pt;}
.y5_c00111{bottom:1.280000pt;}
.y1_c00111{bottom:11.320000pt;}
.y3_c00111{bottom:40.360000pt;}
.y4_c00111{bottom:50.400000pt;}
.y20_c00111{bottom:130.599867pt;}
.y1f_c00111{bottom:162.599867pt;}
.y1e_c00111{bottom:194.599867pt;}
.y1d_c00111{bottom:226.599867pt;}
.y1c_c00111{bottom:258.599867pt;}
.y1b_c00111{bottom:290.599867pt;}
.y1a_c00111{bottom:322.599867pt;}
.y19_c00111{bottom:354.599867pt;}
.y18_c00111{bottom:386.599867pt;}
.y17_c00111{bottom:418.599867pt;}
.y16_c00111{bottom:450.599867pt;}
.y15_c00111{bottom:482.599867pt;}
.y14_c00111{bottom:514.599867pt;}
.y13_c00111{bottom:546.599867pt;}
.y12_c00111{bottom:578.599867pt;}
.y11_c00111{bottom:610.599867pt;}
.y10_c00111{bottom:642.599867pt;}
.yf_c00111{bottom:674.599867pt;}
.ye_c00111{bottom:706.599867pt;}
.yd_c00111{bottom:738.599867pt;}
.yc_c00111{bottom:770.599867pt;}
.yb_c00111{bottom:802.599867pt;}
.ya_c00111{bottom:834.599867pt;}
.y9_c00111{bottom:866.599867pt;}
.y8_c00111{bottom:898.599867pt;}
.y7_c00111{bottom:930.599867pt;}
.y6_c00111{bottom:962.599867pt;}
.y2_c00111{bottom:1035.560000pt;}
.h4_c00111{height:15.360000pt;}
.h3_c00111{height:62.812500pt;}
.h2_c00111{height:1099.880000pt;}
.h0_c00111{height:1122.520000pt;}
.h1_c00111{height:1122.666667pt;}
.w3_c00111{width:42.240000pt;}
.w2_c00111{width:771.080000pt;}
.w0_c00111{width:793.720000pt;}
.w1_c00111{width:794.000000pt;}
.x0_c00111{left:0.000000pt;}
.x5_c00111{left:9.100000pt;}
.x1_c00111{left:11.320000pt;}
.x3_c00111{left:84.794933pt;}
.x6_c00111{left:132.800133pt;}
.x4_c00111{left:375.800000pt;}
.x2_c00111{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b14326f4b870fbca87f37eb9.woff2')format("woff");}.ff1_c00112{font-family:ff1_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:ff2_c00112;src:url('chunks/assets/font_8106945272b87422d3cf6602.woff2')format("woff");}.ff2_c00112{font-family:ff2_c00112;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;}
.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;}
.ls1_c00112{letter-spacing:0.000000px;}
.ls0_c00112{letter-spacing:10.296000px;}
.sc__c00112{text-shadow:none;}
.sc0_c00112{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00112{-webkit-text-stroke:0px transparent;}
.sc0_c00112{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00112{word-spacing:0.000000px;}
._1_c00112{width:1.742400px;}
._4_c00112{width:3.427200px;}
._7_c00112{width:5.443200px;}
._9_c00112{width:9.532800px;}
._2_c00112{width:10.677600px;}
._3_c00112{width:12.398400px;}
._0_c00112{width:13.723200px;}
._6_c00112{width:14.788800px;}
._8_c00112{width:19.857600px;}
._5_c00112{width:30.700800px;}
.fc1_c00112{color:transparent;}
.fc0_c00112{color:rgb(0,0,0);}
.fs0_c00112{font-size:72.000000px;}
.y0_c00112{bottom:0.000000px;}
.y5_c00112{bottom:5.040000px;}
.y1_c00112{bottom:12.735000px;}
.y3_c00112{bottom:45.405000px;}
.y4_c00112{bottom:53.100000px;}
.y21_c00112{bottom:110.924850px;}
.y20_c00112{bottom:146.924850px;}
.y1f_c00112{bottom:182.924850px;}
.y1e_c00112{bottom:218.924850px;}
.y1d_c00112{bottom:254.924850px;}
.y1c_c00112{bottom:290.924850px;}
.y1b_c00112{bottom:326.924850px;}
.y1a_c00112{bottom:362.924850px;}
.y19_c00112{bottom:398.924850px;}
.y18_c00112{bottom:434.924850px;}
.y17_c00112{bottom:470.924850px;}
.y16_c00112{bottom:506.924850px;}
.y15_c00112{bottom:542.924850px;}
.y14_c00112{bottom:578.924850px;}
.y13_c00112{bottom:614.924850px;}
.y12_c00112{bottom:650.924850px;}
.y11_c00112{bottom:686.924850px;}
.y10_c00112{bottom:722.924850px;}
.yf_c00112{bottom:758.924850px;}
.ye_c00112{bottom:794.924850px;}
.yd_c00112{bottom:830.924850px;}
.yc_c00112{bottom:866.924850px;}
.yb_c00112{bottom:902.924850px;}
.ya_c00112{bottom:938.924850px;}
.y9_c00112{bottom:974.924850px;}
.y8_c00112{bottom:1010.924850px;}
.y7_c00112{bottom:1046.924850px;}
.y6_c00112{bottom:1082.924850px;}
.y2_c00112{bottom:1165.005000px;}
.h4_c00112{height:20.880000px;}
.h3_c00112{height:70.664062px;}
.h5_c00112{height:74.953125px;}
.h2_c00112{height:1237.365000px;}
.h0_c00112{height:1262.835000px;}
.h1_c00112{height:1263.000000px;}
.w3_c00112{width:27.360000px;}
.w2_c00112{width:867.465000px;}
.w0_c00112{width:892.935000px;}
.w1_c00112{width:893.250000px;}
.x0_c00112{left:0.000000px;}
.x1_c00112{left:12.735000px;}
.x3_c00112{left:95.394300px;}
.x5_c00112{left:149.400150px;}
.x4_c00112{left:432.855000px;}
.x2_c00112{left:880.050300px;}
@media print{
.v0_c00112{vertical-align:0.000000pt;}
.ls1_c00112{letter-spacing:0.000000pt;}
.ls0_c00112{letter-spacing:9.152000pt;}
.ws0_c00112{word-spacing:0.000000pt;}
._1_c00112{width:1.548800pt;}
._4_c00112{width:3.046400pt;}
._7_c00112{width:4.838400pt;}
._9_c00112{width:8.473600pt;}
._2_c00112{width:9.491200pt;}
._3_c00112{width:11.020800pt;}
._0_c00112{width:12.198400pt;}
._6_c00112{width:13.145600pt;}
._8_c00112{width:17.651200pt;}
._5_c00112{width:27.289600pt;}
.fs0_c00112{font-size:64.000000pt;}
.y0_c00112{bottom:0.000000pt;}
.y5_c00112{bottom:4.480000pt;}
.y1_c00112{bottom:11.320000pt;}
.y3_c00112{bottom:40.360000pt;}
.y4_c00112{bottom:47.200000pt;}
.y21_c00112{bottom:98.599867pt;}
.y20_c00112{bottom:130.599867pt;}
.y1f_c00112{bottom:162.599867pt;}
.y1e_c00112{bottom:194.599867pt;}
.y1d_c00112{bottom:226.599867pt;}
.y1c_c00112{bottom:258.599867pt;}
.y1b_c00112{bottom:290.599867pt;}
.y1a_c00112{bottom:322.599867pt;}
.y19_c00112{bottom:354.599867pt;}
.y18_c00112{bottom:386.599867pt;}
.y17_c00112{bottom:418.599867pt;}
.y16_c00112{bottom:450.599867pt;}
.y15_c00112{bottom:482.599867pt;}
.y14_c00112{bottom:514.599867pt;}
.y13_c00112{bottom:546.599867pt;}
.y12_c00112{bottom:578.599867pt;}
.y11_c00112{bottom:610.599867pt;}
.y10_c00112{bottom:642.599867pt;}
.yf_c00112{bottom:674.599867pt;}
.ye_c00112{bottom:706.599867pt;}
.yd_c00112{bottom:738.599867pt;}
.yc_c00112{bottom:770.599867pt;}
.yb_c00112{bottom:802.599867pt;}
.ya_c00112{bottom:834.599867pt;}
.y9_c00112{bottom:866.599867pt;}
.y8_c00112{bottom:898.599867pt;}
.y7_c00112{bottom:930.599867pt;}
.y6_c00112{bottom:962.599867pt;}
.y2_c00112{bottom:1035.560000pt;}
.h4_c00112{height:18.560000pt;}
.h3_c00112{height:62.812500pt;}
.h5_c00112{height:66.625000pt;}
.h2_c00112{height:1099.880000pt;}
.h0_c00112{height:1122.520000pt;}
.h1_c00112{height:1122.666667pt;}
.w3_c00112{width:24.320000pt;}
.w2_c00112{width:771.080000pt;}
.w0_c00112{width:793.720000pt;}
.w1_c00112{width:794.000000pt;}
.x0_c00112{left:0.000000pt;}
.x1_c00112{left:11.320000pt;}
.x3_c00112{left:84.794933pt;}
.x5_c00112{left:132.800133pt;}
.x4_c00112{left:384.760000pt;}
.x2_c00112{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d5d29cf8149f8f353bc7d96c.woff2')format("woff");}.ff1_c00113{font-family:ff1_c00113;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00113;src:url('chunks/assets/font_9db0b8e9ca9c6183b8ef1fc4.woff2')format("woff");}.ff2_c00113{font-family:ff2_c00113;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:ff3_c00113;src:url('chunks/assets/font_351f1edffa968eb08eddb2a2.woff2')format("woff");}.ff3_c00113{font-family:ff3_c00113;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00113{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00113{vertical-align:0.000000px;}
.ls1_c00113{letter-spacing:0.000000px;}
.ls0_c00113{letter-spacing:5.184000px;}
.ls2_c00113{letter-spacing:8.301600px;}
.sc__c00113{text-shadow:none;}
.sc0_c00113{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00113{-webkit-text-stroke:0px transparent;}
.sc0_c00113{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00113{word-spacing:0.000000px;}
._7_c00113{margin-left:-8.006400px;}
._6_c00113{width:1.288800px;}
._2_c00113{width:3.254400px;}
._0_c00113{width:5.220000px;}
._a_c00113{width:6.775200px;}
._1_c00113{width:8.236800px;}
._8_c00113{width:10.411200px;}
._9_c00113{width:16.005600px;}
._5_c00113{width:21.794400px;}
._4_c00113{width:22.816800px;}
._3_c00113{width:24.451200px;}
.fc1_c00113{color:transparent;}
.fc0_c00113{color:rgb(0,0,0);}
.fs0_c00113{font-size:72.000000px;}
.y0_c00113{bottom:0.000000px;}
.y5_c00113{bottom:1.440000px;}
.y1_c00113{bottom:12.735000px;}
.y3_c00113{bottom:45.405000px;}
.y4_c00113{bottom:56.700000px;}
.y20_c00113{bottom:146.924850px;}
.y1f_c00113{bottom:182.924850px;}
.y1e_c00113{bottom:218.924850px;}
.y1d_c00113{bottom:254.924850px;}
.y1c_c00113{bottom:290.924850px;}
.y1b_c00113{bottom:326.924850px;}
.y1a_c00113{bottom:362.924850px;}
.y19_c00113{bottom:398.924850px;}
.y18_c00113{bottom:434.924850px;}
.y17_c00113{bottom:470.924850px;}
.y16_c00113{bottom:506.924850px;}
.y15_c00113{bottom:542.924850px;}
.y14_c00113{bottom:578.924850px;}
.y13_c00113{bottom:614.924850px;}
.y12_c00113{bottom:650.924850px;}
.y11_c00113{bottom:686.924850px;}
.y10_c00113{bottom:722.924850px;}
.yf_c00113{bottom:758.924850px;}
.ye_c00113{bottom:794.924850px;}
.yd_c00113{bottom:830.924850px;}
.yc_c00113{bottom:866.924850px;}
.yb_c00113{bottom:902.924850px;}
.ya_c00113{bottom:938.924850px;}
.y9_c00113{bottom:974.924850px;}
.y8_c00113{bottom:1010.924850px;}
.y7_c00113{bottom:1046.924850px;}
.y6_c00113{bottom:1082.924850px;}
.y2_c00113{bottom:1165.005000px;}
.h4_c00113{height:17.280000px;}
.h6_c00113{height:70.628906px;}
.h3_c00113{height:70.664062px;}
.h5_c00113{height:74.953125px;}
.h2_c00113{height:1237.365000px;}
.h0_c00113{height:1262.835000px;}
.h1_c00113{height:1263.000000px;}
.w3_c00113{width:47.520000px;}
.w2_c00113{width:867.465000px;}
.w0_c00113{width:892.935000px;}
.w1_c00113{width:893.250000px;}
.x0_c00113{left:0.000000px;}
.x5_c00113{left:10.237500px;}
.x1_c00113{left:12.735000px;}
.x3_c00113{left:95.394300px;}
.x6_c00113{left:149.382150px;}
.x4_c00113{left:422.775000px;}
.x2_c00113{left:880.050300px;}
@media print{
.v0_c00113{vertical-align:0.000000pt;}
.ls1_c00113{letter-spacing:0.000000pt;}
.ls0_c00113{letter-spacing:4.608000pt;}
.ls2_c00113{letter-spacing:7.379200pt;}
.ws0_c00113{word-spacing:0.000000pt;}
._7_c00113{margin-left:-7.116800pt;}
._6_c00113{width:1.145600pt;}
._2_c00113{width:2.892800pt;}
._0_c00113{width:4.640000pt;}
._a_c00113{width:6.022400pt;}
._1_c00113{width:7.321600pt;}
._8_c00113{width:9.254400pt;}
._9_c00113{width:14.227200pt;}
._5_c00113{width:19.372800pt;}
._4_c00113{width:20.281600pt;}
._3_c00113{width:21.734400pt;}
.fs0_c00113{font-size:64.000000pt;}
.y0_c00113{bottom:0.000000pt;}
.y5_c00113{bottom:1.280000pt;}
.y1_c00113{bottom:11.320000pt;}
.y3_c00113{bottom:40.360000pt;}
.y4_c00113{bottom:50.400000pt;}
.y20_c00113{bottom:130.599867pt;}
.y1f_c00113{bottom:162.599867pt;}
.y1e_c00113{bottom:194.599867pt;}
.y1d_c00113{bottom:226.599867pt;}
.y1c_c00113{bottom:258.599867pt;}
.y1b_c00113{bottom:290.599867pt;}
.y1a_c00113{bottom:322.599867pt;}
.y19_c00113{bottom:354.599867pt;}
.y18_c00113{bottom:386.599867pt;}
.y17_c00113{bottom:418.599867pt;}
.y16_c00113{bottom:450.599867pt;}
.y15_c00113{bottom:482.599867pt;}
.y14_c00113{bottom:514.599867pt;}
.y13_c00113{bottom:546.599867pt;}
.y12_c00113{bottom:578.599867pt;}
.y11_c00113{bottom:610.599867pt;}
.y10_c00113{bottom:642.599867pt;}
.yf_c00113{bottom:674.599867pt;}
.ye_c00113{bottom:706.599867pt;}
.yd_c00113{bottom:738.599867pt;}
.yc_c00113{bottom:770.599867pt;}
.yb_c00113{bottom:802.599867pt;}
.ya_c00113{bottom:834.599867pt;}
.y9_c00113{bottom:866.599867pt;}
.y8_c00113{bottom:898.599867pt;}
.y7_c00113{bottom:930.599867pt;}
.y6_c00113{bottom:962.599867pt;}
.y2_c00113{bottom:1035.560000pt;}
.h4_c00113{height:15.360000pt;}
.h6_c00113{height:62.781250pt;}
.h3_c00113{height:62.812500pt;}
.h5_c00113{height:66.625000pt;}
.h2_c00113{height:1099.880000pt;}
.h0_c00113{height:1122.520000pt;}
.h1_c00113{height:1122.666667pt;}
.w3_c00113{width:42.240000pt;}
.w2_c00113{width:771.080000pt;}
.w0_c00113{width:793.720000pt;}
.w1_c00113{width:794.000000pt;}
.x0_c00113{left:0.000000pt;}
.x5_c00113{left:9.100000pt;}
.x1_c00113{left:11.320000pt;}
.x3_c00113{left:84.794933pt;}
.x6_c00113{left:132.784133pt;}
.x4_c00113{left:375.800000pt;}
.x2_c00113{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0f3181437a7846c2bff65a79.woff2')format("woff");}.ff1_c00114{font-family:ff1_c00114;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00114;src:url('chunks/assets/font_ebf1d0dd116a46ac21b85af6.woff2')format("woff");}.ff2_c00114{font-family:ff2_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;}
.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;}
.ls0_c00114{letter-spacing:0.000000px;}
.ls1_c00114{letter-spacing:3.124800px;}
.sc__c00114{text-shadow:none;}
.sc0_c00114{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00114{-webkit-text-stroke:0px transparent;}
.sc0_c00114{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00114{word-spacing:0.000000px;}
._6_c00114{margin-left:-3.996000px;}
._5_c00114{margin-left:-2.340000px;}
._4_c00114{width:1.720800px;}
._2_c00114{width:3.290400px;}
._3_c00114{width:4.298400px;}
._0_c00114{width:6.336000px;}
._7_c00114{width:7.603200px;}
._c_c00114{width:12.240000px;}
._1_c00114{width:13.298400px;}
._b_c00114{width:16.372800px;}
._d_c00114{width:21.636000px;}
._9_c00114{width:27.475200px;}
._a_c00114{width:28.483200px;}
._8_c00114{width:30.650400px;}
.fc1_c00114{color:transparent;}
.fc0_c00114{color:rgb(0,0,0);}
.fs0_c00114{font-size:72.000000px;}
.y0_c00114{bottom:0.000000px;}
.y5_c00114{bottom:5.040000px;}
.y1_c00114{bottom:12.735000px;}
.y3_c00114{bottom:45.405000px;}
.y4_c00114{bottom:53.100000px;}
.y1c_c00114{bottom:290.924850px;}
.y1b_c00114{bottom:326.924850px;}
.y1a_c00114{bottom:362.924850px;}
.y19_c00114{bottom:398.924850px;}
.y18_c00114{bottom:434.924850px;}
.y17_c00114{bottom:470.924850px;}
.y16_c00114{bottom:506.924850px;}
.y15_c00114{bottom:542.924850px;}
.y14_c00114{bottom:578.924850px;}
.y13_c00114{bottom:614.924850px;}
.y12_c00114{bottom:650.924850px;}
.y11_c00114{bottom:686.924850px;}
.y10_c00114{bottom:722.924850px;}
.yf_c00114{bottom:758.924850px;}
.ye_c00114{bottom:794.924850px;}
.yd_c00114{bottom:830.924850px;}
.yc_c00114{bottom:866.924850px;}
.yb_c00114{bottom:902.924850px;}
.ya_c00114{bottom:938.924850px;}
.y9_c00114{bottom:974.924850px;}
.y8_c00114{bottom:1010.924850px;}
.y7_c00114{bottom:1046.924850px;}
.y6_c00114{bottom:1082.924850px;}
.y2_c00114{bottom:1165.005000px;}
.h4_c00114{height:20.880000px;}
.h5_c00114{height:70.628906px;}
.h3_c00114{height:70.664062px;}
.h2_c00114{height:1237.365000px;}
.h0_c00114{height:1262.835000px;}
.h1_c00114{height:1263.000000px;}
.w3_c00114{width:27.360000px;}
.w2_c00114{width:867.465000px;}
.w0_c00114{width:892.935000px;}
.w1_c00114{width:893.250000px;}
.x0_c00114{left:0.000000px;}
.x1_c00114{left:12.735000px;}
.x3_c00114{left:95.394300px;}
.x5_c00114{left:149.400150px;}
.x4_c00114{left:432.855000px;}
.x2_c00114{left:880.050300px;}
@media print{
.v0_c00114{vertical-align:0.000000pt;}
.ls0_c00114{letter-spacing:0.000000pt;}
.ls1_c00114{letter-spacing:2.777600pt;}
.ws0_c00114{word-spacing:0.000000pt;}
._6_c00114{margin-left:-3.552000pt;}
._5_c00114{margin-left:-2.080000pt;}
._4_c00114{width:1.529600pt;}
._2_c00114{width:2.924800pt;}
._3_c00114{width:3.820800pt;}
._0_c00114{width:5.632000pt;}
._7_c00114{width:6.758400pt;}
._c_c00114{width:10.880000pt;}
._1_c00114{width:11.820800pt;}
._b_c00114{width:14.553600pt;}
._d_c00114{width:19.232000pt;}
._9_c00114{width:24.422400pt;}
._a_c00114{width:25.318400pt;}
._8_c00114{width:27.244800pt;}
.fs0_c00114{font-size:64.000000pt;}
.y0_c00114{bottom:0.000000pt;}
.y5_c00114{bottom:4.480000pt;}
.y1_c00114{bottom:11.320000pt;}
.y3_c00114{bottom:40.360000pt;}
.y4_c00114{bottom:47.200000pt;}
.y1c_c00114{bottom:258.599867pt;}
.y1b_c00114{bottom:290.599867pt;}
.y1a_c00114{bottom:322.599867pt;}
.y19_c00114{bottom:354.599867pt;}
.y18_c00114{bottom:386.599867pt;}
.y17_c00114{bottom:418.599867pt;}
.y16_c00114{bottom:450.599867pt;}
.y15_c00114{bottom:482.599867pt;}
.y14_c00114{bottom:514.599867pt;}
.y13_c00114{bottom:546.599867pt;}
.y12_c00114{bottom:578.599867pt;}
.y11_c00114{bottom:610.599867pt;}
.y10_c00114{bottom:642.599867pt;}
.yf_c00114{bottom:674.599867pt;}
.ye_c00114{bottom:706.599867pt;}
.yd_c00114{bottom:738.599867pt;}
.yc_c00114{bottom:770.599867pt;}
.yb_c00114{bottom:802.599867pt;}
.ya_c00114{bottom:834.599867pt;}
.y9_c00114{bottom:866.599867pt;}
.y8_c00114{bottom:898.599867pt;}
.y7_c00114{bottom:930.599867pt;}
.y6_c00114{bottom:962.599867pt;}
.y2_c00114{bottom:1035.560000pt;}
.h4_c00114{height:18.560000pt;}
.h5_c00114{height:62.781250pt;}
.h3_c00114{height:62.812500pt;}
.h2_c00114{height:1099.880000pt;}
.h0_c00114{height:1122.520000pt;}
.h1_c00114{height:1122.666667pt;}
.w3_c00114{width:24.320000pt;}
.w2_c00114{width:771.080000pt;}
.w0_c00114{width:793.720000pt;}
.w1_c00114{width:794.000000pt;}
.x0_c00114{left:0.000000pt;}
.x1_c00114{left:11.320000pt;}
.x3_c00114{left:84.794933pt;}
.x5_c00114{left:132.800133pt;}
.x4_c00114{left:384.760000pt;}
.x2_c00114{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_874e8c9fe5f63940f87ca59e.woff2')format("woff");}.ff1_c00115{font-family:ff1_c00115;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00115;src:url('chunks/assets/font_e2249a27b1cb10fed7216df5.woff2')format("woff");}.ff2_c00115{font-family:ff2_c00115;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00115;src:url('chunks/assets/font_dba1a8f9d2c07dfda662bfd8.woff2')format("woff");}.ff3_c00115{font-family:ff3_c00115;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00115{letter-spacing:0.000000px;}
.ls0_c00115{letter-spacing:0.083520px;}
.ls2_c00115{letter-spacing:0.242208px;}
.ls3_c00115{letter-spacing:0.283968px;}
.ls5_c00115{letter-spacing:1.641600px;}
.ls4_c00115{letter-spacing:11.952000px;}
.sc__c00115{text-shadow:none;}
.sc0_c00115{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00115{-webkit-text-stroke:0px transparent;}
.sc0_c00115{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00115{word-spacing:0.000000px;}
._1_c00115{margin-left:-12.052800px;}
._8_c00115{margin-left:-2.520000px;}
._7_c00115{margin-left:-1.224000px;}
._2_c00115{width:1.209600px;}
._6_c00115{width:2.505600px;}
._d_c00115{width:3.744000px;}
._a_c00115{width:5.148000px;}
._b_c00115{width:6.156000px;}
._3_c00115{width:7.833600px;}
._c_c00115{width:8.949600px;}
._9_c00115{width:10.058400px;}
._0_c00115{width:12.002400px;}
._f_c00115{width:13.716000px;}
._e_c00115{width:16.891200px;}
._5_c00115{width:19.785600px;}
._4_c00115{width:22.564800px;}
.fc2_c00115{color:transparent;}
.fc1_c00115{color:rgb(127,127,127);}
.fc0_c00115{color:rgb(0,0,0);}
.fs0_c00115{font-size:72.000000px;}
.fs1_c00115{font-size:83.520000px;}
.y0_c00115{bottom:0.000000px;}
.y5_c00115{bottom:1.440000px;}
.y1_c00115{bottom:12.735000px;}
.y3_c00115{bottom:45.405000px;}
.y4_c00115{bottom:56.700000px;}
.y21_c00115{bottom:110.924850px;}
.y20_c00115{bottom:146.924850px;}
.y1f_c00115{bottom:182.924850px;}
.y1e_c00115{bottom:218.924850px;}
.y1d_c00115{bottom:254.924850px;}
.y1c_c00115{bottom:290.924850px;}
.y1b_c00115{bottom:326.924850px;}
.y1a_c00115{bottom:362.924850px;}
.y19_c00115{bottom:398.924850px;}
.y18_c00115{bottom:434.924850px;}
.y17_c00115{bottom:470.924850px;}
.y16_c00115{bottom:506.924850px;}
.y15_c00115{bottom:542.924850px;}
.y14_c00115{bottom:578.924850px;}
.y13_c00115{bottom:614.924850px;}
.y12_c00115{bottom:650.924850px;}
.y11_c00115{bottom:686.924850px;}
.y10_c00115{bottom:722.924850px;}
.yf_c00115{bottom:758.924850px;}
.ye_c00115{bottom:794.924850px;}
.yd_c00115{bottom:830.924850px;}
.yc_c00115{bottom:866.924850px;}
.yb_c00115{bottom:902.924850px;}
.ya_c00115{bottom:938.924850px;}
.y9_c00115{bottom:974.924850px;}
.y8_c00115{bottom:1010.924850px;}
.y7_c00115{bottom:1046.924850px;}
.y6_c00115{bottom:1083.645000px;}
.y2_c00115{bottom:1165.005000px;}
.h4_c00115{height:17.280000px;}
.h6_c00115{height:70.628906px;}
.h3_c00115{height:70.664062px;}
.h5_c00115{height:81.929531px;}
.h2_c00115{height:1237.365000px;}
.h0_c00115{height:1262.835000px;}
.h1_c00115{height:1263.000000px;}
.w3_c00115{width:47.520000px;}
.w2_c00115{width:867.465000px;}
.w0_c00115{width:892.935000px;}
.w1_c00115{width:893.250000px;}
.x0_c00115{left:0.000000px;}
.x5_c00115{left:10.237500px;}
.x1_c00115{left:12.735000px;}
.x3_c00115{left:95.394300px;}
.x6_c00115{left:148.572150px;}
.x4_c00115{left:422.775000px;}
.x2_c00115{left:880.050300px;}
@media print{
.v0_c00115{vertical-align:0.000000pt;}
.ls1_c00115{letter-spacing:0.000000pt;}
.ls0_c00115{letter-spacing:0.074240pt;}
.ls2_c00115{letter-spacing:0.215296pt;}
.ls3_c00115{letter-spacing:0.252416pt;}
.ls5_c00115{letter-spacing:1.459200pt;}
.ls4_c00115{letter-spacing:10.624000pt;}
.ws0_c00115{word-spacing:0.000000pt;}
._1_c00115{margin-left:-10.713600pt;}
._8_c00115{margin-left:-2.240000pt;}
._7_c00115{margin-left:-1.088000pt;}
._2_c00115{width:1.075200pt;}
._6_c00115{width:2.227200pt;}
._d_c00115{width:3.328000pt;}
._a_c00115{width:4.576000pt;}
._b_c00115{width:5.472000pt;}
._3_c00115{width:6.963200pt;}
._c_c00115{width:7.955200pt;}
._9_c00115{width:8.940800pt;}
._0_c00115{width:10.668800pt;}
._f_c00115{width:12.192000pt;}
._e_c00115{width:15.014400pt;}
._5_c00115{width:17.587200pt;}
._4_c00115{width:20.057600pt;}
.fs0_c00115{font-size:64.000000pt;}
.fs1_c00115{font-size:74.240000pt;}
.y0_c00115{bottom:0.000000pt;}
.y5_c00115{bottom:1.280000pt;}
.y1_c00115{bottom:11.320000pt;}
.y3_c00115{bottom:40.360000pt;}
.y4_c00115{bottom:50.400000pt;}
.y21_c00115{bottom:98.599867pt;}
.y20_c00115{bottom:130.599867pt;}
.y1f_c00115{bottom:162.599867pt;}
.y1e_c00115{bottom:194.599867pt;}
.y1d_c00115{bottom:226.599867pt;}
.y1c_c00115{bottom:258.599867pt;}
.y1b_c00115{bottom:290.599867pt;}
.y1a_c00115{bottom:322.599867pt;}
.y19_c00115{bottom:354.599867pt;}
.y18_c00115{bottom:386.599867pt;}
.y17_c00115{bottom:418.599867pt;}
.y16_c00115{bottom:450.599867pt;}
.y15_c00115{bottom:482.599867pt;}
.y14_c00115{bottom:514.599867pt;}
.y13_c00115{bottom:546.599867pt;}
.y12_c00115{bottom:578.599867pt;}
.y11_c00115{bottom:610.599867pt;}
.y10_c00115{bottom:642.599867pt;}
.yf_c00115{bottom:674.599867pt;}
.ye_c00115{bottom:706.599867pt;}
.yd_c00115{bottom:738.599867pt;}
.yc_c00115{bottom:770.599867pt;}
.yb_c00115{bottom:802.599867pt;}
.ya_c00115{bottom:834.599867pt;}
.y9_c00115{bottom:866.599867pt;}
.y8_c00115{bottom:898.599867pt;}
.y7_c00115{bottom:930.599867pt;}
.y6_c00115{bottom:963.240000pt;}
.y2_c00115{bottom:1035.560000pt;}
.h4_c00115{height:15.360000pt;}
.h6_c00115{height:62.781250pt;}
.h3_c00115{height:62.812500pt;}
.h5_c00115{height:72.826250pt;}
.h2_c00115{height:1099.880000pt;}
.h0_c00115{height:1122.520000pt;}
.h1_c00115{height:1122.666667pt;}
.w3_c00115{width:42.240000pt;}
.w2_c00115{width:771.080000pt;}
.w0_c00115{width:793.720000pt;}
.w1_c00115{width:794.000000pt;}
.x0_c00115{left:0.000000pt;}
.x5_c00115{left:9.100000pt;}
.x1_c00115{left:11.320000pt;}
.x3_c00115{left:84.794933pt;}
.x6_c00115{left:132.064133pt;}
.x4_c00115{left:375.800000pt;}
.x2_c00115{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8f3a8930e363fd1e1a3b12e.woff2')format("woff");}.ff1_c00116{font-family:ff1_c00116;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00116;src:url('chunks/assets/font_1fa579a3b9f877d0ddff565b.woff2')format("woff");}.ff2_c00116{font-family:ff2_c00116;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00116{letter-spacing:0.000000px;}
.ls1_c00116{letter-spacing:0.014400px;}
.sc__c00116{text-shadow:none;}
.sc0_c00116{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00116{-webkit-text-stroke:0px transparent;}
.sc0_c00116{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00116{word-spacing:0.000000px;}
._1_c00116{width:1.519200px;}
._0_c00116{width:3.232800px;}
._8_c00116{width:4.435200px;}
._7_c00116{width:6.012000px;}
._b_c00116{width:7.380000px;}
._6_c00116{width:8.618400px;}
._3_c00116{width:12.506400px;}
._2_c00116{width:14.875200px;}
._4_c00116{width:19.627200px;}
._9_c00116{width:23.529600px;}
._a_c00116{width:27.986400px;}
._5_c00116{width:35.683200px;}
.fc1_c00116{color:transparent;}
.fc0_c00116{color:rgb(0,0,0);}
.fs0_c00116{font-size:72.000000px;}
.y0_c00116{bottom:0.000000px;}
.y5_c00116{bottom:5.040000px;}
.y1_c00116{bottom:12.735000px;}
.y3_c00116{bottom:45.405000px;}
.y4_c00116{bottom:53.100000px;}
.y20_c00116{bottom:146.924850px;}
.y1f_c00116{bottom:182.924850px;}
.y1e_c00116{bottom:218.924850px;}
.y1d_c00116{bottom:254.924850px;}
.y1c_c00116{bottom:290.924850px;}
.y1b_c00116{bottom:326.924850px;}
.y1a_c00116{bottom:362.924850px;}
.y19_c00116{bottom:398.924850px;}
.y18_c00116{bottom:434.924850px;}
.y17_c00116{bottom:470.924850px;}
.y16_c00116{bottom:506.924850px;}
.y15_c00116{bottom:542.924850px;}
.y14_c00116{bottom:578.924850px;}
.y13_c00116{bottom:614.924850px;}
.y12_c00116{bottom:650.924850px;}
.y11_c00116{bottom:686.924850px;}
.y10_c00116{bottom:722.924850px;}
.yf_c00116{bottom:758.924850px;}
.ye_c00116{bottom:794.924850px;}
.yd_c00116{bottom:830.924850px;}
.yc_c00116{bottom:866.924850px;}
.yb_c00116{bottom:902.924850px;}
.ya_c00116{bottom:938.924850px;}
.y9_c00116{bottom:974.924850px;}
.y8_c00116{bottom:1010.924850px;}
.y7_c00116{bottom:1046.924850px;}
.y6_c00116{bottom:1082.924850px;}
.y2_c00116{bottom:1165.005000px;}
.h4_c00116{height:20.880000px;}
.h3_c00116{height:70.664062px;}
.h2_c00116{height:1237.365000px;}
.h0_c00116{height:1262.835000px;}
.h1_c00116{height:1263.000000px;}
.w3_c00116{width:27.360000px;}
.w2_c00116{width:867.465000px;}
.w0_c00116{width:892.935000px;}
.w1_c00116{width:893.250000px;}
.x0_c00116{left:0.000000px;}
.x1_c00116{left:12.735000px;}
.x3_c00116{left:95.394300px;}
.x5_c00116{left:149.400150px;}
.x4_c00116{left:432.855000px;}
.x2_c00116{left:880.050300px;}
@media print{
.v0_c00116{vertical-align:0.000000pt;}
.ls0_c00116{letter-spacing:0.000000pt;}
.ls1_c00116{letter-spacing:0.012800pt;}
.ws0_c00116{word-spacing:0.000000pt;}
._1_c00116{width:1.350400pt;}
._0_c00116{width:2.873600pt;}
._8_c00116{width:3.942400pt;}
._7_c00116{width:5.344000pt;}
._b_c00116{width:6.560000pt;}
._6_c00116{width:7.660800pt;}
._3_c00116{width:11.116800pt;}
._2_c00116{width:13.222400pt;}
._4_c00116{width:17.446400pt;}
._9_c00116{width:20.915200pt;}
._a_c00116{width:24.876800pt;}
._5_c00116{width:31.718400pt;}
.fs0_c00116{font-size:64.000000pt;}
.y0_c00116{bottom:0.000000pt;}
.y5_c00116{bottom:4.480000pt;}
.y1_c00116{bottom:11.320000pt;}
.y3_c00116{bottom:40.360000pt;}
.y4_c00116{bottom:47.200000pt;}
.y20_c00116{bottom:130.599867pt;}
.y1f_c00116{bottom:162.599867pt;}
.y1e_c00116{bottom:194.599867pt;}
.y1d_c00116{bottom:226.599867pt;}
.y1c_c00116{bottom:258.599867pt;}
.y1b_c00116{bottom:290.599867pt;}
.y1a_c00116{bottom:322.599867pt;}
.y19_c00116{bottom:354.599867pt;}
.y18_c00116{bottom:386.599867pt;}
.y17_c00116{bottom:418.599867pt;}
.y16_c00116{bottom:450.599867pt;}
.y15_c00116{bottom:482.599867pt;}
.y14_c00116{bottom:514.599867pt;}
.y13_c00116{bottom:546.599867pt;}
.y12_c00116{bottom:578.599867pt;}
.y11_c00116{bottom:610.599867pt;}
.y10_c00116{bottom:642.599867pt;}
.yf_c00116{bottom:674.599867pt;}
.ye_c00116{bottom:706.599867pt;}
.yd_c00116{bottom:738.599867pt;}
.yc_c00116{bottom:770.599867pt;}
.yb_c00116{bottom:802.599867pt;}
.ya_c00116{bottom:834.599867pt;}
.y9_c00116{bottom:866.599867pt;}
.y8_c00116{bottom:898.599867pt;}
.y7_c00116{bottom:930.599867pt;}
.y6_c00116{bottom:962.599867pt;}
.y2_c00116{bottom:1035.560000pt;}
.h4_c00116{height:18.560000pt;}
.h3_c00116{height:62.812500pt;}
.h2_c00116{height:1099.880000pt;}
.h0_c00116{height:1122.520000pt;}
.h1_c00116{height:1122.666667pt;}
.w3_c00116{width:24.320000pt;}
.w2_c00116{width:771.080000pt;}
.w0_c00116{width:793.720000pt;}
.w1_c00116{width:794.000000pt;}
.x0_c00116{left:0.000000pt;}
.x1_c00116{left:11.320000pt;}
.x3_c00116{left:84.794933pt;}
.x5_c00116{left:132.800133pt;}
.x4_c00116{left:384.760000pt;}
.x2_c00116{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6f26c7c69e8d11b289f49a9f.woff2')format("woff");}.ff1_c00117{font-family:ff1_c00117;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00117{letter-spacing:-0.014400px;}
.ls0_c00117{letter-spacing:0.000000px;}
.sc__c00117{text-shadow:none;}
.sc0_c00117{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00117{-webkit-text-stroke:0px transparent;}
.sc0_c00117{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00117{word-spacing:0.000000px;}
._1_c00117{width:1.641600px;}
._7_c00117{width:3.168000px;}
._2_c00117{width:4.363200px;}
._c_c00117{width:5.378400px;}
._8_c00117{width:6.552000px;}
._3_c00117{width:9.640800px;}
._5_c00117{width:10.713600px;}
._9_c00117{width:12.276000px;}
._a_c00117{width:13.586400px;}
._d_c00117{width:14.738400px;}
._b_c00117{width:16.977600px;}
._6_c00117{width:19.130400px;}
._0_c00117{width:22.809600px;}
._4_c00117{width:34.293600px;}
.fc1_c00117{color:transparent;}
.fc0_c00117{color:rgb(0,0,0);}
.fs0_c00117{font-size:72.000000px;}
.y0_c00117{bottom:0.000000px;}
.y5_c00117{bottom:1.440000px;}
.y1_c00117{bottom:12.735000px;}
.y3_c00117{bottom:45.405000px;}
.y4_c00117{bottom:56.700000px;}
.y21_c00117{bottom:110.924850px;}
.y20_c00117{bottom:146.924850px;}
.y1f_c00117{bottom:182.924850px;}
.y1e_c00117{bottom:218.924850px;}
.y1d_c00117{bottom:254.924850px;}
.y1c_c00117{bottom:290.924850px;}
.y1b_c00117{bottom:326.924850px;}
.y1a_c00117{bottom:362.924850px;}
.y19_c00117{bottom:398.924850px;}
.y18_c00117{bottom:434.924850px;}
.y17_c00117{bottom:470.924850px;}
.y16_c00117{bottom:506.924850px;}
.y15_c00117{bottom:542.924850px;}
.y14_c00117{bottom:578.924850px;}
.y13_c00117{bottom:614.924850px;}
.y12_c00117{bottom:650.924850px;}
.y11_c00117{bottom:686.924850px;}
.y10_c00117{bottom:722.924850px;}
.yf_c00117{bottom:758.924850px;}
.ye_c00117{bottom:794.924850px;}
.yd_c00117{bottom:830.924850px;}
.yc_c00117{bottom:866.924850px;}
.yb_c00117{bottom:902.924850px;}
.ya_c00117{bottom:938.924850px;}
.y9_c00117{bottom:974.924850px;}
.y8_c00117{bottom:1010.924850px;}
.y7_c00117{bottom:1046.924850px;}
.y6_c00117{bottom:1082.924850px;}
.y2_c00117{bottom:1165.005000px;}
.h4_c00117{height:17.280000px;}
.h3_c00117{height:70.664062px;}
.h2_c00117{height:1237.365000px;}
.h0_c00117{height:1262.835000px;}
.h1_c00117{height:1263.000000px;}
.w3_c00117{width:47.520000px;}
.w2_c00117{width:867.465000px;}
.w0_c00117{width:892.935000px;}
.w1_c00117{width:893.250000px;}
.x0_c00117{left:0.000000px;}
.x5_c00117{left:10.237500px;}
.x1_c00117{left:12.735000px;}
.x3_c00117{left:95.394300px;}
.x6_c00117{left:149.400150px;}
.x4_c00117{left:422.775000px;}
.x2_c00117{left:880.050300px;}
@media print{
.v0_c00117{vertical-align:0.000000pt;}
.ls1_c00117{letter-spacing:-0.012800pt;}
.ls0_c00117{letter-spacing:0.000000pt;}
.ws0_c00117{word-spacing:0.000000pt;}
._1_c00117{width:1.459200pt;}
._7_c00117{width:2.816000pt;}
._2_c00117{width:3.878400pt;}
._c_c00117{width:4.780800pt;}
._8_c00117{width:5.824000pt;}
._3_c00117{width:8.569600pt;}
._5_c00117{width:9.523200pt;}
._9_c00117{width:10.912000pt;}
._a_c00117{width:12.076800pt;}
._d_c00117{width:13.100800pt;}
._b_c00117{width:15.091200pt;}
._6_c00117{width:17.004800pt;}
._0_c00117{width:20.275200pt;}
._4_c00117{width:30.483200pt;}
.fs0_c00117{font-size:64.000000pt;}
.y0_c00117{bottom:0.000000pt;}
.y5_c00117{bottom:1.280000pt;}
.y1_c00117{bottom:11.320000pt;}
.y3_c00117{bottom:40.360000pt;}
.y4_c00117{bottom:50.400000pt;}
.y21_c00117{bottom:98.599867pt;}
.y20_c00117{bottom:130.599867pt;}
.y1f_c00117{bottom:162.599867pt;}
.y1e_c00117{bottom:194.599867pt;}
.y1d_c00117{bottom:226.599867pt;}
.y1c_c00117{bottom:258.599867pt;}
.y1b_c00117{bottom:290.599867pt;}
.y1a_c00117{bottom:322.599867pt;}
.y19_c00117{bottom:354.599867pt;}
.y18_c00117{bottom:386.599867pt;}
.y17_c00117{bottom:418.599867pt;}
.y16_c00117{bottom:450.599867pt;}
.y15_c00117{bottom:482.599867pt;}
.y14_c00117{bottom:514.599867pt;}
.y13_c00117{bottom:546.599867pt;}
.y12_c00117{bottom:578.599867pt;}
.y11_c00117{bottom:610.599867pt;}
.y10_c00117{bottom:642.599867pt;}
.yf_c00117{bottom:674.599867pt;}
.ye_c00117{bottom:706.599867pt;}
.yd_c00117{bottom:738.599867pt;}
.yc_c00117{bottom:770.599867pt;}
.yb_c00117{bottom:802.599867pt;}
.ya_c00117{bottom:834.599867pt;}
.y9_c00117{bottom:866.599867pt;}
.y8_c00117{bottom:898.599867pt;}
.y7_c00117{bottom:930.599867pt;}
.y6_c00117{bottom:962.599867pt;}
.y2_c00117{bottom:1035.560000pt;}
.h4_c00117{height:15.360000pt;}
.h3_c00117{height:62.812500pt;}
.h2_c00117{height:1099.880000pt;}
.h0_c00117{height:1122.520000pt;}
.h1_c00117{height:1122.666667pt;}
.w3_c00117{width:42.240000pt;}
.w2_c00117{width:771.080000pt;}
.w0_c00117{width:793.720000pt;}
.w1_c00117{width:794.000000pt;}
.x0_c00117{left:0.000000pt;}
.x5_c00117{left:9.100000pt;}
.x1_c00117{left:11.320000pt;}
.x3_c00117{left:84.794933pt;}
.x6_c00117{left:132.800133pt;}
.x4_c00117{left:375.800000pt;}
.x2_c00117{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_dd15f31bc94f48a76898a18f.woff2')format("woff");}.ff1_c00118{font-family:ff1_c00118;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00118;src:url('chunks/assets/font_90a0db70027840d7308e347e.woff2')format("woff");}.ff2_c00118{font-family:ff2_c00118;line-height:1.284180;font-style: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;}
.ls0_c00118{letter-spacing:0.000000px;}
.sc__c00118{text-shadow:none;}
.sc0_c00118{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00118{-webkit-text-stroke:0px transparent;}
.sc0_c00118{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00118{word-spacing:0.000000px;}
._9_c00118{width:1.468800px;}
._d_c00118{width:2.577600px;}
._6_c00118{width:3.758400px;}
._0_c00118{width:5.270400px;}
._5_c00118{width:6.357600px;}
._1_c00118{width:7.740000px;}
._e_c00118{width:9.302400px;}
._4_c00118{width:10.382400px;}
._a_c00118{width:12.333600px;}
._3_c00118{width:15.012000px;}
._8_c00118{width:22.312800px;}
._c_c00118{width:29.361600px;}
._7_c00118{width:31.348800px;}
._2_c00118{width:33.091200px;}
._b_c00118{width:56.570400px;}
.fc1_c00118{color:transparent;}
.fc0_c00118{color:rgb(0,0,0);}
.fs0_c00118{font-size:72.000000px;}
.y0_c00118{bottom:0.000000px;}
.y5_c00118{bottom:5.040000px;}
.y1_c00118{bottom:12.735000px;}
.y3_c00118{bottom:45.405000px;}
.y4_c00118{bottom:53.100000px;}
.y20_c00118{bottom:146.924850px;}
.y1f_c00118{bottom:182.924850px;}
.y1e_c00118{bottom:218.924850px;}
.y1d_c00118{bottom:254.924850px;}
.y1c_c00118{bottom:290.924850px;}
.y1b_c00118{bottom:326.924850px;}
.y1a_c00118{bottom:362.924850px;}
.y19_c00118{bottom:398.924850px;}
.y18_c00118{bottom:434.924850px;}
.y17_c00118{bottom:470.924850px;}
.y16_c00118{bottom:506.924850px;}
.y15_c00118{bottom:542.924850px;}
.y14_c00118{bottom:578.924850px;}
.y13_c00118{bottom:614.924850px;}
.y12_c00118{bottom:650.924850px;}
.y11_c00118{bottom:686.924850px;}
.y10_c00118{bottom:722.924850px;}
.yf_c00118{bottom:758.924850px;}
.ye_c00118{bottom:794.924850px;}
.yd_c00118{bottom:830.924850px;}
.yc_c00118{bottom:866.924850px;}
.yb_c00118{bottom:902.924850px;}
.ya_c00118{bottom:938.924850px;}
.y9_c00118{bottom:974.924850px;}
.y8_c00118{bottom:1010.924850px;}
.y7_c00118{bottom:1046.924850px;}
.y6_c00118{bottom:1082.924850px;}
.y2_c00118{bottom:1165.005000px;}
.h4_c00118{height:20.880000px;}
.h3_c00118{height:70.664062px;}
.h2_c00118{height:1237.365000px;}
.h0_c00118{height:1262.835000px;}
.h1_c00118{height:1263.000000px;}
.w3_c00118{width:27.360000px;}
.w2_c00118{width:867.465000px;}
.w0_c00118{width:892.935000px;}
.w1_c00118{width:893.250000px;}
.x0_c00118{left:0.000000px;}
.x1_c00118{left:12.735000px;}
.x3_c00118{left:95.394300px;}
.x5_c00118{left:149.400150px;}
.x4_c00118{left:432.855000px;}
.x2_c00118{left:880.050300px;}
@media print{
.v0_c00118{vertical-align:0.000000pt;}
.ls0_c00118{letter-spacing:0.000000pt;}
.ws0_c00118{word-spacing:0.000000pt;}
._9_c00118{width:1.305600pt;}
._d_c00118{width:2.291200pt;}
._6_c00118{width:3.340800pt;}
._0_c00118{width:4.684800pt;}
._5_c00118{width:5.651200pt;}
._1_c00118{width:6.880000pt;}
._e_c00118{width:8.268800pt;}
._4_c00118{width:9.228800pt;}
._a_c00118{width:10.963200pt;}
._3_c00118{width:13.344000pt;}
._8_c00118{width:19.833600pt;}
._c_c00118{width:26.099200pt;}
._7_c00118{width:27.865600pt;}
._2_c00118{width:29.414400pt;}
._b_c00118{width:50.284800pt;}
.fs0_c00118{font-size:64.000000pt;}
.y0_c00118{bottom:0.000000pt;}
.y5_c00118{bottom:4.480000pt;}
.y1_c00118{bottom:11.320000pt;}
.y3_c00118{bottom:40.360000pt;}
.y4_c00118{bottom:47.200000pt;}
.y20_c00118{bottom:130.599867pt;}
.y1f_c00118{bottom:162.599867pt;}
.y1e_c00118{bottom:194.599867pt;}
.y1d_c00118{bottom:226.599867pt;}
.y1c_c00118{bottom:258.599867pt;}
.y1b_c00118{bottom:290.599867pt;}
.y1a_c00118{bottom:322.599867pt;}
.y19_c00118{bottom:354.599867pt;}
.y18_c00118{bottom:386.599867pt;}
.y17_c00118{bottom:418.599867pt;}
.y16_c00118{bottom:450.599867pt;}
.y15_c00118{bottom:482.599867pt;}
.y14_c00118{bottom:514.599867pt;}
.y13_c00118{bottom:546.599867pt;}
.y12_c00118{bottom:578.599867pt;}
.y11_c00118{bottom:610.599867pt;}
.y10_c00118{bottom:642.599867pt;}
.yf_c00118{bottom:674.599867pt;}
.ye_c00118{bottom:706.599867pt;}
.yd_c00118{bottom:738.599867pt;}
.yc_c00118{bottom:770.599867pt;}
.yb_c00118{bottom:802.599867pt;}
.ya_c00118{bottom:834.599867pt;}
.y9_c00118{bottom:866.599867pt;}
.y8_c00118{bottom:898.599867pt;}
.y7_c00118{bottom:930.599867pt;}
.y6_c00118{bottom:962.599867pt;}
.y2_c00118{bottom:1035.560000pt;}
.h4_c00118{height:18.560000pt;}
.h3_c00118{height:62.812500pt;}
.h2_c00118{height:1099.880000pt;}
.h0_c00118{height:1122.520000pt;}
.h1_c00118{height:1122.666667pt;}
.w3_c00118{width:24.320000pt;}
.w2_c00118{width:771.080000pt;}
.w0_c00118{width:793.720000pt;}
.w1_c00118{width:794.000000pt;}
.x0_c00118{left:0.000000pt;}
.x1_c00118{left:11.320000pt;}
.x3_c00118{left:84.794933pt;}
.x5_c00118{left:132.800133pt;}
.x4_c00118{left:384.760000pt;}
.x2_c00118{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_81cef7f8bca60f846c1d4657.woff2')format("woff");}.ff1_c00119{font-family:ff1_c00119;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00119{letter-spacing:0.000000px;}
.sc__c00119{text-shadow:none;}
.sc0_c00119{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00119{-webkit-text-stroke:0px transparent;}
.sc0_c00119{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00119{word-spacing:0.000000px;}
._8_c00119{width:1.000800px;}
._0_c00119{width:2.008800px;}
._1_c00119{width:3.823200px;}
._2_c00119{width:5.148000px;}
._6_c00119{width:6.926400px;}
._5_c00119{width:8.971200px;}
._4_c00119{width:10.008000px;}
._3_c00119{width:11.210400px;}
._9_c00119{width:13.392000px;}
._7_c00119{width:14.421600px;}
._b_c00119{width:16.790400px;}
._a_c00119{width:22.176000px;}
.fc1_c00119{color:transparent;}
.fc0_c00119{color:rgb(0,0,0);}
.fs0_c00119{font-size:72.000000px;}
.y0_c00119{bottom:0.000000px;}
.y5_c00119{bottom:1.440000px;}
.y1_c00119{bottom:12.735000px;}
.y3_c00119{bottom:45.405000px;}
.y4_c00119{bottom:56.700000px;}
.y20_c00119{bottom:146.924850px;}
.y1f_c00119{bottom:182.924850px;}
.y1e_c00119{bottom:218.924850px;}
.y1d_c00119{bottom:254.924850px;}
.y1c_c00119{bottom:290.924850px;}
.y1b_c00119{bottom:326.924850px;}
.y1a_c00119{bottom:362.924850px;}
.y19_c00119{bottom:398.924850px;}
.y18_c00119{bottom:434.924850px;}
.y17_c00119{bottom:470.924850px;}
.y16_c00119{bottom:506.924850px;}
.y15_c00119{bottom:542.924850px;}
.y14_c00119{bottom:578.924850px;}
.y13_c00119{bottom:614.924850px;}
.y12_c00119{bottom:650.924850px;}
.y11_c00119{bottom:686.924850px;}
.y10_c00119{bottom:722.924850px;}
.yf_c00119{bottom:758.924850px;}
.ye_c00119{bottom:794.924850px;}
.yd_c00119{bottom:830.924850px;}
.yc_c00119{bottom:866.924850px;}
.yb_c00119{bottom:902.924850px;}
.ya_c00119{bottom:938.924850px;}
.y9_c00119{bottom:974.924850px;}
.y8_c00119{bottom:1010.924850px;}
.y7_c00119{bottom:1046.924850px;}
.y6_c00119{bottom:1082.924850px;}
.y2_c00119{bottom:1165.005000px;}
.h4_c00119{height:17.280000px;}
.h3_c00119{height:70.664062px;}
.h2_c00119{height:1237.365000px;}
.h0_c00119{height:1262.835000px;}
.h1_c00119{height:1263.000000px;}
.w3_c00119{width:47.520000px;}
.w2_c00119{width:867.465000px;}
.w0_c00119{width:892.935000px;}
.w1_c00119{width:893.250000px;}
.x0_c00119{left:0.000000px;}
.x5_c00119{left:10.237500px;}
.x1_c00119{left:12.735000px;}
.x3_c00119{left:95.394300px;}
.x6_c00119{left:149.400150px;}
.x4_c00119{left:422.775000px;}
.x2_c00119{left:880.050300px;}
@media print{
.v0_c00119{vertical-align:0.000000pt;}
.ls0_c00119{letter-spacing:0.000000pt;}
.ws0_c00119{word-spacing:0.000000pt;}
._8_c00119{width:0.889600pt;}
._0_c00119{width:1.785600pt;}
._1_c00119{width:3.398400pt;}
._2_c00119{width:4.576000pt;}
._6_c00119{width:6.156800pt;}
._5_c00119{width:7.974400pt;}
._4_c00119{width:8.896000pt;}
._3_c00119{width:9.964800pt;}
._9_c00119{width:11.904000pt;}
._7_c00119{width:12.819200pt;}
._b_c00119{width:14.924800pt;}
._a_c00119{width:19.712000pt;}
.fs0_c00119{font-size:64.000000pt;}
.y0_c00119{bottom:0.000000pt;}
.y5_c00119{bottom:1.280000pt;}
.y1_c00119{bottom:11.320000pt;}
.y3_c00119{bottom:40.360000pt;}
.y4_c00119{bottom:50.400000pt;}
.y20_c00119{bottom:130.599867pt;}
.y1f_c00119{bottom:162.599867pt;}
.y1e_c00119{bottom:194.599867pt;}
.y1d_c00119{bottom:226.599867pt;}
.y1c_c00119{bottom:258.599867pt;}
.y1b_c00119{bottom:290.599867pt;}
.y1a_c00119{bottom:322.599867pt;}
.y19_c00119{bottom:354.599867pt;}
.y18_c00119{bottom:386.599867pt;}
.y17_c00119{bottom:418.599867pt;}
.y16_c00119{bottom:450.599867pt;}
.y15_c00119{bottom:482.599867pt;}
.y14_c00119{bottom:514.599867pt;}
.y13_c00119{bottom:546.599867pt;}
.y12_c00119{bottom:578.599867pt;}
.y11_c00119{bottom:610.599867pt;}
.y10_c00119{bottom:642.599867pt;}
.yf_c00119{bottom:674.599867pt;}
.ye_c00119{bottom:706.599867pt;}
.yd_c00119{bottom:738.599867pt;}
.yc_c00119{bottom:770.599867pt;}
.yb_c00119{bottom:802.599867pt;}
.ya_c00119{bottom:834.599867pt;}
.y9_c00119{bottom:866.599867pt;}
.y8_c00119{bottom:898.599867pt;}
.y7_c00119{bottom:930.599867pt;}
.y6_c00119{bottom:962.599867pt;}
.y2_c00119{bottom:1035.560000pt;}
.h4_c00119{height:15.360000pt;}
.h3_c00119{height:62.812500pt;}
.h2_c00119{height:1099.880000pt;}
.h0_c00119{height:1122.520000pt;}
.h1_c00119{height:1122.666667pt;}
.w3_c00119{width:42.240000pt;}
.w2_c00119{width:771.080000pt;}
.w0_c00119{width:793.720000pt;}
.w1_c00119{width:794.000000pt;}
.x0_c00119{left:0.000000pt;}
.x5_c00119{left:9.100000pt;}
.x1_c00119{left:11.320000pt;}
.x3_c00119{left:84.794933pt;}
.x6_c00119{left:132.800133pt;}
.x4_c00119{left:375.800000pt;}
.x2_c00119{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a2d1954cdab1a2eb7c03ec46.woff2')format("woff");}.ff1_c00120{font-family:ff1_c00120;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00120;src:url('chunks/assets/font_799b28a7ede65daa9041d37e.woff2')format("woff");}.ff2_c00120{font-family:ff2_c00120;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00120{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00120{vertical-align:0.000000px;}
.ls0_c00120{letter-spacing:0.000000px;}
.sc__c00120{text-shadow:none;}
.sc0_c00120{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00120{-webkit-text-stroke:0px transparent;}
.sc0_c00120{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00120{word-spacing:0.000000px;}
._a_c00120{width:1.065600px;}
._5_c00120{width:2.628000px;}
._8_c00120{width:4.903200px;}
._7_c00120{width:6.379200px;}
._0_c00120{width:9.266400px;}
._6_c00120{width:10.771200px;}
._2_c00120{width:11.872800px;}
._4_c00120{width:13.240800px;}
._1_c00120{width:15.976800px;}
._3_c00120{width:20.584800px;}
._b_c00120{width:22.363200px;}
._9_c00120{width:29.030400px;}
.fc1_c00120{color:transparent;}
.fc0_c00120{color:rgb(0,0,0);}
.fs0_c00120{font-size:72.000000px;}
.y0_c00120{bottom:0.000000px;}
.y5_c00120{bottom:5.040000px;}
.y1_c00120{bottom:12.735000px;}
.y3_c00120{bottom:45.405000px;}
.y4_c00120{bottom:53.100000px;}
.y20_c00120{bottom:146.924850px;}
.y1f_c00120{bottom:182.924850px;}
.y1e_c00120{bottom:218.924850px;}
.y1d_c00120{bottom:254.924850px;}
.y1c_c00120{bottom:290.924850px;}
.y1b_c00120{bottom:326.924850px;}
.y1a_c00120{bottom:362.924850px;}
.y19_c00120{bottom:398.924850px;}
.y18_c00120{bottom:434.924850px;}
.y17_c00120{bottom:470.924850px;}
.y16_c00120{bottom:506.924850px;}
.y15_c00120{bottom:542.924850px;}
.y14_c00120{bottom:578.924850px;}
.y13_c00120{bottom:614.924850px;}
.y12_c00120{bottom:650.924850px;}
.y11_c00120{bottom:686.924850px;}
.y10_c00120{bottom:722.924850px;}
.yf_c00120{bottom:758.924850px;}
.ye_c00120{bottom:794.924850px;}
.yd_c00120{bottom:830.924850px;}
.yc_c00120{bottom:866.924850px;}
.yb_c00120{bottom:902.924850px;}
.ya_c00120{bottom:938.924850px;}
.y9_c00120{bottom:974.924850px;}
.y8_c00120{bottom:1010.924850px;}
.y7_c00120{bottom:1046.924850px;}
.y6_c00120{bottom:1082.924850px;}
.y2_c00120{bottom:1165.005000px;}
.h4_c00120{height:20.880000px;}
.h5_c00120{height:70.628906px;}
.h3_c00120{height:70.664062px;}
.h2_c00120{height:1237.365000px;}
.h0_c00120{height:1262.835000px;}
.h1_c00120{height:1263.000000px;}
.w3_c00120{width:27.360000px;}
.w2_c00120{width:867.465000px;}
.w0_c00120{width:892.935000px;}
.w1_c00120{width:893.250000px;}
.x0_c00120{left:0.000000px;}
.x1_c00120{left:12.735000px;}
.x3_c00120{left:95.394300px;}
.x6_c00120{left:149.400150px;}
.x5_c00120{left:180.450150px;}
.x4_c00120{left:432.855000px;}
.x2_c00120{left:880.050300px;}
@media print{
.v0_c00120{vertical-align:0.000000pt;}
.ls0_c00120{letter-spacing:0.000000pt;}
.ws0_c00120{word-spacing:0.000000pt;}
._a_c00120{width:0.947200pt;}
._5_c00120{width:2.336000pt;}
._8_c00120{width:4.358400pt;}
._7_c00120{width:5.670400pt;}
._0_c00120{width:8.236800pt;}
._6_c00120{width:9.574400pt;}
._2_c00120{width:10.553600pt;}
._4_c00120{width:11.769600pt;}
._1_c00120{width:14.201600pt;}
._3_c00120{width:18.297600pt;}
._b_c00120{width:19.878400pt;}
._9_c00120{width:25.804800pt;}
.fs0_c00120{font-size:64.000000pt;}
.y0_c00120{bottom:0.000000pt;}
.y5_c00120{bottom:4.480000pt;}
.y1_c00120{bottom:11.320000pt;}
.y3_c00120{bottom:40.360000pt;}
.y4_c00120{bottom:47.200000pt;}
.y20_c00120{bottom:130.599867pt;}
.y1f_c00120{bottom:162.599867pt;}
.y1e_c00120{bottom:194.599867pt;}
.y1d_c00120{bottom:226.599867pt;}
.y1c_c00120{bottom:258.599867pt;}
.y1b_c00120{bottom:290.599867pt;}
.y1a_c00120{bottom:322.599867pt;}
.y19_c00120{bottom:354.599867pt;}
.y18_c00120{bottom:386.599867pt;}
.y17_c00120{bottom:418.599867pt;}
.y16_c00120{bottom:450.599867pt;}
.y15_c00120{bottom:482.599867pt;}
.y14_c00120{bottom:514.599867pt;}
.y13_c00120{bottom:546.599867pt;}
.y12_c00120{bottom:578.599867pt;}
.y11_c00120{bottom:610.599867pt;}
.y10_c00120{bottom:642.599867pt;}
.yf_c00120{bottom:674.599867pt;}
.ye_c00120{bottom:706.599867pt;}
.yd_c00120{bottom:738.599867pt;}
.yc_c00120{bottom:770.599867pt;}
.yb_c00120{bottom:802.599867pt;}
.ya_c00120{bottom:834.599867pt;}
.y9_c00120{bottom:866.599867pt;}
.y8_c00120{bottom:898.599867pt;}
.y7_c00120{bottom:930.599867pt;}
.y6_c00120{bottom:962.599867pt;}
.y2_c00120{bottom:1035.560000pt;}
.h4_c00120{height:18.560000pt;}
.h5_c00120{height:62.781250pt;}
.h3_c00120{height:62.812500pt;}
.h2_c00120{height:1099.880000pt;}
.h0_c00120{height:1122.520000pt;}
.h1_c00120{height:1122.666667pt;}
.w3_c00120{width:24.320000pt;}
.w2_c00120{width:771.080000pt;}
.w0_c00120{width:793.720000pt;}
.w1_c00120{width:794.000000pt;}
.x0_c00120{left:0.000000pt;}
.x1_c00120{left:11.320000pt;}
.x3_c00120{left:84.794933pt;}
.x6_c00120{left:132.800133pt;}
.x5_c00120{left:160.400133pt;}
.x4_c00120{left:384.760000pt;}
.x2_c00120{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c6e71fa7b70c877f4fca803.woff2')format("woff");}.ff1_c00121{font-family:ff1_c00121;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00121{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00121{vertical-align:0.000000px;}
.ls0_c00121{letter-spacing:0.000000px;}
.sc__c00121{text-shadow:none;}
.sc0_c00121{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00121{-webkit-text-stroke:0px transparent;}
.sc0_c00121{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00121{word-spacing:0.000000px;}
._5_c00121{margin-left:-1.015200px;}
._2_c00121{width:2.232000px;}
._3_c00121{width:3.628800px;}
._b_c00121{width:4.867200px;}
._7_c00121{width:6.033600px;}
._1_c00121{width:7.113600px;}
._a_c00121{width:8.308800px;}
._8_c00121{width:12.916800px;}
._9_c00121{width:14.162400px;}
._6_c00121{width:15.372000px;}
._4_c00121{width:16.862400px;}
._d_c00121{width:19.850400px;}
._c_c00121{width:23.112000px;}
._0_c00121{width:25.207200px;}
.fc1_c00121{color:transparent;}
.fc0_c00121{color:rgb(0,0,0);}
.fs0_c00121{font-size:72.000000px;}
.y0_c00121{bottom:0.000000px;}
.y5_c00121{bottom:1.440000px;}
.y1_c00121{bottom:12.735000px;}
.y3_c00121{bottom:45.405000px;}
.y4_c00121{bottom:56.700000px;}
.y21_c00121{bottom:110.924850px;}
.y20_c00121{bottom:146.924850px;}
.y1f_c00121{bottom:182.924850px;}
.y1e_c00121{bottom:218.924850px;}
.y1d_c00121{bottom:254.924850px;}
.y1c_c00121{bottom:290.924850px;}
.y1b_c00121{bottom:326.924850px;}
.y1a_c00121{bottom:362.924850px;}
.y19_c00121{bottom:398.924850px;}
.y18_c00121{bottom:434.924850px;}
.y17_c00121{bottom:470.924850px;}
.y16_c00121{bottom:506.924850px;}
.y15_c00121{bottom:542.924850px;}
.y14_c00121{bottom:578.924850px;}
.y13_c00121{bottom:614.924850px;}
.y12_c00121{bottom:650.924850px;}
.y11_c00121{bottom:686.924850px;}
.y10_c00121{bottom:722.924850px;}
.yf_c00121{bottom:758.924850px;}
.ye_c00121{bottom:794.924850px;}
.yd_c00121{bottom:830.924850px;}
.yc_c00121{bottom:866.924850px;}
.yb_c00121{bottom:902.924850px;}
.ya_c00121{bottom:938.924850px;}
.y9_c00121{bottom:974.924850px;}
.y8_c00121{bottom:1010.924850px;}
.y7_c00121{bottom:1046.924850px;}
.y6_c00121{bottom:1082.924850px;}
.y2_c00121{bottom:1165.005000px;}
.h4_c00121{height:17.280000px;}
.h3_c00121{height:70.664062px;}
.h2_c00121{height:1237.365000px;}
.h0_c00121{height:1262.835000px;}
.h1_c00121{height:1263.000000px;}
.w3_c00121{width:47.520000px;}
.w2_c00121{width:867.465000px;}
.w0_c00121{width:892.935000px;}
.w1_c00121{width:893.250000px;}
.x0_c00121{left:0.000000px;}
.x5_c00121{left:10.237500px;}
.x1_c00121{left:12.735000px;}
.x3_c00121{left:95.394300px;}
.x6_c00121{left:149.400150px;}
.x4_c00121{left:422.775000px;}
.x2_c00121{left:880.050300px;}
@media print{
.v0_c00121{vertical-align:0.000000pt;}
.ls0_c00121{letter-spacing:0.000000pt;}
.ws0_c00121{word-spacing:0.000000pt;}
._5_c00121{margin-left:-0.902400pt;}
._2_c00121{width:1.984000pt;}
._3_c00121{width:3.225600pt;}
._b_c00121{width:4.326400pt;}
._7_c00121{width:5.363200pt;}
._1_c00121{width:6.323200pt;}
._a_c00121{width:7.385600pt;}
._8_c00121{width:11.481600pt;}
._9_c00121{width:12.588800pt;}
._6_c00121{width:13.664000pt;}
._4_c00121{width:14.988800pt;}
._d_c00121{width:17.644800pt;}
._c_c00121{width:20.544000pt;}
._0_c00121{width:22.406400pt;}
.fs0_c00121{font-size:64.000000pt;}
.y0_c00121{bottom:0.000000pt;}
.y5_c00121{bottom:1.280000pt;}
.y1_c00121{bottom:11.320000pt;}
.y3_c00121{bottom:40.360000pt;}
.y4_c00121{bottom:50.400000pt;}
.y21_c00121{bottom:98.599867pt;}
.y20_c00121{bottom:130.599867pt;}
.y1f_c00121{bottom:162.599867pt;}
.y1e_c00121{bottom:194.599867pt;}
.y1d_c00121{bottom:226.599867pt;}
.y1c_c00121{bottom:258.599867pt;}
.y1b_c00121{bottom:290.599867pt;}
.y1a_c00121{bottom:322.599867pt;}
.y19_c00121{bottom:354.599867pt;}
.y18_c00121{bottom:386.599867pt;}
.y17_c00121{bottom:418.599867pt;}
.y16_c00121{bottom:450.599867pt;}
.y15_c00121{bottom:482.599867pt;}
.y14_c00121{bottom:514.599867pt;}
.y13_c00121{bottom:546.599867pt;}
.y12_c00121{bottom:578.599867pt;}
.y11_c00121{bottom:610.599867pt;}
.y10_c00121{bottom:642.599867pt;}
.yf_c00121{bottom:674.599867pt;}
.ye_c00121{bottom:706.599867pt;}
.yd_c00121{bottom:738.599867pt;}
.yc_c00121{bottom:770.599867pt;}
.yb_c00121{bottom:802.599867pt;}
.ya_c00121{bottom:834.599867pt;}
.y9_c00121{bottom:866.599867pt;}
.y8_c00121{bottom:898.599867pt;}
.y7_c00121{bottom:930.599867pt;}
.y6_c00121{bottom:962.599867pt;}
.y2_c00121{bottom:1035.560000pt;}
.h4_c00121{height:15.360000pt;}
.h3_c00121{height:62.812500pt;}
.h2_c00121{height:1099.880000pt;}
.h0_c00121{height:1122.520000pt;}
.h1_c00121{height:1122.666667pt;}
.w3_c00121{width:42.240000pt;}
.w2_c00121{width:771.080000pt;}
.w0_c00121{width:793.720000pt;}
.w1_c00121{width:794.000000pt;}
.x0_c00121{left:0.000000pt;}
.x5_c00121{left:9.100000pt;}
.x1_c00121{left:11.320000pt;}
.x3_c00121{left:84.794933pt;}
.x6_c00121{left:132.800133pt;}
.x4_c00121{left:375.800000pt;}
.x2_c00121{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b8bbe675def5ee8f34c35a99.woff2')format("woff");}.ff1_c00122{font-family:ff1_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:ff2_c00122;src:url('chunks/assets/font_9b97289e2fcd987d3b40da4c.woff2')format("woff");}.ff2_c00122{font-family:ff2_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:ff3_c00122;src:url('chunks/assets/font_b9e3a5695e7ee8714462563f.woff2')format("woff");}.ff3_c00122{font-family:ff3_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;}
.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;}
.ls0_c00122{letter-spacing:0.000000px;}
.ls1_c00122{letter-spacing:11.426400px;}
.sc__c00122{text-shadow:none;}
.sc0_c00122{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00122{-webkit-text-stroke:0px transparent;}
.sc0_c00122{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00122{word-spacing:0.000000px;}
._e_c00122{margin-left:-11.404800px;}
._8_c00122{width:2.016000px;}
._b_c00122{width:3.067200px;}
._a_c00122{width:4.132800px;}
._c_c00122{width:5.313600px;}
._9_c00122{width:7.142400px;}
._1_c00122{width:8.294400px;}
._7_c00122{width:10.360800px;}
._4_c00122{width:12.160800px;}
._6_c00122{width:13.197600px;}
._2_c00122{width:15.451200px;}
._0_c00122{width:16.588800px;}
._3_c00122{width:21.470400px;}
._d_c00122{width:25.588800px;}
._5_c00122{width:32.702400px;}
.fc1_c00122{color:transparent;}
.fc0_c00122{color:rgb(0,0,0);}
.fs0_c00122{font-size:72.000000px;}
.y0_c00122{bottom:0.000000px;}
.y5_c00122{bottom:5.040000px;}
.y1_c00122{bottom:12.735000px;}
.y3_c00122{bottom:45.405000px;}
.y4_c00122{bottom:53.100000px;}
.y20_c00122{bottom:146.924850px;}
.y1f_c00122{bottom:182.924850px;}
.y1e_c00122{bottom:218.924850px;}
.y1d_c00122{bottom:254.924850px;}
.y1c_c00122{bottom:290.924850px;}
.y1b_c00122{bottom:326.924850px;}
.y1a_c00122{bottom:362.924850px;}
.y19_c00122{bottom:398.924850px;}
.y18_c00122{bottom:434.924850px;}
.y17_c00122{bottom:470.924850px;}
.y16_c00122{bottom:506.924850px;}
.y15_c00122{bottom:542.924850px;}
.y14_c00122{bottom:578.924850px;}
.y13_c00122{bottom:614.924850px;}
.y12_c00122{bottom:650.924850px;}
.y11_c00122{bottom:686.924850px;}
.y10_c00122{bottom:722.924850px;}
.yf_c00122{bottom:758.924850px;}
.ye_c00122{bottom:794.924850px;}
.yd_c00122{bottom:830.924850px;}
.yc_c00122{bottom:866.924850px;}
.yb_c00122{bottom:902.924850px;}
.ya_c00122{bottom:938.924850px;}
.y9_c00122{bottom:974.924850px;}
.y8_c00122{bottom:1010.924850px;}
.y7_c00122{bottom:1046.924850px;}
.y6_c00122{bottom:1082.924850px;}
.y2_c00122{bottom:1165.005000px;}
.h4_c00122{height:20.880000px;}
.h5_c00122{height:70.628906px;}
.h3_c00122{height:70.664062px;}
.h2_c00122{height:1237.365000px;}
.h0_c00122{height:1262.835000px;}
.h1_c00122{height:1263.000000px;}
.w3_c00122{width:27.360000px;}
.w2_c00122{width:867.465000px;}
.w0_c00122{width:892.935000px;}
.w1_c00122{width:893.250000px;}
.x0_c00122{left:0.000000px;}
.x1_c00122{left:12.735000px;}
.x3_c00122{left:95.394300px;}
.x5_c00122{left:149.400150px;}
.x4_c00122{left:432.855000px;}
.x2_c00122{left:880.050300px;}
@media print{
.v0_c00122{vertical-align:0.000000pt;}
.ls0_c00122{letter-spacing:0.000000pt;}
.ls1_c00122{letter-spacing:10.156800pt;}
.ws0_c00122{word-spacing:0.000000pt;}
._e_c00122{margin-left:-10.137600pt;}
._8_c00122{width:1.792000pt;}
._b_c00122{width:2.726400pt;}
._a_c00122{width:3.673600pt;}
._c_c00122{width:4.723200pt;}
._9_c00122{width:6.348800pt;}
._1_c00122{width:7.372800pt;}
._7_c00122{width:9.209600pt;}
._4_c00122{width:10.809600pt;}
._6_c00122{width:11.731200pt;}
._2_c00122{width:13.734400pt;}
._0_c00122{width:14.745600pt;}
._3_c00122{width:19.084800pt;}
._d_c00122{width:22.745600pt;}
._5_c00122{width:29.068800pt;}
.fs0_c00122{font-size:64.000000pt;}
.y0_c00122{bottom:0.000000pt;}
.y5_c00122{bottom:4.480000pt;}
.y1_c00122{bottom:11.320000pt;}
.y3_c00122{bottom:40.360000pt;}
.y4_c00122{bottom:47.200000pt;}
.y20_c00122{bottom:130.599867pt;}
.y1f_c00122{bottom:162.599867pt;}
.y1e_c00122{bottom:194.599867pt;}
.y1d_c00122{bottom:226.599867pt;}
.y1c_c00122{bottom:258.599867pt;}
.y1b_c00122{bottom:290.599867pt;}
.y1a_c00122{bottom:322.599867pt;}
.y19_c00122{bottom:354.599867pt;}
.y18_c00122{bottom:386.599867pt;}
.y17_c00122{bottom:418.599867pt;}
.y16_c00122{bottom:450.599867pt;}
.y15_c00122{bottom:482.599867pt;}
.y14_c00122{bottom:514.599867pt;}
.y13_c00122{bottom:546.599867pt;}
.y12_c00122{bottom:578.599867pt;}
.y11_c00122{bottom:610.599867pt;}
.y10_c00122{bottom:642.599867pt;}
.yf_c00122{bottom:674.599867pt;}
.ye_c00122{bottom:706.599867pt;}
.yd_c00122{bottom:738.599867pt;}
.yc_c00122{bottom:770.599867pt;}
.yb_c00122{bottom:802.599867pt;}
.ya_c00122{bottom:834.599867pt;}
.y9_c00122{bottom:866.599867pt;}
.y8_c00122{bottom:898.599867pt;}
.y7_c00122{bottom:930.599867pt;}
.y6_c00122{bottom:962.599867pt;}
.y2_c00122{bottom:1035.560000pt;}
.h4_c00122{height:18.560000pt;}
.h5_c00122{height:62.781250pt;}
.h3_c00122{height:62.812500pt;}
.h2_c00122{height:1099.880000pt;}
.h0_c00122{height:1122.520000pt;}
.h1_c00122{height:1122.666667pt;}
.w3_c00122{width:24.320000pt;}
.w2_c00122{width:771.080000pt;}
.w0_c00122{width:793.720000pt;}
.w1_c00122{width:794.000000pt;}
.x0_c00122{left:0.000000pt;}
.x1_c00122{left:11.320000pt;}
.x3_c00122{left:84.794933pt;}
.x5_c00122{left:132.800133pt;}
.x4_c00122{left:384.760000pt;}
.x2_c00122{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9efd195e7d0484ec59ceb5a1.woff2')format("woff");}.ff1_c00123{font-family:ff1_c00123;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00123;src:url('chunks/assets/font_b035087005a91b94b0ad962e.woff2')format("woff");}.ff2_c00123{font-family:ff2_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;}
.m0_c00123{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00123{vertical-align:0.000000px;}
.ls0_c00123{letter-spacing:0.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;}
}
.ws0_c00123{word-spacing:0.000000px;}
._b_c00123{width:1.087200px;}
._3_c00123{width:2.944800px;}
._5_c00123{width:4.744800px;}
._7_c00123{width:6.300000px;}
._a_c00123{width:7.704000px;}
._4_c00123{width:10.562400px;}
._8_c00123{width:16.452000px;}
._d_c00123{width:20.016000px;}
._1_c00123{width:21.096000px;}
._0_c00123{width:23.760000px;}
._2_c00123{width:25.408800px;}
._c_c00123{width:27.885600px;}
._9_c00123{width:29.239200px;}
._6_c00123{width:30.888000px;}
.fc1_c00123{color:transparent;}
.fc0_c00123{color:rgb(0,0,0);}
.fs0_c00123{font-size:72.000000px;}
.y0_c00123{bottom:0.000000px;}
.y5_c00123{bottom:1.440000px;}
.y1_c00123{bottom:12.735000px;}
.y3_c00123{bottom:45.405000px;}
.y4_c00123{bottom:56.700000px;}
.y21_c00123{bottom:110.924850px;}
.y20_c00123{bottom:146.924850px;}
.y1f_c00123{bottom:182.924850px;}
.y1e_c00123{bottom:218.924850px;}
.y1d_c00123{bottom:254.924850px;}
.y1c_c00123{bottom:290.924850px;}
.y1b_c00123{bottom:326.924850px;}
.y1a_c00123{bottom:362.924850px;}
.y19_c00123{bottom:398.924850px;}
.y18_c00123{bottom:434.924850px;}
.y17_c00123{bottom:470.924850px;}
.y16_c00123{bottom:506.924850px;}
.y15_c00123{bottom:542.924850px;}
.y14_c00123{bottom:578.924850px;}
.y13_c00123{bottom:614.924850px;}
.y12_c00123{bottom:650.924850px;}
.y11_c00123{bottom:686.924850px;}
.y10_c00123{bottom:722.924850px;}
.yf_c00123{bottom:758.924850px;}
.ye_c00123{bottom:794.924850px;}
.yd_c00123{bottom:830.924850px;}
.yc_c00123{bottom:866.924850px;}
.yb_c00123{bottom:902.924850px;}
.ya_c00123{bottom:938.924850px;}
.y9_c00123{bottom:974.924850px;}
.y8_c00123{bottom:1010.924850px;}
.y7_c00123{bottom:1046.924850px;}
.y6_c00123{bottom:1082.924850px;}
.y2_c00123{bottom:1165.005000px;}
.h4_c00123{height:17.280000px;}
.h3_c00123{height:70.664062px;}
.h2_c00123{height:1237.365000px;}
.h0_c00123{height:1262.835000px;}
.h1_c00123{height:1263.000000px;}
.w3_c00123{width:47.520000px;}
.w2_c00123{width:867.465000px;}
.w0_c00123{width:892.935000px;}
.w1_c00123{width:893.250000px;}
.x0_c00123{left:0.000000px;}
.x5_c00123{left:10.237500px;}
.x1_c00123{left:12.735000px;}
.x3_c00123{left:95.394300px;}
.x6_c00123{left:149.400150px;}
.x4_c00123{left:422.775000px;}
.x2_c00123{left:880.050300px;}
@media print{
.v0_c00123{vertical-align:0.000000pt;}
.ls0_c00123{letter-spacing:0.000000pt;}
.ws0_c00123{word-spacing:0.000000pt;}
._b_c00123{width:0.966400pt;}
._3_c00123{width:2.617600pt;}
._5_c00123{width:4.217600pt;}
._7_c00123{width:5.600000pt;}
._a_c00123{width:6.848000pt;}
._4_c00123{width:9.388800pt;}
._8_c00123{width:14.624000pt;}
._d_c00123{width:17.792000pt;}
._1_c00123{width:18.752000pt;}
._0_c00123{width:21.120000pt;}
._2_c00123{width:22.585600pt;}
._c_c00123{width:24.787200pt;}
._9_c00123{width:25.990400pt;}
._6_c00123{width:27.456000pt;}
.fs0_c00123{font-size:64.000000pt;}
.y0_c00123{bottom:0.000000pt;}
.y5_c00123{bottom:1.280000pt;}
.y1_c00123{bottom:11.320000pt;}
.y3_c00123{bottom:40.360000pt;}
.y4_c00123{bottom:50.400000pt;}
.y21_c00123{bottom:98.599867pt;}
.y20_c00123{bottom:130.599867pt;}
.y1f_c00123{bottom:162.599867pt;}
.y1e_c00123{bottom:194.599867pt;}
.y1d_c00123{bottom:226.599867pt;}
.y1c_c00123{bottom:258.599867pt;}
.y1b_c00123{bottom:290.599867pt;}
.y1a_c00123{bottom:322.599867pt;}
.y19_c00123{bottom:354.599867pt;}
.y18_c00123{bottom:386.599867pt;}
.y17_c00123{bottom:418.599867pt;}
.y16_c00123{bottom:450.599867pt;}
.y15_c00123{bottom:482.599867pt;}
.y14_c00123{bottom:514.599867pt;}
.y13_c00123{bottom:546.599867pt;}
.y12_c00123{bottom:578.599867pt;}
.y11_c00123{bottom:610.599867pt;}
.y10_c00123{bottom:642.599867pt;}
.yf_c00123{bottom:674.599867pt;}
.ye_c00123{bottom:706.599867pt;}
.yd_c00123{bottom:738.599867pt;}
.yc_c00123{bottom:770.599867pt;}
.yb_c00123{bottom:802.599867pt;}
.ya_c00123{bottom:834.599867pt;}
.y9_c00123{bottom:866.599867pt;}
.y8_c00123{bottom:898.599867pt;}
.y7_c00123{bottom:930.599867pt;}
.y6_c00123{bottom:962.599867pt;}
.y2_c00123{bottom:1035.560000pt;}
.h4_c00123{height:15.360000pt;}
.h3_c00123{height:62.812500pt;}
.h2_c00123{height:1099.880000pt;}
.h0_c00123{height:1122.520000pt;}
.h1_c00123{height:1122.666667pt;}
.w3_c00123{width:42.240000pt;}
.w2_c00123{width:771.080000pt;}
.w0_c00123{width:793.720000pt;}
.w1_c00123{width:794.000000pt;}
.x0_c00123{left:0.000000pt;}
.x5_c00123{left:9.100000pt;}
.x1_c00123{left:11.320000pt;}
.x3_c00123{left:84.794933pt;}
.x6_c00123{left:132.800133pt;}
.x4_c00123{left:375.800000pt;}
.x2_c00123{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_af69486212347d120cecaddd.woff2')format("woff");}.ff1_c00124{font-family:ff1_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:ff2_c00124;src:url('chunks/assets/font_e15a66cee8a174ba7371a3ae.woff2')format("woff");}.ff2_c00124{font-family:ff2_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;}
.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;}
.ls0_c00124{letter-spacing:0.000000px;}
.ls1_c00124{letter-spacing:0.014400px;}
.sc__c00124{text-shadow:none;}
.sc0_c00124{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00124{-webkit-text-stroke:0px transparent;}
.sc0_c00124{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00124{word-spacing:0.000000px;}
._4_c00124{width:1.476000px;}
._3_c00124{width:2.512800px;}
._7_c00124{width:4.406400px;}
._0_c00124{width:5.443200px;}
._d_c00124{width:6.897600px;}
._a_c00124{width:8.935200px;}
._6_c00124{width:10.274400px;}
._b_c00124{width:13.456800px;}
._9_c00124{width:14.500800px;}
._2_c00124{width:15.984000px;}
._1_c00124{width:19.317600px;}
._5_c00124{width:20.426400px;}
._8_c00124{width:24.472800px;}
._e_c00124{width:25.797600px;}
._c_c00124{width:38.440800px;}
.fc1_c00124{color:transparent;}
.fc0_c00124{color:rgb(0,0,0);}
.fs0_c00124{font-size:72.000000px;}
.y0_c00124{bottom:0.000000px;}
.y5_c00124{bottom:5.040000px;}
.y1_c00124{bottom:12.735000px;}
.y3_c00124{bottom:45.405000px;}
.y4_c00124{bottom:53.100000px;}
.y21_c00124{bottom:110.924850px;}
.y20_c00124{bottom:146.924850px;}
.y1f_c00124{bottom:182.924850px;}
.y1e_c00124{bottom:218.924850px;}
.y1d_c00124{bottom:254.924850px;}
.y1c_c00124{bottom:290.924850px;}
.y1b_c00124{bottom:326.924850px;}
.y1a_c00124{bottom:362.924850px;}
.y19_c00124{bottom:398.924850px;}
.y18_c00124{bottom:434.924850px;}
.y17_c00124{bottom:470.924850px;}
.y16_c00124{bottom:506.924850px;}
.y15_c00124{bottom:542.924850px;}
.y14_c00124{bottom:578.924850px;}
.y13_c00124{bottom:614.924850px;}
.y12_c00124{bottom:650.924850px;}
.y11_c00124{bottom:686.924850px;}
.y10_c00124{bottom:722.924850px;}
.yf_c00124{bottom:758.924850px;}
.ye_c00124{bottom:794.924850px;}
.yd_c00124{bottom:830.924850px;}
.yc_c00124{bottom:866.924850px;}
.yb_c00124{bottom:902.924850px;}
.ya_c00124{bottom:938.924850px;}
.y9_c00124{bottom:974.924850px;}
.y8_c00124{bottom:1010.924850px;}
.y7_c00124{bottom:1046.924850px;}
.y6_c00124{bottom:1082.924850px;}
.y2_c00124{bottom:1165.005000px;}
.h4_c00124{height:20.880000px;}
.h3_c00124{height:70.664062px;}
.h2_c00124{height:1237.365000px;}
.h0_c00124{height:1262.835000px;}
.h1_c00124{height:1263.000000px;}
.w3_c00124{width:27.360000px;}
.w2_c00124{width:867.465000px;}
.w0_c00124{width:892.935000px;}
.w1_c00124{width:893.250000px;}
.x0_c00124{left:0.000000px;}
.x1_c00124{left:12.735000px;}
.x3_c00124{left:95.394300px;}
.x5_c00124{left:149.400150px;}
.x4_c00124{left:432.855000px;}
.x2_c00124{left:880.050300px;}
@media print{
.v0_c00124{vertical-align:0.000000pt;}
.ls0_c00124{letter-spacing:0.000000pt;}
.ls1_c00124{letter-spacing:0.012800pt;}
.ws0_c00124{word-spacing:0.000000pt;}
._4_c00124{width:1.312000pt;}
._3_c00124{width:2.233600pt;}
._7_c00124{width:3.916800pt;}
._0_c00124{width:4.838400pt;}
._d_c00124{width:6.131200pt;}
._a_c00124{width:7.942400pt;}
._6_c00124{width:9.132800pt;}
._b_c00124{width:11.961600pt;}
._9_c00124{width:12.889600pt;}
._2_c00124{width:14.208000pt;}
._1_c00124{width:17.171200pt;}
._5_c00124{width:18.156800pt;}
._8_c00124{width:21.753600pt;}
._e_c00124{width:22.931200pt;}
._c_c00124{width:34.169600pt;}
.fs0_c00124{font-size:64.000000pt;}
.y0_c00124{bottom:0.000000pt;}
.y5_c00124{bottom:4.480000pt;}
.y1_c00124{bottom:11.320000pt;}
.y3_c00124{bottom:40.360000pt;}
.y4_c00124{bottom:47.200000pt;}
.y21_c00124{bottom:98.599867pt;}
.y20_c00124{bottom:130.599867pt;}
.y1f_c00124{bottom:162.599867pt;}
.y1e_c00124{bottom:194.599867pt;}
.y1d_c00124{bottom:226.599867pt;}
.y1c_c00124{bottom:258.599867pt;}
.y1b_c00124{bottom:290.599867pt;}
.y1a_c00124{bottom:322.599867pt;}
.y19_c00124{bottom:354.599867pt;}
.y18_c00124{bottom:386.599867pt;}
.y17_c00124{bottom:418.599867pt;}
.y16_c00124{bottom:450.599867pt;}
.y15_c00124{bottom:482.599867pt;}
.y14_c00124{bottom:514.599867pt;}
.y13_c00124{bottom:546.599867pt;}
.y12_c00124{bottom:578.599867pt;}
.y11_c00124{bottom:610.599867pt;}
.y10_c00124{bottom:642.599867pt;}
.yf_c00124{bottom:674.599867pt;}
.ye_c00124{bottom:706.599867pt;}
.yd_c00124{bottom:738.599867pt;}
.yc_c00124{bottom:770.599867pt;}
.yb_c00124{bottom:802.599867pt;}
.ya_c00124{bottom:834.599867pt;}
.y9_c00124{bottom:866.599867pt;}
.y8_c00124{bottom:898.599867pt;}
.y7_c00124{bottom:930.599867pt;}
.y6_c00124{bottom:962.599867pt;}
.y2_c00124{bottom:1035.560000pt;}
.h4_c00124{height:18.560000pt;}
.h3_c00124{height:62.812500pt;}
.h2_c00124{height:1099.880000pt;}
.h0_c00124{height:1122.520000pt;}
.h1_c00124{height:1122.666667pt;}
.w3_c00124{width:24.320000pt;}
.w2_c00124{width:771.080000pt;}
.w0_c00124{width:793.720000pt;}
.w1_c00124{width:794.000000pt;}
.x0_c00124{left:0.000000pt;}
.x1_c00124{left:11.320000pt;}
.x3_c00124{left:84.794933pt;}
.x5_c00124{left:132.800133pt;}
.x4_c00124{left:384.760000pt;}
.x2_c00124{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0bbb2fc19b34ade6c790d7b2.woff2')format("woff");}.ff1_c00125{font-family:ff1_c00125;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00125;src:url('chunks/assets/font_a053397150df9012e92ada56.woff2')format("woff");}.ff2_c00125{font-family:ff2_c00125;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00125{letter-spacing:0.000000px;}
.ls1_c00125{letter-spacing:0.014400px;}
.sc__c00125{text-shadow:none;}
.sc0_c00125{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00125{-webkit-text-stroke:0px transparent;}
.sc0_c00125{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00125{word-spacing:0.000000px;}
._a_c00125{width:3.132000px;}
._9_c00125{width:4.168800px;}
._7_c00125{width:5.356800px;}
._8_c00125{width:6.876000px;}
._b_c00125{width:7.884000px;}
._5_c00125{width:8.985600px;}
._2_c00125{width:10.015200px;}
._0_c00125{width:11.512800px;}
._6_c00125{width:12.592800px;}
._4_c00125{width:13.730400px;}
._f_c00125{width:15.357600px;}
._1_c00125{width:21.376800px;}
._d_c00125{width:34.156800px;}
._e_c00125{width:36.612000px;}
._3_c00125{width:38.196000px;}
._c_c00125{width:40.010400px;}
.fc1_c00125{color:transparent;}
.fc0_c00125{color:rgb(0,0,0);}
.fs0_c00125{font-size:72.000000px;}
.y0_c00125{bottom:0.000000px;}
.y5_c00125{bottom:1.440000px;}
.y1_c00125{bottom:12.735000px;}
.y3_c00125{bottom:45.405000px;}
.y4_c00125{bottom:56.700000px;}
.y21_c00125{bottom:110.924850px;}
.y20_c00125{bottom:146.924850px;}
.y1f_c00125{bottom:182.924850px;}
.y1e_c00125{bottom:218.924850px;}
.y1d_c00125{bottom:254.924850px;}
.y1c_c00125{bottom:290.924850px;}
.y1b_c00125{bottom:326.924850px;}
.y1a_c00125{bottom:362.924850px;}
.y19_c00125{bottom:398.924850px;}
.y18_c00125{bottom:434.924850px;}
.y17_c00125{bottom:470.924850px;}
.y16_c00125{bottom:506.924850px;}
.y15_c00125{bottom:542.924850px;}
.y14_c00125{bottom:578.924850px;}
.y13_c00125{bottom:614.924850px;}
.y12_c00125{bottom:650.924850px;}
.y11_c00125{bottom:686.924850px;}
.y10_c00125{bottom:722.924850px;}
.yf_c00125{bottom:758.924850px;}
.ye_c00125{bottom:794.924850px;}
.yd_c00125{bottom:830.924850px;}
.yc_c00125{bottom:866.924850px;}
.yb_c00125{bottom:902.924850px;}
.ya_c00125{bottom:938.924850px;}
.y9_c00125{bottom:974.924850px;}
.y8_c00125{bottom:1010.924850px;}
.y7_c00125{bottom:1046.924850px;}
.y6_c00125{bottom:1082.924850px;}
.y2_c00125{bottom:1165.005000px;}
.h4_c00125{height:17.280000px;}
.h3_c00125{height:70.664062px;}
.h2_c00125{height:1237.365000px;}
.h0_c00125{height:1262.835000px;}
.h1_c00125{height:1263.000000px;}
.w3_c00125{width:47.520000px;}
.w2_c00125{width:867.465000px;}
.w0_c00125{width:892.935000px;}
.w1_c00125{width:893.250000px;}
.x0_c00125{left:0.000000px;}
.x5_c00125{left:10.237500px;}
.x1_c00125{left:12.735000px;}
.x3_c00125{left:95.394300px;}
.x6_c00125{left:149.400150px;}
.x4_c00125{left:422.775000px;}
.x2_c00125{left:880.050300px;}
@media print{
.v0_c00125{vertical-align:0.000000pt;}
.ls0_c00125{letter-spacing:0.000000pt;}
.ls1_c00125{letter-spacing:0.012800pt;}
.ws0_c00125{word-spacing:0.000000pt;}
._a_c00125{width:2.784000pt;}
._9_c00125{width:3.705600pt;}
._7_c00125{width:4.761600pt;}
._8_c00125{width:6.112000pt;}
._b_c00125{width:7.008000pt;}
._5_c00125{width:7.987200pt;}
._2_c00125{width:8.902400pt;}
._0_c00125{width:10.233600pt;}
._6_c00125{width:11.193600pt;}
._4_c00125{width:12.204800pt;}
._f_c00125{width:13.651200pt;}
._1_c00125{width:19.001600pt;}
._d_c00125{width:30.361600pt;}
._e_c00125{width:32.544000pt;}
._3_c00125{width:33.952000pt;}
._c_c00125{width:35.564800pt;}
.fs0_c00125{font-size:64.000000pt;}
.y0_c00125{bottom:0.000000pt;}
.y5_c00125{bottom:1.280000pt;}
.y1_c00125{bottom:11.320000pt;}
.y3_c00125{bottom:40.360000pt;}
.y4_c00125{bottom:50.400000pt;}
.y21_c00125{bottom:98.599867pt;}
.y20_c00125{bottom:130.599867pt;}
.y1f_c00125{bottom:162.599867pt;}
.y1e_c00125{bottom:194.599867pt;}
.y1d_c00125{bottom:226.599867pt;}
.y1c_c00125{bottom:258.599867pt;}
.y1b_c00125{bottom:290.599867pt;}
.y1a_c00125{bottom:322.599867pt;}
.y19_c00125{bottom:354.599867pt;}
.y18_c00125{bottom:386.599867pt;}
.y17_c00125{bottom:418.599867pt;}
.y16_c00125{bottom:450.599867pt;}
.y15_c00125{bottom:482.599867pt;}
.y14_c00125{bottom:514.599867pt;}
.y13_c00125{bottom:546.599867pt;}
.y12_c00125{bottom:578.599867pt;}
.y11_c00125{bottom:610.599867pt;}
.y10_c00125{bottom:642.599867pt;}
.yf_c00125{bottom:674.599867pt;}
.ye_c00125{bottom:706.599867pt;}
.yd_c00125{bottom:738.599867pt;}
.yc_c00125{bottom:770.599867pt;}
.yb_c00125{bottom:802.599867pt;}
.ya_c00125{bottom:834.599867pt;}
.y9_c00125{bottom:866.599867pt;}
.y8_c00125{bottom:898.599867pt;}
.y7_c00125{bottom:930.599867pt;}
.y6_c00125{bottom:962.599867pt;}
.y2_c00125{bottom:1035.560000pt;}
.h4_c00125{height:15.360000pt;}
.h3_c00125{height:62.812500pt;}
.h2_c00125{height:1099.880000pt;}
.h0_c00125{height:1122.520000pt;}
.h1_c00125{height:1122.666667pt;}
.w3_c00125{width:42.240000pt;}
.w2_c00125{width:771.080000pt;}
.w0_c00125{width:793.720000pt;}
.w1_c00125{width:794.000000pt;}
.x0_c00125{left:0.000000pt;}
.x5_c00125{left:9.100000pt;}
.x1_c00125{left:11.320000pt;}
.x3_c00125{left:84.794933pt;}
.x6_c00125{left:132.800133pt;}
.x4_c00125{left:375.800000pt;}
.x2_c00125{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7acc6073108947f3f0336400.woff2')format("woff");}.ff1_c00126{font-family:ff1_c00126;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00126{letter-spacing:0.000000px;}
.sc__c00126{text-shadow:none;}
.sc0_c00126{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00126{-webkit-text-stroke:0px transparent;}
.sc0_c00126{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00126{word-spacing:0.000000px;}
._3_c00126{width:1.425600px;}
._5_c00126{width:3.549600px;}
._a_c00126{width:4.550400px;}
._2_c00126{width:5.666400px;}
._8_c00126{width:6.724800px;}
._0_c00126{width:8.820000px;}
._c_c00126{width:10.274400px;}
._9_c00126{width:11.570400px;}
._7_c00126{width:14.025600px;}
._b_c00126{width:15.235200px;}
._6_c00126{width:16.761600px;}
._4_c00126{width:21.038400px;}
._1_c00126{width:22.500000px;}
.fc1_c00126{color:transparent;}
.fc0_c00126{color:rgb(0,0,0);}
.fs0_c00126{font-size:72.000000px;}
.y0_c00126{bottom:0.000000px;}
.y5_c00126{bottom:5.040000px;}
.y1_c00126{bottom:12.735000px;}
.y3_c00126{bottom:45.405000px;}
.y4_c00126{bottom:53.100000px;}
.y21_c00126{bottom:110.924850px;}
.y20_c00126{bottom:146.924850px;}
.y1f_c00126{bottom:182.924850px;}
.y1e_c00126{bottom:218.924850px;}
.y1d_c00126{bottom:254.924850px;}
.y1c_c00126{bottom:290.924850px;}
.y1b_c00126{bottom:326.924850px;}
.y1a_c00126{bottom:362.924850px;}
.y19_c00126{bottom:398.924850px;}
.y18_c00126{bottom:434.924850px;}
.y17_c00126{bottom:470.924850px;}
.y16_c00126{bottom:506.924850px;}
.y15_c00126{bottom:542.924850px;}
.y14_c00126{bottom:578.924850px;}
.y13_c00126{bottom:614.924850px;}
.y12_c00126{bottom:650.924850px;}
.y11_c00126{bottom:686.924850px;}
.y10_c00126{bottom:722.924850px;}
.yf_c00126{bottom:758.924850px;}
.ye_c00126{bottom:794.924850px;}
.yd_c00126{bottom:830.924850px;}
.yc_c00126{bottom:866.924850px;}
.yb_c00126{bottom:902.924850px;}
.ya_c00126{bottom:938.924850px;}
.y9_c00126{bottom:974.924850px;}
.y8_c00126{bottom:1010.924850px;}
.y7_c00126{bottom:1046.924850px;}
.y6_c00126{bottom:1082.924850px;}
.y2_c00126{bottom:1165.005000px;}
.h4_c00126{height:20.880000px;}
.h3_c00126{height:70.664062px;}
.h2_c00126{height:1237.365000px;}
.h0_c00126{height:1262.835000px;}
.h1_c00126{height:1263.000000px;}
.w3_c00126{width:27.360000px;}
.w2_c00126{width:867.465000px;}
.w0_c00126{width:892.935000px;}
.w1_c00126{width:893.250000px;}
.x0_c00126{left:0.000000px;}
.x1_c00126{left:12.735000px;}
.x3_c00126{left:95.394300px;}
.x5_c00126{left:149.400150px;}
.x4_c00126{left:432.855000px;}
.x2_c00126{left:880.050300px;}
@media print{
.v0_c00126{vertical-align:0.000000pt;}
.ls0_c00126{letter-spacing:0.000000pt;}
.ws0_c00126{word-spacing:0.000000pt;}
._3_c00126{width:1.267200pt;}
._5_c00126{width:3.155200pt;}
._a_c00126{width:4.044800pt;}
._2_c00126{width:5.036800pt;}
._8_c00126{width:5.977600pt;}
._0_c00126{width:7.840000pt;}
._c_c00126{width:9.132800pt;}
._9_c00126{width:10.284800pt;}
._7_c00126{width:12.467200pt;}
._b_c00126{width:13.542400pt;}
._6_c00126{width:14.899200pt;}
._4_c00126{width:18.700800pt;}
._1_c00126{width:20.000000pt;}
.fs0_c00126{font-size:64.000000pt;}
.y0_c00126{bottom:0.000000pt;}
.y5_c00126{bottom:4.480000pt;}
.y1_c00126{bottom:11.320000pt;}
.y3_c00126{bottom:40.360000pt;}
.y4_c00126{bottom:47.200000pt;}
.y21_c00126{bottom:98.599867pt;}
.y20_c00126{bottom:130.599867pt;}
.y1f_c00126{bottom:162.599867pt;}
.y1e_c00126{bottom:194.599867pt;}
.y1d_c00126{bottom:226.599867pt;}
.y1c_c00126{bottom:258.599867pt;}
.y1b_c00126{bottom:290.599867pt;}
.y1a_c00126{bottom:322.599867pt;}
.y19_c00126{bottom:354.599867pt;}
.y18_c00126{bottom:386.599867pt;}
.y17_c00126{bottom:418.599867pt;}
.y16_c00126{bottom:450.599867pt;}
.y15_c00126{bottom:482.599867pt;}
.y14_c00126{bottom:514.599867pt;}
.y13_c00126{bottom:546.599867pt;}
.y12_c00126{bottom:578.599867pt;}
.y11_c00126{bottom:610.599867pt;}
.y10_c00126{bottom:642.599867pt;}
.yf_c00126{bottom:674.599867pt;}
.ye_c00126{bottom:706.599867pt;}
.yd_c00126{bottom:738.599867pt;}
.yc_c00126{bottom:770.599867pt;}
.yb_c00126{bottom:802.599867pt;}
.ya_c00126{bottom:834.599867pt;}
.y9_c00126{bottom:866.599867pt;}
.y8_c00126{bottom:898.599867pt;}
.y7_c00126{bottom:930.599867pt;}
.y6_c00126{bottom:962.599867pt;}
.y2_c00126{bottom:1035.560000pt;}
.h4_c00126{height:18.560000pt;}
.h3_c00126{height:62.812500pt;}
.h2_c00126{height:1099.880000pt;}
.h0_c00126{height:1122.520000pt;}
.h1_c00126{height:1122.666667pt;}
.w3_c00126{width:24.320000pt;}
.w2_c00126{width:771.080000pt;}
.w0_c00126{width:793.720000pt;}
.w1_c00126{width:794.000000pt;}
.x0_c00126{left:0.000000pt;}
.x1_c00126{left:11.320000pt;}
.x3_c00126{left:84.794933pt;}
.x5_c00126{left:132.800133pt;}
.x4_c00126{left:384.760000pt;}
.x2_c00126{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6f5e2110bca610003faa858.woff2')format("woff");}.ff1_c00127{font-family:ff1_c00127;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00127;src:url('chunks/assets/font_ac23baf36890cf86ab62a2a6.woff2')format("woff");}.ff2_c00127{font-family:ff2_c00127;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00127{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00127{vertical-align:0.000000px;}
.ls1_c00127{letter-spacing:-0.014400px;}
.ls0_c00127{letter-spacing:0.000000px;}
.sc__c00127{text-shadow:none;}
.sc0_c00127{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00127{-webkit-text-stroke:0px transparent;}
.sc0_c00127{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00127{word-spacing:0.000000px;}
._6_c00127{width:1.022400px;}
._0_c00127{width:2.232000px;}
._2_c00127{width:3.607200px;}
._5_c00127{width:5.205600px;}
._b_c00127{width:6.595200px;}
._1_c00127{width:7.689600px;}
._8_c00127{width:9.079200px;}
._a_c00127{width:10.504800px;}
._4_c00127{width:11.642400px;}
._c_c00127{width:12.844800px;}
._9_c00127{width:14.148000px;}
._7_c00127{width:19.353600px;}
._3_c00127{width:20.426400px;}
.fc1_c00127{color:transparent;}
.fc0_c00127{color:rgb(0,0,0);}
.fs0_c00127{font-size:72.000000px;}
.y0_c00127{bottom:0.000000px;}
.y5_c00127{bottom:1.440000px;}
.y1_c00127{bottom:12.735000px;}
.y3_c00127{bottom:45.405000px;}
.y4_c00127{bottom:56.700000px;}
.y21_c00127{bottom:110.924850px;}
.y20_c00127{bottom:146.924850px;}
.y1f_c00127{bottom:182.924850px;}
.y1e_c00127{bottom:218.924850px;}
.y1d_c00127{bottom:254.924850px;}
.y1c_c00127{bottom:290.924850px;}
.y1b_c00127{bottom:326.924850px;}
.y1a_c00127{bottom:362.924850px;}
.y19_c00127{bottom:398.924850px;}
.y18_c00127{bottom:434.924850px;}
.y17_c00127{bottom:470.924850px;}
.y16_c00127{bottom:506.924850px;}
.y15_c00127{bottom:542.924850px;}
.y14_c00127{bottom:578.924850px;}
.y13_c00127{bottom:614.924850px;}
.y12_c00127{bottom:650.924850px;}
.y11_c00127{bottom:686.924850px;}
.y10_c00127{bottom:722.924850px;}
.yf_c00127{bottom:758.924850px;}
.ye_c00127{bottom:794.924850px;}
.yd_c00127{bottom:830.924850px;}
.yc_c00127{bottom:866.924850px;}
.yb_c00127{bottom:902.924850px;}
.ya_c00127{bottom:938.924850px;}
.y9_c00127{bottom:974.924850px;}
.y8_c00127{bottom:1010.924850px;}
.y7_c00127{bottom:1046.924850px;}
.y6_c00127{bottom:1082.924850px;}
.y2_c00127{bottom:1165.005000px;}
.h4_c00127{height:17.280000px;}
.h3_c00127{height:70.664062px;}
.h2_c00127{height:1237.365000px;}
.h0_c00127{height:1262.835000px;}
.h1_c00127{height:1263.000000px;}
.w3_c00127{width:47.520000px;}
.w2_c00127{width:867.465000px;}
.w0_c00127{width:892.935000px;}
.w1_c00127{width:893.250000px;}
.x0_c00127{left:0.000000px;}
.x5_c00127{left:10.237500px;}
.x1_c00127{left:12.735000px;}
.x3_c00127{left:95.394300px;}
.x6_c00127{left:149.400150px;}
.x4_c00127{left:422.775000px;}
.x2_c00127{left:880.050300px;}
@media print{
.v0_c00127{vertical-align:0.000000pt;}
.ls1_c00127{letter-spacing:-0.012800pt;}
.ls0_c00127{letter-spacing:0.000000pt;}
.ws0_c00127{word-spacing:0.000000pt;}
._6_c00127{width:0.908800pt;}
._0_c00127{width:1.984000pt;}
._2_c00127{width:3.206400pt;}
._5_c00127{width:4.627200pt;}
._b_c00127{width:5.862400pt;}
._1_c00127{width:6.835200pt;}
._8_c00127{width:8.070400pt;}
._a_c00127{width:9.337600pt;}
._4_c00127{width:10.348800pt;}
._c_c00127{width:11.417600pt;}
._9_c00127{width:12.576000pt;}
._7_c00127{width:17.203200pt;}
._3_c00127{width:18.156800pt;}
.fs0_c00127{font-size:64.000000pt;}
.y0_c00127{bottom:0.000000pt;}
.y5_c00127{bottom:1.280000pt;}
.y1_c00127{bottom:11.320000pt;}
.y3_c00127{bottom:40.360000pt;}
.y4_c00127{bottom:50.400000pt;}
.y21_c00127{bottom:98.599867pt;}
.y20_c00127{bottom:130.599867pt;}
.y1f_c00127{bottom:162.599867pt;}
.y1e_c00127{bottom:194.599867pt;}
.y1d_c00127{bottom:226.599867pt;}
.y1c_c00127{bottom:258.599867pt;}
.y1b_c00127{bottom:290.599867pt;}
.y1a_c00127{bottom:322.599867pt;}
.y19_c00127{bottom:354.599867pt;}
.y18_c00127{bottom:386.599867pt;}
.y17_c00127{bottom:418.599867pt;}
.y16_c00127{bottom:450.599867pt;}
.y15_c00127{bottom:482.599867pt;}
.y14_c00127{bottom:514.599867pt;}
.y13_c00127{bottom:546.599867pt;}
.y12_c00127{bottom:578.599867pt;}
.y11_c00127{bottom:610.599867pt;}
.y10_c00127{bottom:642.599867pt;}
.yf_c00127{bottom:674.599867pt;}
.ye_c00127{bottom:706.599867pt;}
.yd_c00127{bottom:738.599867pt;}
.yc_c00127{bottom:770.599867pt;}
.yb_c00127{bottom:802.599867pt;}
.ya_c00127{bottom:834.599867pt;}
.y9_c00127{bottom:866.599867pt;}
.y8_c00127{bottom:898.599867pt;}
.y7_c00127{bottom:930.599867pt;}
.y6_c00127{bottom:962.599867pt;}
.y2_c00127{bottom:1035.560000pt;}
.h4_c00127{height:15.360000pt;}
.h3_c00127{height:62.812500pt;}
.h2_c00127{height:1099.880000pt;}
.h0_c00127{height:1122.520000pt;}
.h1_c00127{height:1122.666667pt;}
.w3_c00127{width:42.240000pt;}
.w2_c00127{width:771.080000pt;}
.w0_c00127{width:793.720000pt;}
.w1_c00127{width:794.000000pt;}
.x0_c00127{left:0.000000pt;}
.x5_c00127{left:9.100000pt;}
.x1_c00127{left:11.320000pt;}
.x3_c00127{left:84.794933pt;}
.x6_c00127{left:132.800133pt;}
.x4_c00127{left:375.800000pt;}
.x2_c00127{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8c9dfe266ce8a4df2e1c9120.woff2')format("woff");}.ff1_c00128{font-family:ff1_c00128;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00128{letter-spacing:0.000000px;}
.sc__c00128{text-shadow:none;}
.sc0_c00128{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00128{-webkit-text-stroke:0px transparent;}
.sc0_c00128{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00128{word-spacing:0.000000px;}
._6_c00128{width:1.454400px;}
._3_c00128{width:3.996000px;}
._9_c00128{width:5.464800px;}
._8_c00128{width:6.516000px;}
._4_c00128{width:8.301600px;}
._a_c00128{width:9.381600px;}
._2_c00128{width:10.634400px;}
._5_c00128{width:11.664000px;}
._d_c00128{width:12.772800px;}
._1_c00128{width:13.989600px;}
._b_c00128{width:15.264000px;}
._7_c00128{width:19.231200px;}
._0_c00128{width:22.010400px;}
._c_c00128{width:31.802400px;}
.fc1_c00128{color:transparent;}
.fc0_c00128{color:rgb(0,0,0);}
.fs0_c00128{font-size:72.000000px;}
.y0_c00128{bottom:0.000000px;}
.y5_c00128{bottom:5.040000px;}
.y1_c00128{bottom:12.735000px;}
.y3_c00128{bottom:45.405000px;}
.y4_c00128{bottom:53.100000px;}
.y21_c00128{bottom:110.924850px;}
.y20_c00128{bottom:146.924850px;}
.y1f_c00128{bottom:182.924850px;}
.y1e_c00128{bottom:218.924850px;}
.y1d_c00128{bottom:254.924850px;}
.y1c_c00128{bottom:290.924850px;}
.y1b_c00128{bottom:326.924850px;}
.y1a_c00128{bottom:362.924850px;}
.y19_c00128{bottom:398.924850px;}
.y18_c00128{bottom:434.924850px;}
.y17_c00128{bottom:470.924850px;}
.y16_c00128{bottom:506.924850px;}
.y15_c00128{bottom:542.924850px;}
.y14_c00128{bottom:578.924850px;}
.y13_c00128{bottom:614.924850px;}
.y12_c00128{bottom:650.924850px;}
.y11_c00128{bottom:686.924850px;}
.y10_c00128{bottom:722.924850px;}
.yf_c00128{bottom:758.924850px;}
.ye_c00128{bottom:794.924850px;}
.yd_c00128{bottom:830.924850px;}
.yc_c00128{bottom:866.924850px;}
.yb_c00128{bottom:902.924850px;}
.ya_c00128{bottom:938.924850px;}
.y9_c00128{bottom:974.924850px;}
.y8_c00128{bottom:1010.924850px;}
.y7_c00128{bottom:1046.924850px;}
.y6_c00128{bottom:1082.924850px;}
.y2_c00128{bottom:1165.005000px;}
.h4_c00128{height:20.880000px;}
.h3_c00128{height:70.664062px;}
.h2_c00128{height:1237.365000px;}
.h0_c00128{height:1262.835000px;}
.h1_c00128{height:1263.000000px;}
.w3_c00128{width:27.360000px;}
.w2_c00128{width:867.465000px;}
.w0_c00128{width:892.935000px;}
.w1_c00128{width:893.250000px;}
.x0_c00128{left:0.000000px;}
.x1_c00128{left:12.735000px;}
.x3_c00128{left:95.394300px;}
.x5_c00128{left:149.400150px;}
.x4_c00128{left:432.855000px;}
.x2_c00128{left:880.050300px;}
@media print{
.v0_c00128{vertical-align:0.000000pt;}
.ls0_c00128{letter-spacing:0.000000pt;}
.ws0_c00128{word-spacing:0.000000pt;}
._6_c00128{width:1.292800pt;}
._3_c00128{width:3.552000pt;}
._9_c00128{width:4.857600pt;}
._8_c00128{width:5.792000pt;}
._4_c00128{width:7.379200pt;}
._a_c00128{width:8.339200pt;}
._2_c00128{width:9.452800pt;}
._5_c00128{width:10.368000pt;}
._d_c00128{width:11.353600pt;}
._1_c00128{width:12.435200pt;}
._b_c00128{width:13.568000pt;}
._7_c00128{width:17.094400pt;}
._0_c00128{width:19.564800pt;}
._c_c00128{width:28.268800pt;}
.fs0_c00128{font-size:64.000000pt;}
.y0_c00128{bottom:0.000000pt;}
.y5_c00128{bottom:4.480000pt;}
.y1_c00128{bottom:11.320000pt;}
.y3_c00128{bottom:40.360000pt;}
.y4_c00128{bottom:47.200000pt;}
.y21_c00128{bottom:98.599867pt;}
.y20_c00128{bottom:130.599867pt;}
.y1f_c00128{bottom:162.599867pt;}
.y1e_c00128{bottom:194.599867pt;}
.y1d_c00128{bottom:226.599867pt;}
.y1c_c00128{bottom:258.599867pt;}
.y1b_c00128{bottom:290.599867pt;}
.y1a_c00128{bottom:322.599867pt;}
.y19_c00128{bottom:354.599867pt;}
.y18_c00128{bottom:386.599867pt;}
.y17_c00128{bottom:418.599867pt;}
.y16_c00128{bottom:450.599867pt;}
.y15_c00128{bottom:482.599867pt;}
.y14_c00128{bottom:514.599867pt;}
.y13_c00128{bottom:546.599867pt;}
.y12_c00128{bottom:578.599867pt;}
.y11_c00128{bottom:610.599867pt;}
.y10_c00128{bottom:642.599867pt;}
.yf_c00128{bottom:674.599867pt;}
.ye_c00128{bottom:706.599867pt;}
.yd_c00128{bottom:738.599867pt;}
.yc_c00128{bottom:770.599867pt;}
.yb_c00128{bottom:802.599867pt;}
.ya_c00128{bottom:834.599867pt;}
.y9_c00128{bottom:866.599867pt;}
.y8_c00128{bottom:898.599867pt;}
.y7_c00128{bottom:930.599867pt;}
.y6_c00128{bottom:962.599867pt;}
.y2_c00128{bottom:1035.560000pt;}
.h4_c00128{height:18.560000pt;}
.h3_c00128{height:62.812500pt;}
.h2_c00128{height:1099.880000pt;}
.h0_c00128{height:1122.520000pt;}
.h1_c00128{height:1122.666667pt;}
.w3_c00128{width:24.320000pt;}
.w2_c00128{width:771.080000pt;}
.w0_c00128{width:793.720000pt;}
.w1_c00128{width:794.000000pt;}
.x0_c00128{left:0.000000pt;}
.x1_c00128{left:11.320000pt;}
.x3_c00128{left:84.794933pt;}
.x5_c00128{left:132.800133pt;}
.x4_c00128{left:384.760000pt;}
.x2_c00128{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e232041cd4492ec33bf4504.woff2')format("woff");}.ff1_c00129{font-family:ff1_c00129;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00129;src:url('chunks/assets/font_bc1f1166caedf41140bd568d.woff2')format("woff");}.ff2_c00129{font-family:ff2_c00129;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00129{letter-spacing:-0.014400px;}
.ls0_c00129{letter-spacing:0.000000px;}
.sc__c00129{text-shadow:none;}
.sc0_c00129{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00129{-webkit-text-stroke:0px transparent;}
.sc0_c00129{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00129{word-spacing:0.000000px;}
._1_c00129{width:1.785600px;}
._0_c00129{width:3.355200px;}
._5_c00129{width:5.011200px;}
._4_c00129{width:6.825600px;}
._2_c00129{width:8.539200px;}
._a_c00129{width:10.965600px;}
._3_c00129{width:12.175200px;}
._9_c00129{width:15.314400px;}
._6_c00129{width:16.524000px;}
._c_c00129{width:20.829600px;}
._7_c00129{width:24.624000px;}
._8_c00129{width:25.660800px;}
._b_c00129{width:32.882400px;}
.fc1_c00129{color:transparent;}
.fc0_c00129{color:rgb(0,0,0);}
.fs0_c00129{font-size:72.000000px;}
.y0_c00129{bottom:0.000000px;}
.y5_c00129{bottom:1.440000px;}
.y1_c00129{bottom:12.735000px;}
.y3_c00129{bottom:45.405000px;}
.y4_c00129{bottom:56.700000px;}
.y20_c00129{bottom:146.924850px;}
.y1f_c00129{bottom:182.924850px;}
.y1e_c00129{bottom:218.924850px;}
.y1d_c00129{bottom:254.924850px;}
.y1c_c00129{bottom:290.924850px;}
.y1b_c00129{bottom:326.924850px;}
.y1a_c00129{bottom:362.924850px;}
.y19_c00129{bottom:398.924850px;}
.y18_c00129{bottom:434.924850px;}
.y17_c00129{bottom:470.924850px;}
.y16_c00129{bottom:506.924850px;}
.y15_c00129{bottom:542.924850px;}
.y14_c00129{bottom:578.924850px;}
.y13_c00129{bottom:614.924850px;}
.y12_c00129{bottom:650.924850px;}
.y11_c00129{bottom:686.924850px;}
.y10_c00129{bottom:722.924850px;}
.yf_c00129{bottom:758.924850px;}
.ye_c00129{bottom:794.924850px;}
.yd_c00129{bottom:830.924850px;}
.yc_c00129{bottom:866.924850px;}
.yb_c00129{bottom:902.924850px;}
.ya_c00129{bottom:938.924850px;}
.y9_c00129{bottom:974.924850px;}
.y8_c00129{bottom:1010.924850px;}
.y7_c00129{bottom:1046.924850px;}
.y6_c00129{bottom:1082.924850px;}
.y2_c00129{bottom:1165.005000px;}
.h4_c00129{height:17.280000px;}
.h3_c00129{height:70.664062px;}
.h2_c00129{height:1237.365000px;}
.h0_c00129{height:1262.835000px;}
.h1_c00129{height:1263.000000px;}
.w3_c00129{width:47.520000px;}
.w2_c00129{width:867.465000px;}
.w0_c00129{width:892.935000px;}
.w1_c00129{width:893.250000px;}
.x0_c00129{left:0.000000px;}
.x5_c00129{left:10.237500px;}
.x1_c00129{left:12.735000px;}
.x3_c00129{left:95.394300px;}
.x6_c00129{left:149.400150px;}
.x4_c00129{left:422.775000px;}
.x2_c00129{left:880.050300px;}
@media print{
.v0_c00129{vertical-align:0.000000pt;}
.ls1_c00129{letter-spacing:-0.012800pt;}
.ls0_c00129{letter-spacing:0.000000pt;}
.ws0_c00129{word-spacing:0.000000pt;}
._1_c00129{width:1.587200pt;}
._0_c00129{width:2.982400pt;}
._5_c00129{width:4.454400pt;}
._4_c00129{width:6.067200pt;}
._2_c00129{width:7.590400pt;}
._a_c00129{width:9.747200pt;}
._3_c00129{width:10.822400pt;}
._9_c00129{width:13.612800pt;}
._6_c00129{width:14.688000pt;}
._c_c00129{width:18.515200pt;}
._7_c00129{width:21.888000pt;}
._8_c00129{width:22.809600pt;}
._b_c00129{width:29.228800pt;}
.fs0_c00129{font-size:64.000000pt;}
.y0_c00129{bottom:0.000000pt;}
.y5_c00129{bottom:1.280000pt;}
.y1_c00129{bottom:11.320000pt;}
.y3_c00129{bottom:40.360000pt;}
.y4_c00129{bottom:50.400000pt;}
.y20_c00129{bottom:130.599867pt;}
.y1f_c00129{bottom:162.599867pt;}
.y1e_c00129{bottom:194.599867pt;}
.y1d_c00129{bottom:226.599867pt;}
.y1c_c00129{bottom:258.599867pt;}
.y1b_c00129{bottom:290.599867pt;}
.y1a_c00129{bottom:322.599867pt;}
.y19_c00129{bottom:354.599867pt;}
.y18_c00129{bottom:386.599867pt;}
.y17_c00129{bottom:418.599867pt;}
.y16_c00129{bottom:450.599867pt;}
.y15_c00129{bottom:482.599867pt;}
.y14_c00129{bottom:514.599867pt;}
.y13_c00129{bottom:546.599867pt;}
.y12_c00129{bottom:578.599867pt;}
.y11_c00129{bottom:610.599867pt;}
.y10_c00129{bottom:642.599867pt;}
.yf_c00129{bottom:674.599867pt;}
.ye_c00129{bottom:706.599867pt;}
.yd_c00129{bottom:738.599867pt;}
.yc_c00129{bottom:770.599867pt;}
.yb_c00129{bottom:802.599867pt;}
.ya_c00129{bottom:834.599867pt;}
.y9_c00129{bottom:866.599867pt;}
.y8_c00129{bottom:898.599867pt;}
.y7_c00129{bottom:930.599867pt;}
.y6_c00129{bottom:962.599867pt;}
.y2_c00129{bottom:1035.560000pt;}
.h4_c00129{height:15.360000pt;}
.h3_c00129{height:62.812500pt;}
.h2_c00129{height:1099.880000pt;}
.h0_c00129{height:1122.520000pt;}
.h1_c00129{height:1122.666667pt;}
.w3_c00129{width:42.240000pt;}
.w2_c00129{width:771.080000pt;}
.w0_c00129{width:793.720000pt;}
.w1_c00129{width:794.000000pt;}
.x0_c00129{left:0.000000pt;}
.x5_c00129{left:9.100000pt;}
.x1_c00129{left:11.320000pt;}
.x3_c00129{left:84.794933pt;}
.x6_c00129{left:132.800133pt;}
.x4_c00129{left:375.800000pt;}
.x2_c00129{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_98943c59b35036f9911b5b04.woff2')format("woff");}.ff1_c00130{font-family:ff1_c00130;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00130{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00130{vertical-align:0.000000px;}
.ls0_c00130{letter-spacing:0.000000px;}
.sc__c00130{text-shadow:none;}
.sc0_c00130{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00130{-webkit-text-stroke:0px transparent;}
.sc0_c00130{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00130{word-spacing:0.000000px;}
._0_c00130{width:1.490400px;}
._3_c00130{width:3.729600px;}
._b_c00130{width:5.248800px;}
._5_c00130{width:6.436800px;}
._a_c00130{width:11.577600px;}
._6_c00130{width:16.020000px;}
._7_c00130{width:20.152800px;}
._9_c00130{width:21.736800px;}
._2_c00130{width:28.216800px;}
._4_c00130{width:29.707200px;}
._8_c00130{width:39.132000px;}
._1_c00130{width:40.161600px;}
.fc1_c00130{color:transparent;}
.fc0_c00130{color:rgb(0,0,0);}
.fs0_c00130{font-size:72.000000px;}
.y0_c00130{bottom:0.000000px;}
.y5_c00130{bottom:5.040000px;}
.y1_c00130{bottom:12.735000px;}
.y3_c00130{bottom:45.405000px;}
.y4_c00130{bottom:53.100000px;}
.y20_c00130{bottom:146.924850px;}
.y1f_c00130{bottom:182.924850px;}
.y1e_c00130{bottom:218.924850px;}
.y1d_c00130{bottom:254.924850px;}
.y1c_c00130{bottom:290.924850px;}
.y1b_c00130{bottom:326.924850px;}
.y1a_c00130{bottom:362.924850px;}
.y19_c00130{bottom:398.924850px;}
.y18_c00130{bottom:434.924850px;}
.y17_c00130{bottom:470.924850px;}
.y16_c00130{bottom:506.924850px;}
.y15_c00130{bottom:542.924850px;}
.y14_c00130{bottom:578.924850px;}
.y13_c00130{bottom:614.924850px;}
.y12_c00130{bottom:650.924850px;}
.y11_c00130{bottom:686.924850px;}
.y10_c00130{bottom:722.924850px;}
.yf_c00130{bottom:758.924850px;}
.ye_c00130{bottom:794.924850px;}
.yd_c00130{bottom:830.924850px;}
.yc_c00130{bottom:866.924850px;}
.yb_c00130{bottom:902.924850px;}
.ya_c00130{bottom:938.924850px;}
.y9_c00130{bottom:974.924850px;}
.y8_c00130{bottom:1010.924850px;}
.y7_c00130{bottom:1046.924850px;}
.y6_c00130{bottom:1082.924850px;}
.y2_c00130{bottom:1165.005000px;}
.h4_c00130{height:20.880000px;}
.h3_c00130{height:70.664062px;}
.h2_c00130{height:1237.365000px;}
.h0_c00130{height:1262.835000px;}
.h1_c00130{height:1263.000000px;}
.w3_c00130{width:27.360000px;}
.w2_c00130{width:867.465000px;}
.w0_c00130{width:892.935000px;}
.w1_c00130{width:893.250000px;}
.x0_c00130{left:0.000000px;}
.x1_c00130{left:12.735000px;}
.x3_c00130{left:95.394300px;}
.x5_c00130{left:149.400150px;}
.x4_c00130{left:432.855000px;}
.x2_c00130{left:880.050300px;}
@media print{
.v0_c00130{vertical-align:0.000000pt;}
.ls0_c00130{letter-spacing:0.000000pt;}
.ws0_c00130{word-spacing:0.000000pt;}
._0_c00130{width:1.324800pt;}
._3_c00130{width:3.315200pt;}
._b_c00130{width:4.665600pt;}
._5_c00130{width:5.721600pt;}
._a_c00130{width:10.291200pt;}
._6_c00130{width:14.240000pt;}
._7_c00130{width:17.913600pt;}
._9_c00130{width:19.321600pt;}
._2_c00130{width:25.081600pt;}
._4_c00130{width:26.406400pt;}
._8_c00130{width:34.784000pt;}
._1_c00130{width:35.699200pt;}
.fs0_c00130{font-size:64.000000pt;}
.y0_c00130{bottom:0.000000pt;}
.y5_c00130{bottom:4.480000pt;}
.y1_c00130{bottom:11.320000pt;}
.y3_c00130{bottom:40.360000pt;}
.y4_c00130{bottom:47.200000pt;}
.y20_c00130{bottom:130.599867pt;}
.y1f_c00130{bottom:162.599867pt;}
.y1e_c00130{bottom:194.599867pt;}
.y1d_c00130{bottom:226.599867pt;}
.y1c_c00130{bottom:258.599867pt;}
.y1b_c00130{bottom:290.599867pt;}
.y1a_c00130{bottom:322.599867pt;}
.y19_c00130{bottom:354.599867pt;}
.y18_c00130{bottom:386.599867pt;}
.y17_c00130{bottom:418.599867pt;}
.y16_c00130{bottom:450.599867pt;}
.y15_c00130{bottom:482.599867pt;}
.y14_c00130{bottom:514.599867pt;}
.y13_c00130{bottom:546.599867pt;}
.y12_c00130{bottom:578.599867pt;}
.y11_c00130{bottom:610.599867pt;}
.y10_c00130{bottom:642.599867pt;}
.yf_c00130{bottom:674.599867pt;}
.ye_c00130{bottom:706.599867pt;}
.yd_c00130{bottom:738.599867pt;}
.yc_c00130{bottom:770.599867pt;}
.yb_c00130{bottom:802.599867pt;}
.ya_c00130{bottom:834.599867pt;}
.y9_c00130{bottom:866.599867pt;}
.y8_c00130{bottom:898.599867pt;}
.y7_c00130{bottom:930.599867pt;}
.y6_c00130{bottom:962.599867pt;}
.y2_c00130{bottom:1035.560000pt;}
.h4_c00130{height:18.560000pt;}
.h3_c00130{height:62.812500pt;}
.h2_c00130{height:1099.880000pt;}
.h0_c00130{height:1122.520000pt;}
.h1_c00130{height:1122.666667pt;}
.w3_c00130{width:24.320000pt;}
.w2_c00130{width:771.080000pt;}
.w0_c00130{width:793.720000pt;}
.w1_c00130{width:794.000000pt;}
.x0_c00130{left:0.000000pt;}
.x1_c00130{left:11.320000pt;}
.x3_c00130{left:84.794933pt;}
.x5_c00130{left:132.800133pt;}
.x4_c00130{left:384.760000pt;}
.x2_c00130{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e646dee4a07875dd6f48892a.woff2')format("woff");}.ff1_c00131{font-family:ff1_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;}
.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;}
.ls0_c00131{letter-spacing:0.000000px;}
.sc__c00131{text-shadow:none;}
.sc0_c00131{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00131{-webkit-text-stroke:0px transparent;}
.sc0_c00131{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00131{word-spacing:0.000000px;}
._0_c00131{width:1.944000px;}
._2_c00131{width:3.484800px;}
._3_c00131{width:4.824000px;}
._5_c00131{width:6.408000px;}
._6_c00131{width:9.144000px;}
._8_c00131{width:11.289600px;}
._4_c00131{width:21.204000px;}
._9_c00131{width:25.128000px;}
._7_c00131{width:28.173600px;}
._1_c00131{width:51.760800px;}
.fc1_c00131{color:transparent;}
.fc0_c00131{color:rgb(0,0,0);}
.fs0_c00131{font-size:72.000000px;}
.y0_c00131{bottom:0.000000px;}
.y5_c00131{bottom:1.440000px;}
.y1_c00131{bottom:12.735000px;}
.y3_c00131{bottom:45.405000px;}
.y4_c00131{bottom:56.700000px;}
.y20_c00131{bottom:146.924850px;}
.y1f_c00131{bottom:182.924850px;}
.y1e_c00131{bottom:218.924850px;}
.y1d_c00131{bottom:254.924850px;}
.y1c_c00131{bottom:290.924850px;}
.y1b_c00131{bottom:326.924850px;}
.y1a_c00131{bottom:362.924850px;}
.y19_c00131{bottom:398.924850px;}
.y18_c00131{bottom:434.924850px;}
.y17_c00131{bottom:470.924850px;}
.y16_c00131{bottom:506.924850px;}
.y15_c00131{bottom:542.924850px;}
.y14_c00131{bottom:578.924850px;}
.y13_c00131{bottom:614.924850px;}
.y12_c00131{bottom:650.924850px;}
.y11_c00131{bottom:686.924850px;}
.y10_c00131{bottom:722.924850px;}
.yf_c00131{bottom:758.924850px;}
.ye_c00131{bottom:794.924850px;}
.yd_c00131{bottom:830.924850px;}
.yc_c00131{bottom:866.924850px;}
.yb_c00131{bottom:902.924850px;}
.ya_c00131{bottom:938.924850px;}
.y9_c00131{bottom:974.924850px;}
.y8_c00131{bottom:1010.924850px;}
.y7_c00131{bottom:1046.924850px;}
.y6_c00131{bottom:1082.924850px;}
.y2_c00131{bottom:1165.005000px;}
.h4_c00131{height:17.280000px;}
.h3_c00131{height:70.664062px;}
.h2_c00131{height:1237.365000px;}
.h0_c00131{height:1262.835000px;}
.h1_c00131{height:1263.000000px;}
.w3_c00131{width:47.520000px;}
.w2_c00131{width:867.465000px;}
.w0_c00131{width:892.935000px;}
.w1_c00131{width:893.250000px;}
.x0_c00131{left:0.000000px;}
.x5_c00131{left:10.237500px;}
.x1_c00131{left:12.735000px;}
.x3_c00131{left:95.394300px;}
.x6_c00131{left:149.400150px;}
.x4_c00131{left:422.775000px;}
.x2_c00131{left:880.050300px;}
@media print{
.v0_c00131{vertical-align:0.000000pt;}
.ls0_c00131{letter-spacing:0.000000pt;}
.ws0_c00131{word-spacing:0.000000pt;}
._0_c00131{width:1.728000pt;}
._2_c00131{width:3.097600pt;}
._3_c00131{width:4.288000pt;}
._5_c00131{width:5.696000pt;}
._6_c00131{width:8.128000pt;}
._8_c00131{width:10.035200pt;}
._4_c00131{width:18.848000pt;}
._9_c00131{width:22.336000pt;}
._7_c00131{width:25.043200pt;}
._1_c00131{width:46.009600pt;}
.fs0_c00131{font-size:64.000000pt;}
.y0_c00131{bottom:0.000000pt;}
.y5_c00131{bottom:1.280000pt;}
.y1_c00131{bottom:11.320000pt;}
.y3_c00131{bottom:40.360000pt;}
.y4_c00131{bottom:50.400000pt;}
.y20_c00131{bottom:130.599867pt;}
.y1f_c00131{bottom:162.599867pt;}
.y1e_c00131{bottom:194.599867pt;}
.y1d_c00131{bottom:226.599867pt;}
.y1c_c00131{bottom:258.599867pt;}
.y1b_c00131{bottom:290.599867pt;}
.y1a_c00131{bottom:322.599867pt;}
.y19_c00131{bottom:354.599867pt;}
.y18_c00131{bottom:386.599867pt;}
.y17_c00131{bottom:418.599867pt;}
.y16_c00131{bottom:450.599867pt;}
.y15_c00131{bottom:482.599867pt;}
.y14_c00131{bottom:514.599867pt;}
.y13_c00131{bottom:546.599867pt;}
.y12_c00131{bottom:578.599867pt;}
.y11_c00131{bottom:610.599867pt;}
.y10_c00131{bottom:642.599867pt;}
.yf_c00131{bottom:674.599867pt;}
.ye_c00131{bottom:706.599867pt;}
.yd_c00131{bottom:738.599867pt;}
.yc_c00131{bottom:770.599867pt;}
.yb_c00131{bottom:802.599867pt;}
.ya_c00131{bottom:834.599867pt;}
.y9_c00131{bottom:866.599867pt;}
.y8_c00131{bottom:898.599867pt;}
.y7_c00131{bottom:930.599867pt;}
.y6_c00131{bottom:962.599867pt;}
.y2_c00131{bottom:1035.560000pt;}
.h4_c00131{height:15.360000pt;}
.h3_c00131{height:62.812500pt;}
.h2_c00131{height:1099.880000pt;}
.h0_c00131{height:1122.520000pt;}
.h1_c00131{height:1122.666667pt;}
.w3_c00131{width:42.240000pt;}
.w2_c00131{width:771.080000pt;}
.w0_c00131{width:793.720000pt;}
.w1_c00131{width:794.000000pt;}
.x0_c00131{left:0.000000pt;}
.x5_c00131{left:9.100000pt;}
.x1_c00131{left:11.320000pt;}
.x3_c00131{left:84.794933pt;}
.x6_c00131{left:132.800133pt;}
.x4_c00131{left:375.800000pt;}
.x2_c00131{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_16f0d0f0e68375c4202a6287.woff2')format("woff");}.ff1_c00132{font-family:ff1_c00132;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00132{letter-spacing:0.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;}
}
.ws0_c00132{word-spacing:0.000000px;}
._3_c00132{width:1.051200px;}
._0_c00132{width:2.361600px;}
._c_c00132{width:4.536000px;}
._8_c00132{width:5.875200px;}
._7_c00132{width:7.221600px;}
._2_c00132{width:8.467200px;}
._1_c00132{width:13.003200px;}
._5_c00132{width:14.522400px;}
._4_c00132{width:16.156800px;}
._b_c00132{width:20.095200px;}
._9_c00132{width:21.391200px;}
._d_c00132{width:23.133600px;}
._6_c00132{width:26.517600px;}
._a_c00132{width:27.784800px;}
.fc1_c00132{color:transparent;}
.fc0_c00132{color:rgb(0,0,0);}
.fs0_c00132{font-size:72.000000px;}
.y0_c00132{bottom:0.000000px;}
.y5_c00132{bottom:5.040000px;}
.y1_c00132{bottom:12.735000px;}
.y3_c00132{bottom:45.405000px;}
.y4_c00132{bottom:53.100000px;}
.y21_c00132{bottom:110.924850px;}
.y20_c00132{bottom:146.924850px;}
.y1f_c00132{bottom:182.924850px;}
.y1e_c00132{bottom:218.924850px;}
.y1d_c00132{bottom:254.924850px;}
.y1c_c00132{bottom:290.924850px;}
.y1b_c00132{bottom:326.924850px;}
.y1a_c00132{bottom:362.924850px;}
.y19_c00132{bottom:398.924850px;}
.y18_c00132{bottom:434.924850px;}
.y17_c00132{bottom:470.924850px;}
.y16_c00132{bottom:506.924850px;}
.y15_c00132{bottom:542.924850px;}
.y14_c00132{bottom:578.924850px;}
.y13_c00132{bottom:614.924850px;}
.y12_c00132{bottom:650.924850px;}
.y11_c00132{bottom:686.924850px;}
.y10_c00132{bottom:722.924850px;}
.yf_c00132{bottom:758.924850px;}
.ye_c00132{bottom:794.924850px;}
.yd_c00132{bottom:830.924850px;}
.yc_c00132{bottom:866.924850px;}
.yb_c00132{bottom:902.924850px;}
.ya_c00132{bottom:938.924850px;}
.y9_c00132{bottom:974.924850px;}
.y8_c00132{bottom:1010.924850px;}
.y7_c00132{bottom:1046.924850px;}
.y6_c00132{bottom:1082.924850px;}
.y2_c00132{bottom:1165.005000px;}
.h4_c00132{height:20.880000px;}
.h3_c00132{height:70.664062px;}
.h2_c00132{height:1237.365000px;}
.h0_c00132{height:1262.835000px;}
.h1_c00132{height:1263.000000px;}
.w3_c00132{width:27.360000px;}
.w2_c00132{width:867.465000px;}
.w0_c00132{width:892.935000px;}
.w1_c00132{width:893.250000px;}
.x0_c00132{left:0.000000px;}
.x1_c00132{left:12.735000px;}
.x3_c00132{left:95.394300px;}
.x5_c00132{left:149.400150px;}
.x4_c00132{left:432.855000px;}
.x2_c00132{left:880.050300px;}
@media print{
.v0_c00132{vertical-align:0.000000pt;}
.ls0_c00132{letter-spacing:0.000000pt;}
.ws0_c00132{word-spacing:0.000000pt;}
._3_c00132{width:0.934400pt;}
._0_c00132{width:2.099200pt;}
._c_c00132{width:4.032000pt;}
._8_c00132{width:5.222400pt;}
._7_c00132{width:6.419200pt;}
._2_c00132{width:7.526400pt;}
._1_c00132{width:11.558400pt;}
._5_c00132{width:12.908800pt;}
._4_c00132{width:14.361600pt;}
._b_c00132{width:17.862400pt;}
._9_c00132{width:19.014400pt;}
._d_c00132{width:20.563200pt;}
._6_c00132{width:23.571200pt;}
._a_c00132{width:24.697600pt;}
.fs0_c00132{font-size:64.000000pt;}
.y0_c00132{bottom:0.000000pt;}
.y5_c00132{bottom:4.480000pt;}
.y1_c00132{bottom:11.320000pt;}
.y3_c00132{bottom:40.360000pt;}
.y4_c00132{bottom:47.200000pt;}
.y21_c00132{bottom:98.599867pt;}
.y20_c00132{bottom:130.599867pt;}
.y1f_c00132{bottom:162.599867pt;}
.y1e_c00132{bottom:194.599867pt;}
.y1d_c00132{bottom:226.599867pt;}
.y1c_c00132{bottom:258.599867pt;}
.y1b_c00132{bottom:290.599867pt;}
.y1a_c00132{bottom:322.599867pt;}
.y19_c00132{bottom:354.599867pt;}
.y18_c00132{bottom:386.599867pt;}
.y17_c00132{bottom:418.599867pt;}
.y16_c00132{bottom:450.599867pt;}
.y15_c00132{bottom:482.599867pt;}
.y14_c00132{bottom:514.599867pt;}
.y13_c00132{bottom:546.599867pt;}
.y12_c00132{bottom:578.599867pt;}
.y11_c00132{bottom:610.599867pt;}
.y10_c00132{bottom:642.599867pt;}
.yf_c00132{bottom:674.599867pt;}
.ye_c00132{bottom:706.599867pt;}
.yd_c00132{bottom:738.599867pt;}
.yc_c00132{bottom:770.599867pt;}
.yb_c00132{bottom:802.599867pt;}
.ya_c00132{bottom:834.599867pt;}
.y9_c00132{bottom:866.599867pt;}
.y8_c00132{bottom:898.599867pt;}
.y7_c00132{bottom:930.599867pt;}
.y6_c00132{bottom:962.599867pt;}
.y2_c00132{bottom:1035.560000pt;}
.h4_c00132{height:18.560000pt;}
.h3_c00132{height:62.812500pt;}
.h2_c00132{height:1099.880000pt;}
.h0_c00132{height:1122.520000pt;}
.h1_c00132{height:1122.666667pt;}
.w3_c00132{width:24.320000pt;}
.w2_c00132{width:771.080000pt;}
.w0_c00132{width:793.720000pt;}
.w1_c00132{width:794.000000pt;}
.x0_c00132{left:0.000000pt;}
.x1_c00132{left:11.320000pt;}
.x3_c00132{left:84.794933pt;}
.x5_c00132{left:132.800133pt;}
.x4_c00132{left:384.760000pt;}
.x2_c00132{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7aec0445f2e752e46e680e9b.woff2')format("woff");}.ff1_c00133{font-family:ff1_c00133;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00133;src:url('chunks/assets/font_d39f4a4f857eb1cc930106bb.woff2')format("woff");}.ff2_c00133{font-family:ff2_c00133;line-height:1.284180;font-style: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;}
.ls0_c00133{letter-spacing:0.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:0.000000px;}
._4_c00133{width:1.612800px;}
._8_c00133{width:2.995200px;}
._5_c00133{width:6.804000px;}
._9_c00133{width:7.920000px;}
._3_c00133{width:8.928000px;}
._6_c00133{width:14.356800px;}
._0_c00133{width:15.962400px;}
._1_c00133{width:19.512000px;}
._a_c00133{width:22.392000px;}
._7_c00133{width:28.872000px;}
._2_c00133{width:33.134400px;}
.fc1_c00133{color:transparent;}
.fc0_c00133{color:rgb(0,0,0);}
.fs0_c00133{font-size:72.000000px;}
.y0_c00133{bottom:0.000000px;}
.y5_c00133{bottom:1.440000px;}
.y1_c00133{bottom:12.735000px;}
.y3_c00133{bottom:45.405000px;}
.y4_c00133{bottom:56.700000px;}
.y21_c00133{bottom:110.924850px;}
.y20_c00133{bottom:146.924850px;}
.y1f_c00133{bottom:182.924850px;}
.y1e_c00133{bottom:218.924850px;}
.y1d_c00133{bottom:254.924850px;}
.y1c_c00133{bottom:290.924850px;}
.y1b_c00133{bottom:326.924850px;}
.y1a_c00133{bottom:362.924850px;}
.y19_c00133{bottom:398.924850px;}
.y18_c00133{bottom:434.924850px;}
.y17_c00133{bottom:470.924850px;}
.y16_c00133{bottom:506.924850px;}
.y15_c00133{bottom:542.924850px;}
.y14_c00133{bottom:578.924850px;}
.y13_c00133{bottom:614.924850px;}
.y12_c00133{bottom:650.924850px;}
.y11_c00133{bottom:686.924850px;}
.y10_c00133{bottom:722.924850px;}
.yf_c00133{bottom:758.924850px;}
.ye_c00133{bottom:794.924850px;}
.yd_c00133{bottom:830.924850px;}
.yc_c00133{bottom:866.924850px;}
.yb_c00133{bottom:902.924850px;}
.ya_c00133{bottom:938.924850px;}
.y9_c00133{bottom:974.924850px;}
.y8_c00133{bottom:1010.924850px;}
.y7_c00133{bottom:1046.924850px;}
.y6_c00133{bottom:1082.924850px;}
.y2_c00133{bottom:1165.005000px;}
.h4_c00133{height:17.280000px;}
.h5_c00133{height:70.628906px;}
.h3_c00133{height:70.664062px;}
.h2_c00133{height:1237.365000px;}
.h0_c00133{height:1262.835000px;}
.h1_c00133{height:1263.000000px;}
.w3_c00133{width:47.520000px;}
.w2_c00133{width:867.465000px;}
.w0_c00133{width:892.935000px;}
.w1_c00133{width:893.250000px;}
.x0_c00133{left:0.000000px;}
.x5_c00133{left:10.237500px;}
.x1_c00133{left:12.735000px;}
.x3_c00133{left:95.394300px;}
.x7_c00133{left:149.400000px;}
.x6_c00133{left:180.450000px;}
.x4_c00133{left:422.775000px;}
.x2_c00133{left:880.050300px;}
@media print{
.v0_c00133{vertical-align:0.000000pt;}
.ls0_c00133{letter-spacing:0.000000pt;}
.ws0_c00133{word-spacing:0.000000pt;}
._4_c00133{width:1.433600pt;}
._8_c00133{width:2.662400pt;}
._5_c00133{width:6.048000pt;}
._9_c00133{width:7.040000pt;}
._3_c00133{width:7.936000pt;}
._6_c00133{width:12.761600pt;}
._0_c00133{width:14.188800pt;}
._1_c00133{width:17.344000pt;}
._a_c00133{width:19.904000pt;}
._7_c00133{width:25.664000pt;}
._2_c00133{width:29.452800pt;}
.fs0_c00133{font-size:64.000000pt;}
.y0_c00133{bottom:0.000000pt;}
.y5_c00133{bottom:1.280000pt;}
.y1_c00133{bottom:11.320000pt;}
.y3_c00133{bottom:40.360000pt;}
.y4_c00133{bottom:50.400000pt;}
.y21_c00133{bottom:98.599867pt;}
.y20_c00133{bottom:130.599867pt;}
.y1f_c00133{bottom:162.599867pt;}
.y1e_c00133{bottom:194.599867pt;}
.y1d_c00133{bottom:226.599867pt;}
.y1c_c00133{bottom:258.599867pt;}
.y1b_c00133{bottom:290.599867pt;}
.y1a_c00133{bottom:322.599867pt;}
.y19_c00133{bottom:354.599867pt;}
.y18_c00133{bottom:386.599867pt;}
.y17_c00133{bottom:418.599867pt;}
.y16_c00133{bottom:450.599867pt;}
.y15_c00133{bottom:482.599867pt;}
.y14_c00133{bottom:514.599867pt;}
.y13_c00133{bottom:546.599867pt;}
.y12_c00133{bottom:578.599867pt;}
.y11_c00133{bottom:610.599867pt;}
.y10_c00133{bottom:642.599867pt;}
.yf_c00133{bottom:674.599867pt;}
.ye_c00133{bottom:706.599867pt;}
.yd_c00133{bottom:738.599867pt;}
.yc_c00133{bottom:770.599867pt;}
.yb_c00133{bottom:802.599867pt;}
.ya_c00133{bottom:834.599867pt;}
.y9_c00133{bottom:866.599867pt;}
.y8_c00133{bottom:898.599867pt;}
.y7_c00133{bottom:930.599867pt;}
.y6_c00133{bottom:962.599867pt;}
.y2_c00133{bottom:1035.560000pt;}
.h4_c00133{height:15.360000pt;}
.h5_c00133{height:62.781250pt;}
.h3_c00133{height:62.812500pt;}
.h2_c00133{height:1099.880000pt;}
.h0_c00133{height:1122.520000pt;}
.h1_c00133{height:1122.666667pt;}
.w3_c00133{width:42.240000pt;}
.w2_c00133{width:771.080000pt;}
.w0_c00133{width:793.720000pt;}
.w1_c00133{width:794.000000pt;}
.x0_c00133{left:0.000000pt;}
.x5_c00133{left:9.100000pt;}
.x1_c00133{left:11.320000pt;}
.x3_c00133{left:84.794933pt;}
.x7_c00133{left:132.800000pt;}
.x6_c00133{left:160.400000pt;}
.x4_c00133{left:375.800000pt;}
.x2_c00133{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fda25c3368218d43fed67d7d.woff2')format("woff");}.ff1_c00134{font-family:ff1_c00134;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00134;src:url('chunks/assets/font_5b31ddf2805f122462278e80.woff2')format("woff");}.ff2_c00134{font-family:ff2_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;}
.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.014400px;}
.ls0_c00134{letter-spacing:0.000000px;}
.sc__c00134{text-shadow:none;}
.sc0_c00134{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00134{-webkit-text-stroke:0px transparent;}
.sc0_c00134{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00134{word-spacing:0.000000px;}
._3_c00134{width:1.843200px;}
._1_c00134{width:2.916000px;}
._5_c00134{width:4.104000px;}
._0_c00134{width:5.630400px;}
._4_c00134{width:11.268000px;}
._a_c00134{width:13.348800px;}
._7_c00134{width:15.249600px;}
._8_c00134{width:16.732800px;}
._2_c00134{width:20.808000px;}
._9_c00134{width:23.565600px;}
._6_c00134{width:28.130400px;}
.fc1_c00134{color:transparent;}
.fc0_c00134{color:rgb(0,0,0);}
.fs0_c00134{font-size:72.000000px;}
.y0_c00134{bottom:0.000000px;}
.y5_c00134{bottom:5.040000px;}
.y1_c00134{bottom:12.735000px;}
.y3_c00134{bottom:45.405000px;}
.y4_c00134{bottom:53.100000px;}
.y1f_c00134{bottom:182.924850px;}
.y1e_c00134{bottom:218.924850px;}
.y1d_c00134{bottom:254.924850px;}
.y1c_c00134{bottom:290.924850px;}
.y1b_c00134{bottom:326.924850px;}
.y1a_c00134{bottom:362.924850px;}
.y19_c00134{bottom:398.924850px;}
.y18_c00134{bottom:434.924850px;}
.y17_c00134{bottom:470.924850px;}
.y16_c00134{bottom:506.924850px;}
.y15_c00134{bottom:542.924850px;}
.y14_c00134{bottom:578.924850px;}
.y13_c00134{bottom:614.924850px;}
.y12_c00134{bottom:650.924850px;}
.y11_c00134{bottom:686.924850px;}
.y10_c00134{bottom:722.924850px;}
.yf_c00134{bottom:758.924850px;}
.ye_c00134{bottom:794.924850px;}
.yd_c00134{bottom:830.924850px;}
.yc_c00134{bottom:866.924850px;}
.yb_c00134{bottom:902.924850px;}
.ya_c00134{bottom:938.924850px;}
.y9_c00134{bottom:974.924850px;}
.y8_c00134{bottom:1010.924850px;}
.y7_c00134{bottom:1046.924850px;}
.y6_c00134{bottom:1082.924850px;}
.y2_c00134{bottom:1165.005000px;}
.h4_c00134{height:20.880000px;}
.h5_c00134{height:70.628906px;}
.h3_c00134{height:70.664062px;}
.h2_c00134{height:1237.365000px;}
.h0_c00134{height:1262.835000px;}
.h1_c00134{height:1263.000000px;}
.w3_c00134{width:27.360000px;}
.w2_c00134{width:867.465000px;}
.w0_c00134{width:892.935000px;}
.w1_c00134{width:893.250000px;}
.x0_c00134{left:0.000000px;}
.x1_c00134{left:12.735000px;}
.x3_c00134{left:95.394300px;}
.x5_c00134{left:149.382150px;}
.x4_c00134{left:432.855000px;}
.x2_c00134{left:880.050300px;}
@media print{
.v0_c00134{vertical-align:0.000000pt;}
.ls1_c00134{letter-spacing:-0.012800pt;}
.ls0_c00134{letter-spacing:0.000000pt;}
.ws0_c00134{word-spacing:0.000000pt;}
._3_c00134{width:1.638400pt;}
._1_c00134{width:2.592000pt;}
._5_c00134{width:3.648000pt;}
._0_c00134{width:5.004800pt;}
._4_c00134{width:10.016000pt;}
._a_c00134{width:11.865600pt;}
._7_c00134{width:13.555200pt;}
._8_c00134{width:14.873600pt;}
._2_c00134{width:18.496000pt;}
._9_c00134{width:20.947200pt;}
._6_c00134{width:25.004800pt;}
.fs0_c00134{font-size:64.000000pt;}
.y0_c00134{bottom:0.000000pt;}
.y5_c00134{bottom:4.480000pt;}
.y1_c00134{bottom:11.320000pt;}
.y3_c00134{bottom:40.360000pt;}
.y4_c00134{bottom:47.200000pt;}
.y1f_c00134{bottom:162.599867pt;}
.y1e_c00134{bottom:194.599867pt;}
.y1d_c00134{bottom:226.599867pt;}
.y1c_c00134{bottom:258.599867pt;}
.y1b_c00134{bottom:290.599867pt;}
.y1a_c00134{bottom:322.599867pt;}
.y19_c00134{bottom:354.599867pt;}
.y18_c00134{bottom:386.599867pt;}
.y17_c00134{bottom:418.599867pt;}
.y16_c00134{bottom:450.599867pt;}
.y15_c00134{bottom:482.599867pt;}
.y14_c00134{bottom:514.599867pt;}
.y13_c00134{bottom:546.599867pt;}
.y12_c00134{bottom:578.599867pt;}
.y11_c00134{bottom:610.599867pt;}
.y10_c00134{bottom:642.599867pt;}
.yf_c00134{bottom:674.599867pt;}
.ye_c00134{bottom:706.599867pt;}
.yd_c00134{bottom:738.599867pt;}
.yc_c00134{bottom:770.599867pt;}
.yb_c00134{bottom:802.599867pt;}
.ya_c00134{bottom:834.599867pt;}
.y9_c00134{bottom:866.599867pt;}
.y8_c00134{bottom:898.599867pt;}
.y7_c00134{bottom:930.599867pt;}
.y6_c00134{bottom:962.599867pt;}
.y2_c00134{bottom:1035.560000pt;}
.h4_c00134{height:18.560000pt;}
.h5_c00134{height:62.781250pt;}
.h3_c00134{height:62.812500pt;}
.h2_c00134{height:1099.880000pt;}
.h0_c00134{height:1122.520000pt;}
.h1_c00134{height:1122.666667pt;}
.w3_c00134{width:24.320000pt;}
.w2_c00134{width:771.080000pt;}
.w0_c00134{width:793.720000pt;}
.w1_c00134{width:794.000000pt;}
.x0_c00134{left:0.000000pt;}
.x1_c00134{left:11.320000pt;}
.x3_c00134{left:84.794933pt;}
.x5_c00134{left:132.784133pt;}
.x4_c00134{left:384.760000pt;}
.x2_c00134{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_038396aab5c1911fb06bf5e6.woff2')format("woff");}.ff1_c00135{font-family:ff1_c00135;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00135;src:url('chunks/assets/font_1c49a8bd738f3d783e93ca77.woff2')format("woff");}.ff2_c00135{font-family:ff2_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:ff3_c00135;src:url('chunks/assets/font_a8dfdd4764750502770fc013.woff2')format("woff");}.ff3_c00135{font-family:ff3_c00135;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00135{letter-spacing:-0.014400px;}
.ls0_c00135{letter-spacing:0.000000px;}
.ls2_c00135{letter-spacing:0.014400px;}
.sc__c00135{text-shadow:none;}
.sc0_c00135{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00135{-webkit-text-stroke:0px transparent;}
.sc0_c00135{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00135{word-spacing:0.000000px;}
._9_c00135{width:1.058400px;}
._8_c00135{width:2.311200px;}
._a_c00135{width:3.348000px;}
._7_c00135{width:4.485600px;}
._b_c00135{width:5.522400px;}
._2_c00135{width:6.624000px;}
._1_c00135{width:7.956000px;}
._c_c00135{width:10.764000px;}
._3_c00135{width:11.844000px;}
._4_c00135{width:12.902400px;}
._5_c00135{width:14.299200px;}
._0_c00135{width:15.343200px;}
._6_c00135{width:19.303200px;}
.fc1_c00135{color:transparent;}
.fc0_c00135{color:rgb(0,0,0);}
.fs0_c00135{font-size:72.000000px;}
.y0_c00135{bottom:0.000000px;}
.y5_c00135{bottom:1.440000px;}
.y1_c00135{bottom:12.735000px;}
.y3_c00135{bottom:45.405000px;}
.y4_c00135{bottom:56.700000px;}
.y21_c00135{bottom:110.924850px;}
.y20_c00135{bottom:146.924850px;}
.y1f_c00135{bottom:182.924850px;}
.y1e_c00135{bottom:218.924850px;}
.y1d_c00135{bottom:254.924850px;}
.y1c_c00135{bottom:290.924850px;}
.y1b_c00135{bottom:326.924850px;}
.y1a_c00135{bottom:362.924850px;}
.y19_c00135{bottom:398.924850px;}
.y18_c00135{bottom:434.924850px;}
.y17_c00135{bottom:470.924850px;}
.y16_c00135{bottom:506.924850px;}
.y15_c00135{bottom:542.924850px;}
.y14_c00135{bottom:578.924850px;}
.y13_c00135{bottom:614.924850px;}
.y12_c00135{bottom:650.924850px;}
.y11_c00135{bottom:686.924850px;}
.y10_c00135{bottom:722.924850px;}
.yf_c00135{bottom:758.924850px;}
.ye_c00135{bottom:794.924850px;}
.yd_c00135{bottom:830.924850px;}
.yc_c00135{bottom:866.924850px;}
.yb_c00135{bottom:902.924850px;}
.ya_c00135{bottom:938.924850px;}
.y9_c00135{bottom:974.924850px;}
.y8_c00135{bottom:1010.924850px;}
.y7_c00135{bottom:1046.924850px;}
.y6_c00135{bottom:1082.924850px;}
.y2_c00135{bottom:1165.005000px;}
.h4_c00135{height:17.280000px;}
.h5_c00135{height:70.628906px;}
.h3_c00135{height:70.664062px;}
.h2_c00135{height:1237.365000px;}
.h0_c00135{height:1262.835000px;}
.h1_c00135{height:1263.000000px;}
.w3_c00135{width:47.520000px;}
.w2_c00135{width:867.465000px;}
.w0_c00135{width:892.935000px;}
.w1_c00135{width:893.250000px;}
.x0_c00135{left:0.000000px;}
.x5_c00135{left:10.237500px;}
.x1_c00135{left:12.735000px;}
.x3_c00135{left:95.394300px;}
.x6_c00135{left:149.400150px;}
.x4_c00135{left:422.775000px;}
.x2_c00135{left:880.050300px;}
@media print{
.v0_c00135{vertical-align:0.000000pt;}
.ls1_c00135{letter-spacing:-0.012800pt;}
.ls0_c00135{letter-spacing:0.000000pt;}
.ls2_c00135{letter-spacing:0.012800pt;}
.ws0_c00135{word-spacing:0.000000pt;}
._9_c00135{width:0.940800pt;}
._8_c00135{width:2.054400pt;}
._a_c00135{width:2.976000pt;}
._7_c00135{width:3.987200pt;}
._b_c00135{width:4.908800pt;}
._2_c00135{width:5.888000pt;}
._1_c00135{width:7.072000pt;}
._c_c00135{width:9.568000pt;}
._3_c00135{width:10.528000pt;}
._4_c00135{width:11.468800pt;}
._5_c00135{width:12.710400pt;}
._0_c00135{width:13.638400pt;}
._6_c00135{width:17.158400pt;}
.fs0_c00135{font-size:64.000000pt;}
.y0_c00135{bottom:0.000000pt;}
.y5_c00135{bottom:1.280000pt;}
.y1_c00135{bottom:11.320000pt;}
.y3_c00135{bottom:40.360000pt;}
.y4_c00135{bottom:50.400000pt;}
.y21_c00135{bottom:98.599867pt;}
.y20_c00135{bottom:130.599867pt;}
.y1f_c00135{bottom:162.599867pt;}
.y1e_c00135{bottom:194.599867pt;}
.y1d_c00135{bottom:226.599867pt;}
.y1c_c00135{bottom:258.599867pt;}
.y1b_c00135{bottom:290.599867pt;}
.y1a_c00135{bottom:322.599867pt;}
.y19_c00135{bottom:354.599867pt;}
.y18_c00135{bottom:386.599867pt;}
.y17_c00135{bottom:418.599867pt;}
.y16_c00135{bottom:450.599867pt;}
.y15_c00135{bottom:482.599867pt;}
.y14_c00135{bottom:514.599867pt;}
.y13_c00135{bottom:546.599867pt;}
.y12_c00135{bottom:578.599867pt;}
.y11_c00135{bottom:610.599867pt;}
.y10_c00135{bottom:642.599867pt;}
.yf_c00135{bottom:674.599867pt;}
.ye_c00135{bottom:706.599867pt;}
.yd_c00135{bottom:738.599867pt;}
.yc_c00135{bottom:770.599867pt;}
.yb_c00135{bottom:802.599867pt;}
.ya_c00135{bottom:834.599867pt;}
.y9_c00135{bottom:866.599867pt;}
.y8_c00135{bottom:898.599867pt;}
.y7_c00135{bottom:930.599867pt;}
.y6_c00135{bottom:962.599867pt;}
.y2_c00135{bottom:1035.560000pt;}
.h4_c00135{height:15.360000pt;}
.h5_c00135{height:62.781250pt;}
.h3_c00135{height:62.812500pt;}
.h2_c00135{height:1099.880000pt;}
.h0_c00135{height:1122.520000pt;}
.h1_c00135{height:1122.666667pt;}
.w3_c00135{width:42.240000pt;}
.w2_c00135{width:771.080000pt;}
.w0_c00135{width:793.720000pt;}
.w1_c00135{width:794.000000pt;}
.x0_c00135{left:0.000000pt;}
.x5_c00135{left:9.100000pt;}
.x1_c00135{left:11.320000pt;}
.x3_c00135{left:84.794933pt;}
.x6_c00135{left:132.800133pt;}
.x4_c00135{left:375.800000pt;}
.x2_c00135{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cefc5ad4b88c770bf5bb7ac5.woff2')format("woff");}.ff1_c00136{font-family:ff1_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:ff2_c00136;src:url('chunks/assets/font_0d37d3e94ca20a22c8ce9d7f.woff2')format("woff");}.ff2_c00136{font-family:ff2_c00136;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00136{letter-spacing:0.000000px;}
.sc__c00136{text-shadow:none;}
.sc0_c00136{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00136{-webkit-text-stroke:0px transparent;}
.sc0_c00136{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00136{word-spacing:0.000000px;}
._9_c00136{width:1.533600px;}
._a_c00136{width:2.786400px;}
._3_c00136{width:4.240800px;}
._1_c00136{width:5.580000px;}
._0_c00136{width:6.861600px;}
._2_c00136{width:8.827200px;}
._b_c00136{width:10.468800px;}
._4_c00136{width:11.707200px;}
._c_c00136{width:12.916800px;}
._d_c00136{width:14.774400px;}
._7_c00136{width:15.955200px;}
._8_c00136{width:22.327200px;}
._5_c00136{width:23.385600px;}
._6_c00136{width:30.196800px;}
.fc1_c00136{color:transparent;}
.fc0_c00136{color:rgb(0,0,0);}
.fs0_c00136{font-size:72.000000px;}
.y0_c00136{bottom:0.000000px;}
.y5_c00136{bottom:5.040000px;}
.y1_c00136{bottom:12.735000px;}
.y3_c00136{bottom:45.405000px;}
.y4_c00136{bottom:53.100000px;}
.y21_c00136{bottom:110.924850px;}
.y20_c00136{bottom:146.924850px;}
.y1f_c00136{bottom:182.924850px;}
.y1e_c00136{bottom:218.924850px;}
.y1d_c00136{bottom:254.924850px;}
.y1c_c00136{bottom:290.924850px;}
.y1b_c00136{bottom:326.924850px;}
.y1a_c00136{bottom:362.924850px;}
.y19_c00136{bottom:398.924850px;}
.y18_c00136{bottom:434.924850px;}
.y17_c00136{bottom:470.924850px;}
.y16_c00136{bottom:506.924850px;}
.y15_c00136{bottom:542.924850px;}
.y14_c00136{bottom:578.924850px;}
.y13_c00136{bottom:614.924850px;}
.y12_c00136{bottom:650.924850px;}
.y11_c00136{bottom:686.924850px;}
.y10_c00136{bottom:722.924850px;}
.yf_c00136{bottom:758.924850px;}
.ye_c00136{bottom:794.924850px;}
.yd_c00136{bottom:830.924850px;}
.yc_c00136{bottom:866.924850px;}
.yb_c00136{bottom:902.924850px;}
.ya_c00136{bottom:938.924850px;}
.y9_c00136{bottom:974.924850px;}
.y8_c00136{bottom:1010.924850px;}
.y7_c00136{bottom:1046.924850px;}
.y6_c00136{bottom:1082.924850px;}
.y2_c00136{bottom:1165.005000px;}
.h4_c00136{height:20.880000px;}
.h5_c00136{height:70.628906px;}
.h3_c00136{height:70.664062px;}
.h2_c00136{height:1237.365000px;}
.h0_c00136{height:1262.835000px;}
.h1_c00136{height:1263.000000px;}
.w3_c00136{width:27.360000px;}
.w2_c00136{width:867.465000px;}
.w0_c00136{width:892.935000px;}
.w1_c00136{width:893.250000px;}
.x0_c00136{left:0.000000px;}
.x1_c00136{left:12.735000px;}
.x3_c00136{left:95.394300px;}
.x5_c00136{left:149.400150px;}
.x4_c00136{left:432.855000px;}
.x2_c00136{left:880.050300px;}
@media print{
.v0_c00136{vertical-align:0.000000pt;}
.ls0_c00136{letter-spacing:0.000000pt;}
.ws0_c00136{word-spacing:0.000000pt;}
._9_c00136{width:1.363200pt;}
._a_c00136{width:2.476800pt;}
._3_c00136{width:3.769600pt;}
._1_c00136{width:4.960000pt;}
._0_c00136{width:6.099200pt;}
._2_c00136{width:7.846400pt;}
._b_c00136{width:9.305600pt;}
._4_c00136{width:10.406400pt;}
._c_c00136{width:11.481600pt;}
._d_c00136{width:13.132800pt;}
._7_c00136{width:14.182400pt;}
._8_c00136{width:19.846400pt;}
._5_c00136{width:20.787200pt;}
._6_c00136{width:26.841600pt;}
.fs0_c00136{font-size:64.000000pt;}
.y0_c00136{bottom:0.000000pt;}
.y5_c00136{bottom:4.480000pt;}
.y1_c00136{bottom:11.320000pt;}
.y3_c00136{bottom:40.360000pt;}
.y4_c00136{bottom:47.200000pt;}
.y21_c00136{bottom:98.599867pt;}
.y20_c00136{bottom:130.599867pt;}
.y1f_c00136{bottom:162.599867pt;}
.y1e_c00136{bottom:194.599867pt;}
.y1d_c00136{bottom:226.599867pt;}
.y1c_c00136{bottom:258.599867pt;}
.y1b_c00136{bottom:290.599867pt;}
.y1a_c00136{bottom:322.599867pt;}
.y19_c00136{bottom:354.599867pt;}
.y18_c00136{bottom:386.599867pt;}
.y17_c00136{bottom:418.599867pt;}
.y16_c00136{bottom:450.599867pt;}
.y15_c00136{bottom:482.599867pt;}
.y14_c00136{bottom:514.599867pt;}
.y13_c00136{bottom:546.599867pt;}
.y12_c00136{bottom:578.599867pt;}
.y11_c00136{bottom:610.599867pt;}
.y10_c00136{bottom:642.599867pt;}
.yf_c00136{bottom:674.599867pt;}
.ye_c00136{bottom:706.599867pt;}
.yd_c00136{bottom:738.599867pt;}
.yc_c00136{bottom:770.599867pt;}
.yb_c00136{bottom:802.599867pt;}
.ya_c00136{bottom:834.599867pt;}
.y9_c00136{bottom:866.599867pt;}
.y8_c00136{bottom:898.599867pt;}
.y7_c00136{bottom:930.599867pt;}
.y6_c00136{bottom:962.599867pt;}
.y2_c00136{bottom:1035.560000pt;}
.h4_c00136{height:18.560000pt;}
.h5_c00136{height:62.781250pt;}
.h3_c00136{height:62.812500pt;}
.h2_c00136{height:1099.880000pt;}
.h0_c00136{height:1122.520000pt;}
.h1_c00136{height:1122.666667pt;}
.w3_c00136{width:24.320000pt;}
.w2_c00136{width:771.080000pt;}
.w0_c00136{width:793.720000pt;}
.w1_c00136{width:794.000000pt;}
.x0_c00136{left:0.000000pt;}
.x1_c00136{left:11.320000pt;}
.x3_c00136{left:84.794933pt;}
.x5_c00136{left:132.800133pt;}
.x4_c00136{left:384.760000pt;}
.x2_c00136{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1691a4d1c9f1aaa446795d1d.woff2')format("woff");}.ff1_c00137{font-family:ff1_c00137;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.sc__c00137{text-shadow:none;}
.sc0_c00137{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00137{-webkit-text-stroke:0px transparent;}
.sc0_c00137{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00137{word-spacing:0.000000px;}
._1_c00137{width:1.195200px;}
._9_c00137{width:2.325600px;}
._a_c00137{width:3.355200px;}
._7_c00137{width:4.939200px;}
._0_c00137{width:6.235200px;}
._c_c00137{width:7.603200px;}
._b_c00137{width:9.280800px;}
._8_c00137{width:11.282400px;}
._4_c00137{width:12.556800px;}
._2_c00137{width:13.838400px;}
._3_c00137{width:16.502400px;}
._6_c00137{width:19.008000px;}
._5_c00137{width:22.752000px;}
.fc1_c00137{color:transparent;}
.fc0_c00137{color:rgb(0,0,0);}
.fs0_c00137{font-size:72.000000px;}
.y0_c00137{bottom:0.000000px;}
.y5_c00137{bottom:1.440000px;}
.y1_c00137{bottom:12.735000px;}
.y3_c00137{bottom:45.405000px;}
.y4_c00137{bottom:56.700000px;}
.y21_c00137{bottom:110.924850px;}
.y20_c00137{bottom:146.924850px;}
.y1f_c00137{bottom:182.924850px;}
.y1e_c00137{bottom:218.924850px;}
.y1d_c00137{bottom:254.924850px;}
.y1c_c00137{bottom:290.924850px;}
.y1b_c00137{bottom:326.924850px;}
.y1a_c00137{bottom:362.924850px;}
.y19_c00137{bottom:398.924850px;}
.y18_c00137{bottom:434.924850px;}
.y17_c00137{bottom:470.924850px;}
.y16_c00137{bottom:506.924850px;}
.y15_c00137{bottom:542.924850px;}
.y14_c00137{bottom:578.924850px;}
.y13_c00137{bottom:614.924850px;}
.y12_c00137{bottom:650.924850px;}
.y11_c00137{bottom:686.924850px;}
.y10_c00137{bottom:722.924850px;}
.yf_c00137{bottom:758.924850px;}
.ye_c00137{bottom:794.924850px;}
.yd_c00137{bottom:830.924850px;}
.yc_c00137{bottom:866.924850px;}
.yb_c00137{bottom:902.924850px;}
.ya_c00137{bottom:938.924850px;}
.y9_c00137{bottom:974.924850px;}
.y8_c00137{bottom:1010.924850px;}
.y7_c00137{bottom:1046.924850px;}
.y6_c00137{bottom:1082.924850px;}
.y2_c00137{bottom:1165.005000px;}
.h4_c00137{height:17.280000px;}
.h3_c00137{height:70.664062px;}
.h2_c00137{height:1237.365000px;}
.h0_c00137{height:1262.835000px;}
.h1_c00137{height:1263.000000px;}
.w3_c00137{width:47.520000px;}
.w2_c00137{width:867.465000px;}
.w0_c00137{width:892.935000px;}
.w1_c00137{width:893.250000px;}
.x0_c00137{left:0.000000px;}
.x5_c00137{left:10.237500px;}
.x1_c00137{left:12.735000px;}
.x3_c00137{left:95.394300px;}
.x6_c00137{left:149.400150px;}
.x4_c00137{left:422.775000px;}
.x2_c00137{left:880.050300px;}
@media print{
.v0_c00137{vertical-align:0.000000pt;}
.ls0_c00137{letter-spacing:0.000000pt;}
.ws0_c00137{word-spacing:0.000000pt;}
._1_c00137{width:1.062400pt;}
._9_c00137{width:2.067200pt;}
._a_c00137{width:2.982400pt;}
._7_c00137{width:4.390400pt;}
._0_c00137{width:5.542400pt;}
._c_c00137{width:6.758400pt;}
._b_c00137{width:8.249600pt;}
._8_c00137{width:10.028800pt;}
._4_c00137{width:11.161600pt;}
._2_c00137{width:12.300800pt;}
._3_c00137{width:14.668800pt;}
._6_c00137{width:16.896000pt;}
._5_c00137{width:20.224000pt;}
.fs0_c00137{font-size:64.000000pt;}
.y0_c00137{bottom:0.000000pt;}
.y5_c00137{bottom:1.280000pt;}
.y1_c00137{bottom:11.320000pt;}
.y3_c00137{bottom:40.360000pt;}
.y4_c00137{bottom:50.400000pt;}
.y21_c00137{bottom:98.599867pt;}
.y20_c00137{bottom:130.599867pt;}
.y1f_c00137{bottom:162.599867pt;}
.y1e_c00137{bottom:194.599867pt;}
.y1d_c00137{bottom:226.599867pt;}
.y1c_c00137{bottom:258.599867pt;}
.y1b_c00137{bottom:290.599867pt;}
.y1a_c00137{bottom:322.599867pt;}
.y19_c00137{bottom:354.599867pt;}
.y18_c00137{bottom:386.599867pt;}
.y17_c00137{bottom:418.599867pt;}
.y16_c00137{bottom:450.599867pt;}
.y15_c00137{bottom:482.599867pt;}
.y14_c00137{bottom:514.599867pt;}
.y13_c00137{bottom:546.599867pt;}
.y12_c00137{bottom:578.599867pt;}
.y11_c00137{bottom:610.599867pt;}
.y10_c00137{bottom:642.599867pt;}
.yf_c00137{bottom:674.599867pt;}
.ye_c00137{bottom:706.599867pt;}
.yd_c00137{bottom:738.599867pt;}
.yc_c00137{bottom:770.599867pt;}
.yb_c00137{bottom:802.599867pt;}
.ya_c00137{bottom:834.599867pt;}
.y9_c00137{bottom:866.599867pt;}
.y8_c00137{bottom:898.599867pt;}
.y7_c00137{bottom:930.599867pt;}
.y6_c00137{bottom:962.599867pt;}
.y2_c00137{bottom:1035.560000pt;}
.h4_c00137{height:15.360000pt;}
.h3_c00137{height:62.812500pt;}
.h2_c00137{height:1099.880000pt;}
.h0_c00137{height:1122.520000pt;}
.h1_c00137{height:1122.666667pt;}
.w3_c00137{width:42.240000pt;}
.w2_c00137{width:771.080000pt;}
.w0_c00137{width:793.720000pt;}
.w1_c00137{width:794.000000pt;}
.x0_c00137{left:0.000000pt;}
.x5_c00137{left:9.100000pt;}
.x1_c00137{left:11.320000pt;}
.x3_c00137{left:84.794933pt;}
.x6_c00137{left:132.800133pt;}
.x4_c00137{left:375.800000pt;}
.x2_c00137{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7fb150d52470d2aff014dfa2.woff2')format("woff");}.ff1_c00138{font-family:ff1_c00138;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00138{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00138{vertical-align:0.000000px;}
.ls0_c00138{letter-spacing:0.000000px;}
.sc__c00138{text-shadow:none;}
.sc0_c00138{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00138{-webkit-text-stroke:0px transparent;}
.sc0_c00138{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00138{word-spacing:0.000000px;}
._0_c00138{width:1.267200px;}
._6_c00138{width:2.311200px;}
._5_c00138{width:3.556800px;}
._9_c00138{width:5.198400px;}
._3_c00138{width:7.207200px;}
._8_c00138{width:8.488800px;}
._a_c00138{width:11.541600px;}
._b_c00138{width:12.780000px;}
._4_c00138{width:13.838400px;}
._1_c00138{width:19.231200px;}
._c_c00138{width:21.103200px;}
._e_c00138{width:22.932000px;}
._d_c00138{width:29.448000px;}
._7_c00138{width:31.197600px;}
._2_c00138{width:38.764800px;}
._f_c00138{width:44.748000px;}
.fc1_c00138{color:transparent;}
.fc0_c00138{color:rgb(0,0,0);}
.fs0_c00138{font-size:72.000000px;}
.y0_c00138{bottom:0.000000px;}
.y5_c00138{bottom:5.040000px;}
.y1_c00138{bottom:12.735000px;}
.y3_c00138{bottom:45.405000px;}
.y4_c00138{bottom:53.100000px;}
.y20_c00138{bottom:146.924850px;}
.y1f_c00138{bottom:182.924850px;}
.y1e_c00138{bottom:218.924850px;}
.y1d_c00138{bottom:254.924850px;}
.y1c_c00138{bottom:290.924850px;}
.y1b_c00138{bottom:326.924850px;}
.y1a_c00138{bottom:362.924850px;}
.y19_c00138{bottom:398.924850px;}
.y18_c00138{bottom:434.924850px;}
.y17_c00138{bottom:470.924850px;}
.y16_c00138{bottom:506.924850px;}
.y15_c00138{bottom:542.924850px;}
.y14_c00138{bottom:578.924850px;}
.y13_c00138{bottom:614.924850px;}
.y12_c00138{bottom:650.924850px;}
.y11_c00138{bottom:686.924850px;}
.y10_c00138{bottom:722.924850px;}
.yf_c00138{bottom:758.924850px;}
.ye_c00138{bottom:794.924850px;}
.yd_c00138{bottom:830.924850px;}
.yc_c00138{bottom:866.924850px;}
.yb_c00138{bottom:902.924850px;}
.ya_c00138{bottom:938.924850px;}
.y9_c00138{bottom:974.924850px;}
.y8_c00138{bottom:1010.924850px;}
.y7_c00138{bottom:1046.924850px;}
.y6_c00138{bottom:1082.924850px;}
.y2_c00138{bottom:1165.005000px;}
.h4_c00138{height:20.880000px;}
.h3_c00138{height:70.664062px;}
.h2_c00138{height:1237.365000px;}
.h0_c00138{height:1262.835000px;}
.h1_c00138{height:1263.000000px;}
.w3_c00138{width:27.360000px;}
.w2_c00138{width:867.465000px;}
.w0_c00138{width:892.935000px;}
.w1_c00138{width:893.250000px;}
.x0_c00138{left:0.000000px;}
.x1_c00138{left:12.735000px;}
.x3_c00138{left:95.394300px;}
.x5_c00138{left:149.400150px;}
.x4_c00138{left:432.855000px;}
.x2_c00138{left:880.050300px;}
@media print{
.v0_c00138{vertical-align:0.000000pt;}
.ls0_c00138{letter-spacing:0.000000pt;}
.ws0_c00138{word-spacing:0.000000pt;}
._0_c00138{width:1.126400pt;}
._6_c00138{width:2.054400pt;}
._5_c00138{width:3.161600pt;}
._9_c00138{width:4.620800pt;}
._3_c00138{width:6.406400pt;}
._8_c00138{width:7.545600pt;}
._a_c00138{width:10.259200pt;}
._b_c00138{width:11.360000pt;}
._4_c00138{width:12.300800pt;}
._1_c00138{width:17.094400pt;}
._c_c00138{width:18.758400pt;}
._e_c00138{width:20.384000pt;}
._d_c00138{width:26.176000pt;}
._7_c00138{width:27.731200pt;}
._2_c00138{width:34.457600pt;}
._f_c00138{width:39.776000pt;}
.fs0_c00138{font-size:64.000000pt;}
.y0_c00138{bottom:0.000000pt;}
.y5_c00138{bottom:4.480000pt;}
.y1_c00138{bottom:11.320000pt;}
.y3_c00138{bottom:40.360000pt;}
.y4_c00138{bottom:47.200000pt;}
.y20_c00138{bottom:130.599867pt;}
.y1f_c00138{bottom:162.599867pt;}
.y1e_c00138{bottom:194.599867pt;}
.y1d_c00138{bottom:226.599867pt;}
.y1c_c00138{bottom:258.599867pt;}
.y1b_c00138{bottom:290.599867pt;}
.y1a_c00138{bottom:322.599867pt;}
.y19_c00138{bottom:354.599867pt;}
.y18_c00138{bottom:386.599867pt;}
.y17_c00138{bottom:418.599867pt;}
.y16_c00138{bottom:450.599867pt;}
.y15_c00138{bottom:482.599867pt;}
.y14_c00138{bottom:514.599867pt;}
.y13_c00138{bottom:546.599867pt;}
.y12_c00138{bottom:578.599867pt;}
.y11_c00138{bottom:610.599867pt;}
.y10_c00138{bottom:642.599867pt;}
.yf_c00138{bottom:674.599867pt;}
.ye_c00138{bottom:706.599867pt;}
.yd_c00138{bottom:738.599867pt;}
.yc_c00138{bottom:770.599867pt;}
.yb_c00138{bottom:802.599867pt;}
.ya_c00138{bottom:834.599867pt;}
.y9_c00138{bottom:866.599867pt;}
.y8_c00138{bottom:898.599867pt;}
.y7_c00138{bottom:930.599867pt;}
.y6_c00138{bottom:962.599867pt;}
.y2_c00138{bottom:1035.560000pt;}
.h4_c00138{height:18.560000pt;}
.h3_c00138{height:62.812500pt;}
.h2_c00138{height:1099.880000pt;}
.h0_c00138{height:1122.520000pt;}
.h1_c00138{height:1122.666667pt;}
.w3_c00138{width:24.320000pt;}
.w2_c00138{width:771.080000pt;}
.w0_c00138{width:793.720000pt;}
.w1_c00138{width:794.000000pt;}
.x0_c00138{left:0.000000pt;}
.x1_c00138{left:11.320000pt;}
.x3_c00138{left:84.794933pt;}
.x5_c00138{left:132.800133pt;}
.x4_c00138{left:384.760000pt;}
.x2_c00138{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_05becb22d1da5324a1efa2b8.woff2')format("woff");}.ff1_c00139{font-family:ff1_c00139;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00139;src:url('chunks/assets/font_5624caba200ef6d0751c594e.woff2')format("woff");}.ff2_c00139{font-family:ff2_c00139;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00139{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00139{vertical-align:0.000000px;}
.ls1_c00139{letter-spacing:-0.014400px;}
.ls0_c00139{letter-spacing:0.000000px;}
.sc__c00139{text-shadow:none;}
.sc0_c00139{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00139{-webkit-text-stroke:0px transparent;}
.sc0_c00139{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00139{word-spacing:-17.985600px;}
.ws1_c00139{word-spacing:0.000000px;}
._5_c00139{width:2.008800px;}
._3_c00139{width:3.204000px;}
._4_c00139{width:4.867200px;}
._b_c00139{width:6.004800px;}
._1_c00139{width:7.459200px;}
._a_c00139{width:9.288000px;}
._f_c00139{width:10.972800px;}
._8_c00139{width:12.837600px;}
._2_c00139{width:16.840800px;}
._9_c00139{width:19.252800px;}
._0_c00139{width:24.170400px;}
._10_c00139{width:27.676800px;}
._6_c00139{width:29.232000px;}
._11_c00139{width:31.060800px;}
._c_c00139{width:32.155200px;}
._7_c00139{width:36.928800px;}
._d_c00139{width:46.915200px;}
._e_c00139{width:50.637600px;}
.fc1_c00139{color:transparent;}
.fc0_c00139{color:rgb(0,0,0);}
.fs0_c00139{font-size:72.000000px;}
.y0_c00139{bottom:0.000000px;}
.y5_c00139{bottom:1.440000px;}
.y1_c00139{bottom:12.735000px;}
.y3_c00139{bottom:45.405000px;}
.y4_c00139{bottom:56.700000px;}
.y21_c00139{bottom:110.924850px;}
.y20_c00139{bottom:146.924850px;}
.y1f_c00139{bottom:182.924850px;}
.y1e_c00139{bottom:218.924850px;}
.y1d_c00139{bottom:254.924850px;}
.y1c_c00139{bottom:290.924850px;}
.y1b_c00139{bottom:326.924850px;}
.y1a_c00139{bottom:362.924850px;}
.y19_c00139{bottom:398.924850px;}
.y18_c00139{bottom:434.924850px;}
.y17_c00139{bottom:470.924850px;}
.y16_c00139{bottom:506.924850px;}
.y15_c00139{bottom:542.924850px;}
.y14_c00139{bottom:578.924850px;}
.y13_c00139{bottom:614.924850px;}
.y12_c00139{bottom:650.924850px;}
.y11_c00139{bottom:686.924850px;}
.y10_c00139{bottom:722.924850px;}
.yf_c00139{bottom:758.924850px;}
.ye_c00139{bottom:794.924850px;}
.yd_c00139{bottom:830.924850px;}
.yc_c00139{bottom:866.924850px;}
.yb_c00139{bottom:902.924850px;}
.ya_c00139{bottom:938.924850px;}
.y9_c00139{bottom:974.924850px;}
.y8_c00139{bottom:1010.924850px;}
.y7_c00139{bottom:1046.924850px;}
.y6_c00139{bottom:1082.924850px;}
.y2_c00139{bottom:1165.005000px;}
.h4_c00139{height:17.280000px;}
.h5_c00139{height:70.628906px;}
.h3_c00139{height:70.664062px;}
.h2_c00139{height:1237.365000px;}
.h0_c00139{height:1262.835000px;}
.h1_c00139{height:1263.000000px;}
.w3_c00139{width:47.520000px;}
.w2_c00139{width:867.465000px;}
.w0_c00139{width:892.935000px;}
.w1_c00139{width:893.250000px;}
.x0_c00139{left:0.000000px;}
.x5_c00139{left:10.237500px;}
.x1_c00139{left:12.735000px;}
.x3_c00139{left:95.394300px;}
.x6_c00139{left:149.400150px;}
.x4_c00139{left:422.775000px;}
.x2_c00139{left:880.050300px;}
@media print{
.v0_c00139{vertical-align:0.000000pt;}
.ls1_c00139{letter-spacing:-0.012800pt;}
.ls0_c00139{letter-spacing:0.000000pt;}
.ws0_c00139{word-spacing:-15.987200pt;}
.ws1_c00139{word-spacing:0.000000pt;}
._5_c00139{width:1.785600pt;}
._3_c00139{width:2.848000pt;}
._4_c00139{width:4.326400pt;}
._b_c00139{width:5.337600pt;}
._1_c00139{width:6.630400pt;}
._a_c00139{width:8.256000pt;}
._f_c00139{width:9.753600pt;}
._8_c00139{width:11.411200pt;}
._2_c00139{width:14.969600pt;}
._9_c00139{width:17.113600pt;}
._0_c00139{width:21.484800pt;}
._10_c00139{width:24.601600pt;}
._6_c00139{width:25.984000pt;}
._11_c00139{width:27.609600pt;}
._c_c00139{width:28.582400pt;}
._7_c00139{width:32.825600pt;}
._d_c00139{width:41.702400pt;}
._e_c00139{width:45.011200pt;}
.fs0_c00139{font-size:64.000000pt;}
.y0_c00139{bottom:0.000000pt;}
.y5_c00139{bottom:1.280000pt;}
.y1_c00139{bottom:11.320000pt;}
.y3_c00139{bottom:40.360000pt;}
.y4_c00139{bottom:50.400000pt;}
.y21_c00139{bottom:98.599867pt;}
.y20_c00139{bottom:130.599867pt;}
.y1f_c00139{bottom:162.599867pt;}
.y1e_c00139{bottom:194.599867pt;}
.y1d_c00139{bottom:226.599867pt;}
.y1c_c00139{bottom:258.599867pt;}
.y1b_c00139{bottom:290.599867pt;}
.y1a_c00139{bottom:322.599867pt;}
.y19_c00139{bottom:354.599867pt;}
.y18_c00139{bottom:386.599867pt;}
.y17_c00139{bottom:418.599867pt;}
.y16_c00139{bottom:450.599867pt;}
.y15_c00139{bottom:482.599867pt;}
.y14_c00139{bottom:514.599867pt;}
.y13_c00139{bottom:546.599867pt;}
.y12_c00139{bottom:578.599867pt;}
.y11_c00139{bottom:610.599867pt;}
.y10_c00139{bottom:642.599867pt;}
.yf_c00139{bottom:674.599867pt;}
.ye_c00139{bottom:706.599867pt;}
.yd_c00139{bottom:738.599867pt;}
.yc_c00139{bottom:770.599867pt;}
.yb_c00139{bottom:802.599867pt;}
.ya_c00139{bottom:834.599867pt;}
.y9_c00139{bottom:866.599867pt;}
.y8_c00139{bottom:898.599867pt;}
.y7_c00139{bottom:930.599867pt;}
.y6_c00139{bottom:962.599867pt;}
.y2_c00139{bottom:1035.560000pt;}
.h4_c00139{height:15.360000pt;}
.h5_c00139{height:62.781250pt;}
.h3_c00139{height:62.812500pt;}
.h2_c00139{height:1099.880000pt;}
.h0_c00139{height:1122.520000pt;}
.h1_c00139{height:1122.666667pt;}
.w3_c00139{width:42.240000pt;}
.w2_c00139{width:771.080000pt;}
.w0_c00139{width:793.720000pt;}
.w1_c00139{width:794.000000pt;}
.x0_c00139{left:0.000000pt;}
.x5_c00139{left:9.100000pt;}
.x1_c00139{left:11.320000pt;}
.x3_c00139{left:84.794933pt;}
.x6_c00139{left:132.800133pt;}
.x4_c00139{left:375.800000pt;}
.x2_c00139{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_532f6634df5efd21fe991122.woff2')format("woff");}.ff1_c00140{font-family:ff1_c00140;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00140;src:url('chunks/assets/font_42f41f8257916a590a8ea797.woff2')format("woff");}.ff2_c00140{font-family:ff2_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;}
.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;}
.ls0_c00140{letter-spacing:0.000000px;}
.sc__c00140{text-shadow:none;}
.sc0_c00140{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00140{-webkit-text-stroke:0px transparent;}
.sc0_c00140{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00140{word-spacing:0.000000px;}
._5_c00140{width:1.800000px;}
._6_c00140{width:2.800800px;}
._a_c00140{width:3.895200px;}
._1_c00140{width:5.493600px;}
._3_c00140{width:7.020000px;}
._8_c00140{width:8.690400px;}
._9_c00140{width:11.203200px;}
._4_c00140{width:12.319200px;}
._b_c00140{width:14.248800px;}
._7_c00140{width:21.204000px;}
._0_c00140{width:22.370400px;}
._2_c00140{width:28.188000px;}
.fc1_c00140{color:transparent;}
.fc0_c00140{color:rgb(0,0,0);}
.fs0_c00140{font-size:72.000000px;}
.y0_c00140{bottom:0.000000px;}
.y5_c00140{bottom:5.040000px;}
.y1_c00140{bottom:12.735000px;}
.y3_c00140{bottom:45.405000px;}
.y4_c00140{bottom:53.100000px;}
.y21_c00140{bottom:110.924850px;}
.y20_c00140{bottom:146.924850px;}
.y1f_c00140{bottom:182.924850px;}
.y1e_c00140{bottom:218.924850px;}
.y1d_c00140{bottom:254.924850px;}
.y1c_c00140{bottom:290.924850px;}
.y1b_c00140{bottom:326.924850px;}
.y1a_c00140{bottom:362.924850px;}
.y19_c00140{bottom:398.924850px;}
.y18_c00140{bottom:434.924850px;}
.y17_c00140{bottom:470.924850px;}
.y16_c00140{bottom:506.924850px;}
.y15_c00140{bottom:542.924850px;}
.y14_c00140{bottom:578.924850px;}
.y13_c00140{bottom:614.924850px;}
.y12_c00140{bottom:650.924850px;}
.y11_c00140{bottom:686.924850px;}
.y10_c00140{bottom:722.924850px;}
.yf_c00140{bottom:758.924850px;}
.ye_c00140{bottom:794.924850px;}
.yd_c00140{bottom:830.924850px;}
.yc_c00140{bottom:866.924850px;}
.yb_c00140{bottom:902.924850px;}
.ya_c00140{bottom:938.924850px;}
.y9_c00140{bottom:974.924850px;}
.y8_c00140{bottom:1010.924850px;}
.y7_c00140{bottom:1046.924850px;}
.y6_c00140{bottom:1082.924850px;}
.y2_c00140{bottom:1165.005000px;}
.h4_c00140{height:20.880000px;}
.h5_c00140{height:70.628906px;}
.h3_c00140{height:70.664062px;}
.h2_c00140{height:1237.365000px;}
.h0_c00140{height:1262.835000px;}
.h1_c00140{height:1263.000000px;}
.w3_c00140{width:27.360000px;}
.w2_c00140{width:867.465000px;}
.w0_c00140{width:892.935000px;}
.w1_c00140{width:893.250000px;}
.x0_c00140{left:0.000000px;}
.x1_c00140{left:12.735000px;}
.x3_c00140{left:95.394300px;}
.x5_c00140{left:149.400150px;}
.x4_c00140{left:432.855000px;}
.x2_c00140{left:880.050300px;}
@media print{
.v0_c00140{vertical-align:0.000000pt;}
.ls0_c00140{letter-spacing:0.000000pt;}
.ws0_c00140{word-spacing:0.000000pt;}
._5_c00140{width:1.600000pt;}
._6_c00140{width:2.489600pt;}
._a_c00140{width:3.462400pt;}
._1_c00140{width:4.883200pt;}
._3_c00140{width:6.240000pt;}
._8_c00140{width:7.724800pt;}
._9_c00140{width:9.958400pt;}
._4_c00140{width:10.950400pt;}
._b_c00140{width:12.665600pt;}
._7_c00140{width:18.848000pt;}
._0_c00140{width:19.884800pt;}
._2_c00140{width:25.056000pt;}
.fs0_c00140{font-size:64.000000pt;}
.y0_c00140{bottom:0.000000pt;}
.y5_c00140{bottom:4.480000pt;}
.y1_c00140{bottom:11.320000pt;}
.y3_c00140{bottom:40.360000pt;}
.y4_c00140{bottom:47.200000pt;}
.y21_c00140{bottom:98.599867pt;}
.y20_c00140{bottom:130.599867pt;}
.y1f_c00140{bottom:162.599867pt;}
.y1e_c00140{bottom:194.599867pt;}
.y1d_c00140{bottom:226.599867pt;}
.y1c_c00140{bottom:258.599867pt;}
.y1b_c00140{bottom:290.599867pt;}
.y1a_c00140{bottom:322.599867pt;}
.y19_c00140{bottom:354.599867pt;}
.y18_c00140{bottom:386.599867pt;}
.y17_c00140{bottom:418.599867pt;}
.y16_c00140{bottom:450.599867pt;}
.y15_c00140{bottom:482.599867pt;}
.y14_c00140{bottom:514.599867pt;}
.y13_c00140{bottom:546.599867pt;}
.y12_c00140{bottom:578.599867pt;}
.y11_c00140{bottom:610.599867pt;}
.y10_c00140{bottom:642.599867pt;}
.yf_c00140{bottom:674.599867pt;}
.ye_c00140{bottom:706.599867pt;}
.yd_c00140{bottom:738.599867pt;}
.yc_c00140{bottom:770.599867pt;}
.yb_c00140{bottom:802.599867pt;}
.ya_c00140{bottom:834.599867pt;}
.y9_c00140{bottom:866.599867pt;}
.y8_c00140{bottom:898.599867pt;}
.y7_c00140{bottom:930.599867pt;}
.y6_c00140{bottom:962.599867pt;}
.y2_c00140{bottom:1035.560000pt;}
.h4_c00140{height:18.560000pt;}
.h5_c00140{height:62.781250pt;}
.h3_c00140{height:62.812500pt;}
.h2_c00140{height:1099.880000pt;}
.h0_c00140{height:1122.520000pt;}
.h1_c00140{height:1122.666667pt;}
.w3_c00140{width:24.320000pt;}
.w2_c00140{width:771.080000pt;}
.w0_c00140{width:793.720000pt;}
.w1_c00140{width:794.000000pt;}
.x0_c00140{left:0.000000pt;}
.x1_c00140{left:11.320000pt;}
.x3_c00140{left:84.794933pt;}
.x5_c00140{left:132.800133pt;}
.x4_c00140{left:384.760000pt;}
.x2_c00140{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bbe8b0ccbb5b1f2c6bedcfa1.woff2')format("woff");}.ff1_c00141{font-family:ff1_c00141;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00141{letter-spacing:0.000000px;}
.sc__c00141{text-shadow:none;}
.sc0_c00141{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00141{-webkit-text-stroke:0px transparent;}
.sc0_c00141{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00141{word-spacing:0.000000px;}
._4_c00141{width:1.872000px;}
._7_c00141{width:3.139200px;}
._0_c00141{width:4.917600px;}
._1_c00141{width:6.141600px;}
._6_c00141{width:7.862400px;}
._9_c00141{width:9.014400px;}
._3_c00141{width:12.002400px;}
._2_c00141{width:13.989600px;}
._8_c00141{width:15.098400px;}
._5_c00141{width:16.538400px;}
.fc1_c00141{color:transparent;}
.fc0_c00141{color:rgb(0,0,0);}
.fs0_c00141{font-size:72.000000px;}
.y0_c00141{bottom:0.000000px;}
.y5_c00141{bottom:1.440000px;}
.y1_c00141{bottom:12.735000px;}
.y3_c00141{bottom:45.405000px;}
.y4_c00141{bottom:56.700000px;}
.y21_c00141{bottom:110.924850px;}
.y20_c00141{bottom:146.924850px;}
.y1f_c00141{bottom:182.924850px;}
.y1e_c00141{bottom:218.924850px;}
.y1d_c00141{bottom:254.924850px;}
.y1c_c00141{bottom:290.924850px;}
.y1b_c00141{bottom:326.924850px;}
.y1a_c00141{bottom:362.924850px;}
.y19_c00141{bottom:398.924850px;}
.y18_c00141{bottom:434.924850px;}
.y17_c00141{bottom:470.924850px;}
.y16_c00141{bottom:506.924850px;}
.y15_c00141{bottom:542.924850px;}
.y14_c00141{bottom:578.924850px;}
.y13_c00141{bottom:614.924850px;}
.y12_c00141{bottom:650.924850px;}
.y11_c00141{bottom:686.924850px;}
.y10_c00141{bottom:722.924850px;}
.yf_c00141{bottom:758.924850px;}
.ye_c00141{bottom:794.924850px;}
.yd_c00141{bottom:830.924850px;}
.yc_c00141{bottom:866.924850px;}
.yb_c00141{bottom:902.924850px;}
.ya_c00141{bottom:938.924850px;}
.y9_c00141{bottom:974.924850px;}
.y8_c00141{bottom:1010.924850px;}
.y7_c00141{bottom:1046.924850px;}
.y6_c00141{bottom:1082.924850px;}
.y2_c00141{bottom:1165.005000px;}
.h4_c00141{height:17.280000px;}
.h3_c00141{height:70.664062px;}
.h2_c00141{height:1237.365000px;}
.h0_c00141{height:1262.835000px;}
.h1_c00141{height:1263.000000px;}
.w3_c00141{width:47.520000px;}
.w2_c00141{width:867.465000px;}
.w0_c00141{width:892.935000px;}
.w1_c00141{width:893.250000px;}
.x0_c00141{left:0.000000px;}
.x5_c00141{left:10.237500px;}
.x1_c00141{left:12.735000px;}
.x3_c00141{left:95.394300px;}
.x6_c00141{left:149.400150px;}
.x4_c00141{left:422.775000px;}
.x2_c00141{left:880.050300px;}
@media print{
.v0_c00141{vertical-align:0.000000pt;}
.ls0_c00141{letter-spacing:0.000000pt;}
.ws0_c00141{word-spacing:0.000000pt;}
._4_c00141{width:1.664000pt;}
._7_c00141{width:2.790400pt;}
._0_c00141{width:4.371200pt;}
._1_c00141{width:5.459200pt;}
._6_c00141{width:6.988800pt;}
._9_c00141{width:8.012800pt;}
._3_c00141{width:10.668800pt;}
._2_c00141{width:12.435200pt;}
._8_c00141{width:13.420800pt;}
._5_c00141{width:14.700800pt;}
.fs0_c00141{font-size:64.000000pt;}
.y0_c00141{bottom:0.000000pt;}
.y5_c00141{bottom:1.280000pt;}
.y1_c00141{bottom:11.320000pt;}
.y3_c00141{bottom:40.360000pt;}
.y4_c00141{bottom:50.400000pt;}
.y21_c00141{bottom:98.599867pt;}
.y20_c00141{bottom:130.599867pt;}
.y1f_c00141{bottom:162.599867pt;}
.y1e_c00141{bottom:194.599867pt;}
.y1d_c00141{bottom:226.599867pt;}
.y1c_c00141{bottom:258.599867pt;}
.y1b_c00141{bottom:290.599867pt;}
.y1a_c00141{bottom:322.599867pt;}
.y19_c00141{bottom:354.599867pt;}
.y18_c00141{bottom:386.599867pt;}
.y17_c00141{bottom:418.599867pt;}
.y16_c00141{bottom:450.599867pt;}
.y15_c00141{bottom:482.599867pt;}
.y14_c00141{bottom:514.599867pt;}
.y13_c00141{bottom:546.599867pt;}
.y12_c00141{bottom:578.599867pt;}
.y11_c00141{bottom:610.599867pt;}
.y10_c00141{bottom:642.599867pt;}
.yf_c00141{bottom:674.599867pt;}
.ye_c00141{bottom:706.599867pt;}
.yd_c00141{bottom:738.599867pt;}
.yc_c00141{bottom:770.599867pt;}
.yb_c00141{bottom:802.599867pt;}
.ya_c00141{bottom:834.599867pt;}
.y9_c00141{bottom:866.599867pt;}
.y8_c00141{bottom:898.599867pt;}
.y7_c00141{bottom:930.599867pt;}
.y6_c00141{bottom:962.599867pt;}
.y2_c00141{bottom:1035.560000pt;}
.h4_c00141{height:15.360000pt;}
.h3_c00141{height:62.812500pt;}
.h2_c00141{height:1099.880000pt;}
.h0_c00141{height:1122.520000pt;}
.h1_c00141{height:1122.666667pt;}
.w3_c00141{width:42.240000pt;}
.w2_c00141{width:771.080000pt;}
.w0_c00141{width:793.720000pt;}
.w1_c00141{width:794.000000pt;}
.x0_c00141{left:0.000000pt;}
.x5_c00141{left:9.100000pt;}
.x1_c00141{left:11.320000pt;}
.x3_c00141{left:84.794933pt;}
.x6_c00141{left:132.800133pt;}
.x4_c00141{left:375.800000pt;}
.x2_c00141{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_03a61887f2b77c72482f3ad4.woff2')format("woff");}.ff1_c00142{font-family:ff1_c00142;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00142;src:url('chunks/assets/font_d41b5668b1b9f6b24ba053f7.woff2')format("woff");}.ff2_c00142{font-family:ff2_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;}
.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;}
.ls0_c00142{letter-spacing:0.000000px;}
.sc__c00142{text-shadow:none;}
.sc0_c00142{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00142{-webkit-text-stroke:0px transparent;}
.sc0_c00142{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00142{word-spacing:0.000000px;}
._a_c00142{width:1.944000px;}
._7_c00142{width:3.549600px;}
._9_c00142{width:4.903200px;}
._5_c00142{width:7.149600px;}
._b_c00142{width:8.863200px;}
._3_c00142{width:9.864000px;}
._2_c00142{width:11.383200px;}
._4_c00142{width:12.852000px;}
._0_c00142{width:15.084000px;}
._1_c00142{width:16.848000px;}
._6_c00142{width:21.117600px;}
._8_c00142{width:27.201600px;}
.fc1_c00142{color:transparent;}
.fc0_c00142{color:rgb(0,0,0);}
.fs0_c00142{font-size:72.000000px;}
.y0_c00142{bottom:0.000000px;}
.y5_c00142{bottom:5.040000px;}
.y1_c00142{bottom:12.735000px;}
.y3_c00142{bottom:45.405000px;}
.y4_c00142{bottom:53.100000px;}
.y21_c00142{bottom:110.925000px;}
.y20_c00142{bottom:146.925000px;}
.y1f_c00142{bottom:182.925000px;}
.y1e_c00142{bottom:218.925000px;}
.y1d_c00142{bottom:254.925000px;}
.y1c_c00142{bottom:290.925000px;}
.y1b_c00142{bottom:326.925000px;}
.y1a_c00142{bottom:362.925000px;}
.y19_c00142{bottom:398.925000px;}
.y18_c00142{bottom:434.924850px;}
.y17_c00142{bottom:470.924850px;}
.y16_c00142{bottom:506.924850px;}
.y15_c00142{bottom:542.924850px;}
.y14_c00142{bottom:578.924850px;}
.y13_c00142{bottom:614.924850px;}
.y12_c00142{bottom:650.924850px;}
.y11_c00142{bottom:686.924850px;}
.y10_c00142{bottom:722.924850px;}
.yf_c00142{bottom:758.924850px;}
.ye_c00142{bottom:794.924850px;}
.yd_c00142{bottom:830.924850px;}
.yc_c00142{bottom:866.924850px;}
.yb_c00142{bottom:902.924850px;}
.ya_c00142{bottom:938.924850px;}
.y9_c00142{bottom:974.924850px;}
.y8_c00142{bottom:1010.924850px;}
.y7_c00142{bottom:1046.924850px;}
.y6_c00142{bottom:1082.924850px;}
.y2_c00142{bottom:1165.005000px;}
.h4_c00142{height:20.880000px;}
.h5_c00142{height:70.629506px;}
.h3_c00142{height:70.664062px;}
.h2_c00142{height:1237.365000px;}
.h0_c00142{height:1262.835000px;}
.h1_c00142{height:1263.000000px;}
.w3_c00142{width:27.360000px;}
.w2_c00142{width:867.465000px;}
.w0_c00142{width:892.935000px;}
.w1_c00142{width:893.250000px;}
.x0_c00142{left:0.000000px;}
.x1_c00142{left:12.735000px;}
.x3_c00142{left:95.394300px;}
.x5_c00142{left:149.400150px;}
.x4_c00142{left:432.855000px;}
.x2_c00142{left:880.050300px;}
@media print{
.v0_c00142{vertical-align:0.000000pt;}
.ls0_c00142{letter-spacing:0.000000pt;}
.ws0_c00142{word-spacing:0.000000pt;}
._a_c00142{width:1.728000pt;}
._7_c00142{width:3.155200pt;}
._9_c00142{width:4.358400pt;}
._5_c00142{width:6.355200pt;}
._b_c00142{width:7.878400pt;}
._3_c00142{width:8.768000pt;}
._2_c00142{width:10.118400pt;}
._4_c00142{width:11.424000pt;}
._0_c00142{width:13.408000pt;}
._1_c00142{width:14.976000pt;}
._6_c00142{width:18.771200pt;}
._8_c00142{width:24.179200pt;}
.fs0_c00142{font-size:64.000000pt;}
.y0_c00142{bottom:0.000000pt;}
.y5_c00142{bottom:4.480000pt;}
.y1_c00142{bottom:11.320000pt;}
.y3_c00142{bottom:40.360000pt;}
.y4_c00142{bottom:47.200000pt;}
.y21_c00142{bottom:98.600000pt;}
.y20_c00142{bottom:130.600000pt;}
.y1f_c00142{bottom:162.600000pt;}
.y1e_c00142{bottom:194.600000pt;}
.y1d_c00142{bottom:226.600000pt;}
.y1c_c00142{bottom:258.600000pt;}
.y1b_c00142{bottom:290.600000pt;}
.y1a_c00142{bottom:322.600000pt;}
.y19_c00142{bottom:354.600000pt;}
.y18_c00142{bottom:386.599867pt;}
.y17_c00142{bottom:418.599867pt;}
.y16_c00142{bottom:450.599867pt;}
.y15_c00142{bottom:482.599867pt;}
.y14_c00142{bottom:514.599867pt;}
.y13_c00142{bottom:546.599867pt;}
.y12_c00142{bottom:578.599867pt;}
.y11_c00142{bottom:610.599867pt;}
.y10_c00142{bottom:642.599867pt;}
.yf_c00142{bottom:674.599867pt;}
.ye_c00142{bottom:706.599867pt;}
.yd_c00142{bottom:738.599867pt;}
.yc_c00142{bottom:770.599867pt;}
.yb_c00142{bottom:802.599867pt;}
.ya_c00142{bottom:834.599867pt;}
.y9_c00142{bottom:866.599867pt;}
.y8_c00142{bottom:898.599867pt;}
.y7_c00142{bottom:930.599867pt;}
.y6_c00142{bottom:962.599867pt;}
.y2_c00142{bottom:1035.560000pt;}
.h4_c00142{height:18.560000pt;}
.h5_c00142{height:62.781783pt;}
.h3_c00142{height:62.812500pt;}
.h2_c00142{height:1099.880000pt;}
.h0_c00142{height:1122.520000pt;}
.h1_c00142{height:1122.666667pt;}
.w3_c00142{width:24.320000pt;}
.w2_c00142{width:771.080000pt;}
.w0_c00142{width:793.720000pt;}
.w1_c00142{width:794.000000pt;}
.x0_c00142{left:0.000000pt;}
.x1_c00142{left:11.320000pt;}
.x3_c00142{left:84.794933pt;}
.x5_c00142{left:132.800133pt;}
.x4_c00142{left:384.760000pt;}
.x2_c00142{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6c8c135b4d97be428e9b13b.woff2')format("woff");}.ff1_c00143{font-family:ff1_c00143;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00143;src:url('chunks/assets/font_41877e4fba346c739aa8ee05.woff2')format("woff");}.ff2_c00143{font-family:ff2_c00143;line-height:1.284180;font-style: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;}
.ls0_c00143{letter-spacing:0.000000px;}
.sc__c00143{text-shadow:none;}
.sc0_c00143{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00143{-webkit-text-stroke:0px transparent;}
.sc0_c00143{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00143{word-spacing:0.000000px;}
._1_c00143{width:1.008000px;}
._3_c00143{width:3.643200px;}
._9_c00143{width:4.680000px;}
._0_c00143{width:6.141600px;}
._4_c00143{width:7.401600px;}
._6_c00143{width:9.252000px;}
._2_c00143{width:10.389600px;}
._5_c00143{width:11.858400px;}
._8_c00143{width:15.343200px;}
._c_c00143{width:16.833600px;}
._b_c00143{width:19.202400px;}
._7_c00143{width:21.607200px;}
._a_c00143{width:24.019200px;}
.fc1_c00143{color:transparent;}
.fc0_c00143{color:rgb(0,0,0);}
.fs0_c00143{font-size:72.000000px;}
.y0_c00143{bottom:0.000000px;}
.y5_c00143{bottom:1.440000px;}
.y1_c00143{bottom:12.735000px;}
.y3_c00143{bottom:45.405000px;}
.y4_c00143{bottom:56.700000px;}
.y21_c00143{bottom:110.924850px;}
.y20_c00143{bottom:146.924850px;}
.y1f_c00143{bottom:182.924850px;}
.y1e_c00143{bottom:218.924850px;}
.y1d_c00143{bottom:254.924850px;}
.y1c_c00143{bottom:290.924850px;}
.y1b_c00143{bottom:326.924850px;}
.y1a_c00143{bottom:362.924850px;}
.y19_c00143{bottom:398.924850px;}
.y18_c00143{bottom:434.924850px;}
.y17_c00143{bottom:470.924850px;}
.y16_c00143{bottom:506.924850px;}
.y15_c00143{bottom:542.924850px;}
.y14_c00143{bottom:578.924850px;}
.y13_c00143{bottom:614.924850px;}
.y12_c00143{bottom:650.924850px;}
.y11_c00143{bottom:686.924850px;}
.y10_c00143{bottom:722.924850px;}
.yf_c00143{bottom:758.924850px;}
.ye_c00143{bottom:794.924850px;}
.yd_c00143{bottom:830.924850px;}
.yc_c00143{bottom:866.924850px;}
.yb_c00143{bottom:902.924850px;}
.ya_c00143{bottom:938.924850px;}
.y9_c00143{bottom:974.924850px;}
.y8_c00143{bottom:1010.924850px;}
.y7_c00143{bottom:1046.924850px;}
.y6_c00143{bottom:1082.924850px;}
.y2_c00143{bottom:1165.005000px;}
.h4_c00143{height:17.280000px;}
.h5_c00143{height:70.628906px;}
.h3_c00143{height:70.664062px;}
.h2_c00143{height:1237.365000px;}
.h0_c00143{height:1262.835000px;}
.h1_c00143{height:1263.000000px;}
.w3_c00143{width:47.520000px;}
.w2_c00143{width:867.465000px;}
.w0_c00143{width:892.935000px;}
.w1_c00143{width:893.250000px;}
.x0_c00143{left:0.000000px;}
.x5_c00143{left:10.237500px;}
.x1_c00143{left:12.735000px;}
.x3_c00143{left:95.394300px;}
.x7_c00143{left:149.400000px;}
.x6_c00143{left:180.450000px;}
.x4_c00143{left:422.775000px;}
.x2_c00143{left:880.050300px;}
@media print{
.v0_c00143{vertical-align:0.000000pt;}
.ls0_c00143{letter-spacing:0.000000pt;}
.ws0_c00143{word-spacing:0.000000pt;}
._1_c00143{width:0.896000pt;}
._3_c00143{width:3.238400pt;}
._9_c00143{width:4.160000pt;}
._0_c00143{width:5.459200pt;}
._4_c00143{width:6.579200pt;}
._6_c00143{width:8.224000pt;}
._2_c00143{width:9.235200pt;}
._5_c00143{width:10.540800pt;}
._8_c00143{width:13.638400pt;}
._c_c00143{width:14.963200pt;}
._b_c00143{width:17.068800pt;}
._7_c00143{width:19.206400pt;}
._a_c00143{width:21.350400pt;}
.fs0_c00143{font-size:64.000000pt;}
.y0_c00143{bottom:0.000000pt;}
.y5_c00143{bottom:1.280000pt;}
.y1_c00143{bottom:11.320000pt;}
.y3_c00143{bottom:40.360000pt;}
.y4_c00143{bottom:50.400000pt;}
.y21_c00143{bottom:98.599867pt;}
.y20_c00143{bottom:130.599867pt;}
.y1f_c00143{bottom:162.599867pt;}
.y1e_c00143{bottom:194.599867pt;}
.y1d_c00143{bottom:226.599867pt;}
.y1c_c00143{bottom:258.599867pt;}
.y1b_c00143{bottom:290.599867pt;}
.y1a_c00143{bottom:322.599867pt;}
.y19_c00143{bottom:354.599867pt;}
.y18_c00143{bottom:386.599867pt;}
.y17_c00143{bottom:418.599867pt;}
.y16_c00143{bottom:450.599867pt;}
.y15_c00143{bottom:482.599867pt;}
.y14_c00143{bottom:514.599867pt;}
.y13_c00143{bottom:546.599867pt;}
.y12_c00143{bottom:578.599867pt;}
.y11_c00143{bottom:610.599867pt;}
.y10_c00143{bottom:642.599867pt;}
.yf_c00143{bottom:674.599867pt;}
.ye_c00143{bottom:706.599867pt;}
.yd_c00143{bottom:738.599867pt;}
.yc_c00143{bottom:770.599867pt;}
.yb_c00143{bottom:802.599867pt;}
.ya_c00143{bottom:834.599867pt;}
.y9_c00143{bottom:866.599867pt;}
.y8_c00143{bottom:898.599867pt;}
.y7_c00143{bottom:930.599867pt;}
.y6_c00143{bottom:962.599867pt;}
.y2_c00143{bottom:1035.560000pt;}
.h4_c00143{height:15.360000pt;}
.h5_c00143{height:62.781250pt;}
.h3_c00143{height:62.812500pt;}
.h2_c00143{height:1099.880000pt;}
.h0_c00143{height:1122.520000pt;}
.h1_c00143{height:1122.666667pt;}
.w3_c00143{width:42.240000pt;}
.w2_c00143{width:771.080000pt;}
.w0_c00143{width:793.720000pt;}
.w1_c00143{width:794.000000pt;}
.x0_c00143{left:0.000000pt;}
.x5_c00143{left:9.100000pt;}
.x1_c00143{left:11.320000pt;}
.x3_c00143{left:84.794933pt;}
.x7_c00143{left:132.800000pt;}
.x6_c00143{left:160.400000pt;}
.x4_c00143{left:375.800000pt;}
.x2_c00143{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21d3ac84f3db12a8005a720f.woff2')format("woff");}.ff1_c00144{font-family:ff1_c00144;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00144;src:url('chunks/assets/font_330a43c27f2275046cb75c79.woff2')format("woff");}.ff2_c00144{font-family:ff2_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;}
.m0_c00144{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00144{vertical-align:0.000000px;}
.ls1_c00144{letter-spacing:-0.014400px;}
.ls0_c00144{letter-spacing:0.000000px;}
.sc__c00144{text-shadow:none;}
.sc0_c00144{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00144{-webkit-text-stroke:0px transparent;}
.sc0_c00144{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00144{word-spacing:0.000000px;}
._a_c00144{width:1.008000px;}
._1_c00144{width:2.016000px;}
._2_c00144{width:3.686400px;}
._4_c00144{width:5.176800px;}
._0_c00144{width:6.912000px;}
._6_c00144{width:8.280000px;}
._3_c00144{width:9.856800px;}
._7_c00144{width:13.744800px;}
._9_c00144{width:20.599200px;}
._5_c00144{width:25.444800px;}
._8_c00144{width:33.976800px;}
.fc1_c00144{color:transparent;}
.fc0_c00144{color:rgb(0,0,0);}
.fs0_c00144{font-size:72.000000px;}
.y0_c00144{bottom:0.000000px;}
.y5_c00144{bottom:5.040000px;}
.y1_c00144{bottom:12.735000px;}
.y3_c00144{bottom:45.405000px;}
.y4_c00144{bottom:53.100000px;}
.y20_c00144{bottom:146.924850px;}
.y1f_c00144{bottom:182.924850px;}
.y1e_c00144{bottom:218.924850px;}
.y1d_c00144{bottom:254.924850px;}
.y1c_c00144{bottom:290.924850px;}
.y1b_c00144{bottom:326.924850px;}
.y1a_c00144{bottom:362.924850px;}
.y19_c00144{bottom:398.924850px;}
.y18_c00144{bottom:434.924850px;}
.y17_c00144{bottom:470.924850px;}
.y16_c00144{bottom:506.924850px;}
.y15_c00144{bottom:542.924850px;}
.y14_c00144{bottom:578.924850px;}
.y13_c00144{bottom:614.924850px;}
.y12_c00144{bottom:650.924850px;}
.y11_c00144{bottom:686.924850px;}
.y10_c00144{bottom:722.924850px;}
.yf_c00144{bottom:758.924850px;}
.ye_c00144{bottom:794.924850px;}
.yd_c00144{bottom:830.924850px;}
.yc_c00144{bottom:866.924850px;}
.yb_c00144{bottom:902.924850px;}
.ya_c00144{bottom:938.924850px;}
.y9_c00144{bottom:974.924850px;}
.y8_c00144{bottom:1010.924850px;}
.y7_c00144{bottom:1046.924850px;}
.y6_c00144{bottom:1082.924850px;}
.y2_c00144{bottom:1165.005000px;}
.h4_c00144{height:20.880000px;}
.h3_c00144{height:70.664062px;}
.h2_c00144{height:1237.365000px;}
.h0_c00144{height:1262.835000px;}
.h1_c00144{height:1263.000000px;}
.w3_c00144{width:27.360000px;}
.w2_c00144{width:867.465000px;}
.w0_c00144{width:892.935000px;}
.w1_c00144{width:893.250000px;}
.x0_c00144{left:0.000000px;}
.x1_c00144{left:12.735000px;}
.x3_c00144{left:95.394300px;}
.x5_c00144{left:149.400150px;}
.x4_c00144{left:432.855000px;}
.x2_c00144{left:880.050300px;}
@media print{
.v0_c00144{vertical-align:0.000000pt;}
.ls1_c00144{letter-spacing:-0.012800pt;}
.ls0_c00144{letter-spacing:0.000000pt;}
.ws0_c00144{word-spacing:0.000000pt;}
._a_c00144{width:0.896000pt;}
._1_c00144{width:1.792000pt;}
._2_c00144{width:3.276800pt;}
._4_c00144{width:4.601600pt;}
._0_c00144{width:6.144000pt;}
._6_c00144{width:7.360000pt;}
._3_c00144{width:8.761600pt;}
._7_c00144{width:12.217600pt;}
._9_c00144{width:18.310400pt;}
._5_c00144{width:22.617600pt;}
._8_c00144{width:30.201600pt;}
.fs0_c00144{font-size:64.000000pt;}
.y0_c00144{bottom:0.000000pt;}
.y5_c00144{bottom:4.480000pt;}
.y1_c00144{bottom:11.320000pt;}
.y3_c00144{bottom:40.360000pt;}
.y4_c00144{bottom:47.200000pt;}
.y20_c00144{bottom:130.599867pt;}
.y1f_c00144{bottom:162.599867pt;}
.y1e_c00144{bottom:194.599867pt;}
.y1d_c00144{bottom:226.599867pt;}
.y1c_c00144{bottom:258.599867pt;}
.y1b_c00144{bottom:290.599867pt;}
.y1a_c00144{bottom:322.599867pt;}
.y19_c00144{bottom:354.599867pt;}
.y18_c00144{bottom:386.599867pt;}
.y17_c00144{bottom:418.599867pt;}
.y16_c00144{bottom:450.599867pt;}
.y15_c00144{bottom:482.599867pt;}
.y14_c00144{bottom:514.599867pt;}
.y13_c00144{bottom:546.599867pt;}
.y12_c00144{bottom:578.599867pt;}
.y11_c00144{bottom:610.599867pt;}
.y10_c00144{bottom:642.599867pt;}
.yf_c00144{bottom:674.599867pt;}
.ye_c00144{bottom:706.599867pt;}
.yd_c00144{bottom:738.599867pt;}
.yc_c00144{bottom:770.599867pt;}
.yb_c00144{bottom:802.599867pt;}
.ya_c00144{bottom:834.599867pt;}
.y9_c00144{bottom:866.599867pt;}
.y8_c00144{bottom:898.599867pt;}
.y7_c00144{bottom:930.599867pt;}
.y6_c00144{bottom:962.599867pt;}
.y2_c00144{bottom:1035.560000pt;}
.h4_c00144{height:18.560000pt;}
.h3_c00144{height:62.812500pt;}
.h2_c00144{height:1099.880000pt;}
.h0_c00144{height:1122.520000pt;}
.h1_c00144{height:1122.666667pt;}
.w3_c00144{width:24.320000pt;}
.w2_c00144{width:771.080000pt;}
.w0_c00144{width:793.720000pt;}
.w1_c00144{width:794.000000pt;}
.x0_c00144{left:0.000000pt;}
.x1_c00144{left:11.320000pt;}
.x3_c00144{left:84.794933pt;}
.x5_c00144{left:132.800133pt;}
.x4_c00144{left:384.760000pt;}
.x2_c00144{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36ffaced3379b23655bcc93c.woff2')format("woff");}.ff1_c00145{font-family:ff1_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;}
.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;}
.ls0_c00145{letter-spacing:0.000000px;}
.sc__c00145{text-shadow:none;}
.sc0_c00145{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00145{-webkit-text-stroke:0px transparent;}
.sc0_c00145{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00145{word-spacing:0.000000px;}
._0_c00145{width:1.296000px;}
._1_c00145{width:2.613600px;}
._6_c00145{width:4.312800px;}
._9_c00145{width:8.517600px;}
._5_c00145{width:9.914400px;}
._2_c00145{width:10.922400px;}
._4_c00145{width:12.088800px;}
._8_c00145{width:14.155200px;}
._7_c00145{width:15.840000px;}
._3_c00145{width:19.634400px;}
._a_c00145{width:21.333600px;}
.fc1_c00145{color:transparent;}
.fc0_c00145{color:rgb(0,0,0);}
.fs0_c00145{font-size:72.000000px;}
.y0_c00145{bottom:0.000000px;}
.y5_c00145{bottom:1.440000px;}
.y1_c00145{bottom:12.735000px;}
.y3_c00145{bottom:45.405000px;}
.y4_c00145{bottom:56.700000px;}
.y20_c00145{bottom:146.924850px;}
.y1f_c00145{bottom:182.924850px;}
.y1e_c00145{bottom:218.924850px;}
.y1d_c00145{bottom:254.924850px;}
.y1c_c00145{bottom:290.924850px;}
.y1b_c00145{bottom:326.924850px;}
.y1a_c00145{bottom:362.924850px;}
.y19_c00145{bottom:398.924850px;}
.y18_c00145{bottom:434.924850px;}
.y17_c00145{bottom:470.924850px;}
.y16_c00145{bottom:506.924850px;}
.y15_c00145{bottom:542.924850px;}
.y14_c00145{bottom:578.924850px;}
.y13_c00145{bottom:614.924850px;}
.y12_c00145{bottom:650.924850px;}
.y11_c00145{bottom:686.924850px;}
.y10_c00145{bottom:722.924850px;}
.yf_c00145{bottom:758.924850px;}
.ye_c00145{bottom:794.924850px;}
.yd_c00145{bottom:830.924850px;}
.yc_c00145{bottom:866.924850px;}
.yb_c00145{bottom:902.924850px;}
.ya_c00145{bottom:938.924850px;}
.y9_c00145{bottom:974.924850px;}
.y8_c00145{bottom:1010.924850px;}
.y7_c00145{bottom:1046.924850px;}
.y6_c00145{bottom:1082.924850px;}
.y2_c00145{bottom:1165.005000px;}
.h4_c00145{height:17.280000px;}
.h3_c00145{height:70.664062px;}
.h2_c00145{height:1237.365000px;}
.h0_c00145{height:1262.835000px;}
.h1_c00145{height:1263.000000px;}
.w3_c00145{width:47.520000px;}
.w2_c00145{width:867.465000px;}
.w0_c00145{width:892.935000px;}
.w1_c00145{width:893.250000px;}
.x0_c00145{left:0.000000px;}
.x5_c00145{left:10.237500px;}
.x1_c00145{left:12.735000px;}
.x3_c00145{left:95.394300px;}
.x6_c00145{left:149.400150px;}
.x4_c00145{left:422.775000px;}
.x2_c00145{left:880.050300px;}
@media print{
.v0_c00145{vertical-align:0.000000pt;}
.ls0_c00145{letter-spacing:0.000000pt;}
.ws0_c00145{word-spacing:0.000000pt;}
._0_c00145{width:1.152000pt;}
._1_c00145{width:2.323200pt;}
._6_c00145{width:3.833600pt;}
._9_c00145{width:7.571200pt;}
._5_c00145{width:8.812800pt;}
._2_c00145{width:9.708800pt;}
._4_c00145{width:10.745600pt;}
._8_c00145{width:12.582400pt;}
._7_c00145{width:14.080000pt;}
._3_c00145{width:17.452800pt;}
._a_c00145{width:18.963200pt;}
.fs0_c00145{font-size:64.000000pt;}
.y0_c00145{bottom:0.000000pt;}
.y5_c00145{bottom:1.280000pt;}
.y1_c00145{bottom:11.320000pt;}
.y3_c00145{bottom:40.360000pt;}
.y4_c00145{bottom:50.400000pt;}
.y20_c00145{bottom:130.599867pt;}
.y1f_c00145{bottom:162.599867pt;}
.y1e_c00145{bottom:194.599867pt;}
.y1d_c00145{bottom:226.599867pt;}
.y1c_c00145{bottom:258.599867pt;}
.y1b_c00145{bottom:290.599867pt;}
.y1a_c00145{bottom:322.599867pt;}
.y19_c00145{bottom:354.599867pt;}
.y18_c00145{bottom:386.599867pt;}
.y17_c00145{bottom:418.599867pt;}
.y16_c00145{bottom:450.599867pt;}
.y15_c00145{bottom:482.599867pt;}
.y14_c00145{bottom:514.599867pt;}
.y13_c00145{bottom:546.599867pt;}
.y12_c00145{bottom:578.599867pt;}
.y11_c00145{bottom:610.599867pt;}
.y10_c00145{bottom:642.599867pt;}
.yf_c00145{bottom:674.599867pt;}
.ye_c00145{bottom:706.599867pt;}
.yd_c00145{bottom:738.599867pt;}
.yc_c00145{bottom:770.599867pt;}
.yb_c00145{bottom:802.599867pt;}
.ya_c00145{bottom:834.599867pt;}
.y9_c00145{bottom:866.599867pt;}
.y8_c00145{bottom:898.599867pt;}
.y7_c00145{bottom:930.599867pt;}
.y6_c00145{bottom:962.599867pt;}
.y2_c00145{bottom:1035.560000pt;}
.h4_c00145{height:15.360000pt;}
.h3_c00145{height:62.812500pt;}
.h2_c00145{height:1099.880000pt;}
.h0_c00145{height:1122.520000pt;}
.h1_c00145{height:1122.666667pt;}
.w3_c00145{width:42.240000pt;}
.w2_c00145{width:771.080000pt;}
.w0_c00145{width:793.720000pt;}
.w1_c00145{width:794.000000pt;}
.x0_c00145{left:0.000000pt;}
.x5_c00145{left:9.100000pt;}
.x1_c00145{left:11.320000pt;}
.x3_c00145{left:84.794933pt;}
.x6_c00145{left:132.800133pt;}
.x4_c00145{left:375.800000pt;}
.x2_c00145{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0cccba8cee13e3d2b1da1014.woff2')format("woff");}.ff1_c00146{font-family:ff1_c00146;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00146;src:url('chunks/assets/font_ecba3c86452f42403d26d48d.woff2')format("woff");}.ff2_c00146{font-family:ff2_c00146;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00146{letter-spacing:-0.014400px;}
.ls0_c00146{letter-spacing:0.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:0.000000px;}
._9_c00146{width:1.310400px;}
._8_c00146{width:2.419200px;}
._1_c00146{width:3.744000px;}
._2_c00146{width:4.802400px;}
._6_c00146{width:6.645600px;}
._3_c00146{width:8.668800px;}
._4_c00146{width:10.296000px;}
._5_c00146{width:12.542400px;}
._c_c00146{width:14.371200px;}
._7_c00146{width:16.502400px;}
._0_c00146{width:19.015200px;}
._a_c00146{width:20.052000px;}
._b_c00146{width:21.110400px;}
.fc1_c00146{color:transparent;}
.fc0_c00146{color:rgb(0,0,0);}
.fs0_c00146{font-size:72.000000px;}
.y0_c00146{bottom:0.000000px;}
.y5_c00146{bottom:5.040000px;}
.y1_c00146{bottom:12.735000px;}
.y3_c00146{bottom:45.405000px;}
.y4_c00146{bottom:53.100000px;}
.y20_c00146{bottom:146.924850px;}
.y1f_c00146{bottom:182.924850px;}
.y1e_c00146{bottom:218.924850px;}
.y1d_c00146{bottom:254.924850px;}
.y1c_c00146{bottom:290.924850px;}
.y1b_c00146{bottom:326.924850px;}
.y1a_c00146{bottom:362.924850px;}
.y19_c00146{bottom:398.924850px;}
.y18_c00146{bottom:434.924850px;}
.y17_c00146{bottom:470.924850px;}
.y16_c00146{bottom:506.924850px;}
.y15_c00146{bottom:542.924850px;}
.y14_c00146{bottom:578.924850px;}
.y13_c00146{bottom:614.924850px;}
.y12_c00146{bottom:650.924850px;}
.y11_c00146{bottom:686.924850px;}
.y10_c00146{bottom:722.924850px;}
.yf_c00146{bottom:758.924850px;}
.ye_c00146{bottom:794.924850px;}
.yd_c00146{bottom:830.924850px;}
.yc_c00146{bottom:866.924850px;}
.yb_c00146{bottom:902.924850px;}
.ya_c00146{bottom:938.924850px;}
.y9_c00146{bottom:974.924850px;}
.y8_c00146{bottom:1010.924850px;}
.y7_c00146{bottom:1046.924850px;}
.y6_c00146{bottom:1082.924850px;}
.y2_c00146{bottom:1165.005000px;}
.h4_c00146{height:20.880000px;}
.h3_c00146{height:70.664062px;}
.h2_c00146{height:1237.365000px;}
.h0_c00146{height:1262.835000px;}
.h1_c00146{height:1263.000000px;}
.w3_c00146{width:27.360000px;}
.w2_c00146{width:867.465000px;}
.w0_c00146{width:892.935000px;}
.w1_c00146{width:893.250000px;}
.x0_c00146{left:0.000000px;}
.x1_c00146{left:12.735000px;}
.x3_c00146{left:95.394300px;}
.x5_c00146{left:149.400150px;}
.x4_c00146{left:432.855000px;}
.x2_c00146{left:880.050300px;}
@media print{
.v0_c00146{vertical-align:0.000000pt;}
.ls1_c00146{letter-spacing:-0.012800pt;}
.ls0_c00146{letter-spacing:0.000000pt;}
.ws0_c00146{word-spacing:0.000000pt;}
._9_c00146{width:1.164800pt;}
._8_c00146{width:2.150400pt;}
._1_c00146{width:3.328000pt;}
._2_c00146{width:4.268800pt;}
._6_c00146{width:5.907200pt;}
._3_c00146{width:7.705600pt;}
._4_c00146{width:9.152000pt;}
._5_c00146{width:11.148800pt;}
._c_c00146{width:12.774400pt;}
._7_c00146{width:14.668800pt;}
._0_c00146{width:16.902400pt;}
._a_c00146{width:17.824000pt;}
._b_c00146{width:18.764800pt;}
.fs0_c00146{font-size:64.000000pt;}
.y0_c00146{bottom:0.000000pt;}
.y5_c00146{bottom:4.480000pt;}
.y1_c00146{bottom:11.320000pt;}
.y3_c00146{bottom:40.360000pt;}
.y4_c00146{bottom:47.200000pt;}
.y20_c00146{bottom:130.599867pt;}
.y1f_c00146{bottom:162.599867pt;}
.y1e_c00146{bottom:194.599867pt;}
.y1d_c00146{bottom:226.599867pt;}
.y1c_c00146{bottom:258.599867pt;}
.y1b_c00146{bottom:290.599867pt;}
.y1a_c00146{bottom:322.599867pt;}
.y19_c00146{bottom:354.599867pt;}
.y18_c00146{bottom:386.599867pt;}
.y17_c00146{bottom:418.599867pt;}
.y16_c00146{bottom:450.599867pt;}
.y15_c00146{bottom:482.599867pt;}
.y14_c00146{bottom:514.599867pt;}
.y13_c00146{bottom:546.599867pt;}
.y12_c00146{bottom:578.599867pt;}
.y11_c00146{bottom:610.599867pt;}
.y10_c00146{bottom:642.599867pt;}
.yf_c00146{bottom:674.599867pt;}
.ye_c00146{bottom:706.599867pt;}
.yd_c00146{bottom:738.599867pt;}
.yc_c00146{bottom:770.599867pt;}
.yb_c00146{bottom:802.599867pt;}
.ya_c00146{bottom:834.599867pt;}
.y9_c00146{bottom:866.599867pt;}
.y8_c00146{bottom:898.599867pt;}
.y7_c00146{bottom:930.599867pt;}
.y6_c00146{bottom:962.599867pt;}
.y2_c00146{bottom:1035.560000pt;}
.h4_c00146{height:18.560000pt;}
.h3_c00146{height:62.812500pt;}
.h2_c00146{height:1099.880000pt;}
.h0_c00146{height:1122.520000pt;}
.h1_c00146{height:1122.666667pt;}
.w3_c00146{width:24.320000pt;}
.w2_c00146{width:771.080000pt;}
.w0_c00146{width:793.720000pt;}
.w1_c00146{width:794.000000pt;}
.x0_c00146{left:0.000000pt;}
.x1_c00146{left:11.320000pt;}
.x3_c00146{left:84.794933pt;}
.x5_c00146{left:132.800133pt;}
.x4_c00146{left:384.760000pt;}
.x2_c00146{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f0b91043d6385497430c219d.woff2')format("woff");}.ff1_c00147{font-family:ff1_c00147;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00147;src:url('chunks/assets/font_0acbdd6085cb6c3f7668113a.woff2')format("woff");}.ff2_c00147{font-family:ff2_c00147;line-height:1.284180;font-style: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;}
.ls0_c00147{letter-spacing:0.000000px;}
.sc__c00147{text-shadow:none;}
.sc0_c00147{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00147{-webkit-text-stroke:0px transparent;}
.sc0_c00147{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00147{word-spacing:0.000000px;}
._8_c00147{width:1.051200px;}
._4_c00147{width:2.340000px;}
._1_c00147{width:3.830400px;}
._2_c00147{width:5.623200px;}
._10_c00147{width:7.704000px;}
._c_c00147{width:9.021600px;}
._f_c00147{width:10.418400px;}
._e_c00147{width:11.520000px;}
._0_c00147{width:12.729600px;}
._d_c00147{width:14.781600px;}
._a_c00147{width:16.322400px;}
._3_c00147{width:19.332000px;}
._9_c00147{width:23.011200px;}
._7_c00147{width:24.422400px;}
._6_c00147{width:28.656000px;}
._b_c00147{width:29.822400px;}
._5_c00147{width:32.601600px;}
.fc1_c00147{color:transparent;}
.fc0_c00147{color:rgb(0,0,0);}
.fs0_c00147{font-size:72.000000px;}
.y0_c00147{bottom:0.000000px;}
.y5_c00147{bottom:1.440000px;}
.y1_c00147{bottom:12.735000px;}
.y3_c00147{bottom:45.405000px;}
.y4_c00147{bottom:56.700000px;}
.y21_c00147{bottom:110.924850px;}
.y20_c00147{bottom:146.924850px;}
.y1f_c00147{bottom:182.924850px;}
.y1e_c00147{bottom:218.924850px;}
.y1d_c00147{bottom:254.924850px;}
.y1c_c00147{bottom:290.924850px;}
.y1b_c00147{bottom:326.924850px;}
.y1a_c00147{bottom:362.924850px;}
.y19_c00147{bottom:398.924850px;}
.y18_c00147{bottom:434.924850px;}
.y17_c00147{bottom:470.924850px;}
.y16_c00147{bottom:506.924850px;}
.y15_c00147{bottom:542.924850px;}
.y14_c00147{bottom:578.924850px;}
.y13_c00147{bottom:614.924850px;}
.y12_c00147{bottom:650.924850px;}
.y11_c00147{bottom:686.924850px;}
.y10_c00147{bottom:722.924850px;}
.yf_c00147{bottom:758.924850px;}
.ye_c00147{bottom:794.924850px;}
.yd_c00147{bottom:830.924850px;}
.yc_c00147{bottom:866.924850px;}
.yb_c00147{bottom:902.924850px;}
.ya_c00147{bottom:938.924850px;}
.y9_c00147{bottom:974.924850px;}
.y8_c00147{bottom:1010.924850px;}
.y7_c00147{bottom:1046.924850px;}
.y6_c00147{bottom:1082.924850px;}
.y2_c00147{bottom:1165.005000px;}
.h4_c00147{height:17.280000px;}
.h3_c00147{height:70.664062px;}
.h2_c00147{height:1237.365000px;}
.h0_c00147{height:1262.835000px;}
.h1_c00147{height:1263.000000px;}
.w3_c00147{width:47.520000px;}
.w2_c00147{width:867.465000px;}
.w0_c00147{width:892.935000px;}
.w1_c00147{width:893.250000px;}
.x0_c00147{left:0.000000px;}
.x5_c00147{left:10.237500px;}
.x1_c00147{left:12.735000px;}
.x3_c00147{left:95.394300px;}
.x6_c00147{left:149.400150px;}
.x4_c00147{left:422.775000px;}
.x2_c00147{left:880.050300px;}
@media print{
.v0_c00147{vertical-align:0.000000pt;}
.ls0_c00147{letter-spacing:0.000000pt;}
.ws0_c00147{word-spacing:0.000000pt;}
._8_c00147{width:0.934400pt;}
._4_c00147{width:2.080000pt;}
._1_c00147{width:3.404800pt;}
._2_c00147{width:4.998400pt;}
._10_c00147{width:6.848000pt;}
._c_c00147{width:8.019200pt;}
._f_c00147{width:9.260800pt;}
._e_c00147{width:10.240000pt;}
._0_c00147{width:11.315200pt;}
._d_c00147{width:13.139200pt;}
._a_c00147{width:14.508800pt;}
._3_c00147{width:17.184000pt;}
._9_c00147{width:20.454400pt;}
._7_c00147{width:21.708800pt;}
._6_c00147{width:25.472000pt;}
._b_c00147{width:26.508800pt;}
._5_c00147{width:28.979200pt;}
.fs0_c00147{font-size:64.000000pt;}
.y0_c00147{bottom:0.000000pt;}
.y5_c00147{bottom:1.280000pt;}
.y1_c00147{bottom:11.320000pt;}
.y3_c00147{bottom:40.360000pt;}
.y4_c00147{bottom:50.400000pt;}
.y21_c00147{bottom:98.599867pt;}
.y20_c00147{bottom:130.599867pt;}
.y1f_c00147{bottom:162.599867pt;}
.y1e_c00147{bottom:194.599867pt;}
.y1d_c00147{bottom:226.599867pt;}
.y1c_c00147{bottom:258.599867pt;}
.y1b_c00147{bottom:290.599867pt;}
.y1a_c00147{bottom:322.599867pt;}
.y19_c00147{bottom:354.599867pt;}
.y18_c00147{bottom:386.599867pt;}
.y17_c00147{bottom:418.599867pt;}
.y16_c00147{bottom:450.599867pt;}
.y15_c00147{bottom:482.599867pt;}
.y14_c00147{bottom:514.599867pt;}
.y13_c00147{bottom:546.599867pt;}
.y12_c00147{bottom:578.599867pt;}
.y11_c00147{bottom:610.599867pt;}
.y10_c00147{bottom:642.599867pt;}
.yf_c00147{bottom:674.599867pt;}
.ye_c00147{bottom:706.599867pt;}
.yd_c00147{bottom:738.599867pt;}
.yc_c00147{bottom:770.599867pt;}
.yb_c00147{bottom:802.599867pt;}
.ya_c00147{bottom:834.599867pt;}
.y9_c00147{bottom:866.599867pt;}
.y8_c00147{bottom:898.599867pt;}
.y7_c00147{bottom:930.599867pt;}
.y6_c00147{bottom:962.599867pt;}
.y2_c00147{bottom:1035.560000pt;}
.h4_c00147{height:15.360000pt;}
.h3_c00147{height:62.812500pt;}
.h2_c00147{height:1099.880000pt;}
.h0_c00147{height:1122.520000pt;}
.h1_c00147{height:1122.666667pt;}
.w3_c00147{width:42.240000pt;}
.w2_c00147{width:771.080000pt;}
.w0_c00147{width:793.720000pt;}
.w1_c00147{width:794.000000pt;}
.x0_c00147{left:0.000000pt;}
.x5_c00147{left:9.100000pt;}
.x1_c00147{left:11.320000pt;}
.x3_c00147{left:84.794933pt;}
.x6_c00147{left:132.800133pt;}
.x4_c00147{left:375.800000pt;}
.x2_c00147{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bc8111da4e632ae1cb661664.woff2')format("woff");}.ff1_c00148{font-family:ff1_c00148;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00148;src:url('chunks/assets/font_a9ffc8795a51556327874acb.woff2')format("woff");}.ff2_c00148{font-family:ff2_c00148;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00148{letter-spacing:0.000000px;}
.ls0_c00148{letter-spacing:6.660000px;}
.sc__c00148{text-shadow:none;}
.sc0_c00148{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00148{-webkit-text-stroke:0px transparent;}
.sc0_c00148{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00148{word-spacing:0.000000px;}
._1_c00148{width:1.144800px;}
._5_c00148{width:2.541600px;}
._3_c00148{width:4.168800px;}
._6_c00148{width:5.544000px;}
._4_c00148{width:6.660000px;}
._a_c00148{width:7.675200px;}
._9_c00148{width:8.841600px;}
._8_c00148{width:15.249600px;}
._7_c00148{width:21.664800px;}
._2_c00148{width:26.229600px;}
._b_c00148{width:27.828000px;}
._0_c00148{width:32.918400px;}
.fc1_c00148{color:transparent;}
.fc0_c00148{color:rgb(0,0,0);}
.fs0_c00148{font-size:72.000000px;}
.y0_c00148{bottom:0.000000px;}
.y5_c00148{bottom:5.040000px;}
.y1_c00148{bottom:12.735000px;}
.y3_c00148{bottom:45.405000px;}
.y4_c00148{bottom:53.100000px;}
.y20_c00148{bottom:146.924850px;}
.y1f_c00148{bottom:182.924850px;}
.y1e_c00148{bottom:218.924850px;}
.y1d_c00148{bottom:254.924850px;}
.y1c_c00148{bottom:290.924850px;}
.y1b_c00148{bottom:326.924850px;}
.y1a_c00148{bottom:362.924850px;}
.y19_c00148{bottom:398.924850px;}
.y18_c00148{bottom:434.924850px;}
.y17_c00148{bottom:470.924850px;}
.y16_c00148{bottom:506.924850px;}
.y15_c00148{bottom:542.924850px;}
.y14_c00148{bottom:578.924850px;}
.y13_c00148{bottom:614.924850px;}
.y12_c00148{bottom:650.924850px;}
.y11_c00148{bottom:686.924850px;}
.y10_c00148{bottom:722.924850px;}
.yf_c00148{bottom:758.924850px;}
.ye_c00148{bottom:794.924850px;}
.yd_c00148{bottom:830.924850px;}
.yc_c00148{bottom:866.924850px;}
.yb_c00148{bottom:902.924850px;}
.ya_c00148{bottom:938.924850px;}
.y9_c00148{bottom:974.924850px;}
.y8_c00148{bottom:1010.924850px;}
.y7_c00148{bottom:1046.924850px;}
.y6_c00148{bottom:1082.924850px;}
.y2_c00148{bottom:1165.005000px;}
.h4_c00148{height:20.880000px;}
.h3_c00148{height:70.664062px;}
.h2_c00148{height:1237.365000px;}
.h0_c00148{height:1262.835000px;}
.h1_c00148{height:1263.000000px;}
.w3_c00148{width:27.360000px;}
.w2_c00148{width:867.465000px;}
.w0_c00148{width:892.935000px;}
.w1_c00148{width:893.250000px;}
.x0_c00148{left:0.000000px;}
.x1_c00148{left:12.735000px;}
.x3_c00148{left:95.394300px;}
.x5_c00148{left:149.400150px;}
.x4_c00148{left:432.855000px;}
.x2_c00148{left:880.050300px;}
@media print{
.v0_c00148{vertical-align:0.000000pt;}
.ls1_c00148{letter-spacing:0.000000pt;}
.ls0_c00148{letter-spacing:5.920000pt;}
.ws0_c00148{word-spacing:0.000000pt;}
._1_c00148{width:1.017600pt;}
._5_c00148{width:2.259200pt;}
._3_c00148{width:3.705600pt;}
._6_c00148{width:4.928000pt;}
._4_c00148{width:5.920000pt;}
._a_c00148{width:6.822400pt;}
._9_c00148{width:7.859200pt;}
._8_c00148{width:13.555200pt;}
._7_c00148{width:19.257600pt;}
._2_c00148{width:23.315200pt;}
._b_c00148{width:24.736000pt;}
._0_c00148{width:29.260800pt;}
.fs0_c00148{font-size:64.000000pt;}
.y0_c00148{bottom:0.000000pt;}
.y5_c00148{bottom:4.480000pt;}
.y1_c00148{bottom:11.320000pt;}
.y3_c00148{bottom:40.360000pt;}
.y4_c00148{bottom:47.200000pt;}
.y20_c00148{bottom:130.599867pt;}
.y1f_c00148{bottom:162.599867pt;}
.y1e_c00148{bottom:194.599867pt;}
.y1d_c00148{bottom:226.599867pt;}
.y1c_c00148{bottom:258.599867pt;}
.y1b_c00148{bottom:290.599867pt;}
.y1a_c00148{bottom:322.599867pt;}
.y19_c00148{bottom:354.599867pt;}
.y18_c00148{bottom:386.599867pt;}
.y17_c00148{bottom:418.599867pt;}
.y16_c00148{bottom:450.599867pt;}
.y15_c00148{bottom:482.599867pt;}
.y14_c00148{bottom:514.599867pt;}
.y13_c00148{bottom:546.599867pt;}
.y12_c00148{bottom:578.599867pt;}
.y11_c00148{bottom:610.599867pt;}
.y10_c00148{bottom:642.599867pt;}
.yf_c00148{bottom:674.599867pt;}
.ye_c00148{bottom:706.599867pt;}
.yd_c00148{bottom:738.599867pt;}
.yc_c00148{bottom:770.599867pt;}
.yb_c00148{bottom:802.599867pt;}
.ya_c00148{bottom:834.599867pt;}
.y9_c00148{bottom:866.599867pt;}
.y8_c00148{bottom:898.599867pt;}
.y7_c00148{bottom:930.599867pt;}
.y6_c00148{bottom:962.599867pt;}
.y2_c00148{bottom:1035.560000pt;}
.h4_c00148{height:18.560000pt;}
.h3_c00148{height:62.812500pt;}
.h2_c00148{height:1099.880000pt;}
.h0_c00148{height:1122.520000pt;}
.h1_c00148{height:1122.666667pt;}
.w3_c00148{width:24.320000pt;}
.w2_c00148{width:771.080000pt;}
.w0_c00148{width:793.720000pt;}
.w1_c00148{width:794.000000pt;}
.x0_c00148{left:0.000000pt;}
.x1_c00148{left:11.320000pt;}
.x3_c00148{left:84.794933pt;}
.x5_c00148{left:132.800133pt;}
.x4_c00148{left:384.760000pt;}
.x2_c00148{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_95aefcfeace22b78e7cb0bad.woff2')format("woff");}.ff1_c00149{font-family:ff1_c00149;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00149;src:url('chunks/assets/font_9a443a3b7681554b25ef5ee1.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;}
.m0_c00149{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00149{vertical-align:0.000000px;}
.ls2_c00149{letter-spacing:-0.014400px;}
.ls1_c00149{letter-spacing:0.000000px;}
.ls0_c00149{letter-spacing:30.600000px;}
.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:0.000000px;}
._1_c00149{width:1.036800px;}
._3_c00149{width:2.361600px;}
._7_c00149{width:4.255200px;}
._9_c00149{width:5.572800px;}
._2_c00149{width:8.020800px;}
._5_c00149{width:9.086400px;}
._a_c00149{width:12.628800px;}
._8_c00149{width:13.852800px;}
._e_c00149{width:16.776000px;}
._6_c00149{width:20.001600px;}
._0_c00149{width:21.672000px;}
._4_c00149{width:22.831200px;}
._c_c00149{width:29.786400px;}
._b_c00149{width:30.794400px;}
._d_c00149{width:32.018400px;}
.fc1_c00149{color:transparent;}
.fc0_c00149{color:rgb(0,0,0);}
.fs0_c00149{font-size:72.000000px;}
.y0_c00149{bottom:0.000000px;}
.y5_c00149{bottom:1.440000px;}
.y1_c00149{bottom:12.735000px;}
.y3_c00149{bottom:45.405000px;}
.y4_c00149{bottom:56.700000px;}
.y20_c00149{bottom:146.924850px;}
.y1f_c00149{bottom:182.924850px;}
.y1e_c00149{bottom:218.924850px;}
.y1d_c00149{bottom:254.924850px;}
.y1c_c00149{bottom:290.924850px;}
.y1b_c00149{bottom:326.924850px;}
.y1a_c00149{bottom:362.924850px;}
.y19_c00149{bottom:398.924850px;}
.y18_c00149{bottom:434.924850px;}
.y17_c00149{bottom:470.924850px;}
.y16_c00149{bottom:506.924850px;}
.y15_c00149{bottom:542.924850px;}
.y14_c00149{bottom:578.924850px;}
.y13_c00149{bottom:614.924850px;}
.y12_c00149{bottom:650.924850px;}
.y11_c00149{bottom:686.924850px;}
.y10_c00149{bottom:722.924850px;}
.yf_c00149{bottom:758.924850px;}
.ye_c00149{bottom:794.924850px;}
.yd_c00149{bottom:830.924850px;}
.yc_c00149{bottom:866.924850px;}
.yb_c00149{bottom:902.924850px;}
.ya_c00149{bottom:938.924850px;}
.y9_c00149{bottom:974.924850px;}
.y8_c00149{bottom:1010.924850px;}
.y7_c00149{bottom:1046.924850px;}
.y6_c00149{bottom:1082.924850px;}
.y2_c00149{bottom:1165.005000px;}
.h4_c00149{height:17.280000px;}
.h3_c00149{height:70.664062px;}
.h2_c00149{height:1237.365000px;}
.h0_c00149{height:1262.835000px;}
.h1_c00149{height:1263.000000px;}
.w3_c00149{width:47.520000px;}
.w2_c00149{width:867.465000px;}
.w0_c00149{width:892.935000px;}
.w1_c00149{width:893.250000px;}
.x0_c00149{left:0.000000px;}
.x5_c00149{left:10.237500px;}
.x1_c00149{left:12.735000px;}
.x3_c00149{left:95.394300px;}
.x6_c00149{left:149.400150px;}
.x4_c00149{left:422.775000px;}
.x2_c00149{left:880.050300px;}
@media print{
.v0_c00149{vertical-align:0.000000pt;}
.ls2_c00149{letter-spacing:-0.012800pt;}
.ls1_c00149{letter-spacing:0.000000pt;}
.ls0_c00149{letter-spacing:27.200000pt;}
.ws0_c00149{word-spacing:0.000000pt;}
._1_c00149{width:0.921600pt;}
._3_c00149{width:2.099200pt;}
._7_c00149{width:3.782400pt;}
._9_c00149{width:4.953600pt;}
._2_c00149{width:7.129600pt;}
._5_c00149{width:8.076800pt;}
._a_c00149{width:11.225600pt;}
._8_c00149{width:12.313600pt;}
._e_c00149{width:14.912000pt;}
._6_c00149{width:17.779200pt;}
._0_c00149{width:19.264000pt;}
._4_c00149{width:20.294400pt;}
._c_c00149{width:26.476800pt;}
._b_c00149{width:27.372800pt;}
._d_c00149{width:28.460800pt;}
.fs0_c00149{font-size:64.000000pt;}
.y0_c00149{bottom:0.000000pt;}
.y5_c00149{bottom:1.280000pt;}
.y1_c00149{bottom:11.320000pt;}
.y3_c00149{bottom:40.360000pt;}
.y4_c00149{bottom:50.400000pt;}
.y20_c00149{bottom:130.599867pt;}
.y1f_c00149{bottom:162.599867pt;}
.y1e_c00149{bottom:194.599867pt;}
.y1d_c00149{bottom:226.599867pt;}
.y1c_c00149{bottom:258.599867pt;}
.y1b_c00149{bottom:290.599867pt;}
.y1a_c00149{bottom:322.599867pt;}
.y19_c00149{bottom:354.599867pt;}
.y18_c00149{bottom:386.599867pt;}
.y17_c00149{bottom:418.599867pt;}
.y16_c00149{bottom:450.599867pt;}
.y15_c00149{bottom:482.599867pt;}
.y14_c00149{bottom:514.599867pt;}
.y13_c00149{bottom:546.599867pt;}
.y12_c00149{bottom:578.599867pt;}
.y11_c00149{bottom:610.599867pt;}
.y10_c00149{bottom:642.599867pt;}
.yf_c00149{bottom:674.599867pt;}
.ye_c00149{bottom:706.599867pt;}
.yd_c00149{bottom:738.599867pt;}
.yc_c00149{bottom:770.599867pt;}
.yb_c00149{bottom:802.599867pt;}
.ya_c00149{bottom:834.599867pt;}
.y9_c00149{bottom:866.599867pt;}
.y8_c00149{bottom:898.599867pt;}
.y7_c00149{bottom:930.599867pt;}
.y6_c00149{bottom:962.599867pt;}
.y2_c00149{bottom:1035.560000pt;}
.h4_c00149{height:15.360000pt;}
.h3_c00149{height:62.812500pt;}
.h2_c00149{height:1099.880000pt;}
.h0_c00149{height:1122.520000pt;}
.h1_c00149{height:1122.666667pt;}
.w3_c00149{width:42.240000pt;}
.w2_c00149{width:771.080000pt;}
.w0_c00149{width:793.720000pt;}
.w1_c00149{width:794.000000pt;}
.x0_c00149{left:0.000000pt;}
.x5_c00149{left:9.100000pt;}
.x1_c00149{left:11.320000pt;}
.x3_c00149{left:84.794933pt;}
.x6_c00149{left:132.800133pt;}
.x4_c00149{left:375.800000pt;}
.x2_c00149{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_151944a3281263f55fc9cd1d.woff2')format("woff");}.ff1_c00150{font-family:ff1_c00150;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00150;src:url('chunks/assets/font_e67d94db545c5ac951518135.woff2')format("woff");}.ff2_c00150{font-family:ff2_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;}
.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;}
.ls0_c00150{letter-spacing:0.000000px;}
.sc__c00150{text-shadow:none;}
.sc0_c00150{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00150{-webkit-text-stroke:0px transparent;}
.sc0_c00150{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00150{word-spacing:0.000000px;}
._6_c00150{margin-left:-1.015200px;}
._0_c00150{width:1.144800px;}
._9_c00150{width:2.188800px;}
._1_c00150{width:3.218400px;}
._7_c00150{width:4.809600px;}
._4_c00150{width:6.616800px;}
._3_c00150{width:7.668000px;}
._2_c00150{width:8.762400px;}
._a_c00150{width:10.692000px;}
._c_c00150{width:14.500800px;}
._8_c00150{width:15.537600px;}
._5_c00150{width:16.862400px;}
._d_c00150{width:28.022400px;}
._b_c00150{width:45.597600px;}
.fc1_c00150{color:transparent;}
.fc0_c00150{color:rgb(0,0,0);}
.fs0_c00150{font-size:72.000000px;}
.y0_c00150{bottom:0.000000px;}
.y5_c00150{bottom:5.040000px;}
.y1_c00150{bottom:12.735000px;}
.y3_c00150{bottom:45.405000px;}
.y4_c00150{bottom:53.100000px;}
.y21_c00150{bottom:110.924850px;}
.y20_c00150{bottom:146.924850px;}
.y1f_c00150{bottom:182.924850px;}
.y1e_c00150{bottom:218.924850px;}
.y1d_c00150{bottom:254.924850px;}
.y1c_c00150{bottom:290.924850px;}
.y1b_c00150{bottom:326.924850px;}
.y1a_c00150{bottom:362.924850px;}
.y19_c00150{bottom:398.924850px;}
.y18_c00150{bottom:434.924850px;}
.y17_c00150{bottom:470.924850px;}
.y16_c00150{bottom:506.924850px;}
.y15_c00150{bottom:542.924850px;}
.y14_c00150{bottom:578.924850px;}
.y13_c00150{bottom:614.924850px;}
.y12_c00150{bottom:650.924850px;}
.y11_c00150{bottom:686.924850px;}
.y10_c00150{bottom:722.924850px;}
.yf_c00150{bottom:758.924850px;}
.ye_c00150{bottom:794.924850px;}
.yd_c00150{bottom:830.924850px;}
.yc_c00150{bottom:866.924850px;}
.yb_c00150{bottom:902.924850px;}
.ya_c00150{bottom:938.924850px;}
.y9_c00150{bottom:974.924850px;}
.y8_c00150{bottom:1010.924850px;}
.y7_c00150{bottom:1046.924850px;}
.y6_c00150{bottom:1082.924850px;}
.y2_c00150{bottom:1165.005000px;}
.h4_c00150{height:20.880000px;}
.h5_c00150{height:70.628906px;}
.h3_c00150{height:70.664062px;}
.h2_c00150{height:1237.365000px;}
.h0_c00150{height:1262.835000px;}
.h1_c00150{height:1263.000000px;}
.w3_c00150{width:27.360000px;}
.w2_c00150{width:867.465000px;}
.w0_c00150{width:892.935000px;}
.w1_c00150{width:893.250000px;}
.x0_c00150{left:0.000000px;}
.x1_c00150{left:12.735000px;}
.x3_c00150{left:95.394300px;}
.x5_c00150{left:149.400150px;}
.x6_c00150{left:180.450150px;}
.x4_c00150{left:432.855000px;}
.x2_c00150{left:880.050300px;}
@media print{
.v0_c00150{vertical-align:0.000000pt;}
.ls0_c00150{letter-spacing:0.000000pt;}
.ws0_c00150{word-spacing:0.000000pt;}
._6_c00150{margin-left:-0.902400pt;}
._0_c00150{width:1.017600pt;}
._9_c00150{width:1.945600pt;}
._1_c00150{width:2.860800pt;}
._7_c00150{width:4.275200pt;}
._4_c00150{width:5.881600pt;}
._3_c00150{width:6.816000pt;}
._2_c00150{width:7.788800pt;}
._a_c00150{width:9.504000pt;}
._c_c00150{width:12.889600pt;}
._8_c00150{width:13.811200pt;}
._5_c00150{width:14.988800pt;}
._d_c00150{width:24.908800pt;}
._b_c00150{width:40.531200pt;}
.fs0_c00150{font-size:64.000000pt;}
.y0_c00150{bottom:0.000000pt;}
.y5_c00150{bottom:4.480000pt;}
.y1_c00150{bottom:11.320000pt;}
.y3_c00150{bottom:40.360000pt;}
.y4_c00150{bottom:47.200000pt;}
.y21_c00150{bottom:98.599867pt;}
.y20_c00150{bottom:130.599867pt;}
.y1f_c00150{bottom:162.599867pt;}
.y1e_c00150{bottom:194.599867pt;}
.y1d_c00150{bottom:226.599867pt;}
.y1c_c00150{bottom:258.599867pt;}
.y1b_c00150{bottom:290.599867pt;}
.y1a_c00150{bottom:322.599867pt;}
.y19_c00150{bottom:354.599867pt;}
.y18_c00150{bottom:386.599867pt;}
.y17_c00150{bottom:418.599867pt;}
.y16_c00150{bottom:450.599867pt;}
.y15_c00150{bottom:482.599867pt;}
.y14_c00150{bottom:514.599867pt;}
.y13_c00150{bottom:546.599867pt;}
.y12_c00150{bottom:578.599867pt;}
.y11_c00150{bottom:610.599867pt;}
.y10_c00150{bottom:642.599867pt;}
.yf_c00150{bottom:674.599867pt;}
.ye_c00150{bottom:706.599867pt;}
.yd_c00150{bottom:738.599867pt;}
.yc_c00150{bottom:770.599867pt;}
.yb_c00150{bottom:802.599867pt;}
.ya_c00150{bottom:834.599867pt;}
.y9_c00150{bottom:866.599867pt;}
.y8_c00150{bottom:898.599867pt;}
.y7_c00150{bottom:930.599867pt;}
.y6_c00150{bottom:962.599867pt;}
.y2_c00150{bottom:1035.560000pt;}
.h4_c00150{height:18.560000pt;}
.h5_c00150{height:62.781250pt;}
.h3_c00150{height:62.812500pt;}
.h2_c00150{height:1099.880000pt;}
.h0_c00150{height:1122.520000pt;}
.h1_c00150{height:1122.666667pt;}
.w3_c00150{width:24.320000pt;}
.w2_c00150{width:771.080000pt;}
.w0_c00150{width:793.720000pt;}
.w1_c00150{width:794.000000pt;}
.x0_c00150{left:0.000000pt;}
.x1_c00150{left:11.320000pt;}
.x3_c00150{left:84.794933pt;}
.x5_c00150{left:132.800133pt;}
.x6_c00150{left:160.400133pt;}
.x4_c00150{left:384.760000pt;}
.x2_c00150{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ec74d4bc3054812227ab8e98.woff2')format("woff");}.ff1_c00151{font-family:ff1_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:ff2_c00151;src:url('chunks/assets/font_ef0f4cf2946551b2370e5c41.woff2')format("woff");}.ff2_c00151{font-family:ff2_c00151;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00151{letter-spacing:-0.014400px;}
.ls0_c00151{letter-spacing:0.000000px;}
.sc__c00151{text-shadow:none;}
.sc0_c00151{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00151{-webkit-text-stroke:0px transparent;}
.sc0_c00151{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00151{word-spacing:-17.985600px;}
.ws1_c00151{word-spacing:0.000000px;}
._0_c00151{width:1.663200px;}
._5_c00151{width:3.672000px;}
._9_c00151{width:4.968000px;}
._8_c00151{width:6.012000px;}
._3_c00151{width:7.675200px;}
._a_c00151{width:9.223200px;}
._7_c00151{width:11.988000px;}
._4_c00151{width:14.781600px;}
._2_c00151{width:16.423200px;}
._b_c00151{width:21.664800px;}
._c_c00151{width:23.623200px;}
._6_c00151{width:30.182400px;}
._1_c00151{width:32.983200px;}
.fc1_c00151{color:transparent;}
.fc0_c00151{color:rgb(0,0,0);}
.fs0_c00151{font-size:72.000000px;}
.y0_c00151{bottom:0.000000px;}
.y5_c00151{bottom:1.440000px;}
.y1_c00151{bottom:12.735000px;}
.y3_c00151{bottom:45.405000px;}
.y4_c00151{bottom:56.700000px;}
.y21_c00151{bottom:110.924850px;}
.y20_c00151{bottom:146.924850px;}
.y1f_c00151{bottom:182.924850px;}
.y1e_c00151{bottom:218.924850px;}
.y1d_c00151{bottom:254.924850px;}
.y1c_c00151{bottom:290.924850px;}
.y1b_c00151{bottom:326.924850px;}
.y1a_c00151{bottom:362.924850px;}
.y19_c00151{bottom:398.924850px;}
.y18_c00151{bottom:434.924850px;}
.y17_c00151{bottom:470.924850px;}
.y16_c00151{bottom:506.924850px;}
.y15_c00151{bottom:542.924850px;}
.y14_c00151{bottom:578.924850px;}
.y13_c00151{bottom:614.924850px;}
.y12_c00151{bottom:650.924850px;}
.y11_c00151{bottom:686.924850px;}
.y10_c00151{bottom:722.924850px;}
.yf_c00151{bottom:758.924850px;}
.ye_c00151{bottom:794.924850px;}
.yd_c00151{bottom:830.924850px;}
.yc_c00151{bottom:866.924850px;}
.yb_c00151{bottom:902.924850px;}
.ya_c00151{bottom:938.924850px;}
.y9_c00151{bottom:974.924850px;}
.y8_c00151{bottom:1010.924850px;}
.y7_c00151{bottom:1046.924850px;}
.y6_c00151{bottom:1082.924850px;}
.y2_c00151{bottom:1165.005000px;}
.h4_c00151{height:17.280000px;}
.h3_c00151{height:70.664062px;}
.h5_c00151{height:71.824219px;}
.h2_c00151{height:1237.365000px;}
.h0_c00151{height:1262.835000px;}
.h1_c00151{height:1263.000000px;}
.w3_c00151{width:47.520000px;}
.w2_c00151{width:867.465000px;}
.w0_c00151{width:892.935000px;}
.w1_c00151{width:893.250000px;}
.x0_c00151{left:0.000000px;}
.x5_c00151{left:10.237500px;}
.x1_c00151{left:12.735000px;}
.x3_c00151{left:95.394300px;}
.x6_c00151{left:149.400150px;}
.x4_c00151{left:422.775000px;}
.x2_c00151{left:880.050300px;}
@media print{
.v0_c00151{vertical-align:0.000000pt;}
.ls1_c00151{letter-spacing:-0.012800pt;}
.ls0_c00151{letter-spacing:0.000000pt;}
.ws0_c00151{word-spacing:-15.987200pt;}
.ws1_c00151{word-spacing:0.000000pt;}
._0_c00151{width:1.478400pt;}
._5_c00151{width:3.264000pt;}
._9_c00151{width:4.416000pt;}
._8_c00151{width:5.344000pt;}
._3_c00151{width:6.822400pt;}
._a_c00151{width:8.198400pt;}
._7_c00151{width:10.656000pt;}
._4_c00151{width:13.139200pt;}
._2_c00151{width:14.598400pt;}
._b_c00151{width:19.257600pt;}
._c_c00151{width:20.998400pt;}
._6_c00151{width:26.828800pt;}
._1_c00151{width:29.318400pt;}
.fs0_c00151{font-size:64.000000pt;}
.y0_c00151{bottom:0.000000pt;}
.y5_c00151{bottom:1.280000pt;}
.y1_c00151{bottom:11.320000pt;}
.y3_c00151{bottom:40.360000pt;}
.y4_c00151{bottom:50.400000pt;}
.y21_c00151{bottom:98.599867pt;}
.y20_c00151{bottom:130.599867pt;}
.y1f_c00151{bottom:162.599867pt;}
.y1e_c00151{bottom:194.599867pt;}
.y1d_c00151{bottom:226.599867pt;}
.y1c_c00151{bottom:258.599867pt;}
.y1b_c00151{bottom:290.599867pt;}
.y1a_c00151{bottom:322.599867pt;}
.y19_c00151{bottom:354.599867pt;}
.y18_c00151{bottom:386.599867pt;}
.y17_c00151{bottom:418.599867pt;}
.y16_c00151{bottom:450.599867pt;}
.y15_c00151{bottom:482.599867pt;}
.y14_c00151{bottom:514.599867pt;}
.y13_c00151{bottom:546.599867pt;}
.y12_c00151{bottom:578.599867pt;}
.y11_c00151{bottom:610.599867pt;}
.y10_c00151{bottom:642.599867pt;}
.yf_c00151{bottom:674.599867pt;}
.ye_c00151{bottom:706.599867pt;}
.yd_c00151{bottom:738.599867pt;}
.yc_c00151{bottom:770.599867pt;}
.yb_c00151{bottom:802.599867pt;}
.ya_c00151{bottom:834.599867pt;}
.y9_c00151{bottom:866.599867pt;}
.y8_c00151{bottom:898.599867pt;}
.y7_c00151{bottom:930.599867pt;}
.y6_c00151{bottom:962.599867pt;}
.y2_c00151{bottom:1035.560000pt;}
.h4_c00151{height:15.360000pt;}
.h3_c00151{height:62.812500pt;}
.h5_c00151{height:63.843750pt;}
.h2_c00151{height:1099.880000pt;}
.h0_c00151{height:1122.520000pt;}
.h1_c00151{height:1122.666667pt;}
.w3_c00151{width:42.240000pt;}
.w2_c00151{width:771.080000pt;}
.w0_c00151{width:793.720000pt;}
.w1_c00151{width:794.000000pt;}
.x0_c00151{left:0.000000pt;}
.x5_c00151{left:9.100000pt;}
.x1_c00151{left:11.320000pt;}
.x3_c00151{left:84.794933pt;}
.x6_c00151{left:132.800133pt;}
.x4_c00151{left:375.800000pt;}
.x2_c00151{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_58b42fcf5dc91f56a1afc0b8.woff2')format("woff");}.ff1_c00152{font-family:ff1_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;}
.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);}
.v0_c00152{vertical-align:0.000000px;}
.ls1_c00152{letter-spacing:0.000000px;}
.ls0_c00152{letter-spacing:0.036000px;}
.sc__c00152{text-shadow:none;}
.sc0_c00152{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00152{-webkit-text-stroke:0px transparent;}
.sc0_c00152{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00152{word-spacing:0.000000px;}
._c_c00152{width:1.036800px;}
._5_c00152{width:2.426400px;}
._4_c00152{width:4.608000px;}
._a_c00152{width:5.875200px;}
._3_c00152{width:7.128000px;}
._9_c00152{width:8.712000px;}
._8_c00152{width:10.008000px;}
._0_c00152{width:11.671200px;}
._7_c00152{width:12.787200px;}
._b_c00152{width:13.867200px;}
._d_c00152{width:15.552000px;}
._1_c00152{width:19.800000px;}
._2_c00152{width:21.031200px;}
._6_c00152{width:22.262400px;}
.fc1_c00152{color:transparent;}
.fc0_c00152{color:rgb(0,0,0);}
.fs0_c00152{font-size:72.000000px;}
.y0_c00152{bottom:0.000000px;}
.y5_c00152{bottom:5.040000px;}
.y1_c00152{bottom:12.735000px;}
.y3_c00152{bottom:45.405000px;}
.y4_c00152{bottom:53.100000px;}
.y21_c00152{bottom:110.924850px;}
.y20_c00152{bottom:146.924850px;}
.y1f_c00152{bottom:182.924850px;}
.y1e_c00152{bottom:218.924850px;}
.y1d_c00152{bottom:254.924850px;}
.y1c_c00152{bottom:290.924850px;}
.y1b_c00152{bottom:326.924850px;}
.y1a_c00152{bottom:362.924850px;}
.y19_c00152{bottom:398.924850px;}
.y18_c00152{bottom:434.924850px;}
.y17_c00152{bottom:470.924850px;}
.y16_c00152{bottom:506.924850px;}
.y15_c00152{bottom:542.924850px;}
.y14_c00152{bottom:578.924850px;}
.y13_c00152{bottom:614.924850px;}
.y12_c00152{bottom:650.924850px;}
.y11_c00152{bottom:686.924850px;}
.y10_c00152{bottom:722.924850px;}
.yf_c00152{bottom:758.924850px;}
.ye_c00152{bottom:794.924850px;}
.yd_c00152{bottom:830.924850px;}
.yc_c00152{bottom:866.924850px;}
.yb_c00152{bottom:902.924850px;}
.ya_c00152{bottom:938.924850px;}
.y9_c00152{bottom:974.924850px;}
.y8_c00152{bottom:1010.924850px;}
.y7_c00152{bottom:1046.924850px;}
.y6_c00152{bottom:1082.924850px;}
.y2_c00152{bottom:1165.005000px;}
.h4_c00152{height:20.880000px;}
.h3_c00152{height:70.664062px;}
.h2_c00152{height:1237.365000px;}
.h0_c00152{height:1262.835000px;}
.h1_c00152{height:1263.000000px;}
.w3_c00152{width:27.360000px;}
.w2_c00152{width:867.465000px;}
.w0_c00152{width:892.935000px;}
.w1_c00152{width:893.250000px;}
.x0_c00152{left:0.000000px;}
.x1_c00152{left:12.735000px;}
.x3_c00152{left:95.394300px;}
.x5_c00152{left:149.400150px;}
.x4_c00152{left:432.855000px;}
.x2_c00152{left:880.050300px;}
@media print{
.v0_c00152{vertical-align:0.000000pt;}
.ls1_c00152{letter-spacing:0.000000pt;}
.ls0_c00152{letter-spacing:0.032000pt;}
.ws0_c00152{word-spacing:0.000000pt;}
._c_c00152{width:0.921600pt;}
._5_c00152{width:2.156800pt;}
._4_c00152{width:4.096000pt;}
._a_c00152{width:5.222400pt;}
._3_c00152{width:6.336000pt;}
._9_c00152{width:7.744000pt;}
._8_c00152{width:8.896000pt;}
._0_c00152{width:10.374400pt;}
._7_c00152{width:11.366400pt;}
._b_c00152{width:12.326400pt;}
._d_c00152{width:13.824000pt;}
._1_c00152{width:17.600000pt;}
._2_c00152{width:18.694400pt;}
._6_c00152{width:19.788800pt;}
.fs0_c00152{font-size:64.000000pt;}
.y0_c00152{bottom:0.000000pt;}
.y5_c00152{bottom:4.480000pt;}
.y1_c00152{bottom:11.320000pt;}
.y3_c00152{bottom:40.360000pt;}
.y4_c00152{bottom:47.200000pt;}
.y21_c00152{bottom:98.599867pt;}
.y20_c00152{bottom:130.599867pt;}
.y1f_c00152{bottom:162.599867pt;}
.y1e_c00152{bottom:194.599867pt;}
.y1d_c00152{bottom:226.599867pt;}
.y1c_c00152{bottom:258.599867pt;}
.y1b_c00152{bottom:290.599867pt;}
.y1a_c00152{bottom:322.599867pt;}
.y19_c00152{bottom:354.599867pt;}
.y18_c00152{bottom:386.599867pt;}
.y17_c00152{bottom:418.599867pt;}
.y16_c00152{bottom:450.599867pt;}
.y15_c00152{bottom:482.599867pt;}
.y14_c00152{bottom:514.599867pt;}
.y13_c00152{bottom:546.599867pt;}
.y12_c00152{bottom:578.599867pt;}
.y11_c00152{bottom:610.599867pt;}
.y10_c00152{bottom:642.599867pt;}
.yf_c00152{bottom:674.599867pt;}
.ye_c00152{bottom:706.599867pt;}
.yd_c00152{bottom:738.599867pt;}
.yc_c00152{bottom:770.599867pt;}
.yb_c00152{bottom:802.599867pt;}
.ya_c00152{bottom:834.599867pt;}
.y9_c00152{bottom:866.599867pt;}
.y8_c00152{bottom:898.599867pt;}
.y7_c00152{bottom:930.599867pt;}
.y6_c00152{bottom:962.599867pt;}
.y2_c00152{bottom:1035.560000pt;}
.h4_c00152{height:18.560000pt;}
.h3_c00152{height:62.812500pt;}
.h2_c00152{height:1099.880000pt;}
.h0_c00152{height:1122.520000pt;}
.h1_c00152{height:1122.666667pt;}
.w3_c00152{width:24.320000pt;}
.w2_c00152{width:771.080000pt;}
.w0_c00152{width:793.720000pt;}
.w1_c00152{width:794.000000pt;}
.x0_c00152{left:0.000000pt;}
.x1_c00152{left:11.320000pt;}
.x3_c00152{left:84.794933pt;}
.x5_c00152{left:132.800133pt;}
.x4_c00152{left:384.760000pt;}
.x2_c00152{left:782.266933pt;}
}





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

.ir_c00153:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00153{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00153;src:url('chunks/assets/font_210a4b85cecb8cb6af6a1f7d.woff2')format("woff");}.ff1_c00153{font-family:ff1_c00153;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00153{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00153{vertical-align:0.000000px;}
.ls1_c00153{letter-spacing:-0.014400px;}
.ls0_c00153{letter-spacing:0.000000px;}
.sc__c00153{text-shadow:none;}
.sc0_c00153{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00153{-webkit-text-stroke:0px transparent;}
.sc0_c00153{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00153{word-spacing:0.000000px;}
._4_c00153{width:1.836000px;}
._a_c00153{width:3.369600px;}
._9_c00153{width:4.579200px;}
._0_c00153{width:6.004800px;}
._1_c00153{width:8.143200px;}
._6_c00153{width:9.360000px;}
._3_c00153{width:10.461600px;}
._8_c00153{width:13.658400px;}
._7_c00153{width:14.731200px;}
._c_c00153{width:20.433600px;}
._5_c00153{width:26.121600px;}
._2_c00153{width:27.273600px;}
._b_c00153{width:29.282400px;}
._d_c00153{width:30.441600px;}
.fc1_c00153{color:transparent;}
.fc0_c00153{color:rgb(0,0,0);}
.fs0_c00153{font-size:72.000000px;}
.y0_c00153{bottom:0.000000px;}
.y5_c00153{bottom:1.440000px;}
.y1_c00153{bottom:12.735000px;}
.y3_c00153{bottom:45.405000px;}
.y4_c00153{bottom:56.700000px;}
.y21_c00153{bottom:110.924850px;}
.y20_c00153{bottom:146.924850px;}
.y1f_c00153{bottom:182.924850px;}
.y1e_c00153{bottom:218.924850px;}
.y1d_c00153{bottom:254.924850px;}
.y1c_c00153{bottom:290.924850px;}
.y1b_c00153{bottom:326.924850px;}
.y1a_c00153{bottom:362.924850px;}
.y19_c00153{bottom:398.924850px;}
.y18_c00153{bottom:434.924850px;}
.y17_c00153{bottom:470.924850px;}
.y16_c00153{bottom:506.924850px;}
.y15_c00153{bottom:542.924850px;}
.y14_c00153{bottom:578.924850px;}
.y13_c00153{bottom:614.924850px;}
.y12_c00153{bottom:650.924850px;}
.y11_c00153{bottom:686.924850px;}
.y10_c00153{bottom:722.924850px;}
.yf_c00153{bottom:758.924850px;}
.ye_c00153{bottom:794.924850px;}
.yd_c00153{bottom:830.924850px;}
.yc_c00153{bottom:866.924850px;}
.yb_c00153{bottom:902.924850px;}
.ya_c00153{bottom:938.924850px;}
.y9_c00153{bottom:974.924850px;}
.y8_c00153{bottom:1010.924850px;}
.y7_c00153{bottom:1046.924850px;}
.y6_c00153{bottom:1082.924850px;}
.y2_c00153{bottom:1165.005000px;}
.h4_c00153{height:17.280000px;}
.h3_c00153{height:70.664062px;}
.h2_c00153{height:1237.365000px;}
.h0_c00153{height:1262.835000px;}
.h1_c00153{height:1263.000000px;}
.w3_c00153{width:47.520000px;}
.w2_c00153{width:867.465000px;}
.w0_c00153{width:892.935000px;}
.w1_c00153{width:893.250000px;}
.x0_c00153{left:0.000000px;}
.x5_c00153{left:10.237500px;}
.x1_c00153{left:12.735000px;}
.x3_c00153{left:95.394300px;}
.x6_c00153{left:149.400150px;}
.x4_c00153{left:422.775000px;}
.x2_c00153{left:880.050300px;}
@media print{
.v0_c00153{vertical-align:0.000000pt;}
.ls1_c00153{letter-spacing:-0.012800pt;}
.ls0_c00153{letter-spacing:0.000000pt;}
.ws0_c00153{word-spacing:0.000000pt;}
._4_c00153{width:1.632000pt;}
._a_c00153{width:2.995200pt;}
._9_c00153{width:4.070400pt;}
._0_c00153{width:5.337600pt;}
._1_c00153{width:7.238400pt;}
._6_c00153{width:8.320000pt;}
._3_c00153{width:9.299200pt;}
._8_c00153{width:12.140800pt;}
._7_c00153{width:13.094400pt;}
._c_c00153{width:18.163200pt;}
._5_c00153{width:23.219200pt;}
._2_c00153{width:24.243200pt;}
._b_c00153{width:26.028800pt;}
._d_c00153{width:27.059200pt;}
.fs0_c00153{font-size:64.000000pt;}
.y0_c00153{bottom:0.000000pt;}
.y5_c00153{bottom:1.280000pt;}
.y1_c00153{bottom:11.320000pt;}
.y3_c00153{bottom:40.360000pt;}
.y4_c00153{bottom:50.400000pt;}
.y21_c00153{bottom:98.599867pt;}
.y20_c00153{bottom:130.599867pt;}
.y1f_c00153{bottom:162.599867pt;}
.y1e_c00153{bottom:194.599867pt;}
.y1d_c00153{bottom:226.599867pt;}
.y1c_c00153{bottom:258.599867pt;}
.y1b_c00153{bottom:290.599867pt;}
.y1a_c00153{bottom:322.599867pt;}
.y19_c00153{bottom:354.599867pt;}
.y18_c00153{bottom:386.599867pt;}
.y17_c00153{bottom:418.599867pt;}
.y16_c00153{bottom:450.599867pt;}
.y15_c00153{bottom:482.599867pt;}
.y14_c00153{bottom:514.599867pt;}
.y13_c00153{bottom:546.599867pt;}
.y12_c00153{bottom:578.599867pt;}
.y11_c00153{bottom:610.599867pt;}
.y10_c00153{bottom:642.599867pt;}
.yf_c00153{bottom:674.599867pt;}
.ye_c00153{bottom:706.599867pt;}
.yd_c00153{bottom:738.599867pt;}
.yc_c00153{bottom:770.599867pt;}
.yb_c00153{bottom:802.599867pt;}
.ya_c00153{bottom:834.599867pt;}
.y9_c00153{bottom:866.599867pt;}
.y8_c00153{bottom:898.599867pt;}
.y7_c00153{bottom:930.599867pt;}
.y6_c00153{bottom:962.599867pt;}
.y2_c00153{bottom:1035.560000pt;}
.h4_c00153{height:15.360000pt;}
.h3_c00153{height:62.812500pt;}
.h2_c00153{height:1099.880000pt;}
.h0_c00153{height:1122.520000pt;}
.h1_c00153{height:1122.666667pt;}
.w3_c00153{width:42.240000pt;}
.w2_c00153{width:771.080000pt;}
.w0_c00153{width:793.720000pt;}
.w1_c00153{width:794.000000pt;}
.x0_c00153{left:0.000000pt;}
.x5_c00153{left:9.100000pt;}
.x1_c00153{left:11.320000pt;}
.x3_c00153{left:84.794933pt;}
.x6_c00153{left:132.800133pt;}
.x4_c00153{left:375.800000pt;}
.x2_c00153{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2725dc233754a2e8c0c4a2b7.woff2')format("woff");}.ff1_c00154{font-family:ff1_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;}
.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;}
.ls0_c00154{letter-spacing:0.000000px;}
.sc__c00154{text-shadow:none;}
.sc0_c00154{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00154{-webkit-text-stroke:0px transparent;}
.sc0_c00154{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00154{word-spacing:0.000000px;}
._0_c00154{width:1.008000px;}
._1_c00154{width:2.469600px;}
._8_c00154{width:4.125600px;}
._3_c00154{width:5.997600px;}
._7_c00154{width:7.020000px;}
._2_c00154{width:8.683200px;}
._d_c00154{width:9.727200px;}
._c_c00154{width:13.240800px;}
._a_c00154{width:14.450400px;}
._4_c00154{width:15.804000px;}
._5_c00154{width:16.876800px;}
._b_c00154{width:22.572000px;}
._e_c00154{width:24.249600px;}
._9_c00154{width:31.104000px;}
._f_c00154{width:36.424800px;}
._6_c00154{width:48.448800px;}
.fc1_c00154{color:transparent;}
.fc0_c00154{color:rgb(0,0,0);}
.fs0_c00154{font-size:72.000000px;}
.y0_c00154{bottom:0.000000px;}
.y5_c00154{bottom:5.040000px;}
.y1_c00154{bottom:12.735000px;}
.y3_c00154{bottom:45.405000px;}
.y4_c00154{bottom:53.100000px;}
.y21_c00154{bottom:110.924850px;}
.y20_c00154{bottom:146.924850px;}
.y1f_c00154{bottom:182.924850px;}
.y1e_c00154{bottom:218.924850px;}
.y1d_c00154{bottom:254.924850px;}
.y1c_c00154{bottom:290.924850px;}
.y1b_c00154{bottom:326.924850px;}
.y1a_c00154{bottom:362.924850px;}
.y19_c00154{bottom:398.924850px;}
.y18_c00154{bottom:434.924850px;}
.y17_c00154{bottom:470.924850px;}
.y16_c00154{bottom:506.924850px;}
.y15_c00154{bottom:542.924850px;}
.y14_c00154{bottom:578.924850px;}
.y13_c00154{bottom:614.924850px;}
.y12_c00154{bottom:650.924850px;}
.y11_c00154{bottom:686.924850px;}
.y10_c00154{bottom:722.924850px;}
.yf_c00154{bottom:758.924850px;}
.ye_c00154{bottom:794.924850px;}
.yd_c00154{bottom:830.924850px;}
.yc_c00154{bottom:866.924850px;}
.yb_c00154{bottom:902.924850px;}
.ya_c00154{bottom:938.924850px;}
.y9_c00154{bottom:974.924850px;}
.y8_c00154{bottom:1010.924850px;}
.y7_c00154{bottom:1046.924850px;}
.y6_c00154{bottom:1082.924850px;}
.y2_c00154{bottom:1165.005000px;}
.h4_c00154{height:20.880000px;}
.h3_c00154{height:70.664062px;}
.h2_c00154{height:1237.365000px;}
.h0_c00154{height:1262.835000px;}
.h1_c00154{height:1263.000000px;}
.w3_c00154{width:27.360000px;}
.w2_c00154{width:867.465000px;}
.w0_c00154{width:892.935000px;}
.w1_c00154{width:893.250000px;}
.x0_c00154{left:0.000000px;}
.x1_c00154{left:12.735000px;}
.x3_c00154{left:95.394300px;}
.x5_c00154{left:149.400150px;}
.x4_c00154{left:432.855000px;}
.x2_c00154{left:880.050300px;}
@media print{
.v0_c00154{vertical-align:0.000000pt;}
.ls0_c00154{letter-spacing:0.000000pt;}
.ws0_c00154{word-spacing:0.000000pt;}
._0_c00154{width:0.896000pt;}
._1_c00154{width:2.195200pt;}
._8_c00154{width:3.667200pt;}
._3_c00154{width:5.331200pt;}
._7_c00154{width:6.240000pt;}
._2_c00154{width:7.718400pt;}
._d_c00154{width:8.646400pt;}
._c_c00154{width:11.769600pt;}
._a_c00154{width:12.844800pt;}
._4_c00154{width:14.048000pt;}
._5_c00154{width:15.001600pt;}
._b_c00154{width:20.064000pt;}
._e_c00154{width:21.555200pt;}
._9_c00154{width:27.648000pt;}
._f_c00154{width:32.377600pt;}
._6_c00154{width:43.065600pt;}
.fs0_c00154{font-size:64.000000pt;}
.y0_c00154{bottom:0.000000pt;}
.y5_c00154{bottom:4.480000pt;}
.y1_c00154{bottom:11.320000pt;}
.y3_c00154{bottom:40.360000pt;}
.y4_c00154{bottom:47.200000pt;}
.y21_c00154{bottom:98.599867pt;}
.y20_c00154{bottom:130.599867pt;}
.y1f_c00154{bottom:162.599867pt;}
.y1e_c00154{bottom:194.599867pt;}
.y1d_c00154{bottom:226.599867pt;}
.y1c_c00154{bottom:258.599867pt;}
.y1b_c00154{bottom:290.599867pt;}
.y1a_c00154{bottom:322.599867pt;}
.y19_c00154{bottom:354.599867pt;}
.y18_c00154{bottom:386.599867pt;}
.y17_c00154{bottom:418.599867pt;}
.y16_c00154{bottom:450.599867pt;}
.y15_c00154{bottom:482.599867pt;}
.y14_c00154{bottom:514.599867pt;}
.y13_c00154{bottom:546.599867pt;}
.y12_c00154{bottom:578.599867pt;}
.y11_c00154{bottom:610.599867pt;}
.y10_c00154{bottom:642.599867pt;}
.yf_c00154{bottom:674.599867pt;}
.ye_c00154{bottom:706.599867pt;}
.yd_c00154{bottom:738.599867pt;}
.yc_c00154{bottom:770.599867pt;}
.yb_c00154{bottom:802.599867pt;}
.ya_c00154{bottom:834.599867pt;}
.y9_c00154{bottom:866.599867pt;}
.y8_c00154{bottom:898.599867pt;}
.y7_c00154{bottom:930.599867pt;}
.y6_c00154{bottom:962.599867pt;}
.y2_c00154{bottom:1035.560000pt;}
.h4_c00154{height:18.560000pt;}
.h3_c00154{height:62.812500pt;}
.h2_c00154{height:1099.880000pt;}
.h0_c00154{height:1122.520000pt;}
.h1_c00154{height:1122.666667pt;}
.w3_c00154{width:24.320000pt;}
.w2_c00154{width:771.080000pt;}
.w0_c00154{width:793.720000pt;}
.w1_c00154{width:794.000000pt;}
.x0_c00154{left:0.000000pt;}
.x1_c00154{left:11.320000pt;}
.x3_c00154{left:84.794933pt;}
.x5_c00154{left:132.800133pt;}
.x4_c00154{left:384.760000pt;}
.x2_c00154{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_584e09926de3704fc6e0bae7.woff2')format("woff");}.ff1_c00155{font-family:ff1_c00155;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00155;src:url('chunks/assets/font_83d8b596bdabbc0a6f2af057.woff2')format("woff");}.ff2_c00155{font-family:ff2_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;}
.m0_c00155{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00155{vertical-align:0.000000px;}
.ls0_c00155{letter-spacing:0.000000px;}
.sc__c00155{text-shadow:none;}
.sc0_c00155{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00155{-webkit-text-stroke:0px transparent;}
.sc0_c00155{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00155{word-spacing:0.000000px;}
._4_c00155{width:1.267200px;}
._b_c00155{width:5.659200px;}
._9_c00155{width:8.049600px;}
._1_c00155{width:9.432000px;}
._8_c00155{width:11.088000px;}
._e_c00155{width:12.974400px;}
._3_c00155{width:14.155200px;}
._7_c00155{width:15.336000px;}
._a_c00155{width:16.603200px;}
._c_c00155{width:20.311200px;}
._2_c00155{width:21.585600px;}
._5_c00155{width:23.536800px;}
._0_c00155{width:31.788000px;}
._d_c00155{width:32.976000px;}
._6_c00155{width:34.408800px;}
.fc1_c00155{color:transparent;}
.fc0_c00155{color:rgb(0,0,0);}
.fs0_c00155{font-size:72.000000px;}
.y0_c00155{bottom:0.000000px;}
.y5_c00155{bottom:1.440000px;}
.y1_c00155{bottom:12.735000px;}
.y3_c00155{bottom:45.405000px;}
.y4_c00155{bottom:56.700000px;}
.y20_c00155{bottom:146.924850px;}
.y1f_c00155{bottom:182.924850px;}
.y1e_c00155{bottom:218.924850px;}
.y1d_c00155{bottom:254.924850px;}
.y1c_c00155{bottom:290.924850px;}
.y1b_c00155{bottom:326.924850px;}
.y1a_c00155{bottom:362.924850px;}
.y19_c00155{bottom:398.924850px;}
.y18_c00155{bottom:434.924850px;}
.y17_c00155{bottom:470.924850px;}
.y16_c00155{bottom:506.924850px;}
.y15_c00155{bottom:542.924850px;}
.y14_c00155{bottom:578.924850px;}
.y13_c00155{bottom:614.924850px;}
.y12_c00155{bottom:650.924850px;}
.y11_c00155{bottom:686.924850px;}
.y10_c00155{bottom:722.924850px;}
.yf_c00155{bottom:758.924850px;}
.ye_c00155{bottom:794.924850px;}
.yd_c00155{bottom:830.924850px;}
.yc_c00155{bottom:866.924850px;}
.yb_c00155{bottom:902.924850px;}
.ya_c00155{bottom:938.924850px;}
.y9_c00155{bottom:974.924850px;}
.y8_c00155{bottom:1010.924850px;}
.y7_c00155{bottom:1046.924850px;}
.y6_c00155{bottom:1082.924850px;}
.y2_c00155{bottom:1165.005000px;}
.h4_c00155{height:17.280000px;}
.h5_c00155{height:70.628906px;}
.h3_c00155{height:70.664062px;}
.h2_c00155{height:1237.365000px;}
.h0_c00155{height:1262.835000px;}
.h1_c00155{height:1263.000000px;}
.w3_c00155{width:47.520000px;}
.w2_c00155{width:867.465000px;}
.w0_c00155{width:892.935000px;}
.w1_c00155{width:893.250000px;}
.x0_c00155{left:0.000000px;}
.x5_c00155{left:10.237500px;}
.x1_c00155{left:12.735000px;}
.x3_c00155{left:95.394300px;}
.x6_c00155{left:149.400150px;}
.x7_c00155{left:180.450150px;}
.x4_c00155{left:422.775000px;}
.x2_c00155{left:880.050300px;}
@media print{
.v0_c00155{vertical-align:0.000000pt;}
.ls0_c00155{letter-spacing:0.000000pt;}
.ws0_c00155{word-spacing:0.000000pt;}
._4_c00155{width:1.126400pt;}
._b_c00155{width:5.030400pt;}
._9_c00155{width:7.155200pt;}
._1_c00155{width:8.384000pt;}
._8_c00155{width:9.856000pt;}
._e_c00155{width:11.532800pt;}
._3_c00155{width:12.582400pt;}
._7_c00155{width:13.632000pt;}
._a_c00155{width:14.758400pt;}
._c_c00155{width:18.054400pt;}
._2_c00155{width:19.187200pt;}
._5_c00155{width:20.921600pt;}
._0_c00155{width:28.256000pt;}
._d_c00155{width:29.312000pt;}
._6_c00155{width:30.585600pt;}
.fs0_c00155{font-size:64.000000pt;}
.y0_c00155{bottom:0.000000pt;}
.y5_c00155{bottom:1.280000pt;}
.y1_c00155{bottom:11.320000pt;}
.y3_c00155{bottom:40.360000pt;}
.y4_c00155{bottom:50.400000pt;}
.y20_c00155{bottom:130.599867pt;}
.y1f_c00155{bottom:162.599867pt;}
.y1e_c00155{bottom:194.599867pt;}
.y1d_c00155{bottom:226.599867pt;}
.y1c_c00155{bottom:258.599867pt;}
.y1b_c00155{bottom:290.599867pt;}
.y1a_c00155{bottom:322.599867pt;}
.y19_c00155{bottom:354.599867pt;}
.y18_c00155{bottom:386.599867pt;}
.y17_c00155{bottom:418.599867pt;}
.y16_c00155{bottom:450.599867pt;}
.y15_c00155{bottom:482.599867pt;}
.y14_c00155{bottom:514.599867pt;}
.y13_c00155{bottom:546.599867pt;}
.y12_c00155{bottom:578.599867pt;}
.y11_c00155{bottom:610.599867pt;}
.y10_c00155{bottom:642.599867pt;}
.yf_c00155{bottom:674.599867pt;}
.ye_c00155{bottom:706.599867pt;}
.yd_c00155{bottom:738.599867pt;}
.yc_c00155{bottom:770.599867pt;}
.yb_c00155{bottom:802.599867pt;}
.ya_c00155{bottom:834.599867pt;}
.y9_c00155{bottom:866.599867pt;}
.y8_c00155{bottom:898.599867pt;}
.y7_c00155{bottom:930.599867pt;}
.y6_c00155{bottom:962.599867pt;}
.y2_c00155{bottom:1035.560000pt;}
.h4_c00155{height:15.360000pt;}
.h5_c00155{height:62.781250pt;}
.h3_c00155{height:62.812500pt;}
.h2_c00155{height:1099.880000pt;}
.h0_c00155{height:1122.520000pt;}
.h1_c00155{height:1122.666667pt;}
.w3_c00155{width:42.240000pt;}
.w2_c00155{width:771.080000pt;}
.w0_c00155{width:793.720000pt;}
.w1_c00155{width:794.000000pt;}
.x0_c00155{left:0.000000pt;}
.x5_c00155{left:9.100000pt;}
.x1_c00155{left:11.320000pt;}
.x3_c00155{left:84.794933pt;}
.x6_c00155{left:132.800133pt;}
.x7_c00155{left:160.400133pt;}
.x4_c00155{left:375.800000pt;}
.x2_c00155{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d018e0c0fd67a164dfa5a9d4.woff2')format("woff");}.ff1_c00156{font-family:ff1_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;}
.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;}
.ls0_c00156{letter-spacing:0.000000px;}
.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:0.000000px;}
._0_c00156{width:2.152800px;}
._6_c00156{width:3.355200px;}
._7_c00156{width:4.773600px;}
._2_c00156{width:5.990400px;}
._5_c00156{width:8.323200px;}
._1_c00156{width:9.518400px;}
._3_c00156{width:11.865600px;}
._8_c00156{width:19.296000px;}
._9_c00156{width:25.092000px;}
._4_c00156{width:26.150400px;}
._a_c00156{width:44.906400px;}
.fc1_c00156{color:transparent;}
.fc0_c00156{color:rgb(0,0,0);}
.fs0_c00156{font-size:72.000000px;}
.y0_c00156{bottom:0.000000px;}
.y5_c00156{bottom:5.040000px;}
.y1_c00156{bottom:12.735000px;}
.y3_c00156{bottom:45.405000px;}
.y4_c00156{bottom:53.100000px;}
.y21_c00156{bottom:110.924850px;}
.y20_c00156{bottom:146.924850px;}
.y1f_c00156{bottom:182.924850px;}
.y1e_c00156{bottom:218.924850px;}
.y1d_c00156{bottom:254.924850px;}
.y1c_c00156{bottom:290.924850px;}
.y1b_c00156{bottom:326.924850px;}
.y1a_c00156{bottom:362.924850px;}
.y19_c00156{bottom:398.924850px;}
.y18_c00156{bottom:434.924850px;}
.y17_c00156{bottom:470.924850px;}
.y16_c00156{bottom:506.924850px;}
.y15_c00156{bottom:542.924850px;}
.y14_c00156{bottom:578.924850px;}
.y13_c00156{bottom:614.924850px;}
.y12_c00156{bottom:650.924850px;}
.y11_c00156{bottom:686.924850px;}
.y10_c00156{bottom:722.924850px;}
.yf_c00156{bottom:758.924850px;}
.ye_c00156{bottom:794.924850px;}
.yd_c00156{bottom:830.924850px;}
.yc_c00156{bottom:866.924850px;}
.yb_c00156{bottom:902.924850px;}
.ya_c00156{bottom:938.924850px;}
.y9_c00156{bottom:974.924850px;}
.y8_c00156{bottom:1010.924850px;}
.y7_c00156{bottom:1046.924850px;}
.y6_c00156{bottom:1082.924850px;}
.y2_c00156{bottom:1165.005000px;}
.h4_c00156{height:20.880000px;}
.h3_c00156{height:70.664062px;}
.h2_c00156{height:1237.365000px;}
.h0_c00156{height:1262.835000px;}
.h1_c00156{height:1263.000000px;}
.w3_c00156{width:27.360000px;}
.w2_c00156{width:867.465000px;}
.w0_c00156{width:892.935000px;}
.w1_c00156{width:893.250000px;}
.x0_c00156{left:0.000000px;}
.x1_c00156{left:12.735000px;}
.x3_c00156{left:95.394300px;}
.x5_c00156{left:149.400150px;}
.x4_c00156{left:432.855000px;}
.x2_c00156{left:880.050300px;}
@media print{
.v0_c00156{vertical-align:0.000000pt;}
.ls0_c00156{letter-spacing:0.000000pt;}
.ws0_c00156{word-spacing:0.000000pt;}
._0_c00156{width:1.913600pt;}
._6_c00156{width:2.982400pt;}
._7_c00156{width:4.243200pt;}
._2_c00156{width:5.324800pt;}
._5_c00156{width:7.398400pt;}
._1_c00156{width:8.460800pt;}
._3_c00156{width:10.547200pt;}
._8_c00156{width:17.152000pt;}
._9_c00156{width:22.304000pt;}
._4_c00156{width:23.244800pt;}
._a_c00156{width:39.916800pt;}
.fs0_c00156{font-size:64.000000pt;}
.y0_c00156{bottom:0.000000pt;}
.y5_c00156{bottom:4.480000pt;}
.y1_c00156{bottom:11.320000pt;}
.y3_c00156{bottom:40.360000pt;}
.y4_c00156{bottom:47.200000pt;}
.y21_c00156{bottom:98.599867pt;}
.y20_c00156{bottom:130.599867pt;}
.y1f_c00156{bottom:162.599867pt;}
.y1e_c00156{bottom:194.599867pt;}
.y1d_c00156{bottom:226.599867pt;}
.y1c_c00156{bottom:258.599867pt;}
.y1b_c00156{bottom:290.599867pt;}
.y1a_c00156{bottom:322.599867pt;}
.y19_c00156{bottom:354.599867pt;}
.y18_c00156{bottom:386.599867pt;}
.y17_c00156{bottom:418.599867pt;}
.y16_c00156{bottom:450.599867pt;}
.y15_c00156{bottom:482.599867pt;}
.y14_c00156{bottom:514.599867pt;}
.y13_c00156{bottom:546.599867pt;}
.y12_c00156{bottom:578.599867pt;}
.y11_c00156{bottom:610.599867pt;}
.y10_c00156{bottom:642.599867pt;}
.yf_c00156{bottom:674.599867pt;}
.ye_c00156{bottom:706.599867pt;}
.yd_c00156{bottom:738.599867pt;}
.yc_c00156{bottom:770.599867pt;}
.yb_c00156{bottom:802.599867pt;}
.ya_c00156{bottom:834.599867pt;}
.y9_c00156{bottom:866.599867pt;}
.y8_c00156{bottom:898.599867pt;}
.y7_c00156{bottom:930.599867pt;}
.y6_c00156{bottom:962.599867pt;}
.y2_c00156{bottom:1035.560000pt;}
.h4_c00156{height:18.560000pt;}
.h3_c00156{height:62.812500pt;}
.h2_c00156{height:1099.880000pt;}
.h0_c00156{height:1122.520000pt;}
.h1_c00156{height:1122.666667pt;}
.w3_c00156{width:24.320000pt;}
.w2_c00156{width:771.080000pt;}
.w0_c00156{width:793.720000pt;}
.w1_c00156{width:794.000000pt;}
.x0_c00156{left:0.000000pt;}
.x1_c00156{left:11.320000pt;}
.x3_c00156{left:84.794933pt;}
.x5_c00156{left:132.800133pt;}
.x4_c00156{left:384.760000pt;}
.x2_c00156{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6cdd4fd468dfd8eef6a9b9a7.woff2')format("woff");}.ff1_c00157{font-family:ff1_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;}
.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;}
.ls2_c00157{letter-spacing:-0.014400px;}
.ls1_c00157{letter-spacing:0.000000px;}
.ls0_c00157{letter-spacing:0.014400px;}
.sc__c00157{text-shadow:none;}
.sc0_c00157{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00157{-webkit-text-stroke:0px transparent;}
.sc0_c00157{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00157{word-spacing:-18.014400px;}
.ws1_c00157{word-spacing:0.000000px;}
._a_c00157{width:1.036800px;}
._3_c00157{width:2.037600px;}
._5_c00157{width:3.830400px;}
._d_c00157{width:4.917600px;}
._b_c00157{width:6.026400px;}
._c_c00157{width:7.185600px;}
._6_c00157{width:9.712800px;}
._9_c00157{width:10.749600px;}
._1_c00157{width:13.168800px;}
._8_c00157{width:15.897600px;}
._7_c00157{width:19.490400px;}
._0_c00157{width:23.148000px;}
._2_c00157{width:26.049600px;}
._4_c00157{width:27.050400px;}
._e_c00157{width:32.191200px;}
.fc1_c00157{color:transparent;}
.fc0_c00157{color:rgb(0,0,0);}
.fs0_c00157{font-size:72.000000px;}
.y0_c00157{bottom:0.000000px;}
.y5_c00157{bottom:1.440000px;}
.y1_c00157{bottom:12.735000px;}
.y3_c00157{bottom:45.405000px;}
.y4_c00157{bottom:56.700000px;}
.y21_c00157{bottom:110.924850px;}
.y20_c00157{bottom:146.924850px;}
.y1f_c00157{bottom:182.924850px;}
.y1e_c00157{bottom:218.924850px;}
.y1d_c00157{bottom:254.924850px;}
.y1c_c00157{bottom:290.924850px;}
.y1b_c00157{bottom:326.924850px;}
.y1a_c00157{bottom:362.924850px;}
.y19_c00157{bottom:398.924850px;}
.y18_c00157{bottom:434.924850px;}
.y17_c00157{bottom:470.924850px;}
.y16_c00157{bottom:506.924850px;}
.y15_c00157{bottom:542.924850px;}
.y14_c00157{bottom:578.924850px;}
.y13_c00157{bottom:614.924850px;}
.y12_c00157{bottom:650.924850px;}
.y11_c00157{bottom:686.924850px;}
.y10_c00157{bottom:722.924850px;}
.yf_c00157{bottom:758.924850px;}
.ye_c00157{bottom:794.924850px;}
.yd_c00157{bottom:830.924850px;}
.yc_c00157{bottom:866.924850px;}
.yb_c00157{bottom:902.924850px;}
.ya_c00157{bottom:938.924850px;}
.y9_c00157{bottom:974.924850px;}
.y8_c00157{bottom:1010.924850px;}
.y7_c00157{bottom:1046.924850px;}
.y6_c00157{bottom:1082.924850px;}
.y2_c00157{bottom:1165.005000px;}
.h4_c00157{height:17.280000px;}
.h3_c00157{height:70.664062px;}
.h2_c00157{height:1237.365000px;}
.h0_c00157{height:1262.835000px;}
.h1_c00157{height:1263.000000px;}
.w3_c00157{width:47.520000px;}
.w2_c00157{width:867.465000px;}
.w0_c00157{width:892.935000px;}
.w1_c00157{width:893.250000px;}
.x0_c00157{left:0.000000px;}
.x5_c00157{left:10.237500px;}
.x1_c00157{left:12.735000px;}
.x3_c00157{left:95.394300px;}
.x6_c00157{left:149.400150px;}
.x4_c00157{left:422.775000px;}
.x2_c00157{left:880.050300px;}
@media print{
.v0_c00157{vertical-align:0.000000pt;}
.ls2_c00157{letter-spacing:-0.012800pt;}
.ls1_c00157{letter-spacing:0.000000pt;}
.ls0_c00157{letter-spacing:0.012800pt;}
.ws0_c00157{word-spacing:-16.012800pt;}
.ws1_c00157{word-spacing:0.000000pt;}
._a_c00157{width:0.921600pt;}
._3_c00157{width:1.811200pt;}
._5_c00157{width:3.404800pt;}
._d_c00157{width:4.371200pt;}
._b_c00157{width:5.356800pt;}
._c_c00157{width:6.387200pt;}
._6_c00157{width:8.633600pt;}
._9_c00157{width:9.555200pt;}
._1_c00157{width:11.705600pt;}
._8_c00157{width:14.131200pt;}
._7_c00157{width:17.324800pt;}
._0_c00157{width:20.576000pt;}
._2_c00157{width:23.155200pt;}
._4_c00157{width:24.044800pt;}
._e_c00157{width:28.614400pt;}
.fs0_c00157{font-size:64.000000pt;}
.y0_c00157{bottom:0.000000pt;}
.y5_c00157{bottom:1.280000pt;}
.y1_c00157{bottom:11.320000pt;}
.y3_c00157{bottom:40.360000pt;}
.y4_c00157{bottom:50.400000pt;}
.y21_c00157{bottom:98.599867pt;}
.y20_c00157{bottom:130.599867pt;}
.y1f_c00157{bottom:162.599867pt;}
.y1e_c00157{bottom:194.599867pt;}
.y1d_c00157{bottom:226.599867pt;}
.y1c_c00157{bottom:258.599867pt;}
.y1b_c00157{bottom:290.599867pt;}
.y1a_c00157{bottom:322.599867pt;}
.y19_c00157{bottom:354.599867pt;}
.y18_c00157{bottom:386.599867pt;}
.y17_c00157{bottom:418.599867pt;}
.y16_c00157{bottom:450.599867pt;}
.y15_c00157{bottom:482.599867pt;}
.y14_c00157{bottom:514.599867pt;}
.y13_c00157{bottom:546.599867pt;}
.y12_c00157{bottom:578.599867pt;}
.y11_c00157{bottom:610.599867pt;}
.y10_c00157{bottom:642.599867pt;}
.yf_c00157{bottom:674.599867pt;}
.ye_c00157{bottom:706.599867pt;}
.yd_c00157{bottom:738.599867pt;}
.yc_c00157{bottom:770.599867pt;}
.yb_c00157{bottom:802.599867pt;}
.ya_c00157{bottom:834.599867pt;}
.y9_c00157{bottom:866.599867pt;}
.y8_c00157{bottom:898.599867pt;}
.y7_c00157{bottom:930.599867pt;}
.y6_c00157{bottom:962.599867pt;}
.y2_c00157{bottom:1035.560000pt;}
.h4_c00157{height:15.360000pt;}
.h3_c00157{height:62.812500pt;}
.h2_c00157{height:1099.880000pt;}
.h0_c00157{height:1122.520000pt;}
.h1_c00157{height:1122.666667pt;}
.w3_c00157{width:42.240000pt;}
.w2_c00157{width:771.080000pt;}
.w0_c00157{width:793.720000pt;}
.w1_c00157{width:794.000000pt;}
.x0_c00157{left:0.000000pt;}
.x5_c00157{left:9.100000pt;}
.x1_c00157{left:11.320000pt;}
.x3_c00157{left:84.794933pt;}
.x6_c00157{left:132.800133pt;}
.x4_c00157{left:375.800000pt;}
.x2_c00157{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3ff26f007c75b744a6d52211.woff2')format("woff");}.ff1_c00158{font-family:ff1_c00158;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00158{letter-spacing:0.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;}
}
.ws0_c00158{word-spacing:0.000000px;}
._3_c00158{width:1.886400px;}
._9_c00158{width:2.952000px;}
._b_c00158{width:4.802400px;}
._1_c00158{width:5.868000px;}
._8_c00158{width:7.192800px;}
._7_c00158{width:8.488800px;}
._6_c00158{width:9.698400px;}
._0_c00158{width:11.167200px;}
._5_c00158{width:12.909600px;}
._c_c00158{width:14.277600px;}
._d_c00158{width:16.675200px;}
._2_c00158{width:19.051200px;}
._a_c00158{width:21.434400px;}
._4_c00158{width:22.543200px;}
.fc1_c00158{color:transparent;}
.fc0_c00158{color:rgb(0,0,0);}
.fs0_c00158{font-size:72.000000px;}
.y0_c00158{bottom:0.000000px;}
.y5_c00158{bottom:5.040000px;}
.y1_c00158{bottom:12.735000px;}
.y3_c00158{bottom:45.405000px;}
.y4_c00158{bottom:53.100000px;}
.y21_c00158{bottom:110.924850px;}
.y20_c00158{bottom:146.924850px;}
.y1f_c00158{bottom:182.924850px;}
.y1e_c00158{bottom:218.924850px;}
.y1d_c00158{bottom:254.924850px;}
.y1c_c00158{bottom:290.924850px;}
.y1b_c00158{bottom:326.924850px;}
.y1a_c00158{bottom:362.924850px;}
.y19_c00158{bottom:398.924850px;}
.y18_c00158{bottom:434.924850px;}
.y17_c00158{bottom:470.924850px;}
.y16_c00158{bottom:506.924850px;}
.y15_c00158{bottom:542.924850px;}
.y14_c00158{bottom:578.924850px;}
.y13_c00158{bottom:614.924850px;}
.y12_c00158{bottom:650.924850px;}
.y11_c00158{bottom:686.924850px;}
.y10_c00158{bottom:722.924850px;}
.yf_c00158{bottom:758.924850px;}
.ye_c00158{bottom:794.924850px;}
.yd_c00158{bottom:830.924850px;}
.yc_c00158{bottom:866.924850px;}
.yb_c00158{bottom:902.924850px;}
.ya_c00158{bottom:938.924850px;}
.y9_c00158{bottom:974.924850px;}
.y8_c00158{bottom:1010.924850px;}
.y7_c00158{bottom:1046.924850px;}
.y6_c00158{bottom:1082.924850px;}
.y2_c00158{bottom:1165.005000px;}
.h4_c00158{height:20.880000px;}
.h3_c00158{height:70.664062px;}
.h2_c00158{height:1237.365000px;}
.h0_c00158{height:1262.835000px;}
.h1_c00158{height:1263.000000px;}
.w3_c00158{width:27.360000px;}
.w2_c00158{width:867.465000px;}
.w0_c00158{width:892.935000px;}
.w1_c00158{width:893.250000px;}
.x0_c00158{left:0.000000px;}
.x1_c00158{left:12.735000px;}
.x3_c00158{left:95.394300px;}
.x5_c00158{left:149.400150px;}
.x4_c00158{left:432.855000px;}
.x2_c00158{left:880.050300px;}
@media print{
.v0_c00158{vertical-align:0.000000pt;}
.ls0_c00158{letter-spacing:0.000000pt;}
.ws0_c00158{word-spacing:0.000000pt;}
._3_c00158{width:1.676800pt;}
._9_c00158{width:2.624000pt;}
._b_c00158{width:4.268800pt;}
._1_c00158{width:5.216000pt;}
._8_c00158{width:6.393600pt;}
._7_c00158{width:7.545600pt;}
._6_c00158{width:8.620800pt;}
._0_c00158{width:9.926400pt;}
._5_c00158{width:11.475200pt;}
._c_c00158{width:12.691200pt;}
._d_c00158{width:14.822400pt;}
._2_c00158{width:16.934400pt;}
._a_c00158{width:19.052800pt;}
._4_c00158{width:20.038400pt;}
.fs0_c00158{font-size:64.000000pt;}
.y0_c00158{bottom:0.000000pt;}
.y5_c00158{bottom:4.480000pt;}
.y1_c00158{bottom:11.320000pt;}
.y3_c00158{bottom:40.360000pt;}
.y4_c00158{bottom:47.200000pt;}
.y21_c00158{bottom:98.599867pt;}
.y20_c00158{bottom:130.599867pt;}
.y1f_c00158{bottom:162.599867pt;}
.y1e_c00158{bottom:194.599867pt;}
.y1d_c00158{bottom:226.599867pt;}
.y1c_c00158{bottom:258.599867pt;}
.y1b_c00158{bottom:290.599867pt;}
.y1a_c00158{bottom:322.599867pt;}
.y19_c00158{bottom:354.599867pt;}
.y18_c00158{bottom:386.599867pt;}
.y17_c00158{bottom:418.599867pt;}
.y16_c00158{bottom:450.599867pt;}
.y15_c00158{bottom:482.599867pt;}
.y14_c00158{bottom:514.599867pt;}
.y13_c00158{bottom:546.599867pt;}
.y12_c00158{bottom:578.599867pt;}
.y11_c00158{bottom:610.599867pt;}
.y10_c00158{bottom:642.599867pt;}
.yf_c00158{bottom:674.599867pt;}
.ye_c00158{bottom:706.599867pt;}
.yd_c00158{bottom:738.599867pt;}
.yc_c00158{bottom:770.599867pt;}
.yb_c00158{bottom:802.599867pt;}
.ya_c00158{bottom:834.599867pt;}
.y9_c00158{bottom:866.599867pt;}
.y8_c00158{bottom:898.599867pt;}
.y7_c00158{bottom:930.599867pt;}
.y6_c00158{bottom:962.599867pt;}
.y2_c00158{bottom:1035.560000pt;}
.h4_c00158{height:18.560000pt;}
.h3_c00158{height:62.812500pt;}
.h2_c00158{height:1099.880000pt;}
.h0_c00158{height:1122.520000pt;}
.h1_c00158{height:1122.666667pt;}
.w3_c00158{width:24.320000pt;}
.w2_c00158{width:771.080000pt;}
.w0_c00158{width:793.720000pt;}
.w1_c00158{width:794.000000pt;}
.x0_c00158{left:0.000000pt;}
.x1_c00158{left:11.320000pt;}
.x3_c00158{left:84.794933pt;}
.x5_c00158{left:132.800133pt;}
.x4_c00158{left:384.760000pt;}
.x2_c00158{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3c3d4f1dde00de03d98caaeb.woff2')format("woff");}.ff1_c00159{font-family:ff1_c00159;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00159{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00159{vertical-align:0.000000px;}
.ls0_c00159{letter-spacing:0.000000px;}
.ls1_c00159{letter-spacing:0.036000px;}
.sc__c00159{text-shadow:none;}
.sc0_c00159{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00159{-webkit-text-stroke:0px transparent;}
.sc0_c00159{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00159{word-spacing:-18.036000px;}
.ws1_c00159{word-spacing:0.000000px;}
._8_c00159{width:1.008000px;}
._0_c00159{width:2.023200px;}
._4_c00159{width:3.146400px;}
._a_c00159{width:4.420800px;}
._2_c00159{width:5.479200px;}
._c_c00159{width:7.466400px;}
._9_c00159{width:8.920800px;}
._1_c00159{width:11.124000px;}
._7_c00159{width:12.160800px;}
._5_c00159{width:13.701600px;}
._6_c00159{width:15.516000px;}
._b_c00159{width:19.159200px;}
._3_c00159{width:20.916000px;}
._d_c00159{width:22.694400px;}
.fc1_c00159{color:transparent;}
.fc0_c00159{color:rgb(0,0,0);}
.fs0_c00159{font-size:72.000000px;}
.y0_c00159{bottom:0.000000px;}
.y5_c00159{bottom:1.440000px;}
.y1_c00159{bottom:12.735000px;}
.y3_c00159{bottom:45.405000px;}
.y4_c00159{bottom:56.700000px;}
.y21_c00159{bottom:110.924850px;}
.y20_c00159{bottom:146.924850px;}
.y1f_c00159{bottom:182.924850px;}
.y1e_c00159{bottom:218.924850px;}
.y1d_c00159{bottom:254.924850px;}
.y1c_c00159{bottom:290.924850px;}
.y1b_c00159{bottom:326.924850px;}
.y1a_c00159{bottom:362.924850px;}
.y19_c00159{bottom:398.924850px;}
.y18_c00159{bottom:434.924850px;}
.y17_c00159{bottom:470.924850px;}
.y16_c00159{bottom:506.924850px;}
.y15_c00159{bottom:542.924850px;}
.y14_c00159{bottom:578.924850px;}
.y13_c00159{bottom:614.924850px;}
.y12_c00159{bottom:650.924850px;}
.y11_c00159{bottom:686.924850px;}
.y10_c00159{bottom:722.924850px;}
.yf_c00159{bottom:758.924850px;}
.ye_c00159{bottom:794.924850px;}
.yd_c00159{bottom:830.924850px;}
.yc_c00159{bottom:866.924850px;}
.yb_c00159{bottom:902.924850px;}
.ya_c00159{bottom:938.924850px;}
.y9_c00159{bottom:974.924850px;}
.y8_c00159{bottom:1010.924850px;}
.y7_c00159{bottom:1046.924850px;}
.y6_c00159{bottom:1082.924850px;}
.y2_c00159{bottom:1165.005000px;}
.h4_c00159{height:17.280000px;}
.h3_c00159{height:70.664062px;}
.h2_c00159{height:1237.365000px;}
.h0_c00159{height:1262.835000px;}
.h1_c00159{height:1263.000000px;}
.w3_c00159{width:47.520000px;}
.w2_c00159{width:867.465000px;}
.w0_c00159{width:892.935000px;}
.w1_c00159{width:893.250000px;}
.x0_c00159{left:0.000000px;}
.x5_c00159{left:10.237500px;}
.x1_c00159{left:12.735000px;}
.x3_c00159{left:95.394300px;}
.x6_c00159{left:149.400150px;}
.x4_c00159{left:422.775000px;}
.x2_c00159{left:880.050300px;}
@media print{
.v0_c00159{vertical-align:0.000000pt;}
.ls0_c00159{letter-spacing:0.000000pt;}
.ls1_c00159{letter-spacing:0.032000pt;}
.ws0_c00159{word-spacing:-16.032000pt;}
.ws1_c00159{word-spacing:0.000000pt;}
._8_c00159{width:0.896000pt;}
._0_c00159{width:1.798400pt;}
._4_c00159{width:2.796800pt;}
._a_c00159{width:3.929600pt;}
._2_c00159{width:4.870400pt;}
._c_c00159{width:6.636800pt;}
._9_c00159{width:7.929600pt;}
._1_c00159{width:9.888000pt;}
._7_c00159{width:10.809600pt;}
._5_c00159{width:12.179200pt;}
._6_c00159{width:13.792000pt;}
._b_c00159{width:17.030400pt;}
._3_c00159{width:18.592000pt;}
._d_c00159{width:20.172800pt;}
.fs0_c00159{font-size:64.000000pt;}
.y0_c00159{bottom:0.000000pt;}
.y5_c00159{bottom:1.280000pt;}
.y1_c00159{bottom:11.320000pt;}
.y3_c00159{bottom:40.360000pt;}
.y4_c00159{bottom:50.400000pt;}
.y21_c00159{bottom:98.599867pt;}
.y20_c00159{bottom:130.599867pt;}
.y1f_c00159{bottom:162.599867pt;}
.y1e_c00159{bottom:194.599867pt;}
.y1d_c00159{bottom:226.599867pt;}
.y1c_c00159{bottom:258.599867pt;}
.y1b_c00159{bottom:290.599867pt;}
.y1a_c00159{bottom:322.599867pt;}
.y19_c00159{bottom:354.599867pt;}
.y18_c00159{bottom:386.599867pt;}
.y17_c00159{bottom:418.599867pt;}
.y16_c00159{bottom:450.599867pt;}
.y15_c00159{bottom:482.599867pt;}
.y14_c00159{bottom:514.599867pt;}
.y13_c00159{bottom:546.599867pt;}
.y12_c00159{bottom:578.599867pt;}
.y11_c00159{bottom:610.599867pt;}
.y10_c00159{bottom:642.599867pt;}
.yf_c00159{bottom:674.599867pt;}
.ye_c00159{bottom:706.599867pt;}
.yd_c00159{bottom:738.599867pt;}
.yc_c00159{bottom:770.599867pt;}
.yb_c00159{bottom:802.599867pt;}
.ya_c00159{bottom:834.599867pt;}
.y9_c00159{bottom:866.599867pt;}
.y8_c00159{bottom:898.599867pt;}
.y7_c00159{bottom:930.599867pt;}
.y6_c00159{bottom:962.599867pt;}
.y2_c00159{bottom:1035.560000pt;}
.h4_c00159{height:15.360000pt;}
.h3_c00159{height:62.812500pt;}
.h2_c00159{height:1099.880000pt;}
.h0_c00159{height:1122.520000pt;}
.h1_c00159{height:1122.666667pt;}
.w3_c00159{width:42.240000pt;}
.w2_c00159{width:771.080000pt;}
.w0_c00159{width:793.720000pt;}
.w1_c00159{width:794.000000pt;}
.x0_c00159{left:0.000000pt;}
.x5_c00159{left:9.100000pt;}
.x1_c00159{left:11.320000pt;}
.x3_c00159{left:84.794933pt;}
.x6_c00159{left:132.800133pt;}
.x4_c00159{left:375.800000pt;}
.x2_c00159{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_aed9f3e82077dffe3ef6350f.woff2')format("woff");}.ff1_c00160{font-family:ff1_c00160;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00160;src:url('chunks/assets/font_143cb8adf0b84115da2a1884.woff2')format("woff");}.ff2_c00160{font-family:ff2_c00160;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00160{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00160{vertical-align:0.000000px;}
.ls0_c00160{letter-spacing:0.000000px;}
.ls1_c00160{letter-spacing:0.014400px;}
.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:0.000000px;}
._7_c00160{width:1.252800px;}
._5_c00160{width:2.923200px;}
._1_c00160{width:4.147200px;}
._3_c00160{width:5.227200px;}
._9_c00160{width:6.559200px;}
._6_c00160{width:7.603200px;}
._0_c00160{width:9.410400px;}
._8_c00160{width:13.082400px;}
._a_c00160{width:14.083200px;}
._2_c00160{width:16.725600px;}
._4_c00160{width:21.398400px;}
.fc1_c00160{color:transparent;}
.fc0_c00160{color:rgb(0,0,0);}
.fs0_c00160{font-size:72.000000px;}
.y0_c00160{bottom:0.000000px;}
.y5_c00160{bottom:5.040000px;}
.y1_c00160{bottom:12.735000px;}
.y3_c00160{bottom:45.405000px;}
.y4_c00160{bottom:53.100000px;}
.y20_c00160{bottom:146.924850px;}
.y1f_c00160{bottom:182.924850px;}
.y1e_c00160{bottom:218.924850px;}
.y1d_c00160{bottom:254.924850px;}
.y1c_c00160{bottom:290.924850px;}
.y1b_c00160{bottom:326.924850px;}
.y1a_c00160{bottom:362.924850px;}
.y19_c00160{bottom:398.924850px;}
.y18_c00160{bottom:434.924850px;}
.y17_c00160{bottom:470.924850px;}
.y16_c00160{bottom:506.924850px;}
.y15_c00160{bottom:542.924850px;}
.y14_c00160{bottom:578.924850px;}
.y13_c00160{bottom:614.924850px;}
.y12_c00160{bottom:650.924850px;}
.y11_c00160{bottom:686.924850px;}
.y10_c00160{bottom:722.924850px;}
.yf_c00160{bottom:758.924850px;}
.ye_c00160{bottom:794.924850px;}
.yd_c00160{bottom:830.924850px;}
.yc_c00160{bottom:866.924850px;}
.yb_c00160{bottom:902.924850px;}
.ya_c00160{bottom:938.924850px;}
.y9_c00160{bottom:974.924850px;}
.y8_c00160{bottom:1010.924850px;}
.y7_c00160{bottom:1046.924850px;}
.y6_c00160{bottom:1082.924850px;}
.y2_c00160{bottom:1165.005000px;}
.h4_c00160{height:20.880000px;}
.h3_c00160{height:70.664062px;}
.h2_c00160{height:1237.365000px;}
.h0_c00160{height:1262.835000px;}
.h1_c00160{height:1263.000000px;}
.w3_c00160{width:27.360000px;}
.w2_c00160{width:867.465000px;}
.w0_c00160{width:892.935000px;}
.w1_c00160{width:893.250000px;}
.x0_c00160{left:0.000000px;}
.x1_c00160{left:12.735000px;}
.x3_c00160{left:95.394300px;}
.x5_c00160{left:149.400150px;}
.x4_c00160{left:432.855000px;}
.x2_c00160{left:880.050300px;}
@media print{
.v0_c00160{vertical-align:0.000000pt;}
.ls0_c00160{letter-spacing:0.000000pt;}
.ls1_c00160{letter-spacing:0.012800pt;}
.ws0_c00160{word-spacing:0.000000pt;}
._7_c00160{width:1.113600pt;}
._5_c00160{width:2.598400pt;}
._1_c00160{width:3.686400pt;}
._3_c00160{width:4.646400pt;}
._9_c00160{width:5.830400pt;}
._6_c00160{width:6.758400pt;}
._0_c00160{width:8.364800pt;}
._8_c00160{width:11.628800pt;}
._a_c00160{width:12.518400pt;}
._2_c00160{width:14.867200pt;}
._4_c00160{width:19.020800pt;}
.fs0_c00160{font-size:64.000000pt;}
.y0_c00160{bottom:0.000000pt;}
.y5_c00160{bottom:4.480000pt;}
.y1_c00160{bottom:11.320000pt;}
.y3_c00160{bottom:40.360000pt;}
.y4_c00160{bottom:47.200000pt;}
.y20_c00160{bottom:130.599867pt;}
.y1f_c00160{bottom:162.599867pt;}
.y1e_c00160{bottom:194.599867pt;}
.y1d_c00160{bottom:226.599867pt;}
.y1c_c00160{bottom:258.599867pt;}
.y1b_c00160{bottom:290.599867pt;}
.y1a_c00160{bottom:322.599867pt;}
.y19_c00160{bottom:354.599867pt;}
.y18_c00160{bottom:386.599867pt;}
.y17_c00160{bottom:418.599867pt;}
.y16_c00160{bottom:450.599867pt;}
.y15_c00160{bottom:482.599867pt;}
.y14_c00160{bottom:514.599867pt;}
.y13_c00160{bottom:546.599867pt;}
.y12_c00160{bottom:578.599867pt;}
.y11_c00160{bottom:610.599867pt;}
.y10_c00160{bottom:642.599867pt;}
.yf_c00160{bottom:674.599867pt;}
.ye_c00160{bottom:706.599867pt;}
.yd_c00160{bottom:738.599867pt;}
.yc_c00160{bottom:770.599867pt;}
.yb_c00160{bottom:802.599867pt;}
.ya_c00160{bottom:834.599867pt;}
.y9_c00160{bottom:866.599867pt;}
.y8_c00160{bottom:898.599867pt;}
.y7_c00160{bottom:930.599867pt;}
.y6_c00160{bottom:962.599867pt;}
.y2_c00160{bottom:1035.560000pt;}
.h4_c00160{height:18.560000pt;}
.h3_c00160{height:62.812500pt;}
.h2_c00160{height:1099.880000pt;}
.h0_c00160{height:1122.520000pt;}
.h1_c00160{height:1122.666667pt;}
.w3_c00160{width:24.320000pt;}
.w2_c00160{width:771.080000pt;}
.w0_c00160{width:793.720000pt;}
.w1_c00160{width:794.000000pt;}
.x0_c00160{left:0.000000pt;}
.x1_c00160{left:11.320000pt;}
.x3_c00160{left:84.794933pt;}
.x5_c00160{left:132.800133pt;}
.x4_c00160{left:384.760000pt;}
.x2_c00160{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_657079de2fb181b99fb66085.woff2')format("woff");}.ff1_c00161{font-family:ff1_c00161;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00161;src:url('chunks/assets/font_b5a40d979cd7662ee46acc0e.woff2')format("woff");}.ff2_c00161{font-family:ff2_c00161;line-height:1.284180;font-style: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;}
.ls1_c00161{letter-spacing:7.876800px;}
.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:0.000000px;}
._7_c00161{margin-left:-8.877600px;}
._6_c00161{margin-left:-6.962400px;}
._d_c00161{width:1.087200px;}
._3_c00161{width:2.167200px;}
._c_c00161{width:3.434400px;}
._b_c00161{width:4.665600px;}
._1_c00161{width:6.501600px;}
._0_c00161{width:8.294400px;}
._4_c00161{width:9.676800px;}
._e_c00161{width:10.886400px;}
._2_c00161{width:12.160800px;}
._5_c00161{width:14.500800px;}
._8_c00161{width:16.992000px;}
._a_c00161{width:19.670400px;}
._9_c00161{width:35.596800px;}
.fc1_c00161{color:transparent;}
.fc0_c00161{color:rgb(0,0,0);}
.fs0_c00161{font-size:72.000000px;}
.y0_c00161{bottom:0.000000px;}
.y5_c00161{bottom:1.440000px;}
.y1_c00161{bottom:12.735000px;}
.y3_c00161{bottom:45.405000px;}
.y4_c00161{bottom:56.700000px;}
.y21_c00161{bottom:110.924850px;}
.y20_c00161{bottom:146.924850px;}
.y1f_c00161{bottom:182.924850px;}
.y1e_c00161{bottom:218.924850px;}
.y1d_c00161{bottom:254.924850px;}
.y1c_c00161{bottom:290.924850px;}
.y1b_c00161{bottom:326.924850px;}
.y1a_c00161{bottom:362.924850px;}
.y19_c00161{bottom:398.924850px;}
.y18_c00161{bottom:434.924850px;}
.y17_c00161{bottom:470.924850px;}
.y16_c00161{bottom:506.924850px;}
.y15_c00161{bottom:542.924850px;}
.y14_c00161{bottom:578.924850px;}
.y13_c00161{bottom:614.924850px;}
.y12_c00161{bottom:650.924850px;}
.y11_c00161{bottom:686.924850px;}
.y10_c00161{bottom:722.924850px;}
.yf_c00161{bottom:758.924850px;}
.ye_c00161{bottom:794.924850px;}
.yd_c00161{bottom:830.924850px;}
.yc_c00161{bottom:866.924850px;}
.yb_c00161{bottom:902.924850px;}
.ya_c00161{bottom:938.924850px;}
.y9_c00161{bottom:974.924850px;}
.y8_c00161{bottom:1010.924850px;}
.y7_c00161{bottom:1046.924850px;}
.y6_c00161{bottom:1082.924850px;}
.y2_c00161{bottom:1165.005000px;}
.h4_c00161{height:17.280000px;}
.h5_c00161{height:70.628906px;}
.h3_c00161{height:70.664062px;}
.h2_c00161{height:1237.365000px;}
.h0_c00161{height:1262.835000px;}
.h1_c00161{height:1263.000000px;}
.w3_c00161{width:47.520000px;}
.w2_c00161{width:867.465000px;}
.w0_c00161{width:892.935000px;}
.w1_c00161{width:893.250000px;}
.x0_c00161{left:0.000000px;}
.x5_c00161{left:10.237500px;}
.x1_c00161{left:12.735000px;}
.x3_c00161{left:95.394300px;}
.x7_c00161{left:149.400150px;}
.x6_c00161{left:180.450150px;}
.x4_c00161{left:422.775000px;}
.x2_c00161{left:880.050300px;}
@media print{
.v0_c00161{vertical-align:0.000000pt;}
.ls0_c00161{letter-spacing:0.000000pt;}
.ls1_c00161{letter-spacing:7.001600pt;}
.ws0_c00161{word-spacing:0.000000pt;}
._7_c00161{margin-left:-7.891200pt;}
._6_c00161{margin-left:-6.188800pt;}
._d_c00161{width:0.966400pt;}
._3_c00161{width:1.926400pt;}
._c_c00161{width:3.052800pt;}
._b_c00161{width:4.147200pt;}
._1_c00161{width:5.779200pt;}
._0_c00161{width:7.372800pt;}
._4_c00161{width:8.601600pt;}
._e_c00161{width:9.676800pt;}
._2_c00161{width:10.809600pt;}
._5_c00161{width:12.889600pt;}
._8_c00161{width:15.104000pt;}
._a_c00161{width:17.484800pt;}
._9_c00161{width:31.641600pt;}
.fs0_c00161{font-size:64.000000pt;}
.y0_c00161{bottom:0.000000pt;}
.y5_c00161{bottom:1.280000pt;}
.y1_c00161{bottom:11.320000pt;}
.y3_c00161{bottom:40.360000pt;}
.y4_c00161{bottom:50.400000pt;}
.y21_c00161{bottom:98.599867pt;}
.y20_c00161{bottom:130.599867pt;}
.y1f_c00161{bottom:162.599867pt;}
.y1e_c00161{bottom:194.599867pt;}
.y1d_c00161{bottom:226.599867pt;}
.y1c_c00161{bottom:258.599867pt;}
.y1b_c00161{bottom:290.599867pt;}
.y1a_c00161{bottom:322.599867pt;}
.y19_c00161{bottom:354.599867pt;}
.y18_c00161{bottom:386.599867pt;}
.y17_c00161{bottom:418.599867pt;}
.y16_c00161{bottom:450.599867pt;}
.y15_c00161{bottom:482.599867pt;}
.y14_c00161{bottom:514.599867pt;}
.y13_c00161{bottom:546.599867pt;}
.y12_c00161{bottom:578.599867pt;}
.y11_c00161{bottom:610.599867pt;}
.y10_c00161{bottom:642.599867pt;}
.yf_c00161{bottom:674.599867pt;}
.ye_c00161{bottom:706.599867pt;}
.yd_c00161{bottom:738.599867pt;}
.yc_c00161{bottom:770.599867pt;}
.yb_c00161{bottom:802.599867pt;}
.ya_c00161{bottom:834.599867pt;}
.y9_c00161{bottom:866.599867pt;}
.y8_c00161{bottom:898.599867pt;}
.y7_c00161{bottom:930.599867pt;}
.y6_c00161{bottom:962.599867pt;}
.y2_c00161{bottom:1035.560000pt;}
.h4_c00161{height:15.360000pt;}
.h5_c00161{height:62.781250pt;}
.h3_c00161{height:62.812500pt;}
.h2_c00161{height:1099.880000pt;}
.h0_c00161{height:1122.520000pt;}
.h1_c00161{height:1122.666667pt;}
.w3_c00161{width:42.240000pt;}
.w2_c00161{width:771.080000pt;}
.w0_c00161{width:793.720000pt;}
.w1_c00161{width:794.000000pt;}
.x0_c00161{left:0.000000pt;}
.x5_c00161{left:9.100000pt;}
.x1_c00161{left:11.320000pt;}
.x3_c00161{left:84.794933pt;}
.x7_c00161{left:132.800133pt;}
.x6_c00161{left:160.400133pt;}
.x4_c00161{left:375.800000pt;}
.x2_c00161{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7bb2372f6762c9c7db2c801f.woff2')format("woff");}.ff1_c00162{font-family:ff1_c00162;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00162{letter-spacing:-0.014400px;}
.ls0_c00162{letter-spacing:0.000000px;}
.sc__c00162{text-shadow:none;}
.sc0_c00162{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00162{-webkit-text-stroke:0px transparent;}
.sc0_c00162{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00162{word-spacing:0.000000px;}
._4_c00162{width:1.922400px;}
._1_c00162{width:3.722400px;}
._0_c00162{width:5.436000px;}
._3_c00162{width:7.164000px;}
._7_c00162{width:9.849600px;}
._2_c00162{width:16.920000px;}
._5_c00162{width:22.147200px;}
._6_c00162{width:28.303200px;}
.fc1_c00162{color:transparent;}
.fc0_c00162{color:rgb(0,0,0);}
.fs0_c00162{font-size:72.000000px;}
.y0_c00162{bottom:0.000000px;}
.y5_c00162{bottom:5.040000px;}
.y1_c00162{bottom:12.735000px;}
.y3_c00162{bottom:45.405000px;}
.y4_c00162{bottom:53.100000px;}
.y21_c00162{bottom:110.924850px;}
.y20_c00162{bottom:146.924850px;}
.y1f_c00162{bottom:182.924850px;}
.y1e_c00162{bottom:218.924850px;}
.y1d_c00162{bottom:254.924850px;}
.y1c_c00162{bottom:290.924850px;}
.y1b_c00162{bottom:326.924850px;}
.y1a_c00162{bottom:362.924850px;}
.y19_c00162{bottom:398.924850px;}
.y18_c00162{bottom:434.924850px;}
.y17_c00162{bottom:470.924850px;}
.y16_c00162{bottom:506.924850px;}
.y15_c00162{bottom:542.924850px;}
.y14_c00162{bottom:578.924850px;}
.y13_c00162{bottom:614.924850px;}
.y12_c00162{bottom:650.924850px;}
.y11_c00162{bottom:686.924850px;}
.y10_c00162{bottom:722.924850px;}
.yf_c00162{bottom:758.924850px;}
.ye_c00162{bottom:794.924850px;}
.yd_c00162{bottom:830.924850px;}
.yc_c00162{bottom:866.924850px;}
.yb_c00162{bottom:902.924850px;}
.ya_c00162{bottom:938.924850px;}
.y9_c00162{bottom:974.924850px;}
.y8_c00162{bottom:1010.924850px;}
.y7_c00162{bottom:1046.924850px;}
.y6_c00162{bottom:1082.924850px;}
.y2_c00162{bottom:1165.005000px;}
.h4_c00162{height:20.880000px;}
.h3_c00162{height:70.664062px;}
.h2_c00162{height:1237.365000px;}
.h0_c00162{height:1262.835000px;}
.h1_c00162{height:1263.000000px;}
.w3_c00162{width:27.360000px;}
.w2_c00162{width:867.465000px;}
.w0_c00162{width:892.935000px;}
.w1_c00162{width:893.250000px;}
.x0_c00162{left:0.000000px;}
.x1_c00162{left:12.735000px;}
.x3_c00162{left:95.394300px;}
.x5_c00162{left:149.400150px;}
.x4_c00162{left:432.855000px;}
.x2_c00162{left:880.050300px;}
@media print{
.v0_c00162{vertical-align:0.000000pt;}
.ls1_c00162{letter-spacing:-0.012800pt;}
.ls0_c00162{letter-spacing:0.000000pt;}
.ws0_c00162{word-spacing:0.000000pt;}
._4_c00162{width:1.708800pt;}
._1_c00162{width:3.308800pt;}
._0_c00162{width:4.832000pt;}
._3_c00162{width:6.368000pt;}
._7_c00162{width:8.755200pt;}
._2_c00162{width:15.040000pt;}
._5_c00162{width:19.686400pt;}
._6_c00162{width:25.158400pt;}
.fs0_c00162{font-size:64.000000pt;}
.y0_c00162{bottom:0.000000pt;}
.y5_c00162{bottom:4.480000pt;}
.y1_c00162{bottom:11.320000pt;}
.y3_c00162{bottom:40.360000pt;}
.y4_c00162{bottom:47.200000pt;}
.y21_c00162{bottom:98.599867pt;}
.y20_c00162{bottom:130.599867pt;}
.y1f_c00162{bottom:162.599867pt;}
.y1e_c00162{bottom:194.599867pt;}
.y1d_c00162{bottom:226.599867pt;}
.y1c_c00162{bottom:258.599867pt;}
.y1b_c00162{bottom:290.599867pt;}
.y1a_c00162{bottom:322.599867pt;}
.y19_c00162{bottom:354.599867pt;}
.y18_c00162{bottom:386.599867pt;}
.y17_c00162{bottom:418.599867pt;}
.y16_c00162{bottom:450.599867pt;}
.y15_c00162{bottom:482.599867pt;}
.y14_c00162{bottom:514.599867pt;}
.y13_c00162{bottom:546.599867pt;}
.y12_c00162{bottom:578.599867pt;}
.y11_c00162{bottom:610.599867pt;}
.y10_c00162{bottom:642.599867pt;}
.yf_c00162{bottom:674.599867pt;}
.ye_c00162{bottom:706.599867pt;}
.yd_c00162{bottom:738.599867pt;}
.yc_c00162{bottom:770.599867pt;}
.yb_c00162{bottom:802.599867pt;}
.ya_c00162{bottom:834.599867pt;}
.y9_c00162{bottom:866.599867pt;}
.y8_c00162{bottom:898.599867pt;}
.y7_c00162{bottom:930.599867pt;}
.y6_c00162{bottom:962.599867pt;}
.y2_c00162{bottom:1035.560000pt;}
.h4_c00162{height:18.560000pt;}
.h3_c00162{height:62.812500pt;}
.h2_c00162{height:1099.880000pt;}
.h0_c00162{height:1122.520000pt;}
.h1_c00162{height:1122.666667pt;}
.w3_c00162{width:24.320000pt;}
.w2_c00162{width:771.080000pt;}
.w0_c00162{width:793.720000pt;}
.w1_c00162{width:794.000000pt;}
.x0_c00162{left:0.000000pt;}
.x1_c00162{left:11.320000pt;}
.x3_c00162{left:84.794933pt;}
.x5_c00162{left:132.800133pt;}
.x4_c00162{left:384.760000pt;}
.x2_c00162{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cda352454b4fabf156aa2833.woff2')format("woff");}.ff1_c00163{font-family:ff1_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;}
.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;}
.ls0_c00163{letter-spacing:0.000000px;}
.sc__c00163{text-shadow:none;}
.sc0_c00163{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00163{-webkit-text-stroke:0px transparent;}
.sc0_c00163{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00163{word-spacing:0.000000px;}
._0_c00163{width:4.708800px;}
._2_c00163{width:8.020800px;}
._5_c00163{width:9.604800px;}
._3_c00163{width:10.684800px;}
._1_c00163{width:20.390400px;}
._4_c00163{width:23.832000px;}
.fc1_c00163{color:transparent;}
.fc0_c00163{color:rgb(0,0,0);}
.fs0_c00163{font-size:72.000000px;}
.y0_c00163{bottom:0.000000px;}
.y5_c00163{bottom:1.440000px;}
.y1_c00163{bottom:12.735000px;}
.y3_c00163{bottom:45.405000px;}
.y4_c00163{bottom:56.700000px;}
.yc_c00163{bottom:866.924850px;}
.yb_c00163{bottom:902.924850px;}
.ya_c00163{bottom:938.924850px;}
.y9_c00163{bottom:974.924850px;}
.y8_c00163{bottom:1010.924850px;}
.y7_c00163{bottom:1046.924850px;}
.y6_c00163{bottom:1082.924850px;}
.y2_c00163{bottom:1165.005000px;}
.h4_c00163{height:17.280000px;}
.h3_c00163{height:70.664062px;}
.h2_c00163{height:1237.365000px;}
.h0_c00163{height:1262.835000px;}
.h1_c00163{height:1263.000000px;}
.w3_c00163{width:47.520000px;}
.w2_c00163{width:867.465000px;}
.w0_c00163{width:892.935000px;}
.w1_c00163{width:893.250000px;}
.x0_c00163{left:0.000000px;}
.x5_c00163{left:10.237500px;}
.x1_c00163{left:12.735000px;}
.x3_c00163{left:95.394300px;}
.x6_c00163{left:149.400150px;}
.x4_c00163{left:422.775000px;}
.x2_c00163{left:880.050300px;}
@media print{
.v0_c00163{vertical-align:0.000000pt;}
.ls0_c00163{letter-spacing:0.000000pt;}
.ws0_c00163{word-spacing:0.000000pt;}
._0_c00163{width:4.185600pt;}
._2_c00163{width:7.129600pt;}
._5_c00163{width:8.537600pt;}
._3_c00163{width:9.497600pt;}
._1_c00163{width:18.124800pt;}
._4_c00163{width:21.184000pt;}
.fs0_c00163{font-size:64.000000pt;}
.y0_c00163{bottom:0.000000pt;}
.y5_c00163{bottom:1.280000pt;}
.y1_c00163{bottom:11.320000pt;}
.y3_c00163{bottom:40.360000pt;}
.y4_c00163{bottom:50.400000pt;}
.yc_c00163{bottom:770.599867pt;}
.yb_c00163{bottom:802.599867pt;}
.ya_c00163{bottom:834.599867pt;}
.y9_c00163{bottom:866.599867pt;}
.y8_c00163{bottom:898.599867pt;}
.y7_c00163{bottom:930.599867pt;}
.y6_c00163{bottom:962.599867pt;}
.y2_c00163{bottom:1035.560000pt;}
.h4_c00163{height:15.360000pt;}
.h3_c00163{height:62.812500pt;}
.h2_c00163{height:1099.880000pt;}
.h0_c00163{height:1122.520000pt;}
.h1_c00163{height:1122.666667pt;}
.w3_c00163{width:42.240000pt;}
.w2_c00163{width:771.080000pt;}
.w0_c00163{width:793.720000pt;}
.w1_c00163{width:794.000000pt;}
.x0_c00163{left:0.000000pt;}
.x5_c00163{left:9.100000pt;}
.x1_c00163{left:11.320000pt;}
.x3_c00163{left:84.794933pt;}
.x6_c00163{left:132.800133pt;}
.x4_c00163{left:375.800000pt;}
.x2_c00163{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7f47e7caf2a0b6b0aa36d9bb.woff2')format("woff");}.ff1_c00164{font-family:ff1_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:ff2_c00164;src:url('chunks/assets/font_ebc57d876fd7ddb99ed2eed0.woff2')format("woff");}.ff2_c00164{font-family:ff2_c00164;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00164{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00164{vertical-align:0.000000px;}
.ls5_c00164{letter-spacing:-0.014400px;}
.ls0_c00164{letter-spacing:0.000000px;}
.ls3_c00164{letter-spacing:0.014400px;}
.ls1_c00164{letter-spacing:0.242208px;}
.ls2_c00164{letter-spacing:0.317376px;}
.ls4_c00164{letter-spacing:10.728000px;}
.sc__c00164{text-shadow:none;}
.sc0_c00164{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00164{-webkit-text-stroke:0px transparent;}
.sc0_c00164{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00164{word-spacing:-21.197376px;}
.ws1_c00164{word-spacing:0.000000px;}
._5_c00164{margin-left:-10.944000px;}
._6_c00164{width:1.555200px;}
._1_c00164{width:2.678400px;}
._9_c00164{width:3.736800px;}
._b_c00164{width:5.155200px;}
._8_c00164{width:6.422400px;}
._a_c00164{width:8.236800px;}
._0_c00164{width:9.496800px;}
._4_c00164{width:10.728000px;}
._e_c00164{width:11.901600px;}
._7_c00164{width:15.134400px;}
._f_c00164{width:16.480800px;}
._2_c00164{width:19.108800px;}
._10_c00164{width:20.556000px;}
._d_c00164{width:21.837600px;}
._c_c00164{width:23.061600px;}
._3_c00164{width:39.240000px;}
.fc2_c00164{color:transparent;}
.fc1_c00164{color:rgb(127,127,127);}
.fc0_c00164{color:rgb(0,0,0);}
.fs0_c00164{font-size:72.000000px;}
.fs1_c00164{font-size:83.520000px;}
.y0_c00164{bottom:0.000000px;}
.y5_c00164{bottom:5.040000px;}
.y1_c00164{bottom:12.735000px;}
.y3_c00164{bottom:45.405000px;}
.y4_c00164{bottom:53.100000px;}
.y21_c00164{bottom:110.924850px;}
.y20_c00164{bottom:146.924850px;}
.y1f_c00164{bottom:182.924850px;}
.y1e_c00164{bottom:218.924850px;}
.y1d_c00164{bottom:254.924850px;}
.y1c_c00164{bottom:290.924850px;}
.y1b_c00164{bottom:326.924850px;}
.y1a_c00164{bottom:362.924850px;}
.y19_c00164{bottom:398.924850px;}
.y18_c00164{bottom:434.924850px;}
.y17_c00164{bottom:470.924850px;}
.y16_c00164{bottom:506.924850px;}
.y15_c00164{bottom:542.924850px;}
.y14_c00164{bottom:578.924850px;}
.y13_c00164{bottom:614.924850px;}
.y12_c00164{bottom:650.924850px;}
.y11_c00164{bottom:686.924850px;}
.y10_c00164{bottom:722.924850px;}
.yf_c00164{bottom:758.924850px;}
.ye_c00164{bottom:794.924850px;}
.yd_c00164{bottom:830.924850px;}
.yc_c00164{bottom:866.924850px;}
.yb_c00164{bottom:902.924850px;}
.ya_c00164{bottom:938.924850px;}
.y9_c00164{bottom:974.924850px;}
.y8_c00164{bottom:1010.924850px;}
.y7_c00164{bottom:1047.647880px;}
.y6_c00164{bottom:1083.645000px;}
.y2_c00164{bottom:1165.005000px;}
.h4_c00164{height:20.880000px;}
.h3_c00164{height:70.664062px;}
.h5_c00164{height:81.929531px;}
.h2_c00164{height:1237.365000px;}
.h0_c00164{height:1262.835000px;}
.h1_c00164{height:1263.000000px;}
.w3_c00164{width:27.360000px;}
.w2_c00164{width:867.465000px;}
.w0_c00164{width:892.935000px;}
.w1_c00164{width:893.250000px;}
.x0_c00164{left:0.000000px;}
.x1_c00164{left:12.735000px;}
.x3_c00164{left:95.394300px;}
.x5_c00164{left:149.400150px;}
.x4_c00164{left:432.855000px;}
.x2_c00164{left:880.050300px;}
@media print{
.v0_c00164{vertical-align:0.000000pt;}
.ls5_c00164{letter-spacing:-0.012800pt;}
.ls0_c00164{letter-spacing:0.000000pt;}
.ls3_c00164{letter-spacing:0.012800pt;}
.ls1_c00164{letter-spacing:0.215296pt;}
.ls2_c00164{letter-spacing:0.282112pt;}
.ls4_c00164{letter-spacing:9.536000pt;}
.ws0_c00164{word-spacing:-18.842112pt;}
.ws1_c00164{word-spacing:0.000000pt;}
._5_c00164{margin-left:-9.728000pt;}
._6_c00164{width:1.382400pt;}
._1_c00164{width:2.380800pt;}
._9_c00164{width:3.321600pt;}
._b_c00164{width:4.582400pt;}
._8_c00164{width:5.708800pt;}
._a_c00164{width:7.321600pt;}
._0_c00164{width:8.441600pt;}
._4_c00164{width:9.536000pt;}
._e_c00164{width:10.579200pt;}
._7_c00164{width:13.452800pt;}
._f_c00164{width:14.649600pt;}
._2_c00164{width:16.985600pt;}
._10_c00164{width:18.272000pt;}
._d_c00164{width:19.411200pt;}
._c_c00164{width:20.499200pt;}
._3_c00164{width:34.880000pt;}
.fs0_c00164{font-size:64.000000pt;}
.fs1_c00164{font-size:74.240000pt;}
.y0_c00164{bottom:0.000000pt;}
.y5_c00164{bottom:4.480000pt;}
.y1_c00164{bottom:11.320000pt;}
.y3_c00164{bottom:40.360000pt;}
.y4_c00164{bottom:47.200000pt;}
.y21_c00164{bottom:98.599867pt;}
.y20_c00164{bottom:130.599867pt;}
.y1f_c00164{bottom:162.599867pt;}
.y1e_c00164{bottom:194.599867pt;}
.y1d_c00164{bottom:226.599867pt;}
.y1c_c00164{bottom:258.599867pt;}
.y1b_c00164{bottom:290.599867pt;}
.y1a_c00164{bottom:322.599867pt;}
.y19_c00164{bottom:354.599867pt;}
.y18_c00164{bottom:386.599867pt;}
.y17_c00164{bottom:418.599867pt;}
.y16_c00164{bottom:450.599867pt;}
.y15_c00164{bottom:482.599867pt;}
.y14_c00164{bottom:514.599867pt;}
.y13_c00164{bottom:546.599867pt;}
.y12_c00164{bottom:578.599867pt;}
.y11_c00164{bottom:610.599867pt;}
.y10_c00164{bottom:642.599867pt;}
.yf_c00164{bottom:674.599867pt;}
.ye_c00164{bottom:706.599867pt;}
.yd_c00164{bottom:738.599867pt;}
.yc_c00164{bottom:770.599867pt;}
.yb_c00164{bottom:802.599867pt;}
.ya_c00164{bottom:834.599867pt;}
.y9_c00164{bottom:866.599867pt;}
.y8_c00164{bottom:898.599867pt;}
.y7_c00164{bottom:931.242560pt;}
.y6_c00164{bottom:963.240000pt;}
.y2_c00164{bottom:1035.560000pt;}
.h4_c00164{height:18.560000pt;}
.h3_c00164{height:62.812500pt;}
.h5_c00164{height:72.826250pt;}
.h2_c00164{height:1099.880000pt;}
.h0_c00164{height:1122.520000pt;}
.h1_c00164{height:1122.666667pt;}
.w3_c00164{width:24.320000pt;}
.w2_c00164{width:771.080000pt;}
.w0_c00164{width:793.720000pt;}
.w1_c00164{width:794.000000pt;}
.x0_c00164{left:0.000000pt;}
.x1_c00164{left:11.320000pt;}
.x3_c00164{left:84.794933pt;}
.x5_c00164{left:132.800133pt;}
.x4_c00164{left:384.760000pt;}
.x2_c00164{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e85fd84e67e9fcdf3866244.woff2')format("woff");}.ff1_c00165{font-family:ff1_c00165;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00165{letter-spacing:0.000000px;}
.ls2_c00165{letter-spacing:0.014400px;}
.ls1_c00165{letter-spacing:10.497600px;}
.sc__c00165{text-shadow:none;}
.sc0_c00165{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00165{-webkit-text-stroke:0px transparent;}
.sc0_c00165{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00165{word-spacing:0.000000px;}
._8_c00165{margin-left:-10.929600px;}
._e_c00165{width:1.202400px;}
._1_c00165{width:2.260800px;}
._3_c00165{width:3.355200px;}
._6_c00165{width:4.680000px;}
._b_c00165{width:5.839200px;}
._0_c00165{width:6.847200px;}
._f_c00165{width:8.143200px;}
._9_c00165{width:9.460800px;}
._7_c00165{width:10.497600px;}
._5_c00165{width:11.836800px;}
._11_c00165{width:16.387200px;}
._a_c00165{width:20.397600px;}
._4_c00165{width:21.873600px;}
._c_c00165{width:23.090400px;}
._10_c00165{width:24.566400px;}
._d_c00165{width:29.836800px;}
._2_c00165{width:31.622400px;}
.fc1_c00165{color:transparent;}
.fc0_c00165{color:rgb(0,0,0);}
.fs0_c00165{font-size:72.000000px;}
.y0_c00165{bottom:0.000000px;}
.y5_c00165{bottom:1.440000px;}
.y1_c00165{bottom:12.735000px;}
.y3_c00165{bottom:45.405000px;}
.y4_c00165{bottom:56.700000px;}
.y21_c00165{bottom:110.924850px;}
.y20_c00165{bottom:146.924850px;}
.y1f_c00165{bottom:182.924850px;}
.y1e_c00165{bottom:218.924850px;}
.y1d_c00165{bottom:254.924850px;}
.y1c_c00165{bottom:290.924850px;}
.y1b_c00165{bottom:326.924850px;}
.y1a_c00165{bottom:362.924850px;}
.y19_c00165{bottom:398.924850px;}
.y18_c00165{bottom:434.924850px;}
.y17_c00165{bottom:470.924850px;}
.y16_c00165{bottom:506.924850px;}
.y15_c00165{bottom:542.924850px;}
.y14_c00165{bottom:578.924850px;}
.y13_c00165{bottom:614.924850px;}
.y12_c00165{bottom:650.924850px;}
.y11_c00165{bottom:686.924850px;}
.y10_c00165{bottom:722.924850px;}
.yf_c00165{bottom:758.924850px;}
.ye_c00165{bottom:794.924850px;}
.yd_c00165{bottom:830.924850px;}
.yc_c00165{bottom:866.924850px;}
.yb_c00165{bottom:902.924850px;}
.ya_c00165{bottom:938.924850px;}
.y9_c00165{bottom:974.924850px;}
.y8_c00165{bottom:1010.924850px;}
.y7_c00165{bottom:1046.924850px;}
.y6_c00165{bottom:1082.924850px;}
.y2_c00165{bottom:1165.005000px;}
.h4_c00165{height:17.280000px;}
.h3_c00165{height:70.664062px;}
.h2_c00165{height:1237.365000px;}
.h0_c00165{height:1262.835000px;}
.h1_c00165{height:1263.000000px;}
.w3_c00165{width:47.520000px;}
.w2_c00165{width:867.465000px;}
.w0_c00165{width:892.935000px;}
.w1_c00165{width:893.250000px;}
.x0_c00165{left:0.000000px;}
.x5_c00165{left:10.237500px;}
.x1_c00165{left:12.735000px;}
.x3_c00165{left:95.394300px;}
.x6_c00165{left:149.418150px;}
.x4_c00165{left:422.775000px;}
.x2_c00165{left:880.050300px;}
@media print{
.v0_c00165{vertical-align:0.000000pt;}
.ls0_c00165{letter-spacing:0.000000pt;}
.ls2_c00165{letter-spacing:0.012800pt;}
.ls1_c00165{letter-spacing:9.331200pt;}
.ws0_c00165{word-spacing:0.000000pt;}
._8_c00165{margin-left:-9.715200pt;}
._e_c00165{width:1.068800pt;}
._1_c00165{width:2.009600pt;}
._3_c00165{width:2.982400pt;}
._6_c00165{width:4.160000pt;}
._b_c00165{width:5.190400pt;}
._0_c00165{width:6.086400pt;}
._f_c00165{width:7.238400pt;}
._9_c00165{width:8.409600pt;}
._7_c00165{width:9.331200pt;}
._5_c00165{width:10.521600pt;}
._11_c00165{width:14.566400pt;}
._a_c00165{width:18.131200pt;}
._4_c00165{width:19.443200pt;}
._c_c00165{width:20.524800pt;}
._10_c00165{width:21.836800pt;}
._d_c00165{width:26.521600pt;}
._2_c00165{width:28.108800pt;}
.fs0_c00165{font-size:64.000000pt;}
.y0_c00165{bottom:0.000000pt;}
.y5_c00165{bottom:1.280000pt;}
.y1_c00165{bottom:11.320000pt;}
.y3_c00165{bottom:40.360000pt;}
.y4_c00165{bottom:50.400000pt;}
.y21_c00165{bottom:98.599867pt;}
.y20_c00165{bottom:130.599867pt;}
.y1f_c00165{bottom:162.599867pt;}
.y1e_c00165{bottom:194.599867pt;}
.y1d_c00165{bottom:226.599867pt;}
.y1c_c00165{bottom:258.599867pt;}
.y1b_c00165{bottom:290.599867pt;}
.y1a_c00165{bottom:322.599867pt;}
.y19_c00165{bottom:354.599867pt;}
.y18_c00165{bottom:386.599867pt;}
.y17_c00165{bottom:418.599867pt;}
.y16_c00165{bottom:450.599867pt;}
.y15_c00165{bottom:482.599867pt;}
.y14_c00165{bottom:514.599867pt;}
.y13_c00165{bottom:546.599867pt;}
.y12_c00165{bottom:578.599867pt;}
.y11_c00165{bottom:610.599867pt;}
.y10_c00165{bottom:642.599867pt;}
.yf_c00165{bottom:674.599867pt;}
.ye_c00165{bottom:706.599867pt;}
.yd_c00165{bottom:738.599867pt;}
.yc_c00165{bottom:770.599867pt;}
.yb_c00165{bottom:802.599867pt;}
.ya_c00165{bottom:834.599867pt;}
.y9_c00165{bottom:866.599867pt;}
.y8_c00165{bottom:898.599867pt;}
.y7_c00165{bottom:930.599867pt;}
.y6_c00165{bottom:962.599867pt;}
.y2_c00165{bottom:1035.560000pt;}
.h4_c00165{height:15.360000pt;}
.h3_c00165{height:62.812500pt;}
.h2_c00165{height:1099.880000pt;}
.h0_c00165{height:1122.520000pt;}
.h1_c00165{height:1122.666667pt;}
.w3_c00165{width:42.240000pt;}
.w2_c00165{width:771.080000pt;}
.w0_c00165{width:793.720000pt;}
.w1_c00165{width:794.000000pt;}
.x0_c00165{left:0.000000pt;}
.x5_c00165{left:9.100000pt;}
.x1_c00165{left:11.320000pt;}
.x3_c00165{left:84.794933pt;}
.x6_c00165{left:132.816133pt;}
.x4_c00165{left:375.800000pt;}
.x2_c00165{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1607ba6190d8628bfbecb57b.woff2')format("woff");}.ff1_c00166{font-family:ff1_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:ff2_c00166;src:url('chunks/assets/font_6115cb561cc59c342485b4f8.woff2')format("woff");}.ff2_c00166{font-family:ff2_c00166;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00166{letter-spacing:-0.014400px;}
.ls0_c00166{letter-spacing:0.000000px;}
.sc__c00166{text-shadow:none;}
.sc0_c00166{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00166{-webkit-text-stroke:0px transparent;}
.sc0_c00166{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00166{word-spacing:0.000000px;}
._0_c00166{width:19.656000px;}
._1_c00166{width:22.183200px;}
.fc1_c00166{color:transparent;}
.fc0_c00166{color:rgb(0,0,0);}
.fs0_c00166{font-size:72.000000px;}
.y0_c00166{bottom:0.000000px;}
.y5_c00166{bottom:5.040000px;}
.y1_c00166{bottom:12.735000px;}
.y3_c00166{bottom:45.405000px;}
.y4_c00166{bottom:53.100000px;}
.yb_c00166{bottom:917.684850px;}
.ya_c00166{bottom:938.924850px;}
.y9_c00166{bottom:974.924850px;}
.y8_c00166{bottom:1010.924850px;}
.y7_c00166{bottom:1046.924850px;}
.y6_c00166{bottom:1082.924850px;}
.y2_c00166{bottom:1165.005000px;}
.h4_c00166{height:20.880000px;}
.h3_c00166{height:70.664062px;}
.h5_c00166{height:74.004654px;}
.h2_c00166{height:1237.365000px;}
.h0_c00166{height:1262.835000px;}
.h1_c00166{height:1263.000000px;}
.w3_c00166{width:27.360000px;}
.w2_c00166{width:867.465000px;}
.w0_c00166{width:892.935000px;}
.w1_c00166{width:893.250000px;}
.x0_c00166{left:0.000000px;}
.x1_c00166{left:12.735000px;}
.x3_c00166{left:95.394300px;}
.x5_c00166{left:149.400150px;}
.x4_c00166{left:432.855000px;}
.x2_c00166{left:880.050300px;}
@media print{
.v0_c00166{vertical-align:0.000000pt;}
.ls1_c00166{letter-spacing:-0.012800pt;}
.ls0_c00166{letter-spacing:0.000000pt;}
.ws0_c00166{word-spacing:0.000000pt;}
._0_c00166{width:17.472000pt;}
._1_c00166{width:19.718400pt;}
.fs0_c00166{font-size:64.000000pt;}
.y0_c00166{bottom:0.000000pt;}
.y5_c00166{bottom:4.480000pt;}
.y1_c00166{bottom:11.320000pt;}
.y3_c00166{bottom:40.360000pt;}
.y4_c00166{bottom:47.200000pt;}
.yb_c00166{bottom:815.719867pt;}
.ya_c00166{bottom:834.599867pt;}
.y9_c00166{bottom:866.599867pt;}
.y8_c00166{bottom:898.599867pt;}
.y7_c00166{bottom:930.599867pt;}
.y6_c00166{bottom:962.599867pt;}
.y2_c00166{bottom:1035.560000pt;}
.h4_c00166{height:18.560000pt;}
.h3_c00166{height:62.812500pt;}
.h5_c00166{height:65.781915pt;}
.h2_c00166{height:1099.880000pt;}
.h0_c00166{height:1122.520000pt;}
.h1_c00166{height:1122.666667pt;}
.w3_c00166{width:24.320000pt;}
.w2_c00166{width:771.080000pt;}
.w0_c00166{width:793.720000pt;}
.w1_c00166{width:794.000000pt;}
.x0_c00166{left:0.000000pt;}
.x1_c00166{left:11.320000pt;}
.x3_c00166{left:84.794933pt;}
.x5_c00166{left:132.800133pt;}
.x4_c00166{left:384.760000pt;}
.x2_c00166{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00167{font-family:ff1_c00167;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00167;src:url('chunks/assets/font_94a47eeb33af6fa3b528f5c0.woff2')format("woff");}.ff2_c00167{font-family:ff2_c00167;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00167;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00167{font-family:ff3_c00167;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00167;src:url('chunks/assets/font_9edeb4d013371c9e7848f055.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_18f63b177aeea34ab62fffe9.woff2')format("woff");}.ff5_c00167{font-family:ff5_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:ff6_c00167;src:url('chunks/assets/font_009f409d30d2f687fe90292d.woff2')format("woff");}.ff6_c00167{font-family:ff6_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:ff7_c00167;src:url('chunks/assets/font_3e7e2776b36a052225d8094c.woff2')format("woff");}.ff7_c00167{font-family:ff7_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:ff8_c00167;src:url('chunks/assets/font_a9eca8b54de421b230bd9856.woff2')format("woff");}.ff8_c00167{font-family:ff8_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:ff9_c00167;src:url('chunks/assets/font_81f868285e2d0be5e4e56ba4.woff2')format("woff");}.ff9_c00167{font-family:ff9_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:ffa_c00167;src:url('chunks/assets/font_0998953badff64d1f10c888a.woff2')format("woff");}.ffa_c00167{font-family:ffa_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:ffb_c00167;src:url('chunks/assets/font_43f5bd30d4d37365b60524e9.woff2')format("woff");}.ffb_c00167{font-family:ffb_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:ffc_c00167;src:url('chunks/assets/font_1f0f1bafd624176120d00174.woff2')format("woff");}.ffc_c00167{font-family:ffc_c00167;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00167;src:url('chunks/assets/font_1b62bc7704a75119b1a0a4e5.woff2')format("woff");}.ffd_c00167{font-family:ffd_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:ffe_c00167;src:url('chunks/assets/font_c5fc497f96fce66ba37b3ff1.woff2')format("woff");}.ffe_c00167{font-family:ffe_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:fff_c00167;src:url('chunks/assets/font_652cde70612d216c94cb45d6.woff2')format("woff");}.fff_c00167{font-family:fff_c00167;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00167;src:url('chunks/assets/font_661807520758a67749bd2d75.woff2')format("woff");}.ff10_c00167{font-family:ff10_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:ff11_c00167;src:url('chunks/assets/font_ddc162765dabc1fdcba8b1a4.woff2')format("woff");}.ff11_c00167{font-family:ff11_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:ff12_c00167;src:url('chunks/assets/font_3f07ef6e406f889f02b66eeb.woff2')format("woff");}.ff12_c00167{font-family:ff12_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:ff13_c00167;src:url('chunks/assets/font_06398f9e694e3f7bbc22d9b8.woff2')format("woff");}.ff13_c00167{font-family:ff13_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:ff14_c00167;src:url('chunks/assets/font_b80ef34c7c69d9cca428875b.woff2')format("woff");}.ff14_c00167{font-family:ff14_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:ff15_c00167;src:url('chunks/assets/font_15103bc89f53a906ceec0328.woff2')format("woff");}.ff15_c00167{font-family:ff15_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:ff16_c00167;src:url('chunks/assets/font_3e5bdb7f007f978fac7900ae.woff2')format("woff");}.ff16_c00167{font-family:ff16_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:ff17_c00167;src:url('chunks/assets/font_40c74437e3900222392d1b27.woff2')format("woff");}.ff17_c00167{font-family:ff17_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:ff18_c00167;src:url('chunks/assets/font_f4d74c5c47db093d2a9f8fa9.woff2')format("woff");}.ff18_c00167{font-family:ff18_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:ff19_c00167;src:url('chunks/assets/font_1950655bdaace2ce0f1320aa.woff2')format("woff");}.ff19_c00167{font-family:ff19_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:ff1a_c00167;src:url('chunks/assets/font_1c8f2fdc998902aab277dab6.woff2')format("woff");}.ff1a_c00167{font-family:ff1a_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:ff1b_c00167;src:url('chunks/assets/font_d7f5403ce51f4b9e3ce71fbc.woff2')format("woff");}.ff1b_c00167{font-family:ff1b_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:ff1c_c00167;src:url('chunks/assets/font_1922cae53f97be2edef69973.woff2')format("woff");}.ff1c_c00167{font-family:ff1c_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:ff1d_c00167;src:url('chunks/assets/font_8483a0e2c4807479808cddb7.woff2')format("woff");}.ff1d_c00167{font-family:ff1d_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:ff1e_c00167;src:url('chunks/assets/font_4fff9eb95faf460beab7e4c3.woff2')format("woff");}.ff1e_c00167{font-family:ff1e_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:ff1f_c00167;src:url('chunks/assets/font_b3cc7d05f6a86baaeb2e9a7f.woff2')format("woff");}.ff1f_c00167{font-family:ff1f_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:ff20_c00167;src:url('chunks/assets/font_a660c5aa8c0db4b3cfa81920.woff2')format("woff");}.ff20_c00167{font-family:ff20_c00167;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:ff21_c00167;src:url('chunks/assets/font_38aa7be6378ba88ffe2e2b31.woff2')format("woff");}.ff21_c00167{font-family:ff21_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:ff22_c00167;src:url('chunks/assets/font_fe428af9f00823e78d60707b.woff2')format("woff");}.ff22_c00167{font-family:ff22_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:ff23_c00167;src:url('chunks/assets/font_95d99850b10d48d29c3bb9d5.woff2')format("woff");}.ff23_c00167{font-family:ff23_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:ff24_c00167;src:url('chunks/assets/font_6160950f2453cfe0351dff91.woff2')format("woff");}.ff24_c00167{font-family:ff24_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:ff25_c00167;src:url('chunks/assets/font_2a155f487411c7da3816122a.woff2')format("woff");}.ff25_c00167{font-family:ff25_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:ff26_c00167;src:url('chunks/assets/font_70cb9aba4b2078996e791804.woff2')format("woff");}.ff26_c00167{font-family:ff26_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:ff27_c00167;src:url('chunks/assets/font_696edc3f5e2fbbc43167f252.woff2')format("woff");}.ff27_c00167{font-family:ff27_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:ff28_c00167;src:url('chunks/assets/font_2a4e5b030391172a99e3d552.woff2')format("woff");}.ff28_c00167{font-family:ff28_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:ff29_c00167;src:url('chunks/assets/font_7bdd0e6286e82ff6b33f2793.woff2')format("woff");}.ff29_c00167{font-family:ff29_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:ff2a_c00167;src:url('chunks/assets/font_57dbc780dfffbdc1483150c3.woff2')format("woff");}.ff2a_c00167{font-family:ff2a_c00167;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:ff2b_c00167;src:url('chunks/assets/font_3ea9b42c18d0a54367edea6f.woff2')format("woff");}.ff2b_c00167{font-family:ff2b_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:ff2c_c00167;src:url('chunks/assets/font_b4558ebc796a2fbd6a544af7.woff2')format("woff");}.ff2c_c00167{font-family:ff2c_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:ff2d_c00167;src:url('chunks/assets/font_a3a41bb3da6f8f998313db17.woff2')format("woff");}.ff2d_c00167{font-family:ff2d_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:ff2e_c00167;src:url('chunks/assets/font_b1ab05ab5d9decdd2d8a90f0.woff2')format("woff");}.ff2e_c00167{font-family:ff2e_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:ff2f_c00167;src:url('chunks/assets/font_9aadcab35150ecf67a736a84.woff2')format("woff");}.ff2f_c00167{font-family:ff2f_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:ff30_c00167;src:url('chunks/assets/font_2f1160e06fac13196d087462.woff2')format("woff");}.ff30_c00167{font-family:ff30_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:ff31_c00167;src:url('chunks/assets/font_da29101850f670e9ed1eaa91.woff2')format("woff");}.ff31_c00167{font-family:ff31_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:ff32_c00167;src:url('chunks/assets/font_ef940d00b2976df0f00ffd40.woff2')format("woff");}.ff32_c00167{font-family:ff32_c00167;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:ff33_c00167;src:url('chunks/assets/font_08d13a9eb73d96a3cd6d2875.woff2')format("woff");}.ff33_c00167{font-family:ff33_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:ff34_c00167;src:url('chunks/assets/font_5f462dae4dad2c378ad64449.woff2')format("woff");}.ff34_c00167{font-family:ff34_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:ff35_c00167;src:url('chunks/assets/font_c37b1b3b4cb9623044c5d72a.woff2')format("woff");}.ff35_c00167{font-family:ff35_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:ff36_c00167;src:url('chunks/assets/font_696edc3f5e2fbbc43167f252.woff2')format("woff");}.ff36_c00167{font-family:ff36_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;}
.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);}
.v1_c00167{vertical-align:-132.480000px;}
.v0_c00167{vertical-align:0.000000px;}
.ls6_c00167{letter-spacing:0.000000px;}
.ls5_c00167{letter-spacing:0.072000px;}
.ls3_c00167{letter-spacing:0.139968px;}
.ls2_c00167{letter-spacing:0.186624px;}
.ls8_c00167{letter-spacing:0.324000px;}
.ls4_c00167{letter-spacing:0.325728px;}
.ls1_c00167{letter-spacing:0.370512px;}
.ls9_c00167{letter-spacing:0.602640px;}
.ls7_c00167{letter-spacing:0.680400px;}
.lsa_c00167{letter-spacing:0.725760px;}
.ls0_c00167{letter-spacing:997.549800px;}
.sc__c00167{text-shadow:none;}
.sc0_c00167{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00167{-webkit-text-stroke:0px transparent;}
.sc0_c00167{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00167{word-spacing:-19.440000px;}
.ws1_c00167{word-spacing:-0.264384px;}
.ws0_c00167{word-spacing:-0.072000px;}
.ws3_c00167{word-spacing:0.000000px;}
._0_c00167{margin-left:-1.275264px;}
._1_c00167{width:1.384128px;}
._3_c00167{width:5.191200px;}
._6_c00167{width:7.200000px;}
._8_c00167{width:8.323200px;}
._4_c00167{width:9.331200px;}
._5_c00167{width:15.033600px;}
._7_c00167{width:16.855200px;}
._2_c00167{width:21.427200px;}
.fc2_c00167{color:transparent;}
.fc1_c00167{color:rgb(127,127,127);}
.fc0_c00167{color:rgb(0,0,0);}
.fs1_c00167{font-size:64.800000px;}
.fs0_c00167{font-size:72.000000px;}
.fs3_c00167{font-size:77.760000px;}
.fs4_c00167{font-size:83.520000px;}
.fs2_c00167{font-size:119.520000px;}
.y0_c00167{bottom:0.000000px;}
.y5_c00167{bottom:5.040000px;}
.y1_c00167{bottom:12.735000px;}
.y3_c00167{bottom:45.045000px;}
.y4_c00167{bottom:52.740000px;}
.y22_c00167{bottom:136.845000px;}
.y21_c00167{bottom:172.845000px;}
.y20_c00167{bottom:208.845000px;}
.y1f_c00167{bottom:244.845000px;}
.y1e_c00167{bottom:280.845000px;}
.y1d_c00167{bottom:316.845000px;}
.y1c_c00167{bottom:352.845000px;}
.y1b_c00167{bottom:388.845000px;}
.y1a_c00167{bottom:424.845000px;}
.y19_c00167{bottom:460.845000px;}
.y18_c00167{bottom:496.845000px;}
.y17_c00167{bottom:532.845000px;}
.y16_c00167{bottom:568.845000px;}
.y15_c00167{bottom:604.845000px;}
.y14_c00167{bottom:640.845000px;}
.y13_c00167{bottom:676.845000px;}
.y12_c00167{bottom:712.845000px;}
.y11_c00167{bottom:749.565000px;}
.y10_c00167{bottom:784.844850px;}
.yf_c00167{bottom:821.204850px;}
.ye_c00167{bottom:842.084850px;}
.yd_c00167{bottom:862.230600px;}
.yc_c00167{bottom:881.314200px;}
.yb_c00167{bottom:900.397800px;}
.ya_c00167{bottom:919.125000px;}
.y9_c00167{bottom:938.565000px;}
.y8_c00167{bottom:974.924850px;}
.y7_c00167{bottom:1010.565000px;}
.y6_c00167{bottom:1082.565000px;}
.y2_c00167{bottom:1165.365000px;}
.h4_c00167{height:20.880000px;}
.h8_c00167{height:64.641797px;}
.h3_c00167{height:70.664062px;}
.h7_c00167{height:72.562500px;}
.h5_c00167{height:74.004654px;}
.h6_c00167{height:78.367500px;}
.h9_c00167{height:84.172500px;}
.h2_c00167{height:1237.365000px;}
.h0_c00167{height:1262.835000px;}
.h1_c00167{height:1263.000000px;}
.w3_c00167{width:27.000000px;}
.w2_c00167{width:867.465000px;}
.w0_c00167{width:892.935000px;}
.w1_c00167{width:893.250000px;}
.x0_c00167{left:0.000000px;}
.x1_c00167{left:12.735000px;}
.x3_c00167{left:95.406300px;}
.x5_c00167{left:117.828300px;}
.xa_c00167{left:149.400150px;}
.x6_c00167{left:398.860500px;}
.x4_c00167{left:433.215000px;}
.x7_c00167{left:506.525700px;}
.x9_c00167{left:591.770100px;}
.x8_c00167{left:772.351500px;}
.x2_c00167{left:878.550300px;}
@media print{
.v1_c00167{vertical-align:-117.760000pt;}
.v0_c00167{vertical-align:0.000000pt;}
.ls6_c00167{letter-spacing:0.000000pt;}
.ls5_c00167{letter-spacing:0.064000pt;}
.ls3_c00167{letter-spacing:0.124416pt;}
.ls2_c00167{letter-spacing:0.165888pt;}
.ls8_c00167{letter-spacing:0.288000pt;}
.ls4_c00167{letter-spacing:0.289536pt;}
.ls1_c00167{letter-spacing:0.329344pt;}
.ls9_c00167{letter-spacing:0.535680pt;}
.ls7_c00167{letter-spacing:0.604800pt;}
.lsa_c00167{letter-spacing:0.645120pt;}
.ls0_c00167{letter-spacing:886.710933pt;}
.ws2_c00167{word-spacing:-17.280000pt;}
.ws1_c00167{word-spacing:-0.235008pt;}
.ws0_c00167{word-spacing:-0.064000pt;}
.ws3_c00167{word-spacing:0.000000pt;}
._0_c00167{margin-left:-1.133568pt;}
._1_c00167{width:1.230336pt;}
._3_c00167{width:4.614400pt;}
._6_c00167{width:6.400000pt;}
._8_c00167{width:7.398400pt;}
._4_c00167{width:8.294400pt;}
._5_c00167{width:13.363200pt;}
._7_c00167{width:14.982400pt;}
._2_c00167{width:19.046400pt;}
.fs1_c00167{font-size:57.600000pt;}
.fs0_c00167{font-size:64.000000pt;}
.fs3_c00167{font-size:69.120000pt;}
.fs4_c00167{font-size:74.240000pt;}
.fs2_c00167{font-size:106.240000pt;}
.y0_c00167{bottom:0.000000pt;}
.y5_c00167{bottom:4.480000pt;}
.y1_c00167{bottom:11.320000pt;}
.y3_c00167{bottom:40.040000pt;}
.y4_c00167{bottom:46.880000pt;}
.y22_c00167{bottom:121.640000pt;}
.y21_c00167{bottom:153.640000pt;}
.y20_c00167{bottom:185.640000pt;}
.y1f_c00167{bottom:217.640000pt;}
.y1e_c00167{bottom:249.640000pt;}
.y1d_c00167{bottom:281.640000pt;}
.y1c_c00167{bottom:313.640000pt;}
.y1b_c00167{bottom:345.640000pt;}
.y1a_c00167{bottom:377.640000pt;}
.y19_c00167{bottom:409.640000pt;}
.y18_c00167{bottom:441.640000pt;}
.y17_c00167{bottom:473.640000pt;}
.y16_c00167{bottom:505.640000pt;}
.y15_c00167{bottom:537.640000pt;}
.y14_c00167{bottom:569.640000pt;}
.y13_c00167{bottom:601.640000pt;}
.y12_c00167{bottom:633.640000pt;}
.y11_c00167{bottom:666.280000pt;}
.y10_c00167{bottom:697.639867pt;}
.yf_c00167{bottom:729.959867pt;}
.ye_c00167{bottom:748.519867pt;}
.yd_c00167{bottom:766.427200pt;}
.yc_c00167{bottom:783.390400pt;}
.yb_c00167{bottom:800.353600pt;}
.ya_c00167{bottom:817.000000pt;}
.y9_c00167{bottom:834.280000pt;}
.y8_c00167{bottom:866.599867pt;}
.y7_c00167{bottom:898.280000pt;}
.y6_c00167{bottom:962.280000pt;}
.y2_c00167{bottom:1035.880000pt;}
.h4_c00167{height:18.560000pt;}
.h8_c00167{height:57.459375pt;}
.h3_c00167{height:62.812500pt;}
.h7_c00167{height:64.500000pt;}
.h5_c00167{height:65.781915pt;}
.h6_c00167{height:69.660000pt;}
.h9_c00167{height:74.820000pt;}
.h2_c00167{height:1099.880000pt;}
.h0_c00167{height:1122.520000pt;}
.h1_c00167{height:1122.666667pt;}
.w3_c00167{width:24.000000pt;}
.w2_c00167{width:771.080000pt;}
.w0_c00167{width:793.720000pt;}
.w1_c00167{width:794.000000pt;}
.x0_c00167{left:0.000000pt;}
.x1_c00167{left:11.320000pt;}
.x3_c00167{left:84.805600pt;}
.x5_c00167{left:104.736267pt;}
.xa_c00167{left:132.800133pt;}
.x6_c00167{left:354.542667pt;}
.x4_c00167{left:385.080000pt;}
.x7_c00167{left:450.245067pt;}
.x9_c00167{left:526.017867pt;}
.x8_c00167{left:686.534667pt;}
.x2_c00167{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00168{font-family:ff1_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:ff2_c00168;src:url('chunks/assets/font_ea3e41bc74639437f8b5dcd7.woff2')format("woff");}.ff2_c00168{font-family:ff2_c00168;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00168;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00168{font-family:ff3_c00168;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00168;src:url('chunks/assets/font_2adc75a15d0d797ef2885215.woff2')format("woff");}.ff4_c00168{font-family:ff4_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:ff5_c00168;src:url('chunks/assets/font_7597a3baddaf92d46af1253b.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_cd5447ffbb02c72d3cf762e6.woff2')format("woff");}.ff6_c00168{font-family:ff6_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:ff7_c00168;src:url('chunks/assets/font_8d37e21df69d76e580b5a9cd.woff2')format("woff");}.ff7_c00168{font-family:ff7_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:ff8_c00168;src:url('chunks/assets/font_932173e77b12b4bd78e11a70.woff2')format("woff");}.ff8_c00168{font-family:ff8_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:ff9_c00168;src:url('chunks/assets/font_067c5d89c5e33a190ec2073d.woff2')format("woff");}.ff9_c00168{font-family:ff9_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:ffa_c00168;src:url('chunks/assets/font_26e4b950a61b0425b2938025.woff2')format("woff");}.ffa_c00168{font-family:ffa_c00168;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00168;src:url('chunks/assets/font_b357216a089a8b1de61e12b9.woff2')format("woff");}.ffb_c00168{font-family:ffb_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:ffc_c00168;src:url('chunks/assets/font_2776301b728169b52c3b8ff0.woff2')format("woff");}.ffc_c00168{font-family:ffc_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:ffd_c00168;src:url('chunks/assets/font_cbd00351dc270eb4620fb245.woff2')format("woff");}.ffd_c00168{font-family:ffd_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:ffe_c00168;src:url('chunks/assets/font_7d1125980d39fe3f6944d4ba.woff2')format("woff");}.ffe_c00168{font-family:ffe_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:fff_c00168;src:url('chunks/assets/font_0d8427678fec5459cd0356a9.woff2')format("woff");}.fff_c00168{font-family:fff_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:ff10_c00168;src:url('chunks/assets/font_2a4e5b030391172a99e3d552.woff2')format("woff");}.ff10_c00168{font-family:ff10_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:ff11_c00168;src:url('chunks/assets/font_09629de9dac6616b9dc27d88.woff2')format("woff");}.ff11_c00168{font-family:ff11_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:ff12_c00168;src:url('chunks/assets/font_ad31f918e30e06959ff9e922.woff2')format("woff");}.ff12_c00168{font-family:ff12_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:ff13_c00168;src:url('chunks/assets/font_9aadcab35150ecf67a736a84.woff2')format("woff");}.ff13_c00168{font-family:ff13_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:ff14_c00168;src:url('chunks/assets/font_39d88534b825b9e3fbf5c853.woff2')format("woff");}.ff14_c00168{font-family:ff14_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:ff15_c00168;src:url('chunks/assets/font_a5ca6bd0d0325f9e260d3556.woff2')format("woff");}.ff15_c00168{font-family:ff15_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:ff16_c00168;src:url('chunks/assets/font_70466bac300c9f34090c6e12.woff2')format("woff");}.ff16_c00168{font-family:ff16_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:ff17_c00168;src:url('chunks/assets/font_932173e77b12b4bd78e11a70.woff2')format("woff");}.ff17_c00168{font-family:ff17_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:ff18_c00168;src:url('chunks/assets/font_e7a6178ddc8d481e3b650c29.woff2')format("woff");}.ff18_c00168{font-family:ff18_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:ff19_c00168;src:url('chunks/assets/font_0fb417be4741cfebc0eecd67.woff2')format("woff");}.ff19_c00168{font-family:ff19_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:ff1a_c00168;src:url('chunks/assets/font_4727ff47f1b3874a450e8fa2.woff2')format("woff");}.ff1a_c00168{font-family:ff1a_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:ff1b_c00168;src:url('chunks/assets/font_6ab2963dd65f804f2bfcef09.woff2')format("woff");}.ff1b_c00168{font-family:ff1b_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:ff1c_c00168;src:url('chunks/assets/font_cfe7ca1afe7f277348ab0c61.woff2')format("woff");}.ff1c_c00168{font-family:ff1c_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:ff1d_c00168;src:url('chunks/assets/font_1c1742f421e691787f98208b.woff2')format("woff");}.ff1d_c00168{font-family:ff1d_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:ff1e_c00168;src:url('chunks/assets/font_5aa7536b31a575503dc8adc0.woff2')format("woff");}.ff1e_c00168{font-family:ff1e_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:ff1f_c00168;src:url('chunks/assets/font_7af47dc46311c578f52df07c.woff2')format("woff");}.ff1f_c00168{font-family:ff1f_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:ff20_c00168;src:url('chunks/assets/font_3e9b74cd2ad7657c506a32ff.woff2')format("woff");}.ff20_c00168{font-family:ff20_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:ff21_c00168;src:url('chunks/assets/font_6025486a2290d696cc9da0da.woff2')format("woff");}.ff21_c00168{font-family:ff21_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:ff22_c00168;src:url('chunks/assets/font_c869088b7e24fc2648d1e9f1.woff2')format("woff");}.ff22_c00168{font-family:ff22_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:ff23_c00168;src:url('chunks/assets/font_1999bc623e09c591ac2fb43c.woff2')format("woff");}.ff23_c00168{font-family:ff23_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:ff24_c00168;src:url('chunks/assets/font_c13eb0c6c6054f6cd31355c9.woff2')format("woff");}.ff24_c00168{font-family:ff24_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:ff25_c00168;src:url('chunks/assets/font_578af2146e7043ad789879fc.woff2')format("woff");}.ff25_c00168{font-family:ff25_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:ff26_c00168;src:url('chunks/assets/font_14b2b43b529150aaac749d31.woff2')format("woff");}.ff26_c00168{font-family:ff26_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:ff27_c00168;src:url('chunks/assets/font_ed6c4e24eac026838f6516a9.woff2')format("woff");}.ff27_c00168{font-family:ff27_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:ff28_c00168;src:url('chunks/assets/font_1f90e5980802e36eaf35566d.woff2')format("woff");}.ff28_c00168{font-family:ff28_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:ff29_c00168;src:url('chunks/assets/font_5c0ee7b7e77b3b76cf545b17.woff2')format("woff");}.ff29_c00168{font-family:ff29_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:ff2a_c00168;src:url('chunks/assets/font_e8c45e0d54752d898d659366.woff2')format("woff");}.ff2a_c00168{font-family:ff2a_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:ff2b_c00168;src:url('chunks/assets/font_6468d6b2b14f8820fe70b03c.woff2')format("woff");}.ff2b_c00168{font-family:ff2b_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:ff2c_c00168;src:url('chunks/assets/font_4a8377fdd2a60b936e8f9c94.woff2')format("woff");}.ff2c_c00168{font-family:ff2c_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:ff2d_c00168;src:url('chunks/assets/font_c88b0fa90fe4dde210a57562.woff2')format("woff");}.ff2d_c00168{font-family:ff2d_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:ff2e_c00168;src:url('chunks/assets/font_4b2de281955de24296b32919.woff2')format("woff");}.ff2e_c00168{font-family:ff2e_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:ff2f_c00168;src:url('chunks/assets/font_7777309e2681d49d09210fec.woff2')format("woff");}.ff2f_c00168{font-family:ff2f_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:ff30_c00168;src:url('chunks/assets/font_7250bb33a1cfa502bc6aa037.woff2')format("woff");}.ff30_c00168{font-family:ff30_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:ff31_c00168;src:url('chunks/assets/font_044388f1401b63631aebff76.woff2')format("woff");}.ff31_c00168{font-family:ff31_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:ff32_c00168;src:url('chunks/assets/font_96c31ed5314971480d5d4279.woff2')format("woff");}.ff32_c00168{font-family:ff32_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:ff33_c00168;src:url('chunks/assets/font_e5b7f22a7955b01544ffbc35.woff2')format("woff");}.ff33_c00168{font-family:ff33_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:ff34_c00168;src:url('chunks/assets/font_6b8d4605bc688d702ab9612c.woff2')format("woff");}.ff34_c00168{font-family:ff34_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:ff35_c00168;src:url('chunks/assets/font_c1dca2d9c80a874626af3ddd.woff2')format("woff");}.ff35_c00168{font-family:ff35_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:ff36_c00168;src:url('chunks/assets/font_a300653509fb89983d880a3e.woff2')format("woff");}.ff36_c00168{font-family:ff36_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:ff37_c00168;src:url('chunks/assets/font_e02696ac64dc3c0188209b1c.woff2')format("woff");}.ff37_c00168{font-family:ff37_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:ff38_c00168;src:url('chunks/assets/font_13310a7a29efd0b8110abc76.woff2')format("woff");}.ff38_c00168{font-family:ff38_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:ff39_c00168;src:url('chunks/assets/font_f57c0653121fdce47ee98747.woff2')format("woff");}.ff39_c00168{font-family:ff39_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:ff3a_c00168;src:url('chunks/assets/font_f87cad2f508bfd0dee251118.woff2')format("woff");}.ff3a_c00168{font-family:ff3a_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:ff3b_c00168;src:url('chunks/assets/font_2711bbcb32bda19bc28534d4.woff2')format("woff");}.ff3b_c00168{font-family:ff3b_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:ff3c_c00168;src:url('chunks/assets/font_5251e835268e2203af1276a9.woff2')format("woff");}.ff3c_c00168{font-family:ff3c_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:ff3d_c00168;src:url('chunks/assets/font_f085cab283c504c9930bcfd7.woff2')format("woff");}.ff3d_c00168{font-family:ff3d_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:ff3e_c00168;src:url('chunks/assets/font_cf49d31aa8f2cd5590a4446c.woff2')format("woff");}.ff3e_c00168{font-family:ff3e_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:ff3f_c00168;src:url('chunks/assets/font_a9c4650d3b0dbde0cd30eefd.woff2')format("woff");}.ff3f_c00168{font-family:ff3f_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:ff40_c00168;src:url('chunks/assets/font_e4ee39c936884580004ae597.woff2')format("woff");}.ff40_c00168{font-family:ff40_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:ff41_c00168;src:url('chunks/assets/font_a87e91da0687edc92c41c099.woff2')format("woff");}.ff41_c00168{font-family:ff41_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;}
.m0_c00168{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00168{vertical-align:0.000000px;}
.ls2_c00168{letter-spacing:0.000000px;}
.ls0_c00168{letter-spacing:0.064800px;}
.ls1_c00168{letter-spacing:0.072000px;}
.sc__c00168{text-shadow:none;}
.sc0_c00168{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00168{-webkit-text-stroke:0px transparent;}
.sc0_c00168{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00168{word-spacing:-0.072000px;}
.ws1_c00168{word-spacing:0.000000px;}
._3_c00168{width:1.368000px;}
._1_c00168{width:3.391200px;}
._9_c00168{width:4.471200px;}
._0_c00168{width:5.529600px;}
._7_c00168{width:7.315200px;}
._8_c00168{width:8.805600px;}
._2_c00168{width:10.058400px;}
._4_c00168{width:12.384000px;}
._a_c00168{width:15.177600px;}
._5_c00168{width:16.560000px;}
._6_c00168{width:23.270400px;}
.fc1_c00168{color:transparent;}
.fc0_c00168{color:rgb(0,0,0);}
.fs1_c00168{font-size:64.800000px;}
.fs0_c00168{font-size:72.000000px;}
.y0_c00168{bottom:0.000000px;}
.y5_c00168{bottom:5.040000px;}
.y1_c00168{bottom:12.735000px;}
.y3_c00168{bottom:45.045000px;}
.y4_c00168{bottom:52.740000px;}
.y21_c00168{bottom:110.565000px;}
.y20_c00168{bottom:146.565000px;}
.y1f_c00168{bottom:182.565000px;}
.y1e_c00168{bottom:218.565000px;}
.y1d_c00168{bottom:254.565000px;}
.y1c_c00168{bottom:290.565000px;}
.y1b_c00168{bottom:326.565000px;}
.y1a_c00168{bottom:362.565000px;}
.y19_c00168{bottom:398.565000px;}
.y18_c00168{bottom:434.565000px;}
.y17_c00168{bottom:470.565000px;}
.y16_c00168{bottom:506.565000px;}
.y15_c00168{bottom:542.565000px;}
.y14_c00168{bottom:578.565000px;}
.y13_c00168{bottom:614.565000px;}
.y12_c00168{bottom:650.565000px;}
.y11_c00168{bottom:686.565000px;}
.y10_c00168{bottom:722.565000px;}
.yf_c00168{bottom:758.565000px;}
.ye_c00168{bottom:794.565000px;}
.yd_c00168{bottom:830.565000px;}
.yc_c00168{bottom:866.565000px;}
.yb_c00168{bottom:902.565000px;}
.ya_c00168{bottom:938.565000px;}
.y9_c00168{bottom:974.565000px;}
.y8_c00168{bottom:1010.565000px;}
.y7_c00168{bottom:1046.565000px;}
.y6_c00168{bottom:1082.565000px;}
.y2_c00168{bottom:1165.365000px;}
.h4_c00168{height:20.880000px;}
.h3_c00168{height:70.664062px;}
.h5_c00168{height:74.004654px;}
.h2_c00168{height:1237.365000px;}
.h0_c00168{height:1262.835000px;}
.h1_c00168{height:1263.000000px;}
.w3_c00168{width:27.000000px;}
.w2_c00168{width:867.465000px;}
.w0_c00168{width:892.935000px;}
.w1_c00168{width:893.250000px;}
.x0_c00168{left:0.000000px;}
.x1_c00168{left:12.735000px;}
.x3_c00168{left:95.406300px;}
.x5_c00168{left:149.382150px;}
.x4_c00168{left:433.215000px;}
.x2_c00168{left:878.550300px;}
@media print{
.v0_c00168{vertical-align:0.000000pt;}
.ls2_c00168{letter-spacing:0.000000pt;}
.ls0_c00168{letter-spacing:0.057600pt;}
.ls1_c00168{letter-spacing:0.064000pt;}
.ws0_c00168{word-spacing:-0.064000pt;}
.ws1_c00168{word-spacing:0.000000pt;}
._3_c00168{width:1.216000pt;}
._1_c00168{width:3.014400pt;}
._9_c00168{width:3.974400pt;}
._0_c00168{width:4.915200pt;}
._7_c00168{width:6.502400pt;}
._8_c00168{width:7.827200pt;}
._2_c00168{width:8.940800pt;}
._4_c00168{width:11.008000pt;}
._a_c00168{width:13.491200pt;}
._5_c00168{width:14.720000pt;}
._6_c00168{width:20.684800pt;}
.fs1_c00168{font-size:57.600000pt;}
.fs0_c00168{font-size:64.000000pt;}
.y0_c00168{bottom:0.000000pt;}
.y5_c00168{bottom:4.480000pt;}
.y1_c00168{bottom:11.320000pt;}
.y3_c00168{bottom:40.040000pt;}
.y4_c00168{bottom:46.880000pt;}
.y21_c00168{bottom:98.280000pt;}
.y20_c00168{bottom:130.280000pt;}
.y1f_c00168{bottom:162.280000pt;}
.y1e_c00168{bottom:194.280000pt;}
.y1d_c00168{bottom:226.280000pt;}
.y1c_c00168{bottom:258.280000pt;}
.y1b_c00168{bottom:290.280000pt;}
.y1a_c00168{bottom:322.280000pt;}
.y19_c00168{bottom:354.280000pt;}
.y18_c00168{bottom:386.280000pt;}
.y17_c00168{bottom:418.280000pt;}
.y16_c00168{bottom:450.280000pt;}
.y15_c00168{bottom:482.280000pt;}
.y14_c00168{bottom:514.280000pt;}
.y13_c00168{bottom:546.280000pt;}
.y12_c00168{bottom:578.280000pt;}
.y11_c00168{bottom:610.280000pt;}
.y10_c00168{bottom:642.280000pt;}
.yf_c00168{bottom:674.280000pt;}
.ye_c00168{bottom:706.280000pt;}
.yd_c00168{bottom:738.280000pt;}
.yc_c00168{bottom:770.280000pt;}
.yb_c00168{bottom:802.280000pt;}
.ya_c00168{bottom:834.280000pt;}
.y9_c00168{bottom:866.280000pt;}
.y8_c00168{bottom:898.280000pt;}
.y7_c00168{bottom:930.280000pt;}
.y6_c00168{bottom:962.280000pt;}
.y2_c00168{bottom:1035.880000pt;}
.h4_c00168{height:18.560000pt;}
.h3_c00168{height:62.812500pt;}
.h5_c00168{height:65.781915pt;}
.h2_c00168{height:1099.880000pt;}
.h0_c00168{height:1122.520000pt;}
.h1_c00168{height:1122.666667pt;}
.w3_c00168{width:24.000000pt;}
.w2_c00168{width:771.080000pt;}
.w0_c00168{width:793.720000pt;}
.w1_c00168{width:794.000000pt;}
.x0_c00168{left:0.000000pt;}
.x1_c00168{left:11.320000pt;}
.x3_c00168{left:84.805600pt;}
.x5_c00168{left:132.784133pt;}
.x4_c00168{left:385.080000pt;}
.x2_c00168{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1b7052e85a554f363a515135.woff2')format("woff");}.ff1_c00169{font-family:ff1_c00169;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00169;src:url('chunks/assets/font_467af7a3af34f27565a4b806.woff2')format("woff");}.ff2_c00169{font-family:ff2_c00169;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00169;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00169{font-family:ff3_c00169;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00169;src:url('chunks/assets/font_ed80b2806db657c74831f21b.woff2')format("woff");}.ff4_c00169{font-family:ff4_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00169;src:url('chunks/assets/font_81a434630b3d5318a7b52b02.woff2')format("woff");}.ff5_c00169{font-family:ff5_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00169;src:url('chunks/assets/font_ebfae5e9027284703b169083.woff2')format("woff");}.ff6_c00169{font-family:ff6_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00169;src:url('chunks/assets/font_4ca7bc511e239231119a9b43.woff2')format("woff");}.ff7_c00169{font-family:ff7_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00169;src:url('chunks/assets/font_1b7052e85a554f363a515135.woff2')format("woff");}.ff8_c00169{font-family:ff8_c00169;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00169;src:url('chunks/assets/font_9212fbf1b8afdab239b67a4e.woff2')format("woff");}.ff9_c00169{font-family:ff9_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00169;src:url('chunks/assets/font_ec97b28954c64845997ecc0c.woff2')format("woff");}.ffa_c00169{font-family:ffa_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00169;src:url('chunks/assets/font_3390cf6fc5bf7dfb2f821834.woff2')format("woff");}.ffb_c00169{font-family:ffb_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00169;src:url('chunks/assets/font_ba433689c624eed6904e025b.woff2')format("woff");}.ffc_c00169{font-family:ffc_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00169;src:url('chunks/assets/font_e971d1f9e30c55d06eab99d3.woff2')format("woff");}.ffd_c00169{font-family:ffd_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00169;src:url('chunks/assets/font_cef67588cbf7e7c9e0a459bc.woff2')format("woff");}.ffe_c00169{font-family:ffe_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00169;src:url('chunks/assets/font_6b21a1113f23d3edcf598991.woff2')format("woff");}.fff_c00169{font-family:fff_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00169;src:url('chunks/assets/font_0bca4c4196ba8274c81e410b.woff2')format("woff");}.ff10_c00169{font-family:ff10_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00169;src:url('chunks/assets/font_3c62ce235ce7b561e18e8ef4.woff2')format("woff");}.ff11_c00169{font-family:ff11_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00169;src:url('chunks/assets/font_ad775b486c5a189e5336091e.woff2')format("woff");}.ff12_c00169{font-family:ff12_c00169;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:ff13_c00169;src:url('chunks/assets/font_1f8e6d24c15aff5f80fbed6f.woff2')format("woff");}.ff13_c00169{font-family:ff13_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00169;src:url('chunks/assets/font_4ef65065ee93675551246fd6.woff2')format("woff");}.ff14_c00169{font-family:ff14_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00169;src:url('chunks/assets/font_6a1709a67a8c811b1e092656.woff2')format("woff");}.ff15_c00169{font-family:ff15_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00169;src:url('chunks/assets/font_849b84daa49dd326d87116d7.woff2')format("woff");}.ff16_c00169{font-family:ff16_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:ff17_c00169;src:url('chunks/assets/font_c3da7c1129057010dcf90849.woff2')format("woff");}.ff17_c00169{font-family:ff17_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00169;src:url('chunks/assets/font_429454195f47d89736f7da4e.woff2')format("woff");}.ff18_c00169{font-family:ff18_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00169;src:url('chunks/assets/font_ee0a48f3304db5eb3794c4a1.woff2')format("woff");}.ff19_c00169{font-family:ff19_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00169;src:url('chunks/assets/font_3b08667dcade799d6be86188.woff2')format("woff");}.ff1a_c00169{font-family:ff1a_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00169;src:url('chunks/assets/font_018c4518ef3b4536edc8884b.woff2')format("woff");}.ff1b_c00169{font-family:ff1b_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00169;src:url('chunks/assets/font_3567573f96e7c3208524be71.woff2')format("woff");}.ff1c_c00169{font-family:ff1c_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00169;src:url('chunks/assets/font_12e91e2832a740b71b443253.woff2')format("woff");}.ff1d_c00169{font-family:ff1d_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:ff1e_c00169;src:url('chunks/assets/font_658f083f8294f8f58d9377fc.woff2')format("woff");}.ff1e_c00169{font-family:ff1e_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:ff1f_c00169;src:url('chunks/assets/font_91ed4a94fc6e97dcaa1ce904.woff2')format("woff");}.ff1f_c00169{font-family:ff1f_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:ff20_c00169;src:url('chunks/assets/font_a7d828c6f73266e2e0a91e38.woff2')format("woff");}.ff20_c00169{font-family:ff20_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:ff21_c00169;src:url('chunks/assets/font_9fa27e15966a9b63967ba0b3.woff2')format("woff");}.ff21_c00169{font-family:ff21_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:ff22_c00169;src:url('chunks/assets/font_c2e82e2b2a598fced240f735.woff2')format("woff");}.ff22_c00169{font-family:ff22_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00169;src:url('chunks/assets/font_416e6e65c5271e689492636d.woff2')format("woff");}.ff23_c00169{font-family:ff23_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00169;src:url('chunks/assets/font_b374005f1a0a26a59bbdbaaa.woff2')format("woff");}.ff24_c00169{font-family:ff24_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00169;src:url('chunks/assets/font_07b066f189fdde1e3117fc80.woff2')format("woff");}.ff25_c00169{font-family:ff25_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:ff26_c00169;src:url('chunks/assets/font_27c717022acf421607a71169.woff2')format("woff");}.ff26_c00169{font-family:ff26_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00169;src:url('chunks/assets/font_8921c8bb335108ec9d801e48.woff2')format("woff");}.ff27_c00169{font-family:ff27_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00169;src:url('chunks/assets/font_570d8871c7684c46b9b3bddd.woff2')format("woff");}.ff28_c00169{font-family:ff28_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00169;src:url('chunks/assets/font_c19afcc96f760ecd2997cfe6.woff2')format("woff");}.ff29_c00169{font-family:ff29_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00169;src:url('chunks/assets/font_0b0024b4ebf6e8a12150187b.woff2')format("woff");}.ff2a_c00169{font-family:ff2a_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00169;src:url('chunks/assets/font_efdc290923e8fc43d9a65015.woff2')format("woff");}.ff2b_c00169{font-family:ff2b_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00169;src:url('chunks/assets/font_deeab4ecf76117c18dc31192.woff2')format("woff");}.ff2c_c00169{font-family:ff2c_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00169;src:url('chunks/assets/font_f06aab8603537e7908f2a2c2.woff2')format("woff");}.ff2d_c00169{font-family:ff2d_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00169;src:url('chunks/assets/font_e69b8e584e0357f0feae07f3.woff2')format("woff");}.ff2e_c00169{font-family:ff2e_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00169;src:url('chunks/assets/font_b2daf6f3fb10278932e0807f.woff2')format("woff");}.ff2f_c00169{font-family:ff2f_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00169;src:url('chunks/assets/font_46fd54266e911c48bba04d7b.woff2')format("woff");}.ff30_c00169{font-family:ff30_c00169;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00169{letter-spacing:0.014400px;}
.ls1_c00169{letter-spacing:0.167040px;}
.ls0_c00169{letter-spacing:0.242208px;}
.ls4_c00169{letter-spacing:0.283968px;}
.ls2_c00169{letter-spacing:0.317376px;}
.ls5_c00169{letter-spacing:0.442656px;}
.sc__c00169{text-shadow:none;}
.sc0_c00169{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00169{-webkit-text-stroke:0px transparent;}
.sc0_c00169{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00169{word-spacing:-0.400896px;}
.ws0_c00169{word-spacing:-0.072000px;}
.ws2_c00169{word-spacing:0.000000px;}
._9_c00169{margin-left:-1.077408px;}
._7_c00169{width:1.065600px;}
._5_c00169{width:2.534400px;}
._2_c00169{width:3.578400px;}
._6_c00169{width:4.716000px;}
._1_c00169{width:6.487200px;}
._4_c00169{width:8.510400px;}
._8_c00169{width:9.619200px;}
._0_c00169{width:11.296800px;}
._a_c00169{width:12.441600px;}
._b_c00169{width:15.912000px;}
._3_c00169{width:19.209600px;}
.fc2_c00169{color:transparent;}
.fc1_c00169{color:rgb(127,127,127);}
.fc0_c00169{color:rgb(0,0,0);}
.fs1_c00169{font-size:64.800000px;}
.fs0_c00169{font-size:72.000000px;}
.fs2_c00169{font-size:83.520000px;}
.y0_c00169{bottom:0.000000px;}
.y5_c00169{bottom:5.040000px;}
.y1_c00169{bottom:12.735000px;}
.y3_c00169{bottom:45.045000px;}
.y4_c00169{bottom:52.740000px;}
.y21_c00169{bottom:110.565000px;}
.y20_c00169{bottom:146.565000px;}
.y1f_c00169{bottom:182.565000px;}
.y1e_c00169{bottom:218.565000px;}
.y1d_c00169{bottom:254.565000px;}
.y1c_c00169{bottom:290.565000px;}
.y1b_c00169{bottom:326.565000px;}
.y1a_c00169{bottom:362.565000px;}
.y19_c00169{bottom:398.565000px;}
.y18_c00169{bottom:434.565000px;}
.y17_c00169{bottom:471.285000px;}
.y16_c00169{bottom:506.565000px;}
.y15_c00169{bottom:542.565000px;}
.y14_c00169{bottom:578.565000px;}
.y13_c00169{bottom:614.565000px;}
.y12_c00169{bottom:650.565000px;}
.y11_c00169{bottom:686.565000px;}
.y10_c00169{bottom:722.565000px;}
.yf_c00169{bottom:758.565000px;}
.ye_c00169{bottom:794.565000px;}
.yd_c00169{bottom:830.565000px;}
.yc_c00169{bottom:866.565000px;}
.yb_c00169{bottom:902.565000px;}
.ya_c00169{bottom:938.565000px;}
.y9_c00169{bottom:974.565000px;}
.y8_c00169{bottom:1010.565000px;}
.y7_c00169{bottom:1046.565000px;}
.y6_c00169{bottom:1082.565000px;}
.y2_c00169{bottom:1165.365000px;}
.h4_c00169{height:20.880000px;}
.h5_c00169{height:70.664062px;}
.h3_c00169{height:74.004654px;}
.h6_c00169{height:81.929531px;}
.h2_c00169{height:1237.365000px;}
.h0_c00169{height:1262.835000px;}
.h1_c00169{height:1263.000000px;}
.w3_c00169{width:27.000000px;}
.w2_c00169{width:867.465000px;}
.w0_c00169{width:892.935000px;}
.w1_c00169{width:893.250000px;}
.x0_c00169{left:0.000000px;}
.x1_c00169{left:12.735000px;}
.x3_c00169{left:95.406300px;}
.x5_c00169{left:149.400150px;}
.x4_c00169{left:433.215000px;}
.x2_c00169{left:878.550300px;}
@media print{
.v0_c00169{vertical-align:0.000000pt;}
.ls3_c00169{letter-spacing:0.000000pt;}
.ls6_c00169{letter-spacing:0.012800pt;}
.ls1_c00169{letter-spacing:0.148480pt;}
.ls0_c00169{letter-spacing:0.215296pt;}
.ls4_c00169{letter-spacing:0.252416pt;}
.ls2_c00169{letter-spacing:0.282112pt;}
.ls5_c00169{letter-spacing:0.393472pt;}
.ws1_c00169{word-spacing:-0.356352pt;}
.ws0_c00169{word-spacing:-0.064000pt;}
.ws2_c00169{word-spacing:0.000000pt;}
._9_c00169{margin-left:-0.957696pt;}
._7_c00169{width:0.947200pt;}
._5_c00169{width:2.252800pt;}
._2_c00169{width:3.180800pt;}
._6_c00169{width:4.192000pt;}
._1_c00169{width:5.766400pt;}
._4_c00169{width:7.564800pt;}
._8_c00169{width:8.550400pt;}
._0_c00169{width:10.041600pt;}
._a_c00169{width:11.059200pt;}
._b_c00169{width:14.144000pt;}
._3_c00169{width:17.075200pt;}
.fs1_c00169{font-size:57.600000pt;}
.fs0_c00169{font-size:64.000000pt;}
.fs2_c00169{font-size:74.240000pt;}
.y0_c00169{bottom:0.000000pt;}
.y5_c00169{bottom:4.480000pt;}
.y1_c00169{bottom:11.320000pt;}
.y3_c00169{bottom:40.040000pt;}
.y4_c00169{bottom:46.880000pt;}
.y21_c00169{bottom:98.280000pt;}
.y20_c00169{bottom:130.280000pt;}
.y1f_c00169{bottom:162.280000pt;}
.y1e_c00169{bottom:194.280000pt;}
.y1d_c00169{bottom:226.280000pt;}
.y1c_c00169{bottom:258.280000pt;}
.y1b_c00169{bottom:290.280000pt;}
.y1a_c00169{bottom:322.280000pt;}
.y19_c00169{bottom:354.280000pt;}
.y18_c00169{bottom:386.280000pt;}
.y17_c00169{bottom:418.920000pt;}
.y16_c00169{bottom:450.280000pt;}
.y15_c00169{bottom:482.280000pt;}
.y14_c00169{bottom:514.280000pt;}
.y13_c00169{bottom:546.280000pt;}
.y12_c00169{bottom:578.280000pt;}
.y11_c00169{bottom:610.280000pt;}
.y10_c00169{bottom:642.280000pt;}
.yf_c00169{bottom:674.280000pt;}
.ye_c00169{bottom:706.280000pt;}
.yd_c00169{bottom:738.280000pt;}
.yc_c00169{bottom:770.280000pt;}
.yb_c00169{bottom:802.280000pt;}
.ya_c00169{bottom:834.280000pt;}
.y9_c00169{bottom:866.280000pt;}
.y8_c00169{bottom:898.280000pt;}
.y7_c00169{bottom:930.280000pt;}
.y6_c00169{bottom:962.280000pt;}
.y2_c00169{bottom:1035.880000pt;}
.h4_c00169{height:18.560000pt;}
.h5_c00169{height:62.812500pt;}
.h3_c00169{height:65.781915pt;}
.h6_c00169{height:72.826250pt;}
.h2_c00169{height:1099.880000pt;}
.h0_c00169{height:1122.520000pt;}
.h1_c00169{height:1122.666667pt;}
.w3_c00169{width:24.000000pt;}
.w2_c00169{width:771.080000pt;}
.w0_c00169{width:793.720000pt;}
.w1_c00169{width:794.000000pt;}
.x0_c00169{left:0.000000pt;}
.x1_c00169{left:11.320000pt;}
.x3_c00169{left:84.805600pt;}
.x5_c00169{left:132.800133pt;}
.x4_c00169{left:385.080000pt;}
.x2_c00169{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f7ea10eb85be061bf00295df.woff2')format("woff");}.ff1_c00170{font-family:ff1_c00170;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00170;src:url('chunks/assets/font_20485cec9bb7b2cbf8d1c0d8.woff2')format("woff");}.ff2_c00170{font-family:ff2_c00170;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00170;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00170{font-family:ff3_c00170;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00170;src:url('chunks/assets/font_aea320a53e465ef1cd6d7ac4.woff2')format("woff");}.ff4_c00170{font-family:ff4_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00170;src:url('chunks/assets/font_92b8506ac9e7893265c710d1.woff2')format("woff");}.ff5_c00170{font-family:ff5_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00170;src:url('chunks/assets/font_f5d624e13a207756157a76e6.woff2')format("woff");}.ff6_c00170{font-family:ff6_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00170;src:url('chunks/assets/font_53a438761a25abf4436eea44.woff2')format("woff");}.ff7_c00170{font-family:ff7_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00170;src:url('chunks/assets/font_ccda43e41072f6200a925d86.woff2')format("woff");}.ff8_c00170{font-family:ff8_c00170;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00170;src:url('chunks/assets/font_aedfa894d687014808695efe.woff2')format("woff");}.ff9_c00170{font-family:ff9_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:ffa_c00170;src:url('chunks/assets/font_6946eeb92270aa06312a37d5.woff2')format("woff");}.ffa_c00170{font-family:ffa_c00170;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00170;src:url('chunks/assets/font_fe5503ef5e976256467c60b5.woff2')format("woff");}.ffb_c00170{font-family:ffb_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:ffc_c00170;src:url('chunks/assets/font_8b6311818c2f91955dc70ce8.woff2')format("woff");}.ffc_c00170{font-family:ffc_c00170;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00170;src:url('chunks/assets/font_790993bfa3fabe4751708f64.woff2')format("woff");}.ffd_c00170{font-family:ffd_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00170;src:url('chunks/assets/font_fa88fa8c1ff45e1352c6573d.woff2')format("woff");}.ffe_c00170{font-family:ffe_c00170;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:fff_c00170;src:url('chunks/assets/font_284e70ebfac5f39a35e0ab77.woff2')format("woff");}.fff_c00170{font-family:fff_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00170;src:url('chunks/assets/font_aa0bd6f3a5ef3dcc864c0ba9.woff2')format("woff");}.ff10_c00170{font-family:ff10_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00170;src:url('chunks/assets/font_dd3c245947c6e23855892b81.woff2')format("woff");}.ff11_c00170{font-family:ff11_c00170;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:ff12_c00170;src:url('chunks/assets/font_57881d7e48bdef42101b63e2.woff2')format("woff");}.ff12_c00170{font-family:ff12_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00170;src:url('chunks/assets/font_f10192bc3554ccd838c90e03.woff2')format("woff");}.ff13_c00170{font-family:ff13_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00170;src:url('chunks/assets/font_31d865958ae51737f98337ee.woff2')format("woff");}.ff14_c00170{font-family:ff14_c00170;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00170;src:url('chunks/assets/font_27f63f09773212d9f956139e.woff2')format("woff");}.ff15_c00170{font-family:ff15_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00170;src:url('chunks/assets/font_2a8cfabb56ae937a9c31b259.woff2')format("woff");}.ff16_c00170{font-family:ff16_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00170;src:url('chunks/assets/font_3a9b848034af2ba9b80b8681.woff2')format("woff");}.ff17_c00170{font-family:ff17_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00170;src:url('chunks/assets/font_168b1f2c6d49d6ba7e4bbff5.woff2')format("woff");}.ff18_c00170{font-family:ff18_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00170;src:url('chunks/assets/font_1af80822b9fd3c341afc6867.woff2')format("woff");}.ff19_c00170{font-family:ff19_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00170;src:url('chunks/assets/font_0070628e0813efb63cdbe7bd.woff2')format("woff");}.ff1a_c00170{font-family:ff1a_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00170;src:url('chunks/assets/font_10e7cdd8aeea3d6bbdef6d68.woff2')format("woff");}.ff1b_c00170{font-family:ff1b_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00170;src:url('chunks/assets/font_b8315466a93b618bcfc711f2.woff2')format("woff");}.ff1c_c00170{font-family:ff1c_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00170;src:url('chunks/assets/font_030a7b1656baec53f95f44bd.woff2')format("woff");}.ff1d_c00170{font-family:ff1d_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00170;src:url('chunks/assets/font_ace84252905a0abf8f98fb44.woff2')format("woff");}.ff1e_c00170{font-family:ff1e_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00170;src:url('chunks/assets/font_ec97b28954c64845997ecc0c.woff2')format("woff");}.ff1f_c00170{font-family:ff1f_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00170;src:url('chunks/assets/font_32bfdf1f89ffd8d25d8ab202.woff2')format("woff");}.ff20_c00170{font-family:ff20_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00170;src:url('chunks/assets/font_d54b71b1de8d418e8ff82048.woff2')format("woff");}.ff21_c00170{font-family:ff21_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00170;src:url('chunks/assets/font_cee239f715ae838b18b5aed6.woff2')format("woff");}.ff22_c00170{font-family:ff22_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00170;src:url('chunks/assets/font_86d947afc913d52d6d6a21dd.woff2')format("woff");}.ff23_c00170{font-family:ff23_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00170;src:url('chunks/assets/font_5ad827817fd9869076d16b29.woff2')format("woff");}.ff24_c00170{font-family:ff24_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00170;src:url('chunks/assets/font_05b774893b83e0c4ca70fad8.woff2')format("woff");}.ff25_c00170{font-family:ff25_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00170;src:url('chunks/assets/font_9bacc43e3415b27ae5d27a34.woff2')format("woff");}.ff26_c00170{font-family:ff26_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00170;src:url('chunks/assets/font_584c1a5624b6630657adaff4.woff2')format("woff");}.ff27_c00170{font-family:ff27_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00170;src:url('chunks/assets/font_0b68ca2f2230ea3b407ecf44.woff2')format("woff");}.ff28_c00170{font-family:ff28_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00170;src:url('chunks/assets/font_67204adb8a3fb35490558836.woff2')format("woff");}.ff29_c00170{font-family:ff29_c00170;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:ff2a_c00170;src:url('chunks/assets/font_0937fcdad3ea2332f254a3ac.woff2')format("woff");}.ff2a_c00170{font-family:ff2a_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00170;src:url('chunks/assets/font_f7b82fb3051c47557341aa0a.woff2')format("woff");}.ff2b_c00170{font-family:ff2b_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00170;src:url('chunks/assets/font_dd8c8af83a98552a127bc5a7.woff2')format("woff");}.ff2c_c00170{font-family:ff2c_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00170;src:url('chunks/assets/font_43db6abfa462ec5841e78b59.woff2')format("woff");}.ff2d_c00170{font-family:ff2d_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00170;src:url('chunks/assets/font_dad2e53479df85909b33346a.woff2')format("woff");}.ff2e_c00170{font-family:ff2e_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00170;src:url('chunks/assets/font_403d3a0c6ec6656352fede25.woff2')format("woff");}.ff2f_c00170{font-family:ff2f_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00170;src:url('chunks/assets/font_11faf35e7644299c3e2f44af.woff2')format("woff");}.ff30_c00170{font-family:ff30_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00170;src:url('chunks/assets/font_39576352690e7b34b1b9634f.woff2')format("woff");}.ff31_c00170{font-family:ff31_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00170;src:url('chunks/assets/font_28ee8008fcc3d91203c9728a.woff2')format("woff");}.ff32_c00170{font-family:ff32_c00170;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:ff33_c00170;src:url('chunks/assets/font_f6f2a01815c48aeb80bd5cce.woff2')format("woff");}.ff33_c00170{font-family:ff33_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00170;src:url('chunks/assets/font_cb5c75409962568eae715543.woff2')format("woff");}.ff34_c00170{font-family:ff34_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00170;src:url('chunks/assets/font_e62683774f62d8f6d40bab47.woff2')format("woff");}.ff35_c00170{font-family:ff35_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00170;src:url('chunks/assets/font_0778c47c74058d5726703d7e.woff2')format("woff");}.ff36_c00170{font-family:ff36_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00170;src:url('chunks/assets/font_bc47901230be27e3fdb370a4.woff2')format("woff");}.ff37_c00170{font-family:ff37_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:ff38_c00170;src:url('chunks/assets/font_0135f2c64f0609368ae2ab33.woff2')format("woff");}.ff38_c00170{font-family:ff38_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:ff39_c00170;src:url('chunks/assets/font_1625b6b8e884bae21bd2e0f4.woff2')format("woff");}.ff39_c00170{font-family:ff39_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00170;src:url('chunks/assets/font_803fa563fbeae4db44756841.woff2')format("woff");}.ff3a_c00170{font-family:ff3a_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00170;src:url('chunks/assets/font_2c104e288a69ad14f64cb888.woff2')format("woff");}.ff3b_c00170{font-family:ff3b_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00170;src:url('chunks/assets/font_34240f9b9472ebcc16634a58.woff2')format("woff");}.ff3c_c00170{font-family:ff3c_c00170;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00170{letter-spacing:-0.014400px;}
.ls1_c00170{letter-spacing:0.000000px;}
.ls0_c00170{letter-spacing:0.014400px;}
.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;}
}
.ws1_c00170{word-spacing:-0.086400px;}
.ws0_c00170{word-spacing:-0.072000px;}
.ws2_c00170{word-spacing:0.000000px;}
._0_c00170{width:1.080000px;}
._4_c00170{width:2.556000px;}
._6_c00170{width:4.075200px;}
._2_c00170{width:5.436000px;}
._7_c00170{width:6.818400px;}
._3_c00170{width:8.049600px;}
._5_c00170{width:11.656800px;}
._1_c00170{width:16.920000px;}
.fc1_c00170{color:transparent;}
.fc0_c00170{color:rgb(0,0,0);}
.fs1_c00170{font-size:64.800000px;}
.fs0_c00170{font-size:72.000000px;}
.y0_c00170{bottom:0.000000px;}
.y5_c00170{bottom:5.040000px;}
.y1_c00170{bottom:12.735000px;}
.y3_c00170{bottom:45.045000px;}
.y4_c00170{bottom:52.740000px;}
.y21_c00170{bottom:110.565000px;}
.y20_c00170{bottom:146.565000px;}
.y1f_c00170{bottom:182.565000px;}
.y1e_c00170{bottom:218.565000px;}
.y1d_c00170{bottom:254.565000px;}
.y1c_c00170{bottom:290.565000px;}
.y1b_c00170{bottom:326.565000px;}
.y1a_c00170{bottom:362.565000px;}
.y19_c00170{bottom:398.565000px;}
.y18_c00170{bottom:434.565000px;}
.y17_c00170{bottom:470.565000px;}
.y16_c00170{bottom:506.565000px;}
.y15_c00170{bottom:542.565000px;}
.y14_c00170{bottom:578.565000px;}
.y13_c00170{bottom:614.565000px;}
.y12_c00170{bottom:650.565000px;}
.y11_c00170{bottom:686.565000px;}
.y10_c00170{bottom:722.565000px;}
.yf_c00170{bottom:758.565000px;}
.ye_c00170{bottom:794.565000px;}
.yd_c00170{bottom:830.565000px;}
.yc_c00170{bottom:866.565000px;}
.yb_c00170{bottom:902.565000px;}
.ya_c00170{bottom:938.565000px;}
.y9_c00170{bottom:974.565000px;}
.y8_c00170{bottom:1010.565000px;}
.y7_c00170{bottom:1046.565000px;}
.y6_c00170{bottom:1082.565000px;}
.y2_c00170{bottom:1165.365000px;}
.h4_c00170{height:20.880000px;}
.h5_c00170{height:70.664062px;}
.h6_c00170{height:71.824219px;}
.h3_c00170{height:74.004654px;}
.h2_c00170{height:1237.365000px;}
.h0_c00170{height:1262.835000px;}
.h1_c00170{height:1263.000000px;}
.w3_c00170{width:27.000000px;}
.w2_c00170{width:867.465000px;}
.w0_c00170{width:892.935000px;}
.w1_c00170{width:893.250000px;}
.x0_c00170{left:0.000000px;}
.x1_c00170{left:12.735000px;}
.x3_c00170{left:95.406300px;}
.x5_c00170{left:149.400150px;}
.x4_c00170{left:433.215000px;}
.x2_c00170{left:878.550300px;}
@media print{
.v0_c00170{vertical-align:0.000000pt;}
.ls2_c00170{letter-spacing:-0.012800pt;}
.ls1_c00170{letter-spacing:0.000000pt;}
.ls0_c00170{letter-spacing:0.012800pt;}
.ws1_c00170{word-spacing:-0.076800pt;}
.ws0_c00170{word-spacing:-0.064000pt;}
.ws2_c00170{word-spacing:0.000000pt;}
._0_c00170{width:0.960000pt;}
._4_c00170{width:2.272000pt;}
._6_c00170{width:3.622400pt;}
._2_c00170{width:4.832000pt;}
._7_c00170{width:6.060800pt;}
._3_c00170{width:7.155200pt;}
._5_c00170{width:10.361600pt;}
._1_c00170{width:15.040000pt;}
.fs1_c00170{font-size:57.600000pt;}
.fs0_c00170{font-size:64.000000pt;}
.y0_c00170{bottom:0.000000pt;}
.y5_c00170{bottom:4.480000pt;}
.y1_c00170{bottom:11.320000pt;}
.y3_c00170{bottom:40.040000pt;}
.y4_c00170{bottom:46.880000pt;}
.y21_c00170{bottom:98.280000pt;}
.y20_c00170{bottom:130.280000pt;}
.y1f_c00170{bottom:162.280000pt;}
.y1e_c00170{bottom:194.280000pt;}
.y1d_c00170{bottom:226.280000pt;}
.y1c_c00170{bottom:258.280000pt;}
.y1b_c00170{bottom:290.280000pt;}
.y1a_c00170{bottom:322.280000pt;}
.y19_c00170{bottom:354.280000pt;}
.y18_c00170{bottom:386.280000pt;}
.y17_c00170{bottom:418.280000pt;}
.y16_c00170{bottom:450.280000pt;}
.y15_c00170{bottom:482.280000pt;}
.y14_c00170{bottom:514.280000pt;}
.y13_c00170{bottom:546.280000pt;}
.y12_c00170{bottom:578.280000pt;}
.y11_c00170{bottom:610.280000pt;}
.y10_c00170{bottom:642.280000pt;}
.yf_c00170{bottom:674.280000pt;}
.ye_c00170{bottom:706.280000pt;}
.yd_c00170{bottom:738.280000pt;}
.yc_c00170{bottom:770.280000pt;}
.yb_c00170{bottom:802.280000pt;}
.ya_c00170{bottom:834.280000pt;}
.y9_c00170{bottom:866.280000pt;}
.y8_c00170{bottom:898.280000pt;}
.y7_c00170{bottom:930.280000pt;}
.y6_c00170{bottom:962.280000pt;}
.y2_c00170{bottom:1035.880000pt;}
.h4_c00170{height:18.560000pt;}
.h5_c00170{height:62.812500pt;}
.h6_c00170{height:63.843750pt;}
.h3_c00170{height:65.781915pt;}
.h2_c00170{height:1099.880000pt;}
.h0_c00170{height:1122.520000pt;}
.h1_c00170{height:1122.666667pt;}
.w3_c00170{width:24.000000pt;}
.w2_c00170{width:771.080000pt;}
.w0_c00170{width:793.720000pt;}
.w1_c00170{width:794.000000pt;}
.x0_c00170{left:0.000000pt;}
.x1_c00170{left:11.320000pt;}
.x3_c00170{left:84.805600pt;}
.x5_c00170{left:132.800133pt;}
.x4_c00170{left:385.080000pt;}
.x2_c00170{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00171{font-family:ff1_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00171;src:url('chunks/assets/font_723434f4f94a2ac4cb1db4d8.woff2')format("woff");}.ff2_c00171{font-family:ff2_c00171;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00171;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00171{font-family:ff3_c00171;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00171;src:url('chunks/assets/font_0c97f1dee22594b376348f81.woff2')format("woff");}.ff4_c00171{font-family:ff4_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00171;src:url('chunks/assets/font_8b09d16ed26bb408c15d1914.woff2')format("woff");}.ff5_c00171{font-family:ff5_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00171;src:url('chunks/assets/font_f8fb7bea1dffbbaf6cc9d383.woff2')format("woff");}.ff6_c00171{font-family:ff6_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00171;src:url('chunks/assets/font_418ff08b917f22018019070e.woff2')format("woff");}.ff7_c00171{font-family:ff7_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00171;src:url('chunks/assets/font_430c00f8044eefa9517dcc9e.woff2')format("woff");}.ff8_c00171{font-family:ff8_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00171;src:url('chunks/assets/font_55e804df3cbca3e8b40705a8.woff2')format("woff");}.ff9_c00171{font-family:ff9_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00171;src:url('chunks/assets/font_5f3c19f761e0db6535119fa2.woff2')format("woff");}.ffa_c00171{font-family:ffa_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00171;src:url('chunks/assets/font_ea9fe772c0143d3fdf7f8638.woff2')format("woff");}.ffb_c00171{font-family:ffb_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00171;src:url('chunks/assets/font_a168073513a532a3fdbd347d.woff2')format("woff");}.ffc_c00171{font-family:ffc_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00171;src:url('chunks/assets/font_41fe9012531e0c7e277dfcf2.woff2')format("woff");}.ffd_c00171{font-family:ffd_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00171;src:url('chunks/assets/font_b744e413823ba6cfaa85919a.woff2')format("woff");}.ffe_c00171{font-family:ffe_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00171;src:url('chunks/assets/font_417504f7450a15ba8abb10f1.woff2')format("woff");}.fff_c00171{font-family:fff_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00171;src:url('chunks/assets/font_a801d5bb859d489c0f4220c1.woff2')format("woff");}.ff10_c00171{font-family:ff10_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00171;src:url('chunks/assets/font_596dcfd16986025e86e3566c.woff2')format("woff");}.ff11_c00171{font-family:ff11_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00171;src:url('chunks/assets/font_b34508a3d07cd8717a8b213c.woff2')format("woff");}.ff12_c00171{font-family:ff12_c00171;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:ff13_c00171;src:url('chunks/assets/font_327ffad2edcf34ba967e42d7.woff2')format("woff");}.ff13_c00171{font-family:ff13_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00171;src:url('chunks/assets/font_f7e27abfaf76e3192cb517c0.woff2')format("woff");}.ff14_c00171{font-family:ff14_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00171;src:url('chunks/assets/font_13310a7a29efd0b8110abc76.woff2')format("woff");}.ff15_c00171{font-family:ff15_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00171;src:url('chunks/assets/font_7bddf18981101f1e5ca0e4d0.woff2')format("woff");}.ff16_c00171{font-family:ff16_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00171;src:url('chunks/assets/font_b32ce8b17026acba059890b7.woff2')format("woff");}.ff17_c00171{font-family:ff17_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00171;src:url('chunks/assets/font_0162cfe3cf49731254a0b57b.woff2')format("woff");}.ff18_c00171{font-family:ff18_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00171;src:url('chunks/assets/font_ea4a026878e4cec4f3a5fdd2.woff2')format("woff");}.ff19_c00171{font-family:ff19_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00171;src:url('chunks/assets/font_48e75f9d8eab701ceac2808a.woff2')format("woff");}.ff1a_c00171{font-family:ff1a_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00171;src:url('chunks/assets/font_7ec307caeead0830172871c0.woff2')format("woff");}.ff1b_c00171{font-family:ff1b_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00171;src:url('chunks/assets/font_d8ca764c26ce6dfae10bb372.woff2')format("woff");}.ff1c_c00171{font-family:ff1c_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00171;src:url('chunks/assets/font_d60aef8bad40e506cb6aba91.woff2')format("woff");}.ff1d_c00171{font-family:ff1d_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00171;src:url('chunks/assets/font_c7596764da5b861ac65485ed.woff2')format("woff");}.ff1e_c00171{font-family:ff1e_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00171;src:url('chunks/assets/font_29c593a2ccdf6948d58de536.woff2')format("woff");}.ff1f_c00171{font-family:ff1f_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00171;src:url('chunks/assets/font_af9c3a0122c4c215804eac11.woff2')format("woff");}.ff20_c00171{font-family:ff20_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00171;src:url('chunks/assets/font_932173e77b12b4bd78e11a70.woff2')format("woff");}.ff21_c00171{font-family:ff21_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00171;src:url('chunks/assets/font_f7740a3c700ef8cba3c1aeb9.woff2')format("woff");}.ff22_c00171{font-family:ff22_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00171;src:url('chunks/assets/font_e3b676c6d9f487d24f88d79d.woff2')format("woff");}.ff23_c00171{font-family:ff23_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00171;src:url('chunks/assets/font_e90afd68133cb8ff8a5347eb.woff2')format("woff");}.ff24_c00171{font-family:ff24_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00171;src:url('chunks/assets/font_f07e3ae26b18e97505bdb2bb.woff2')format("woff");}.ff25_c00171{font-family:ff25_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00171;src:url('chunks/assets/font_9cd8183d0263c465b60f2992.woff2')format("woff");}.ff26_c00171{font-family:ff26_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00171;src:url('chunks/assets/font_0bde2f833109c04534dd33f3.woff2')format("woff");}.ff27_c00171{font-family:ff27_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00171;src:url('chunks/assets/font_60965366d3bd02de61cf1bb7.woff2')format("woff");}.ff28_c00171{font-family:ff28_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00171;src:url('chunks/assets/font_3e4e280df2431398bb39adeb.woff2')format("woff");}.ff29_c00171{font-family:ff29_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00171;src:url('chunks/assets/font_5b1c2aa9d25c9dd310304711.woff2')format("woff");}.ff2a_c00171{font-family:ff2a_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00171;src:url('chunks/assets/font_8d5fa3dd255c816d9398341c.woff2')format("woff");}.ff2b_c00171{font-family:ff2b_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00171;src:url('chunks/assets/font_aaee9ff6673012985fbea8df.woff2')format("woff");}.ff2c_c00171{font-family:ff2c_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00171;src:url('chunks/assets/font_5a540006cbf3e367c9b363ce.woff2')format("woff");}.ff2d_c00171{font-family:ff2d_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00171;src:url('chunks/assets/font_a63b68fea5047596a4862e38.woff2')format("woff");}.ff2e_c00171{font-family:ff2e_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00171;src:url('chunks/assets/font_f6bc5506a3b7e83b9d95184b.woff2')format("woff");}.ff2f_c00171{font-family:ff2f_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00171;src:url('chunks/assets/font_a972b311c212a7c30648eb14.woff2')format("woff");}.ff30_c00171{font-family:ff30_c00171;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00171{letter-spacing:0.000000px;}
.ls0_c00171{letter-spacing:0.014400px;}
.ls1_c00171{letter-spacing:0.072000px;}
.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;}
}
.ws1_c00171{word-spacing:-0.086400px;}
.ws0_c00171{word-spacing:-0.072000px;}
.ws2_c00171{word-spacing:0.000000px;}
._1_c00171{width:1.411200px;}
._9_c00171{width:2.944800px;}
._6_c00171{width:4.716000px;}
._0_c00171{width:6.487200px;}
._3_c00171{width:7.509600px;}
._4_c00171{width:8.949600px;}
._8_c00171{width:10.202400px;}
._2_c00171{width:11.772000px;}
._a_c00171{width:12.895200px;}
._7_c00171{width:13.903200px;}
._b_c00171{width:15.019200px;}
._5_c00171{width:16.934400px;}
._c_c00171{width:23.205600px;}
.fc1_c00171{color:transparent;}
.fc0_c00171{color:rgb(0,0,0);}
.fs1_c00171{font-size:64.800000px;}
.fs0_c00171{font-size:72.000000px;}
.y0_c00171{bottom:0.000000px;}
.y5_c00171{bottom:5.040000px;}
.y1_c00171{bottom:12.735000px;}
.y3_c00171{bottom:45.045000px;}
.y4_c00171{bottom:52.740000px;}
.y21_c00171{bottom:110.565000px;}
.y20_c00171{bottom:146.565000px;}
.y1f_c00171{bottom:182.565000px;}
.y1e_c00171{bottom:218.565000px;}
.y1d_c00171{bottom:254.565000px;}
.y1c_c00171{bottom:290.565000px;}
.y1b_c00171{bottom:326.565000px;}
.y1a_c00171{bottom:362.565000px;}
.y19_c00171{bottom:398.565000px;}
.y18_c00171{bottom:434.565000px;}
.y17_c00171{bottom:470.565000px;}
.y16_c00171{bottom:506.565000px;}
.y15_c00171{bottom:542.565000px;}
.y14_c00171{bottom:578.565000px;}
.y13_c00171{bottom:614.565000px;}
.y12_c00171{bottom:650.565000px;}
.y11_c00171{bottom:686.565000px;}
.y10_c00171{bottom:722.565000px;}
.yf_c00171{bottom:758.565000px;}
.ye_c00171{bottom:794.565000px;}
.yd_c00171{bottom:830.565000px;}
.yc_c00171{bottom:866.565000px;}
.yb_c00171{bottom:902.565000px;}
.ya_c00171{bottom:938.565000px;}
.y9_c00171{bottom:974.565000px;}
.y8_c00171{bottom:1010.565000px;}
.y7_c00171{bottom:1046.565000px;}
.y6_c00171{bottom:1082.565000px;}
.y2_c00171{bottom:1165.365000px;}
.h4_c00171{height:20.880000px;}
.h3_c00171{height:70.664062px;}
.h5_c00171{height:74.004654px;}
.h2_c00171{height:1237.365000px;}
.h0_c00171{height:1262.835000px;}
.h1_c00171{height:1263.000000px;}
.w3_c00171{width:27.000000px;}
.w2_c00171{width:867.465000px;}
.w0_c00171{width:892.935000px;}
.w1_c00171{width:893.250000px;}
.x0_c00171{left:0.000000px;}
.x1_c00171{left:12.735000px;}
.x3_c00171{left:95.406300px;}
.x5_c00171{left:149.400150px;}
.x4_c00171{left:433.215000px;}
.x2_c00171{left:878.550300px;}
@media print{
.v0_c00171{vertical-align:0.000000pt;}
.ls2_c00171{letter-spacing:0.000000pt;}
.ls0_c00171{letter-spacing:0.012800pt;}
.ls1_c00171{letter-spacing:0.064000pt;}
.ws1_c00171{word-spacing:-0.076800pt;}
.ws0_c00171{word-spacing:-0.064000pt;}
.ws2_c00171{word-spacing:0.000000pt;}
._1_c00171{width:1.254400pt;}
._9_c00171{width:2.617600pt;}
._6_c00171{width:4.192000pt;}
._0_c00171{width:5.766400pt;}
._3_c00171{width:6.675200pt;}
._4_c00171{width:7.955200pt;}
._8_c00171{width:9.068800pt;}
._2_c00171{width:10.464000pt;}
._a_c00171{width:11.462400pt;}
._7_c00171{width:12.358400pt;}
._b_c00171{width:13.350400pt;}
._5_c00171{width:15.052800pt;}
._c_c00171{width:20.627200pt;}
.fs1_c00171{font-size:57.600000pt;}
.fs0_c00171{font-size:64.000000pt;}
.y0_c00171{bottom:0.000000pt;}
.y5_c00171{bottom:4.480000pt;}
.y1_c00171{bottom:11.320000pt;}
.y3_c00171{bottom:40.040000pt;}
.y4_c00171{bottom:46.880000pt;}
.y21_c00171{bottom:98.280000pt;}
.y20_c00171{bottom:130.280000pt;}
.y1f_c00171{bottom:162.280000pt;}
.y1e_c00171{bottom:194.280000pt;}
.y1d_c00171{bottom:226.280000pt;}
.y1c_c00171{bottom:258.280000pt;}
.y1b_c00171{bottom:290.280000pt;}
.y1a_c00171{bottom:322.280000pt;}
.y19_c00171{bottom:354.280000pt;}
.y18_c00171{bottom:386.280000pt;}
.y17_c00171{bottom:418.280000pt;}
.y16_c00171{bottom:450.280000pt;}
.y15_c00171{bottom:482.280000pt;}
.y14_c00171{bottom:514.280000pt;}
.y13_c00171{bottom:546.280000pt;}
.y12_c00171{bottom:578.280000pt;}
.y11_c00171{bottom:610.280000pt;}
.y10_c00171{bottom:642.280000pt;}
.yf_c00171{bottom:674.280000pt;}
.ye_c00171{bottom:706.280000pt;}
.yd_c00171{bottom:738.280000pt;}
.yc_c00171{bottom:770.280000pt;}
.yb_c00171{bottom:802.280000pt;}
.ya_c00171{bottom:834.280000pt;}
.y9_c00171{bottom:866.280000pt;}
.y8_c00171{bottom:898.280000pt;}
.y7_c00171{bottom:930.280000pt;}
.y6_c00171{bottom:962.280000pt;}
.y2_c00171{bottom:1035.880000pt;}
.h4_c00171{height:18.560000pt;}
.h3_c00171{height:62.812500pt;}
.h5_c00171{height:65.781915pt;}
.h2_c00171{height:1099.880000pt;}
.h0_c00171{height:1122.520000pt;}
.h1_c00171{height:1122.666667pt;}
.w3_c00171{width:24.000000pt;}
.w2_c00171{width:771.080000pt;}
.w0_c00171{width:793.720000pt;}
.w1_c00171{width:794.000000pt;}
.x0_c00171{left:0.000000pt;}
.x1_c00171{left:11.320000pt;}
.x3_c00171{left:84.805600pt;}
.x5_c00171{left:132.800133pt;}
.x4_c00171{left:385.080000pt;}
.x2_c00171{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00172{font-family:ff1_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00172;src:url('chunks/assets/font_c2ea92223d1cf1bc5fc3d614.woff2')format("woff");}.ff2_c00172{font-family:ff2_c00172;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00172;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00172{font-family:ff3_c00172;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00172;src:url('chunks/assets/font_7098dc87de1df8534aed65b8.woff2')format("woff");}.ff4_c00172{font-family:ff4_c00172;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00172;src:url('chunks/assets/font_b4f557c27b1b088c053468db.woff2')format("woff");}.ff5_c00172{font-family:ff5_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00172;src:url('chunks/assets/font_5526bbae72f4aec4967801bb.woff2')format("woff");}.ff6_c00172{font-family:ff6_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00172;src:url('chunks/assets/font_57eeb494ce725b21f8900d30.woff2')format("woff");}.ff7_c00172{font-family:ff7_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00172;src:url('chunks/assets/font_d75a8ac2feb560d888e2871d.woff2')format("woff");}.ff8_c00172{font-family:ff8_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00172;src:url('chunks/assets/font_79599d5757f3dbecded7e8be.woff2')format("woff");}.ff9_c00172{font-family:ff9_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00172;src:url('chunks/assets/font_980e834ac2138ad33f9f3a9c.woff2')format("woff");}.ffa_c00172{font-family:ffa_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00172;src:url('chunks/assets/font_95b6ba9388f6c3baa7486ac7.woff2')format("woff");}.ffb_c00172{font-family:ffb_c00172;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00172;src:url('chunks/assets/font_920b76cc9d0a630a4899ffd4.woff2')format("woff");}.ffc_c00172{font-family:ffc_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00172;src:url('chunks/assets/font_36ae2d14b6aca8c5107cce22.woff2')format("woff");}.ffd_c00172{font-family:ffd_c00172;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:ffe_c00172;src:url('chunks/assets/font_3ff25abe1306f61e7638749a.woff2')format("woff");}.ffe_c00172{font-family:ffe_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00172;src:url('chunks/assets/font_53905cf158b6d618d895fb5e.woff2')format("woff");}.fff_c00172{font-family:fff_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00172;src:url('chunks/assets/font_6db93a07d35fe9e69ef7e2ac.woff2')format("woff");}.ff10_c00172{font-family:ff10_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00172;src:url('chunks/assets/font_ef8f001f63c978575c05d197.woff2')format("woff");}.ff11_c00172{font-family:ff11_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00172;src:url('chunks/assets/font_8d7dd5e987963fa16eca40fd.woff2')format("woff");}.ff12_c00172{font-family:ff12_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00172;src:url('chunks/assets/font_e64a54c2612c8a97b39d478e.woff2')format("woff");}.ff13_c00172{font-family:ff13_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00172;src:url('chunks/assets/font_b5d07f2fa5bca65cc4a4d39d.woff2')format("woff");}.ff14_c00172{font-family:ff14_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00172;src:url('chunks/assets/font_b06726a8e3661da12026011e.woff2')format("woff");}.ff15_c00172{font-family:ff15_c00172;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:ff16_c00172;src:url('chunks/assets/font_2fc7aa6db4b7bd75ed625ba6.woff2')format("woff");}.ff16_c00172{font-family:ff16_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00172;src:url('chunks/assets/font_c724482531a8c40f308f09e4.woff2')format("woff");}.ff17_c00172{font-family:ff17_c00172;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:ff18_c00172;src:url('chunks/assets/font_c3dec75ce0066756acb7ef89.woff2')format("woff");}.ff18_c00172{font-family:ff18_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00172;src:url('chunks/assets/font_57336a4827b333d20032c9d2.woff2')format("woff");}.ff19_c00172{font-family:ff19_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00172;src:url('chunks/assets/font_a9d21666784f59ec5c0004f3.woff2')format("woff");}.ff1a_c00172{font-family:ff1a_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00172;src:url('chunks/assets/font_0e056087a10d763cf91bdfe5.woff2')format("woff");}.ff1b_c00172{font-family:ff1b_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00172;src:url('chunks/assets/font_b267088b9d6ac6507c365fe5.woff2')format("woff");}.ff1c_c00172{font-family:ff1c_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00172;src:url('chunks/assets/font_63c985a84b404703470ef437.woff2')format("woff");}.ff1d_c00172{font-family:ff1d_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00172;src:url('chunks/assets/font_a027cbee5c4fa5b7c972cc15.woff2')format("woff");}.ff1e_c00172{font-family:ff1e_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00172;src:url('chunks/assets/font_6b001cac6c6f690254a8dc7d.woff2')format("woff");}.ff1f_c00172{font-family:ff1f_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00172;src:url('chunks/assets/font_abc17685eff896e720cbe5aa.woff2')format("woff");}.ff20_c00172{font-family:ff20_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00172;src:url('chunks/assets/font_80fdf7cb57310dac52226306.woff2')format("woff");}.ff21_c00172{font-family:ff21_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00172;src:url('chunks/assets/font_f6b8b1f16561a6b20b8b894f.woff2')format("woff");}.ff22_c00172{font-family:ff22_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00172;src:url('chunks/assets/font_567fa5fddea7bacd0eb84046.woff2')format("woff");}.ff23_c00172{font-family:ff23_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00172;src:url('chunks/assets/font_91017d6a0ad42e992b8eef86.woff2')format("woff");}.ff24_c00172{font-family:ff24_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00172;src:url('chunks/assets/font_88f1295278ee935a886363f0.woff2')format("woff");}.ff25_c00172{font-family:ff25_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00172;src:url('chunks/assets/font_728492ea445a423f50408ab5.woff2')format("woff");}.ff26_c00172{font-family:ff26_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00172;src:url('chunks/assets/font_6611c3fb14a91cbe200b9cce.woff2')format("woff");}.ff27_c00172{font-family:ff27_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00172;src:url('chunks/assets/font_4f5bcfc1357210ed0f9807e9.woff2')format("woff");}.ff28_c00172{font-family:ff28_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00172;src:url('chunks/assets/font_e237858da272e2e60933d717.woff2')format("woff");}.ff29_c00172{font-family:ff29_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00172;src:url('chunks/assets/font_d7dd8d6a4a3d9960b83fe1fe.woff2')format("woff");}.ff2a_c00172{font-family:ff2a_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00172;src:url('chunks/assets/font_ca7ee5e7e916ac3d2217e5ef.woff2')format("woff");}.ff2b_c00172{font-family:ff2b_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00172;src:url('chunks/assets/font_3d528c42ac4c7dede70e6136.woff2')format("woff");}.ff2c_c00172{font-family:ff2c_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00172;src:url('chunks/assets/font_036264c1fdb00923d49cd546.woff2')format("woff");}.ff2d_c00172{font-family:ff2d_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00172;src:url('chunks/assets/font_5d8431eef41ff0ba1ed14e04.woff2')format("woff");}.ff2e_c00172{font-family:ff2e_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00172;src:url('chunks/assets/font_c8518a6508f6110ad0a0e4b9.woff2')format("woff");}.ff2f_c00172{font-family:ff2f_c00172;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:ff30_c00172;src:url('chunks/assets/font_336f3e008468dad6a15fc02c.woff2')format("woff");}.ff30_c00172{font-family:ff30_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00172;src:url('chunks/assets/font_8e13d83ead4c1e8f2bf52849.woff2')format("woff");}.ff31_c00172{font-family:ff31_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00172;src:url('chunks/assets/font_632225351a079dd86807ae2b.woff2')format("woff");}.ff32_c00172{font-family:ff32_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00172;src:url('chunks/assets/font_ae259a2be47bc288ec824c66.woff2')format("woff");}.ff33_c00172{font-family:ff33_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00172;src:url('chunks/assets/font_842f9fd0adcf38762c9eb44a.woff2')format("woff");}.ff34_c00172{font-family:ff34_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00172;src:url('chunks/assets/font_371be3cf9ac27925eb243aca.woff2')format("woff");}.ff35_c00172{font-family:ff35_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00172;src:url('chunks/assets/font_a272da3cb1294faa0eb121a1.woff2')format("woff");}.ff36_c00172{font-family:ff36_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00172;src:url('chunks/assets/font_0e4bcc3872b81ee315fb8a40.woff2')format("woff");}.ff37_c00172{font-family:ff37_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00172;src:url('chunks/assets/font_cbc97f9b21aa7ddde37e8fc9.woff2')format("woff");}.ff38_c00172{font-family:ff38_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00172;src:url('chunks/assets/font_6974bb223eb039775c371875.woff2')format("woff");}.ff39_c00172{font-family:ff39_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00172;src:url('chunks/assets/font_bf2f24ae9f56de3cbb210a1f.woff2')format("woff");}.ff3a_c00172{font-family:ff3a_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00172;src:url('chunks/assets/font_0893ba11d1a21c82707a5535.woff2')format("woff");}.ff3b_c00172{font-family:ff3b_c00172;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00172{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00172{vertical-align:0.000000px;}
.ls3_c00172{letter-spacing:-0.014400px;}
.ls2_c00172{letter-spacing:0.000000px;}
.ls0_c00172{letter-spacing:0.072000px;}
.ls1_c00172{letter-spacing:10.209600px;}
.sc__c00172{text-shadow:none;}
.sc0_c00172{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00172{-webkit-text-stroke:0px transparent;}
.sc0_c00172{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00172{word-spacing:-0.072000px;}
.ws1_c00172{word-spacing:-0.057600px;}
.ws2_c00172{word-spacing:0.000000px;}
._e_c00172{margin-left:-1.036800px;}
._6_c00172{width:1.044000px;}
._4_c00172{width:2.196000px;}
._a_c00172{width:3.427200px;}
._2_c00172{width:4.680000px;}
._1_c00172{width:6.019200px;}
._8_c00172{width:7.430400px;}
._9_c00172{width:8.488800px;}
._5_c00172{width:10.346400px;}
._b_c00172{width:11.901600px;}
._3_c00172{width:14.558400px;}
._c_c00172{width:15.674400px;}
._d_c00172{width:16.725600px;}
._7_c00172{width:19.612800px;}
._0_c00172{width:20.988000px;}
.fc1_c00172{color:transparent;}
.fc0_c00172{color:rgb(0,0,0);}
.fs1_c00172{font-size:64.800000px;}
.fs0_c00172{font-size:72.000000px;}
.y0_c00172{bottom:0.000000px;}
.y5_c00172{bottom:5.040000px;}
.y1_c00172{bottom:12.735000px;}
.y3_c00172{bottom:45.045000px;}
.y4_c00172{bottom:52.740000px;}
.y21_c00172{bottom:110.565000px;}
.y20_c00172{bottom:146.565000px;}
.y1f_c00172{bottom:182.565000px;}
.y1e_c00172{bottom:218.565000px;}
.y1d_c00172{bottom:254.565000px;}
.y1c_c00172{bottom:290.565000px;}
.y1b_c00172{bottom:326.565000px;}
.y1a_c00172{bottom:362.565000px;}
.y19_c00172{bottom:398.565000px;}
.y18_c00172{bottom:434.565000px;}
.y17_c00172{bottom:470.565000px;}
.y16_c00172{bottom:506.565000px;}
.y15_c00172{bottom:542.565000px;}
.y14_c00172{bottom:578.565000px;}
.y13_c00172{bottom:614.565000px;}
.y12_c00172{bottom:650.565000px;}
.y11_c00172{bottom:686.565000px;}
.y10_c00172{bottom:722.565000px;}
.yf_c00172{bottom:758.565000px;}
.ye_c00172{bottom:794.565000px;}
.yd_c00172{bottom:830.565000px;}
.yc_c00172{bottom:866.565000px;}
.yb_c00172{bottom:902.565000px;}
.ya_c00172{bottom:938.565000px;}
.y9_c00172{bottom:974.565000px;}
.y8_c00172{bottom:1010.565000px;}
.y7_c00172{bottom:1046.565000px;}
.y6_c00172{bottom:1082.565000px;}
.y2_c00172{bottom:1165.365000px;}
.h4_c00172{height:20.880000px;}
.h3_c00172{height:70.664062px;}
.h5_c00172{height:74.004654px;}
.h2_c00172{height:1237.365000px;}
.h0_c00172{height:1262.835000px;}
.h1_c00172{height:1263.000000px;}
.w3_c00172{width:27.000000px;}
.w2_c00172{width:867.465000px;}
.w0_c00172{width:892.935000px;}
.w1_c00172{width:893.250000px;}
.x0_c00172{left:0.000000px;}
.x1_c00172{left:12.735000px;}
.x3_c00172{left:95.406300px;}
.x5_c00172{left:149.400150px;}
.x4_c00172{left:433.215000px;}
.x2_c00172{left:878.550300px;}
@media print{
.v0_c00172{vertical-align:0.000000pt;}
.ls3_c00172{letter-spacing:-0.012800pt;}
.ls2_c00172{letter-spacing:0.000000pt;}
.ls0_c00172{letter-spacing:0.064000pt;}
.ls1_c00172{letter-spacing:9.075200pt;}
.ws0_c00172{word-spacing:-0.064000pt;}
.ws1_c00172{word-spacing:-0.051200pt;}
.ws2_c00172{word-spacing:0.000000pt;}
._e_c00172{margin-left:-0.921600pt;}
._6_c00172{width:0.928000pt;}
._4_c00172{width:1.952000pt;}
._a_c00172{width:3.046400pt;}
._2_c00172{width:4.160000pt;}
._1_c00172{width:5.350400pt;}
._8_c00172{width:6.604800pt;}
._9_c00172{width:7.545600pt;}
._5_c00172{width:9.196800pt;}
._b_c00172{width:10.579200pt;}
._3_c00172{width:12.940800pt;}
._c_c00172{width:13.932800pt;}
._d_c00172{width:14.867200pt;}
._7_c00172{width:17.433600pt;}
._0_c00172{width:18.656000pt;}
.fs1_c00172{font-size:57.600000pt;}
.fs0_c00172{font-size:64.000000pt;}
.y0_c00172{bottom:0.000000pt;}
.y5_c00172{bottom:4.480000pt;}
.y1_c00172{bottom:11.320000pt;}
.y3_c00172{bottom:40.040000pt;}
.y4_c00172{bottom:46.880000pt;}
.y21_c00172{bottom:98.280000pt;}
.y20_c00172{bottom:130.280000pt;}
.y1f_c00172{bottom:162.280000pt;}
.y1e_c00172{bottom:194.280000pt;}
.y1d_c00172{bottom:226.280000pt;}
.y1c_c00172{bottom:258.280000pt;}
.y1b_c00172{bottom:290.280000pt;}
.y1a_c00172{bottom:322.280000pt;}
.y19_c00172{bottom:354.280000pt;}
.y18_c00172{bottom:386.280000pt;}
.y17_c00172{bottom:418.280000pt;}
.y16_c00172{bottom:450.280000pt;}
.y15_c00172{bottom:482.280000pt;}
.y14_c00172{bottom:514.280000pt;}
.y13_c00172{bottom:546.280000pt;}
.y12_c00172{bottom:578.280000pt;}
.y11_c00172{bottom:610.280000pt;}
.y10_c00172{bottom:642.280000pt;}
.yf_c00172{bottom:674.280000pt;}
.ye_c00172{bottom:706.280000pt;}
.yd_c00172{bottom:738.280000pt;}
.yc_c00172{bottom:770.280000pt;}
.yb_c00172{bottom:802.280000pt;}
.ya_c00172{bottom:834.280000pt;}
.y9_c00172{bottom:866.280000pt;}
.y8_c00172{bottom:898.280000pt;}
.y7_c00172{bottom:930.280000pt;}
.y6_c00172{bottom:962.280000pt;}
.y2_c00172{bottom:1035.880000pt;}
.h4_c00172{height:18.560000pt;}
.h3_c00172{height:62.812500pt;}
.h5_c00172{height:65.781915pt;}
.h2_c00172{height:1099.880000pt;}
.h0_c00172{height:1122.520000pt;}
.h1_c00172{height:1122.666667pt;}
.w3_c00172{width:24.000000pt;}
.w2_c00172{width:771.080000pt;}
.w0_c00172{width:793.720000pt;}
.w1_c00172{width:794.000000pt;}
.x0_c00172{left:0.000000pt;}
.x1_c00172{left:11.320000pt;}
.x3_c00172{left:84.805600pt;}
.x5_c00172{left:132.800133pt;}
.x4_c00172{left:385.080000pt;}
.x2_c00172{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00173{font-family:ff1_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00173;src:url('chunks/assets/font_617249545c9a299047311346.woff2')format("woff");}.ff2_c00173{font-family:ff2_c00173;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00173;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00173{font-family:ff3_c00173;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00173;src:url('chunks/assets/font_778be55615b13adb43b08591.woff2')format("woff");}.ff4_c00173{font-family:ff4_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00173;src:url('chunks/assets/font_8211f05a38053e3da1ef49ab.woff2')format("woff");}.ff5_c00173{font-family:ff5_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00173;src:url('chunks/assets/font_719ceaa63633c6deaa931add.woff2')format("woff");}.ff6_c00173{font-family:ff6_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00173;src:url('chunks/assets/font_cb15f27b5f5ffbeaefd4182c.woff2')format("woff");}.ff7_c00173{font-family:ff7_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00173;src:url('chunks/assets/font_751735b33a8f6b543f9bd4d1.woff2')format("woff");}.ff8_c00173{font-family:ff8_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00173;src:url('chunks/assets/font_07b066f189fdde1e3117fc80.woff2')format("woff");}.ff9_c00173{font-family:ff9_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00173;src:url('chunks/assets/font_278b5e5f86f39237368a5302.woff2')format("woff");}.ffa_c00173{font-family:ffa_c00173;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00173;src:url('chunks/assets/font_a02c892e5cc7eabe1bff9aad.woff2')format("woff");}.ffb_c00173{font-family:ffb_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00173;src:url('chunks/assets/font_21cce30b5e4ae431a024798b.woff2')format("woff");}.ffc_c00173{font-family:ffc_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00173;src:url('chunks/assets/font_f58fa72007728ed46299ac66.woff2')format("woff");}.ffd_c00173{font-family:ffd_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00173;src:url('chunks/assets/font_83357c392ba052b3bb594d95.woff2')format("woff");}.ffe_c00173{font-family:ffe_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00173;src:url('chunks/assets/font_0edc3c0f967c6c8721edb775.woff2')format("woff");}.fff_c00173{font-family:fff_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00173;src:url('chunks/assets/font_3285acb5e628771fbdf7907d.woff2')format("woff");}.ff10_c00173{font-family:ff10_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00173;src:url('chunks/assets/font_7a4b2c807cea41fbb3159677.woff2')format("woff");}.ff11_c00173{font-family:ff11_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00173;src:url('chunks/assets/font_26a01c0bacd5e780494d5b66.woff2')format("woff");}.ff12_c00173{font-family:ff12_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00173;src:url('chunks/assets/font_3ea9b42c18d0a54367edea6f.woff2')format("woff");}.ff13_c00173{font-family:ff13_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00173;src:url('chunks/assets/font_d5dde1b63bedff60684ab06c.woff2')format("woff");}.ff14_c00173{font-family:ff14_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00173;src:url('chunks/assets/font_430c00f8044eefa9517dcc9e.woff2')format("woff");}.ff15_c00173{font-family:ff15_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00173;src:url('chunks/assets/font_07b066f189fdde1e3117fc80.woff2')format("woff");}.ff16_c00173{font-family:ff16_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00173;src:url('chunks/assets/font_2f3380a7188165fc7530263f.woff2')format("woff");}.ff17_c00173{font-family:ff17_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00173;src:url('chunks/assets/font_f631fa222b53b2b0e3413203.woff2')format("woff");}.ff18_c00173{font-family:ff18_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00173;src:url('chunks/assets/font_08b9e3591873f59386c99ed9.woff2')format("woff");}.ff19_c00173{font-family:ff19_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00173;src:url('chunks/assets/font_904423807b6d3bfd5e18745b.woff2')format("woff");}.ff1a_c00173{font-family:ff1a_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00173;src:url('chunks/assets/font_b5cc227248c869cf1c548a23.woff2')format("woff");}.ff1b_c00173{font-family:ff1b_c00173;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:ff1c_c00173;src:url('chunks/assets/font_27f7821b9387cf71af4419fe.woff2')format("woff");}.ff1c_c00173{font-family:ff1c_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00173;src:url('chunks/assets/font_1ae347c52b5dfc7b4102db7d.woff2')format("woff");}.ff1d_c00173{font-family:ff1d_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00173;src:url('chunks/assets/font_88502fbc8beb0c246e3d4a1a.woff2')format("woff");}.ff1e_c00173{font-family:ff1e_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00173;src:url('chunks/assets/font_cdac29bdbcc32090083d5251.woff2')format("woff");}.ff1f_c00173{font-family:ff1f_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00173;src:url('chunks/assets/font_6ab2963dd65f804f2bfcef09.woff2')format("woff");}.ff20_c00173{font-family:ff20_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00173;src:url('chunks/assets/font_56cae16ba03c04d2ee470d1a.woff2')format("woff");}.ff21_c00173{font-family:ff21_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00173;src:url('chunks/assets/font_966ccb5ba3cce53437a2eece.woff2')format("woff");}.ff22_c00173{font-family:ff22_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00173;src:url('chunks/assets/font_a6b36a5440531d9af96f755d.woff2')format("woff");}.ff23_c00173{font-family:ff23_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00173;src:url('chunks/assets/font_a746f2bf1093ecb7fe2d0170.woff2')format("woff");}.ff24_c00173{font-family:ff24_c00173;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00173;src:url('chunks/assets/font_4b5fd5c9112cc5c8eee5a679.woff2')format("woff");}.ff25_c00173{font-family:ff25_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00173;src:url('chunks/assets/font_eb8342f5b8100ae20aa658f7.woff2')format("woff");}.ff26_c00173{font-family:ff26_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00173;src:url('chunks/assets/font_b5a6971a02ccb9e1e99ae872.woff2')format("woff");}.ff27_c00173{font-family:ff27_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00173;src:url('chunks/assets/font_c324de44051a06b20bb8ff6b.woff2')format("woff");}.ff28_c00173{font-family:ff28_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00173;src:url('chunks/assets/font_dd82b9888dadae5eb0ceb9c3.woff2')format("woff");}.ff29_c00173{font-family:ff29_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00173;src:url('chunks/assets/font_5f3c19f761e0db6535119fa2.woff2')format("woff");}.ff2a_c00173{font-family:ff2a_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00173;src:url('chunks/assets/font_196792e14f23d71020ed97aa.woff2')format("woff");}.ff2b_c00173{font-family:ff2b_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00173;src:url('chunks/assets/font_086fc36a83b95d94a1ecc6ab.woff2')format("woff");}.ff2c_c00173{font-family:ff2c_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00173;src:url('chunks/assets/font_dc2019f7b6b1289efcc36097.woff2')format("woff");}.ff2d_c00173{font-family:ff2d_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00173;src:url('chunks/assets/font_60322af5135228f912d779b2.woff2')format("woff");}.ff2e_c00173{font-family:ff2e_c00173;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00173;src:url('chunks/assets/font_0b0d6cd8adb5fc073dca55e5.woff2')format("woff");}.ff2f_c00173{font-family:ff2f_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00173;src:url('chunks/assets/font_80439701a476e01b30b56e6c.woff2')format("woff");}.ff30_c00173{font-family:ff30_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00173;src:url('chunks/assets/font_acaf339d5f2e92cff46f7b56.woff2')format("woff");}.ff31_c00173{font-family:ff31_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00173;src:url('chunks/assets/font_8be2eb5b26d4f51c3cfaeeac.woff2')format("woff");}.ff32_c00173{font-family:ff32_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00173;src:url('chunks/assets/font_c2c93d6153fa256a08a76254.woff2')format("woff");}.ff33_c00173{font-family:ff33_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00173;src:url('chunks/assets/font_e57b9ae83ec7a249f709dbd4.woff2')format("woff");}.ff34_c00173{font-family:ff34_c00173;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00173;src:url('chunks/assets/font_b7eadb387f4195eac8f262e9.woff2')format("woff");}.ff35_c00173{font-family:ff35_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00173;src:url('chunks/assets/font_174a748097fd8189a574ae30.woff2')format("woff");}.ff36_c00173{font-family:ff36_c00173;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00173;src:url('chunks/assets/font_783e1073007de66c91782c60.woff2')format("woff");}.ff37_c00173{font-family:ff37_c00173;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:ff38_c00173;src:url('chunks/assets/font_6d6eb3f76f0d44ea0fa38ecc.woff2')format("woff");}.ff38_c00173{font-family:ff38_c00173;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00173;src:url('chunks/assets/font_036432d68bc94dd36e05bf4c.woff2')format("woff");}.ff39_c00173{font-family:ff39_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00173;src:url('chunks/assets/font_78f58f90cfd76b8d1a6f01b7.woff2')format("woff");}.ff3a_c00173{font-family:ff3a_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00173;src:url('chunks/assets/font_f380a0cb2158d9197f18c48a.woff2')format("woff");}.ff3b_c00173{font-family:ff3b_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00173;src:url('chunks/assets/font_36ad021c0c9fd80e26f8ee7a.woff2')format("woff");}.ff3c_c00173{font-family:ff3c_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00173;src:url('chunks/assets/font_d000882cef09c3f81be9d8eb.woff2')format("woff");}.ff3d_c00173{font-family:ff3d_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00173;src:url('chunks/assets/font_96cbee7cbde2cbe5c767aa1d.woff2')format("woff");}.ff3e_c00173{font-family:ff3e_c00173;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00173;src:url('chunks/assets/font_e7f612df1fdc36f6dac7b9cc.woff2')format("woff");}.ff3f_c00173{font-family:ff3f_c00173;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00173;src:url('chunks/assets/font_9ea765085dcb4c3769024383.woff2')format("woff");}.ff40_c00173{font-family:ff40_c00173;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41_c00173;src:url('chunks/assets/font_45b9eafb0791cb92f8696ee1.woff2')format("woff");}.ff41_c00173{font-family:ff41_c00173;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:ff42_c00173;src:url('chunks/assets/font_0c3103f517f2bdbb7c49ebd4.woff2')format("woff");}.ff42_c00173{font-family:ff42_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43_c00173;src:url('chunks/assets/font_e761898278c0d5c6c5b6e857.woff2')format("woff");}.ff43_c00173{font-family:ff43_c00173;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:ff44_c00173;src:url('chunks/assets/font_069f4e7fe8e01409f535e253.woff2')format("woff");}.ff44_c00173{font-family:ff44_c00173;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:ff45_c00173;src:url('chunks/assets/font_d1119845f77517af422269a1.woff2')format("woff");}.ff45_c00173{font-family:ff45_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46_c00173;src:url('chunks/assets/font_94e69fd99598bded894d585e.woff2')format("woff");}.ff46_c00173{font-family:ff46_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00173;src:url('chunks/assets/font_21fa390689dbbd546a6a8e26.woff2')format("woff");}.ff47_c00173{font-family:ff47_c00173;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00173{letter-spacing:0.000000px;}
.ls2_c00173{letter-spacing:0.014400px;}
.ls1_c00173{letter-spacing:0.072000px;}
.ls4_c00173{letter-spacing:2.160000px;}
.ls3_c00173{letter-spacing:2.592000px;}
.ls0_c00173{letter-spacing:7.228800px;}
.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;}
}
.ws1_c00173{word-spacing:-0.086400px;}
.ws0_c00173{word-spacing:-0.072000px;}
.ws2_c00173{word-spacing:0.000000px;}
._0_c00173{width:1.670400px;}
._6_c00173{width:2.952000px;}
._3_c00173{width:4.212000px;}
._4_c00173{width:5.378400px;}
._1_c00173{width:7.257600px;}
._8_c00173{width:8.359200px;}
._9_c00173{width:13.600800px;}
._a_c00173{width:16.948800px;}
._2_c00173{width:21.103200px;}
._7_c00173{width:22.248000px;}
._5_c00173{width:23.421600px;}
.fc1_c00173{color:transparent;}
.fc0_c00173{color:rgb(0,0,0);}
.fs1_c00173{font-size:64.800000px;}
.fs0_c00173{font-size:72.000000px;}
.y0_c00173{bottom:0.000000px;}
.y5_c00173{bottom:5.040000px;}
.y1_c00173{bottom:12.735000px;}
.y3_c00173{bottom:45.045000px;}
.y4_c00173{bottom:52.740000px;}
.y21_c00173{bottom:110.565000px;}
.y20_c00173{bottom:146.565000px;}
.y1f_c00173{bottom:182.565000px;}
.y1e_c00173{bottom:218.565000px;}
.y1d_c00173{bottom:254.565000px;}
.y1c_c00173{bottom:290.565000px;}
.y1b_c00173{bottom:326.565000px;}
.y1a_c00173{bottom:362.565000px;}
.y19_c00173{bottom:398.565000px;}
.y18_c00173{bottom:434.565000px;}
.y17_c00173{bottom:470.565000px;}
.y16_c00173{bottom:506.565000px;}
.y15_c00173{bottom:542.565000px;}
.y14_c00173{bottom:578.565000px;}
.y13_c00173{bottom:614.565000px;}
.y12_c00173{bottom:650.565000px;}
.y11_c00173{bottom:686.565000px;}
.y10_c00173{bottom:722.565000px;}
.yf_c00173{bottom:758.565000px;}
.ye_c00173{bottom:794.565000px;}
.yd_c00173{bottom:830.565000px;}
.yc_c00173{bottom:866.565000px;}
.yb_c00173{bottom:902.565000px;}
.ya_c00173{bottom:938.565000px;}
.y9_c00173{bottom:974.565000px;}
.y8_c00173{bottom:1010.565000px;}
.y7_c00173{bottom:1046.565000px;}
.y6_c00173{bottom:1082.565000px;}
.y2_c00173{bottom:1165.365000px;}
.h4_c00173{height:20.880000px;}
.h7_c00173{height:70.628906px;}
.h3_c00173{height:70.664062px;}
.h6_c00173{height:71.824219px;}
.h5_c00173{height:74.004654px;}
.h2_c00173{height:1237.365000px;}
.h0_c00173{height:1262.835000px;}
.h1_c00173{height:1263.000000px;}
.w3_c00173{width:27.000000px;}
.w2_c00173{width:867.465000px;}
.w0_c00173{width:892.935000px;}
.w1_c00173{width:893.250000px;}
.x0_c00173{left:0.000000px;}
.x1_c00173{left:12.735000px;}
.x3_c00173{left:95.406300px;}
.x5_c00173{left:149.400150px;}
.x4_c00173{left:433.215000px;}
.x2_c00173{left:878.550300px;}
@media print{
.v0_c00173{vertical-align:0.000000pt;}
.ls5_c00173{letter-spacing:0.000000pt;}
.ls2_c00173{letter-spacing:0.012800pt;}
.ls1_c00173{letter-spacing:0.064000pt;}
.ls4_c00173{letter-spacing:1.920000pt;}
.ls3_c00173{letter-spacing:2.304000pt;}
.ls0_c00173{letter-spacing:6.425600pt;}
.ws1_c00173{word-spacing:-0.076800pt;}
.ws0_c00173{word-spacing:-0.064000pt;}
.ws2_c00173{word-spacing:0.000000pt;}
._0_c00173{width:1.484800pt;}
._6_c00173{width:2.624000pt;}
._3_c00173{width:3.744000pt;}
._4_c00173{width:4.780800pt;}
._1_c00173{width:6.451200pt;}
._8_c00173{width:7.430400pt;}
._9_c00173{width:12.089600pt;}
._a_c00173{width:15.065600pt;}
._2_c00173{width:18.758400pt;}
._7_c00173{width:19.776000pt;}
._5_c00173{width:20.819200pt;}
.fs1_c00173{font-size:57.600000pt;}
.fs0_c00173{font-size:64.000000pt;}
.y0_c00173{bottom:0.000000pt;}
.y5_c00173{bottom:4.480000pt;}
.y1_c00173{bottom:11.320000pt;}
.y3_c00173{bottom:40.040000pt;}
.y4_c00173{bottom:46.880000pt;}
.y21_c00173{bottom:98.280000pt;}
.y20_c00173{bottom:130.280000pt;}
.y1f_c00173{bottom:162.280000pt;}
.y1e_c00173{bottom:194.280000pt;}
.y1d_c00173{bottom:226.280000pt;}
.y1c_c00173{bottom:258.280000pt;}
.y1b_c00173{bottom:290.280000pt;}
.y1a_c00173{bottom:322.280000pt;}
.y19_c00173{bottom:354.280000pt;}
.y18_c00173{bottom:386.280000pt;}
.y17_c00173{bottom:418.280000pt;}
.y16_c00173{bottom:450.280000pt;}
.y15_c00173{bottom:482.280000pt;}
.y14_c00173{bottom:514.280000pt;}
.y13_c00173{bottom:546.280000pt;}
.y12_c00173{bottom:578.280000pt;}
.y11_c00173{bottom:610.280000pt;}
.y10_c00173{bottom:642.280000pt;}
.yf_c00173{bottom:674.280000pt;}
.ye_c00173{bottom:706.280000pt;}
.yd_c00173{bottom:738.280000pt;}
.yc_c00173{bottom:770.280000pt;}
.yb_c00173{bottom:802.280000pt;}
.ya_c00173{bottom:834.280000pt;}
.y9_c00173{bottom:866.280000pt;}
.y8_c00173{bottom:898.280000pt;}
.y7_c00173{bottom:930.280000pt;}
.y6_c00173{bottom:962.280000pt;}
.y2_c00173{bottom:1035.880000pt;}
.h4_c00173{height:18.560000pt;}
.h7_c00173{height:62.781250pt;}
.h3_c00173{height:62.812500pt;}
.h6_c00173{height:63.843750pt;}
.h5_c00173{height:65.781915pt;}
.h2_c00173{height:1099.880000pt;}
.h0_c00173{height:1122.520000pt;}
.h1_c00173{height:1122.666667pt;}
.w3_c00173{width:24.000000pt;}
.w2_c00173{width:771.080000pt;}
.w0_c00173{width:793.720000pt;}
.w1_c00173{width:794.000000pt;}
.x0_c00173{left:0.000000pt;}
.x1_c00173{left:11.320000pt;}
.x3_c00173{left:84.805600pt;}
.x5_c00173{left:132.800133pt;}
.x4_c00173{left:385.080000pt;}
.x2_c00173{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00174{font-family:ff1_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00174;src:url('chunks/assets/font_9310834ae6eaa166182606f4.woff2')format("woff");}.ff2_c00174{font-family:ff2_c00174;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00174;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00174{font-family:ff3_c00174;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00174;src:url('chunks/assets/font_e9cff95714f153589c35d5f4.woff2')format("woff");}.ff4_c00174{font-family:ff4_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00174;src:url('chunks/assets/font_ac08cdc4823ff39548bc9fd5.woff2')format("woff");}.ff5_c00174{font-family:ff5_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00174;src:url('chunks/assets/font_b6ab5e6333357ec5d09a4e17.woff2')format("woff");}.ff6_c00174{font-family:ff6_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00174;src:url('chunks/assets/font_34714b8476c2109a9f9997b2.woff2')format("woff");}.ff7_c00174{font-family:ff7_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00174;src:url('chunks/assets/font_041f8f517f3830e4899224b5.woff2')format("woff");}.ff8_c00174{font-family:ff8_c00174;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00174;src:url('chunks/assets/font_556dfc6bfde3a8de393a2eb6.woff2')format("woff");}.ff9_c00174{font-family:ff9_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:ffa_c00174;src:url('chunks/assets/font_312976c9abd29ae9d07a7f8c.woff2')format("woff");}.ffa_c00174{font-family:ffa_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00174;src:url('chunks/assets/font_75b8253ebab25a4b3ed4038c.woff2')format("woff");}.ffb_c00174{font-family:ffb_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:ffc_c00174;src:url('chunks/assets/font_ab96f5291dc1be8e4dbd71ac.woff2')format("woff");}.ffc_c00174{font-family:ffc_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:ffd_c00174;src:url('chunks/assets/font_7b1d46dc687b3a22964106a2.woff2')format("woff");}.ffd_c00174{font-family:ffd_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:ffe_c00174;src:url('chunks/assets/font_312976c9abd29ae9d07a7f8c.woff2')format("woff");}.ffe_c00174{font-family:ffe_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00174;src:url('chunks/assets/font_c46da6b4c5c2c9719ff3c6af.woff2')format("woff");}.fff_c00174{font-family:fff_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:ff10_c00174;src:url('chunks/assets/font_d528f13aea772c3d52197317.woff2')format("woff");}.ff10_c00174{font-family:ff10_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:ff11_c00174;src:url('chunks/assets/font_414f5b85debeea0c0c976da8.woff2')format("woff");}.ff11_c00174{font-family:ff11_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:ff12_c00174;src:url('chunks/assets/font_312976c9abd29ae9d07a7f8c.woff2')format("woff");}.ff12_c00174{font-family:ff12_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00174;src:url('chunks/assets/font_6d85408bae34779e80c98d8e.woff2')format("woff");}.ff13_c00174{font-family:ff13_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:ff14_c00174;src:url('chunks/assets/font_2cc8e2978e9c95bbef5558cb.woff2')format("woff");}.ff14_c00174{font-family:ff14_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:ff15_c00174;src:url('chunks/assets/font_f7ffb78a33be9e184ae282bc.woff2')format("woff");}.ff15_c00174{font-family:ff15_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00174;src:url('chunks/assets/font_8c84452d02a31d06f7a2f7d3.woff2')format("woff");}.ff16_c00174{font-family:ff16_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:ff17_c00174;src:url('chunks/assets/font_e14fefc69485504b4b722712.woff2')format("woff");}.ff17_c00174{font-family:ff17_c00174;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00174;src:url('chunks/assets/font_8b6d425532e0b8de29fccdfb.woff2')format("woff");}.ff18_c00174{font-family:ff18_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:ff19_c00174;src:url('chunks/assets/font_f7ffb78a33be9e184ae282bc.woff2')format("woff");}.ff19_c00174{font-family:ff19_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00174;src:url('chunks/assets/font_42de0c69e5c2b8dfec63c3ac.woff2')format("woff");}.ff1a_c00174{font-family:ff1a_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:ff1b_c00174;src:url('chunks/assets/font_c8951ba0b2dc62741b069666.woff2')format("woff");}.ff1b_c00174{font-family:ff1b_c00174;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00174;src:url('chunks/assets/font_f7ffb78a33be9e184ae282bc.woff2')format("woff");}.ff1c_c00174{font-family:ff1c_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00174;src:url('chunks/assets/font_b07eb39930ac8311c3b39b9e.woff2')format("woff");}.ff1d_c00174{font-family:ff1d_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:ff1e_c00174;src:url('chunks/assets/font_4ab9c37fdabd30656ed3015b.woff2')format("woff");}.ff1e_c00174{font-family:ff1e_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:ff1f_c00174;src:url('chunks/assets/font_7c2a74352c58defd901bedde.woff2')format("woff");}.ff1f_c00174{font-family:ff1f_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00174;src:url('chunks/assets/font_52fbd13cbb8b8549676bd215.woff2')format("woff");}.ff20_c00174{font-family:ff20_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:ff21_c00174;src:url('chunks/assets/font_7c2a74352c58defd901bedde.woff2')format("woff");}.ff21_c00174{font-family:ff21_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00174;src:url('chunks/assets/font_29d355b23c1175effb872f0b.woff2')format("woff");}.ff22_c00174{font-family:ff22_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:ff23_c00174;src:url('chunks/assets/font_da046d8863208e07021cbc2f.woff2')format("woff");}.ff23_c00174{font-family:ff23_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:ff24_c00174;src:url('chunks/assets/font_7c2a74352c58defd901bedde.woff2')format("woff");}.ff24_c00174{font-family:ff24_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00174;src:url('chunks/assets/font_81123b5c4da55382efc41d46.woff2')format("woff");}.ff25_c00174{font-family:ff25_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:ff26_c00174;src:url('chunks/assets/font_bf5b4f9c63be754957e827ae.woff2')format("woff");}.ff26_c00174{font-family:ff26_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:ff27_c00174;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff27_c00174{font-family:ff27_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:ff28_c00174;src:url('chunks/assets/font_bca48a6a2e3b9c8e0099a531.woff2')format("woff");}.ff28_c00174{font-family:ff28_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:ff29_c00174;src:url('chunks/assets/font_7c2a74352c58defd901bedde.woff2')format("woff");}.ff29_c00174{font-family:ff29_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00174;src:url('chunks/assets/font_bbad2e574e4b929f0857137d.woff2')format("woff");}.ff2a_c00174{font-family:ff2a_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:ff2b_c00174;src:url('chunks/assets/font_0986301b8c28ab8dcc925251.woff2')format("woff");}.ff2b_c00174{font-family:ff2b_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:ff2c_c00174;src:url('chunks/assets/font_d585f4eb206342be368c30f2.woff2')format("woff");}.ff2c_c00174{font-family:ff2c_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:ff2d_c00174;src:url('chunks/assets/font_8683ad565569956f5b3ab6bf.woff2')format("woff");}.ff2d_c00174{font-family:ff2d_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00174;src:url('chunks/assets/font_76dbdee6ea0e5b60c8c52cb8.woff2')format("woff");}.ff2e_c00174{font-family:ff2e_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:ff2f_c00174;src:url('chunks/assets/font_bd0026456532b9a0b68c3bf3.woff2')format("woff");}.ff2f_c00174{font-family:ff2f_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:ff30_c00174;src:url('chunks/assets/font_8683ad565569956f5b3ab6bf.woff2')format("woff");}.ff30_c00174{font-family:ff30_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00174;src:url('chunks/assets/font_c565005fdf4fdfac52485684.woff2')format("woff");}.ff31_c00174{font-family:ff31_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:ff32_c00174;src:url('chunks/assets/font_8683ad565569956f5b3ab6bf.woff2')format("woff");}.ff32_c00174{font-family:ff32_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00174;src:url('chunks/assets/font_e9de6f1f74ba0dba349a2fd7.woff2')format("woff");}.ff33_c00174{font-family:ff33_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:ff34_c00174;src:url('chunks/assets/font_f4eff995b1f2a49a07202df3.woff2')format("woff");}.ff34_c00174{font-family:ff34_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:ff35_c00174;src:url('chunks/assets/font_23b29c27303246b0a86e0704.woff2')format("woff");}.ff35_c00174{font-family:ff35_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:ff36_c00174;src:url('chunks/assets/font_a13742724940fbde8f20812b.woff2')format("woff");}.ff36_c00174{font-family:ff36_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:ff37_c00174;src:url('chunks/assets/font_bf142d32a3be0afe26c3fcd5.woff2')format("woff");}.ff37_c00174{font-family:ff37_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:ff38_c00174;src:url('chunks/assets/font_fc7209c48d56864022b6e80c.woff2')format("woff");}.ff38_c00174{font-family:ff38_c00174;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00174;src:url('chunks/assets/font_1d18beec495ef92b5c2aeefd.woff2')format("woff");}.ff39_c00174{font-family:ff39_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:ff3a_c00174;src:url('chunks/assets/font_cf6fb96fd2165dbc835cbfef.woff2')format("woff");}.ff3a_c00174{font-family:ff3a_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:ff3b_c00174;src:url('chunks/assets/font_c47d7eabb07496191a951239.woff2')format("woff");}.ff3b_c00174{font-family:ff3b_c00174;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00174;src:url('chunks/assets/font_c67279a2b221ce0302cea401.woff2')format("woff");}.ff3c_c00174{font-family:ff3c_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00174;src:url('chunks/assets/font_14f8c49c4d181a5dae5a60a3.woff2')format("woff");}.ff3d_c00174{font-family:ff3d_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00174;src:url('chunks/assets/font_7b7012c986710be65f8eabf9.woff2')format("woff");}.ff3e_c00174{font-family:ff3e_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00174;src:url('chunks/assets/font_5e0a6289a88d2f2a9281918f.woff2')format("woff");}.ff3f_c00174{font-family:ff3f_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00174;src:url('chunks/assets/font_8ec5b204a8cfcb3393035ae4.woff2')format("woff");}.ff40_c00174{font-family:ff40_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41_c00174;src:url('chunks/assets/font_eee95dc1839833bd12b5cb69.woff2')format("woff");}.ff41_c00174{font-family:ff41_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00174;src:url('chunks/assets/font_2c03da2dd5b101bdcd924ac3.woff2')format("woff");}.ff42_c00174{font-family:ff42_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43_c00174;src:url('chunks/assets/font_aa601f479d98903bb1695034.woff2')format("woff");}.ff43_c00174{font-family:ff43_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44_c00174;src:url('chunks/assets/font_5df88ed07cd7c53f6a5072f8.woff2')format("woff");}.ff44_c00174{font-family:ff44_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45_c00174;src:url('chunks/assets/font_ea1058a5b56e1dc8aa8c081e.woff2')format("woff");}.ff45_c00174{font-family:ff45_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46_c00174;src:url('chunks/assets/font_4536e0701382edc103c678aa.woff2')format("woff");}.ff46_c00174{font-family:ff46_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00174;src:url('chunks/assets/font_1cafe006850207f111548d18.woff2')format("woff");}.ff47_c00174{font-family:ff47_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48_c00174;src:url('chunks/assets/font_51fa23a2526d85e807c8bcc8.woff2')format("woff");}.ff48_c00174{font-family:ff48_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49_c00174;src:url('chunks/assets/font_5adb12effe701e3c84df7f46.woff2')format("woff");}.ff49_c00174{font-family:ff49_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a_c00174;src:url('chunks/assets/font_801797a4e5e4878ee1229863.woff2')format("woff");}.ff4a_c00174{font-family:ff4a_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b_c00174;src:url('chunks/assets/font_d01c92ca597919839afe500e.woff2')format("woff");}.ff4b_c00174{font-family:ff4b_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c_c00174;src:url('chunks/assets/font_362d893cc31787f80a8a872c.woff2')format("woff");}.ff4c_c00174{font-family:ff4c_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d_c00174;src:url('chunks/assets/font_e9cff95714f153589c35d5f4.woff2')format("woff");}.ff4d_c00174{font-family:ff4d_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e_c00174;src:url('chunks/assets/font_ef21407262fd34c5bb7545a8.woff2')format("woff");}.ff4e_c00174{font-family:ff4e_c00174;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls10_c00174{letter-spacing:0.000000px;}
.lsa_c00174{letter-spacing:0.014400px;}
.ls0_c00174{letter-spacing:0.072000px;}
.lsc_c00174{letter-spacing:2.102400px;}
.ls5_c00174{letter-spacing:2.210400px;}
.ls6_c00174{letter-spacing:2.232000px;}
.ls9_c00174{letter-spacing:2.952000px;}
.ls4_c00174{letter-spacing:5.076000px;}
.ls1_c00174{letter-spacing:6.480000px;}
.ls7_c00174{letter-spacing:8.258400px;}
.ls8_c00174{letter-spacing:8.352000px;}
.ls3_c00174{letter-spacing:8.366400px;}
.ls2_c00174{letter-spacing:12.168000px;}
.lse_c00174{letter-spacing:12.355200px;}
.lsd_c00174{letter-spacing:12.484800px;}
.lsb_c00174{letter-spacing:19.224000px;}
.lsf_c00174{letter-spacing:29.376000px;}
.sc__c00174{text-shadow:none;}
.sc0_c00174{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00174{-webkit-text-stroke:0px transparent;}
.sc0_c00174{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00174{word-spacing:-0.086400px;}
.ws0_c00174{word-spacing:-0.072000px;}
.ws2_c00174{word-spacing:0.000000px;}
._5_c00174{width:1.490400px;}
._0_c00174{width:2.635200px;}
._6_c00174{width:3.816000px;}
._4_c00174{width:5.148000px;}
._1_c00174{width:6.487200px;}
._3_c00174{width:8.395200px;}
._c_c00174{width:9.756000px;}
._2_c00174{width:12.312000px;}
._8_c00174{width:13.435200px;}
._b_c00174{width:16.898400px;}
._7_c00174{width:19.281600px;}
._a_c00174{width:21.736800px;}
._9_c00174{width:29.448000px;}
.fc1_c00174{color:transparent;}
.fc0_c00174{color:rgb(0,0,0);}
.fs1_c00174{font-size:64.800000px;}
.fs0_c00174{font-size:72.000000px;}
.y0_c00174{bottom:0.000000px;}
.y5_c00174{bottom:5.040000px;}
.y1_c00174{bottom:12.735000px;}
.y3_c00174{bottom:45.045000px;}
.y4_c00174{bottom:52.740000px;}
.y21_c00174{bottom:110.565000px;}
.y20_c00174{bottom:146.565000px;}
.y1f_c00174{bottom:182.565000px;}
.y1e_c00174{bottom:218.565000px;}
.y1d_c00174{bottom:254.565000px;}
.y1c_c00174{bottom:290.565000px;}
.y1b_c00174{bottom:326.565000px;}
.y1a_c00174{bottom:362.565000px;}
.y19_c00174{bottom:398.565000px;}
.y18_c00174{bottom:434.565000px;}
.y17_c00174{bottom:470.565000px;}
.y16_c00174{bottom:506.565000px;}
.y15_c00174{bottom:542.565000px;}
.y14_c00174{bottom:578.565000px;}
.y13_c00174{bottom:614.565000px;}
.y12_c00174{bottom:650.565000px;}
.y11_c00174{bottom:686.565000px;}
.y10_c00174{bottom:722.565000px;}
.yf_c00174{bottom:758.565000px;}
.ye_c00174{bottom:794.565000px;}
.yd_c00174{bottom:830.565000px;}
.yc_c00174{bottom:866.565000px;}
.yb_c00174{bottom:902.565000px;}
.ya_c00174{bottom:938.565000px;}
.y9_c00174{bottom:974.565000px;}
.y8_c00174{bottom:1010.565000px;}
.y7_c00174{bottom:1046.565000px;}
.y6_c00174{bottom:1082.565000px;}
.y2_c00174{bottom:1165.365000px;}
.h4_c00174{height:20.880000px;}
.h3_c00174{height:70.664062px;}
.h7_c00174{height:71.824219px;}
.h6_c00174{height:72.562500px;}
.h5_c00174{height:74.004654px;}
.h2_c00174{height:1237.365000px;}
.h0_c00174{height:1262.835000px;}
.h1_c00174{height:1263.000000px;}
.w3_c00174{width:27.000000px;}
.w2_c00174{width:867.465000px;}
.w0_c00174{width:892.935000px;}
.w1_c00174{width:893.250000px;}
.x0_c00174{left:0.000000px;}
.x1_c00174{left:12.735000px;}
.x3_c00174{left:95.406300px;}
.x5_c00174{left:149.400150px;}
.x4_c00174{left:433.215000px;}
.x2_c00174{left:878.550300px;}
@media print{
.v0_c00174{vertical-align:0.000000pt;}
.ls10_c00174{letter-spacing:0.000000pt;}
.lsa_c00174{letter-spacing:0.012800pt;}
.ls0_c00174{letter-spacing:0.064000pt;}
.lsc_c00174{letter-spacing:1.868800pt;}
.ls5_c00174{letter-spacing:1.964800pt;}
.ls6_c00174{letter-spacing:1.984000pt;}
.ls9_c00174{letter-spacing:2.624000pt;}
.ls4_c00174{letter-spacing:4.512000pt;}
.ls1_c00174{letter-spacing:5.760000pt;}
.ls7_c00174{letter-spacing:7.340800pt;}
.ls8_c00174{letter-spacing:7.424000pt;}
.ls3_c00174{letter-spacing:7.436800pt;}
.ls2_c00174{letter-spacing:10.816000pt;}
.lse_c00174{letter-spacing:10.982400pt;}
.lsd_c00174{letter-spacing:11.097600pt;}
.lsb_c00174{letter-spacing:17.088000pt;}
.lsf_c00174{letter-spacing:26.112000pt;}
.ws1_c00174{word-spacing:-0.076800pt;}
.ws0_c00174{word-spacing:-0.064000pt;}
.ws2_c00174{word-spacing:0.000000pt;}
._5_c00174{width:1.324800pt;}
._0_c00174{width:2.342400pt;}
._6_c00174{width:3.392000pt;}
._4_c00174{width:4.576000pt;}
._1_c00174{width:5.766400pt;}
._3_c00174{width:7.462400pt;}
._c_c00174{width:8.672000pt;}
._2_c00174{width:10.944000pt;}
._8_c00174{width:11.942400pt;}
._b_c00174{width:15.020800pt;}
._7_c00174{width:17.139200pt;}
._a_c00174{width:19.321600pt;}
._9_c00174{width:26.176000pt;}
.fs1_c00174{font-size:57.600000pt;}
.fs0_c00174{font-size:64.000000pt;}
.y0_c00174{bottom:0.000000pt;}
.y5_c00174{bottom:4.480000pt;}
.y1_c00174{bottom:11.320000pt;}
.y3_c00174{bottom:40.040000pt;}
.y4_c00174{bottom:46.880000pt;}
.y21_c00174{bottom:98.280000pt;}
.y20_c00174{bottom:130.280000pt;}
.y1f_c00174{bottom:162.280000pt;}
.y1e_c00174{bottom:194.280000pt;}
.y1d_c00174{bottom:226.280000pt;}
.y1c_c00174{bottom:258.280000pt;}
.y1b_c00174{bottom:290.280000pt;}
.y1a_c00174{bottom:322.280000pt;}
.y19_c00174{bottom:354.280000pt;}
.y18_c00174{bottom:386.280000pt;}
.y17_c00174{bottom:418.280000pt;}
.y16_c00174{bottom:450.280000pt;}
.y15_c00174{bottom:482.280000pt;}
.y14_c00174{bottom:514.280000pt;}
.y13_c00174{bottom:546.280000pt;}
.y12_c00174{bottom:578.280000pt;}
.y11_c00174{bottom:610.280000pt;}
.y10_c00174{bottom:642.280000pt;}
.yf_c00174{bottom:674.280000pt;}
.ye_c00174{bottom:706.280000pt;}
.yd_c00174{bottom:738.280000pt;}
.yc_c00174{bottom:770.280000pt;}
.yb_c00174{bottom:802.280000pt;}
.ya_c00174{bottom:834.280000pt;}
.y9_c00174{bottom:866.280000pt;}
.y8_c00174{bottom:898.280000pt;}
.y7_c00174{bottom:930.280000pt;}
.y6_c00174{bottom:962.280000pt;}
.y2_c00174{bottom:1035.880000pt;}
.h4_c00174{height:18.560000pt;}
.h3_c00174{height:62.812500pt;}
.h7_c00174{height:63.843750pt;}
.h6_c00174{height:64.500000pt;}
.h5_c00174{height:65.781915pt;}
.h2_c00174{height:1099.880000pt;}
.h0_c00174{height:1122.520000pt;}
.h1_c00174{height:1122.666667pt;}
.w3_c00174{width:24.000000pt;}
.w2_c00174{width:771.080000pt;}
.w0_c00174{width:793.720000pt;}
.w1_c00174{width:794.000000pt;}
.x0_c00174{left:0.000000pt;}
.x1_c00174{left:11.320000pt;}
.x3_c00174{left:84.805600pt;}
.x5_c00174{left:132.800133pt;}
.x4_c00174{left:385.080000pt;}
.x2_c00174{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d415700d5223a739e3096b0a.woff2')format("woff");}.ff1_c00175{font-family:ff1_c00175;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00175;src:url('chunks/assets/font_d806e0ad7a4edcdd831f9568.woff2')format("woff");}.ff2_c00175{font-family:ff2_c00175;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00175;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00175{font-family:ff3_c00175;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00175;src:url('chunks/assets/font_94e9888a7228658148c08915.woff2')format("woff");}.ff4_c00175{font-family:ff4_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00175;src:url('chunks/assets/font_38abf7eb642a35cc6185f87e.woff2')format("woff");}.ff5_c00175{font-family:ff5_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00175;src:url('chunks/assets/font_8c2d5a7735284950c668e824.woff2')format("woff");}.ff6_c00175{font-family:ff6_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00175;src:url('chunks/assets/font_366a07edadae6b10fcdb85cd.woff2')format("woff");}.ff7_c00175{font-family:ff7_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00175;src:url('chunks/assets/font_b5b108a7d5ce614faf6e75db.woff2')format("woff");}.ff8_c00175{font-family:ff8_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00175;src:url('chunks/assets/font_779780bf64a32f7191101374.woff2')format("woff");}.ff9_c00175{font-family:ff9_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00175;src:url('chunks/assets/font_246f305f357c1b29a8fc1c5f.woff2')format("woff");}.ffa_c00175{font-family:ffa_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00175;src:url('chunks/assets/font_69f1360dfe4497227bebc40e.woff2')format("woff");}.ffb_c00175{font-family:ffb_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00175;src:url('chunks/assets/font_61e150332d2dc13f9344f122.woff2')format("woff");}.ffc_c00175{font-family:ffc_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00175;src:url('chunks/assets/font_9c331b76b0e7660d5d98c750.woff2')format("woff");}.ffd_c00175{font-family:ffd_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00175;src:url('chunks/assets/font_60faa400584073b7fad8bdcb.woff2')format("woff");}.ffe_c00175{font-family:ffe_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00175;src:url('chunks/assets/font_47c09e0b2d47847a95e1f759.woff2')format("woff");}.fff_c00175{font-family:fff_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00175;src:url('chunks/assets/font_4ad1f87a57dd727362890285.woff2')format("woff");}.ff10_c00175{font-family:ff10_c00175;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:ff11_c00175;src:url('chunks/assets/font_bbf470cd4cae799f2f99fc1e.woff2')format("woff");}.ff11_c00175{font-family:ff11_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00175;src:url('chunks/assets/font_6d67ae650899dccf47a58df1.woff2')format("woff");}.ff12_c00175{font-family:ff12_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00175;src:url('chunks/assets/font_dbc236ccefa8b25d07e55256.woff2')format("woff");}.ff13_c00175{font-family:ff13_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00175;src:url('chunks/assets/font_70fe70879455467186655394.woff2')format("woff");}.ff14_c00175{font-family:ff14_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00175;src:url('chunks/assets/font_5b2628a6a6d50a592c958a6c.woff2')format("woff");}.ff15_c00175{font-family:ff15_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00175;src:url('chunks/assets/font_073b872f140e4fd683bf60ed.woff2')format("woff");}.ff16_c00175{font-family:ff16_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00175;src:url('chunks/assets/font_34023872279cf6f90e69f856.woff2')format("woff");}.ff17_c00175{font-family:ff17_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00175;src:url('chunks/assets/font_f58fa72007728ed46299ac66.woff2')format("woff");}.ff18_c00175{font-family:ff18_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00175;src:url('chunks/assets/font_c982daca3ce91a7f04640d60.woff2')format("woff");}.ff19_c00175{font-family:ff19_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00175;src:url('chunks/assets/font_deb0890c6fcb595731a68966.woff2')format("woff");}.ff1a_c00175{font-family:ff1a_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00175;src:url('chunks/assets/font_fc03fdc976bacb5bb66b1242.woff2')format("woff");}.ff1b_c00175{font-family:ff1b_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00175;src:url('chunks/assets/font_e69db0b679d72620ec7876f8.woff2')format("woff");}.ff1c_c00175{font-family:ff1c_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00175;src:url('chunks/assets/font_7a5b542b93a19aff5ab4c7ba.woff2')format("woff");}.ff1d_c00175{font-family:ff1d_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00175;src:url('chunks/assets/font_0c6dfbf6ad8a1c30025832fc.woff2')format("woff");}.ff1e_c00175{font-family:ff1e_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00175;src:url('chunks/assets/font_08207b7fc26332e2eb2dbc10.woff2')format("woff");}.ff1f_c00175{font-family:ff1f_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00175;src:url('chunks/assets/font_39bbba13f2f0e8b7a489fc90.woff2')format("woff");}.ff20_c00175{font-family:ff20_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00175;src:url('chunks/assets/font_304c9a0f6270e112e24343fa.woff2')format("woff");}.ff21_c00175{font-family:ff21_c00175;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00175;src:url('chunks/assets/font_c4d70be4a46c02e0733fd8c4.woff2')format("woff");}.ff22_c00175{font-family:ff22_c00175;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00175;src:url('chunks/assets/font_23a30dddf6071be97f68d2c8.woff2')format("woff");}.ff23_c00175{font-family:ff23_c00175;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00175;src:url('chunks/assets/font_2684caabed723145e407ef6d.woff2')format("woff");}.ff24_c00175{font-family:ff24_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00175;src:url('chunks/assets/font_a900a41e8673e7c635b6fa3a.woff2')format("woff");}.ff25_c00175{font-family:ff25_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00175;src:url('chunks/assets/font_f05bf834f52486d5052dda55.woff2')format("woff");}.ff26_c00175{font-family:ff26_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00175;src:url('chunks/assets/font_593abc93b7b0e9339b8a77ea.woff2')format("woff");}.ff27_c00175{font-family:ff27_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00175;src:url('chunks/assets/font_dc3fb8f0d96a4a7996c66bae.woff2')format("woff");}.ff28_c00175{font-family:ff28_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00175;src:url('chunks/assets/font_1b5d752aa9f1da9525d30d30.woff2')format("woff");}.ff29_c00175{font-family:ff29_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00175;src:url('chunks/assets/font_0f6bb3c3682e6d6dc61de2fe.woff2')format("woff");}.ff2a_c00175{font-family:ff2a_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00175;src:url('chunks/assets/font_4e8ea68cd6519c3218ab68b4.woff2')format("woff");}.ff2b_c00175{font-family:ff2b_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00175;src:url('chunks/assets/font_107e331f06200bc3ec6a7959.woff2')format("woff");}.ff2c_c00175{font-family:ff2c_c00175;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00175{letter-spacing:0.000000px;}
.sc__c00175{text-shadow:none;}
.sc0_c00175{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00175{-webkit-text-stroke:0px transparent;}
.sc0_c00175{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00175{word-spacing:-0.072000px;}
.ws1_c00175{word-spacing:0.000000px;}
._5_c00175{width:1.512000px;}
._1_c00175{width:2.527200px;}
._0_c00175{width:4.312800px;}
._3_c00175{width:5.479200px;}
._8_c00175{width:7.041600px;}
._2_c00175{width:8.287200px;}
._7_c00175{width:9.352800px;}
._4_c00175{width:11.520000px;}
._6_c00175{width:13.017600px;}
._9_c00175{width:14.097600px;}
.fc1_c00175{color:transparent;}
.fc0_c00175{color:rgb(0,0,0);}
.fs1_c00175{font-size:64.800000px;}
.fs0_c00175{font-size:72.000000px;}
.y0_c00175{bottom:0.000000px;}
.y5_c00175{bottom:5.040000px;}
.y1_c00175{bottom:12.735000px;}
.y3_c00175{bottom:45.045000px;}
.y4_c00175{bottom:52.740000px;}
.y20_c00175{bottom:146.565000px;}
.y1f_c00175{bottom:182.565000px;}
.y1e_c00175{bottom:218.565000px;}
.y1d_c00175{bottom:254.565000px;}
.y1c_c00175{bottom:290.565000px;}
.y1b_c00175{bottom:326.565000px;}
.y1a_c00175{bottom:362.565000px;}
.y19_c00175{bottom:398.565000px;}
.y18_c00175{bottom:434.565000px;}
.y17_c00175{bottom:470.565000px;}
.y16_c00175{bottom:506.565000px;}
.y15_c00175{bottom:542.565000px;}
.y14_c00175{bottom:578.565000px;}
.y13_c00175{bottom:614.565000px;}
.y12_c00175{bottom:650.565000px;}
.y11_c00175{bottom:686.565000px;}
.y10_c00175{bottom:722.565000px;}
.yf_c00175{bottom:758.565000px;}
.ye_c00175{bottom:794.565000px;}
.yd_c00175{bottom:830.565000px;}
.yc_c00175{bottom:866.565000px;}
.yb_c00175{bottom:902.565000px;}
.ya_c00175{bottom:938.565000px;}
.y9_c00175{bottom:974.565000px;}
.y8_c00175{bottom:1010.565000px;}
.y7_c00175{bottom:1046.565000px;}
.y6_c00175{bottom:1082.565000px;}
.y2_c00175{bottom:1165.365000px;}
.h4_c00175{height:20.880000px;}
.h5_c00175{height:70.664062px;}
.h6_c00175{height:71.824219px;}
.h3_c00175{height:74.004654px;}
.h2_c00175{height:1237.365000px;}
.h0_c00175{height:1262.835000px;}
.h1_c00175{height:1263.000000px;}
.w3_c00175{width:27.000000px;}
.w2_c00175{width:867.465000px;}
.w0_c00175{width:892.935000px;}
.w1_c00175{width:893.250000px;}
.x0_c00175{left:0.000000px;}
.x1_c00175{left:12.735000px;}
.x3_c00175{left:95.406300px;}
.x5_c00175{left:149.400150px;}
.x4_c00175{left:433.215000px;}
.x2_c00175{left:878.550300px;}
@media print{
.v0_c00175{vertical-align:0.000000pt;}
.ls0_c00175{letter-spacing:0.000000pt;}
.ws0_c00175{word-spacing:-0.064000pt;}
.ws1_c00175{word-spacing:0.000000pt;}
._5_c00175{width:1.344000pt;}
._1_c00175{width:2.246400pt;}
._0_c00175{width:3.833600pt;}
._3_c00175{width:4.870400pt;}
._8_c00175{width:6.259200pt;}
._2_c00175{width:7.366400pt;}
._7_c00175{width:8.313600pt;}
._4_c00175{width:10.240000pt;}
._6_c00175{width:11.571200pt;}
._9_c00175{width:12.531200pt;}
.fs1_c00175{font-size:57.600000pt;}
.fs0_c00175{font-size:64.000000pt;}
.y0_c00175{bottom:0.000000pt;}
.y5_c00175{bottom:4.480000pt;}
.y1_c00175{bottom:11.320000pt;}
.y3_c00175{bottom:40.040000pt;}
.y4_c00175{bottom:46.880000pt;}
.y20_c00175{bottom:130.280000pt;}
.y1f_c00175{bottom:162.280000pt;}
.y1e_c00175{bottom:194.280000pt;}
.y1d_c00175{bottom:226.280000pt;}
.y1c_c00175{bottom:258.280000pt;}
.y1b_c00175{bottom:290.280000pt;}
.y1a_c00175{bottom:322.280000pt;}
.y19_c00175{bottom:354.280000pt;}
.y18_c00175{bottom:386.280000pt;}
.y17_c00175{bottom:418.280000pt;}
.y16_c00175{bottom:450.280000pt;}
.y15_c00175{bottom:482.280000pt;}
.y14_c00175{bottom:514.280000pt;}
.y13_c00175{bottom:546.280000pt;}
.y12_c00175{bottom:578.280000pt;}
.y11_c00175{bottom:610.280000pt;}
.y10_c00175{bottom:642.280000pt;}
.yf_c00175{bottom:674.280000pt;}
.ye_c00175{bottom:706.280000pt;}
.yd_c00175{bottom:738.280000pt;}
.yc_c00175{bottom:770.280000pt;}
.yb_c00175{bottom:802.280000pt;}
.ya_c00175{bottom:834.280000pt;}
.y9_c00175{bottom:866.280000pt;}
.y8_c00175{bottom:898.280000pt;}
.y7_c00175{bottom:930.280000pt;}
.y6_c00175{bottom:962.280000pt;}
.y2_c00175{bottom:1035.880000pt;}
.h4_c00175{height:18.560000pt;}
.h5_c00175{height:62.812500pt;}
.h6_c00175{height:63.843750pt;}
.h3_c00175{height:65.781915pt;}
.h2_c00175{height:1099.880000pt;}
.h0_c00175{height:1122.520000pt;}
.h1_c00175{height:1122.666667pt;}
.w3_c00175{width:24.000000pt;}
.w2_c00175{width:771.080000pt;}
.w0_c00175{width:793.720000pt;}
.w1_c00175{width:794.000000pt;}
.x0_c00175{left:0.000000pt;}
.x1_c00175{left:11.320000pt;}
.x3_c00175{left:84.805600pt;}
.x5_c00175{left:132.800133pt;}
.x4_c00175{left:385.080000pt;}
.x2_c00175{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00176{font-family:ff1_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00176;src:url('chunks/assets/font_254321dc66dc5ba01bbcaf61.woff2')format("woff");}.ff2_c00176{font-family:ff2_c00176;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00176;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00176{font-family:ff3_c00176;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00176;src:url('chunks/assets/font_c4594a6d1c094cb857183f2e.woff2')format("woff");}.ff4_c00176{font-family:ff4_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00176;src:url('chunks/assets/font_01ecd5b41e214aef54d47930.woff2')format("woff");}.ff5_c00176{font-family:ff5_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00176;src:url('chunks/assets/font_c593f04f1c6898724d14f102.woff2')format("woff");}.ff6_c00176{font-family:ff6_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00176;src:url('chunks/assets/font_3cf9b5e24884e02af56785ae.woff2')format("woff");}.ff7_c00176{font-family:ff7_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00176;src:url('chunks/assets/font_a300653509fb89983d880a3e.woff2')format("woff");}.ff8_c00176{font-family:ff8_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00176;src:url('chunks/assets/font_1e48ce6a07b0d30cc94559a9.woff2')format("woff");}.ff9_c00176{font-family:ff9_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00176;src:url('chunks/assets/font_b06b83a7ce55a222e5c89727.woff2')format("woff");}.ffa_c00176{font-family:ffa_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00176;src:url('chunks/assets/font_4f28c424b978c3989dd53336.woff2')format("woff");}.ffb_c00176{font-family:ffb_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00176;src:url('chunks/assets/font_9ed8d676c679cc15324ba2d0.woff2')format("woff");}.ffc_c00176{font-family:ffc_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00176;src:url('chunks/assets/font_ca7c8d0debebce31be5cfbd4.woff2')format("woff");}.ffd_c00176{font-family:ffd_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00176;src:url('chunks/assets/font_f47518b8255ba04969754cbf.woff2')format("woff");}.ffe_c00176{font-family:ffe_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00176;src:url('chunks/assets/font_1ffed2626b27f12cc4eaad97.woff2')format("woff");}.fff_c00176{font-family:fff_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00176;src:url('chunks/assets/font_be41c0fa1cfaa6db7d0c36f6.woff2')format("woff");}.ff10_c00176{font-family:ff10_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00176;src:url('chunks/assets/font_d54783cd9f90f7136133fe56.woff2')format("woff");}.ff11_c00176{font-family:ff11_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00176;src:url('chunks/assets/font_10e7cdd8aeea3d6bbdef6d68.woff2')format("woff");}.ff12_c00176{font-family:ff12_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00176;src:url('chunks/assets/font_dc1bd698ff1efebde85da1cb.woff2')format("woff");}.ff13_c00176{font-family:ff13_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00176;src:url('chunks/assets/font_7250f93ee1f771541941c154.woff2')format("woff");}.ff14_c00176{font-family:ff14_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00176;src:url('chunks/assets/font_b336d3ecde2fbf4d3df3a64a.woff2')format("woff");}.ff15_c00176{font-family:ff15_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00176;src:url('chunks/assets/font_309b24e7a98416491adeb023.woff2')format("woff");}.ff16_c00176{font-family:ff16_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00176;src:url('chunks/assets/font_f03b43dac8183e64fba407e7.woff2')format("woff");}.ff17_c00176{font-family:ff17_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00176;src:url('chunks/assets/font_24734836b4c7dbed5d916d7d.woff2')format("woff");}.ff18_c00176{font-family:ff18_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00176;src:url('chunks/assets/font_799b3755ea6fbae2e06401c3.woff2')format("woff");}.ff19_c00176{font-family:ff19_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00176;src:url('chunks/assets/font_266515fbf6dd3a730254dafc.woff2')format("woff");}.ff1a_c00176{font-family:ff1a_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00176;src:url('chunks/assets/font_4a13b8a2ee3b9d81c354bb53.woff2')format("woff");}.ff1b_c00176{font-family:ff1b_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00176;src:url('chunks/assets/font_acd6846ae619c99dd5997b82.woff2')format("woff");}.ff1c_c00176{font-family:ff1c_c00176;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:ff1d_c00176;src:url('chunks/assets/font_dceb96c30526fa1fae10a32c.woff2')format("woff");}.ff1d_c00176{font-family:ff1d_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00176;src:url('chunks/assets/font_970ec9164880693684fb1859.woff2')format("woff");}.ff1e_c00176{font-family:ff1e_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00176;src:url('chunks/assets/font_8cce5649c2b79eda408ba1c1.woff2')format("woff");}.ff1f_c00176{font-family:ff1f_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00176;src:url('chunks/assets/font_ec4028dc417df35f6f38ff00.woff2')format("woff");}.ff20_c00176{font-family:ff20_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00176;src:url('chunks/assets/font_e44a94618880702e71c77ba4.woff2')format("woff");}.ff21_c00176{font-family:ff21_c00176;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00176;src:url('chunks/assets/font_025219315edc14f0f4eb449f.woff2')format("woff");}.ff22_c00176{font-family:ff22_c00176;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00176;src:url('chunks/assets/font_cd7ac8bccafd20a4d95492e4.woff2')format("woff");}.ff23_c00176{font-family:ff23_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00176;src:url('chunks/assets/font_a0f4c82465d289082a6285cb.woff2')format("woff");}.ff24_c00176{font-family:ff24_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00176;src:url('chunks/assets/font_2697793e940cd25ca293a985.woff2')format("woff");}.ff25_c00176{font-family:ff25_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00176;src:url('chunks/assets/font_0515b0462b7157bf535173f2.woff2')format("woff");}.ff26_c00176{font-family:ff26_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00176;src:url('chunks/assets/font_22262c017dcf52206649e3f8.woff2')format("woff");}.ff27_c00176{font-family:ff27_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00176;src:url('chunks/assets/font_345338f33c9a8e03a7dd62d7.woff2')format("woff");}.ff28_c00176{font-family:ff28_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00176;src:url('chunks/assets/font_d2a4c4cb7c27cb348a939145.woff2')format("woff");}.ff29_c00176{font-family:ff29_c00176;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:ff2a_c00176;src:url('chunks/assets/font_13502014b02224fdfeaf4abf.woff2')format("woff");}.ff2a_c00176{font-family:ff2a_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00176;src:url('chunks/assets/font_4a5df24395b4b08aba8c9d94.woff2')format("woff");}.ff2b_c00176{font-family:ff2b_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00176;src:url('chunks/assets/font_851d1499e5e0b072c33bb6d0.woff2')format("woff");}.ff2c_c00176{font-family:ff2c_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00176;src:url('chunks/assets/font_986e612adc91b750b926ac28.woff2')format("woff");}.ff2d_c00176{font-family:ff2d_c00176;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00176;src:url('chunks/assets/font_fa15d58204e329aeb31f8bf8.woff2')format("woff");}.ff2e_c00176{font-family:ff2e_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00176;src:url('chunks/assets/font_2fc90552a8c200b159ee1f2c.woff2')format("woff");}.ff2f_c00176{font-family:ff2f_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00176;src:url('chunks/assets/font_ca4fdc16c43ea94ff3460b3f.woff2')format("woff");}.ff30_c00176{font-family:ff30_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00176;src:url('chunks/assets/font_8142367d37008444475ea6b5.woff2')format("woff");}.ff31_c00176{font-family:ff31_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00176;src:url('chunks/assets/font_b2a859878cdf9f9cdb1221ca.woff2')format("woff");}.ff32_c00176{font-family:ff32_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00176;src:url('chunks/assets/font_d1c6cf111b4586852cf1d360.woff2')format("woff");}.ff33_c00176{font-family:ff33_c00176;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00176;src:url('chunks/assets/font_cd4adf5ce3d8ff93e826bfb7.woff2')format("woff");}.ff34_c00176{font-family:ff34_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00176;src:url('chunks/assets/font_6b69aad82e4915449b05bdb4.woff2')format("woff");}.ff35_c00176{font-family:ff35_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00176;src:url('chunks/assets/font_d28dd394a2f12ace912dff19.woff2')format("woff");}.ff36_c00176{font-family:ff36_c00176;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00176{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00176{vertical-align:0.000000px;}
.ls2_c00176{letter-spacing:-0.014400px;}
.ls1_c00176{letter-spacing:0.000000px;}
.ls0_c00176{letter-spacing:0.072000px;}
.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:-18.000000px;}
.ws0_c00176{word-spacing:-0.072000px;}
.ws2_c00176{word-spacing:0.000000px;}
._2_c00176{width:1.166400px;}
._5_c00176{width:3.132000px;}
._3_c00176{width:4.312800px;}
._6_c00176{width:5.572800px;}
._4_c00176{width:6.652800px;}
._1_c00176{width:8.193600px;}
._7_c00176{width:12.261600px;}
._0_c00176{width:14.191200px;}
._8_c00176{width:15.573600px;}
.fc1_c00176{color:transparent;}
.fc0_c00176{color:rgb(0,0,0);}
.fs1_c00176{font-size:64.800000px;}
.fs0_c00176{font-size:72.000000px;}
.y0_c00176{bottom:0.000000px;}
.y5_c00176{bottom:5.040000px;}
.y1_c00176{bottom:12.735000px;}
.y3_c00176{bottom:45.045000px;}
.y4_c00176{bottom:52.740000px;}
.y21_c00176{bottom:110.565000px;}
.y20_c00176{bottom:146.565000px;}
.y1f_c00176{bottom:182.565000px;}
.y1e_c00176{bottom:218.565000px;}
.y1d_c00176{bottom:254.565000px;}
.y1c_c00176{bottom:290.565000px;}
.y1b_c00176{bottom:326.565000px;}
.y1a_c00176{bottom:362.565000px;}
.y19_c00176{bottom:398.565000px;}
.y18_c00176{bottom:434.565000px;}
.y17_c00176{bottom:470.565000px;}
.y16_c00176{bottom:506.565000px;}
.y15_c00176{bottom:542.565000px;}
.y14_c00176{bottom:578.565000px;}
.y13_c00176{bottom:614.565000px;}
.y12_c00176{bottom:650.565000px;}
.y11_c00176{bottom:686.565000px;}
.y10_c00176{bottom:722.565000px;}
.yf_c00176{bottom:758.565000px;}
.ye_c00176{bottom:794.565000px;}
.yd_c00176{bottom:830.565000px;}
.yc_c00176{bottom:866.565000px;}
.yb_c00176{bottom:902.565000px;}
.ya_c00176{bottom:938.565000px;}
.y9_c00176{bottom:974.565000px;}
.y8_c00176{bottom:1010.565000px;}
.y7_c00176{bottom:1046.565000px;}
.y6_c00176{bottom:1082.565000px;}
.y2_c00176{bottom:1165.365000px;}
.h4_c00176{height:20.880000px;}
.h7_c00176{height:70.628906px;}
.h3_c00176{height:70.664062px;}
.h6_c00176{height:71.824219px;}
.h5_c00176{height:74.004654px;}
.h2_c00176{height:1237.365000px;}
.h0_c00176{height:1262.835000px;}
.h1_c00176{height:1263.000000px;}
.w3_c00176{width:27.000000px;}
.w2_c00176{width:867.465000px;}
.w0_c00176{width:892.935000px;}
.w1_c00176{width:893.250000px;}
.x0_c00176{left:0.000000px;}
.x1_c00176{left:12.735000px;}
.x3_c00176{left:95.406300px;}
.x5_c00176{left:149.400150px;}
.x4_c00176{left:433.215000px;}
.x2_c00176{left:878.550300px;}
@media print{
.v0_c00176{vertical-align:0.000000pt;}
.ls2_c00176{letter-spacing:-0.012800pt;}
.ls1_c00176{letter-spacing:0.000000pt;}
.ls0_c00176{letter-spacing:0.064000pt;}
.ws1_c00176{word-spacing:-16.000000pt;}
.ws0_c00176{word-spacing:-0.064000pt;}
.ws2_c00176{word-spacing:0.000000pt;}
._2_c00176{width:1.036800pt;}
._5_c00176{width:2.784000pt;}
._3_c00176{width:3.833600pt;}
._6_c00176{width:4.953600pt;}
._4_c00176{width:5.913600pt;}
._1_c00176{width:7.283200pt;}
._7_c00176{width:10.899200pt;}
._0_c00176{width:12.614400pt;}
._8_c00176{width:13.843200pt;}
.fs1_c00176{font-size:57.600000pt;}
.fs0_c00176{font-size:64.000000pt;}
.y0_c00176{bottom:0.000000pt;}
.y5_c00176{bottom:4.480000pt;}
.y1_c00176{bottom:11.320000pt;}
.y3_c00176{bottom:40.040000pt;}
.y4_c00176{bottom:46.880000pt;}
.y21_c00176{bottom:98.280000pt;}
.y20_c00176{bottom:130.280000pt;}
.y1f_c00176{bottom:162.280000pt;}
.y1e_c00176{bottom:194.280000pt;}
.y1d_c00176{bottom:226.280000pt;}
.y1c_c00176{bottom:258.280000pt;}
.y1b_c00176{bottom:290.280000pt;}
.y1a_c00176{bottom:322.280000pt;}
.y19_c00176{bottom:354.280000pt;}
.y18_c00176{bottom:386.280000pt;}
.y17_c00176{bottom:418.280000pt;}
.y16_c00176{bottom:450.280000pt;}
.y15_c00176{bottom:482.280000pt;}
.y14_c00176{bottom:514.280000pt;}
.y13_c00176{bottom:546.280000pt;}
.y12_c00176{bottom:578.280000pt;}
.y11_c00176{bottom:610.280000pt;}
.y10_c00176{bottom:642.280000pt;}
.yf_c00176{bottom:674.280000pt;}
.ye_c00176{bottom:706.280000pt;}
.yd_c00176{bottom:738.280000pt;}
.yc_c00176{bottom:770.280000pt;}
.yb_c00176{bottom:802.280000pt;}
.ya_c00176{bottom:834.280000pt;}
.y9_c00176{bottom:866.280000pt;}
.y8_c00176{bottom:898.280000pt;}
.y7_c00176{bottom:930.280000pt;}
.y6_c00176{bottom:962.280000pt;}
.y2_c00176{bottom:1035.880000pt;}
.h4_c00176{height:18.560000pt;}
.h7_c00176{height:62.781250pt;}
.h3_c00176{height:62.812500pt;}
.h6_c00176{height:63.843750pt;}
.h5_c00176{height:65.781915pt;}
.h2_c00176{height:1099.880000pt;}
.h0_c00176{height:1122.520000pt;}
.h1_c00176{height:1122.666667pt;}
.w3_c00176{width:24.000000pt;}
.w2_c00176{width:771.080000pt;}
.w0_c00176{width:793.720000pt;}
.w1_c00176{width:794.000000pt;}
.x0_c00176{left:0.000000pt;}
.x1_c00176{left:11.320000pt;}
.x3_c00176{left:84.805600pt;}
.x5_c00176{left:132.800133pt;}
.x4_c00176{left:385.080000pt;}
.x2_c00176{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00177{font-family:ff1_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00177;src:url('chunks/assets/font_4bc21a6eb53041d0ea517e98.woff2')format("woff");}.ff2_c00177{font-family:ff2_c00177;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00177;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00177{font-family:ff3_c00177;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00177;src:url('chunks/assets/font_91c87416c5dd224ad18dd351.woff2')format("woff");}.ff4_c00177{font-family:ff4_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00177;src:url('chunks/assets/font_0fd4f0c887cc587a6ef10a2f.woff2')format("woff");}.ff5_c00177{font-family:ff5_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00177;src:url('chunks/assets/font_9068573963dcee65f2963410.woff2')format("woff");}.ff6_c00177{font-family:ff6_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00177;src:url('chunks/assets/font_37b982fa85d32a74fecf8e6e.woff2')format("woff");}.ff7_c00177{font-family:ff7_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00177;src:url('chunks/assets/font_f0479c061983c2932eb36624.woff2')format("woff");}.ff8_c00177{font-family:ff8_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00177;src:url('chunks/assets/font_b8e4c86c1a91b799cfa78382.woff2')format("woff");}.ff9_c00177{font-family:ff9_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00177;src:url('chunks/assets/font_cee239f715ae838b18b5aed6.woff2')format("woff");}.ffa_c00177{font-family:ffa_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00177;src:url('chunks/assets/font_2e312c8a7606def1454109d0.woff2')format("woff");}.ffb_c00177{font-family:ffb_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00177;src:url('chunks/assets/font_f3c2390ea4dd821af48d0ff8.woff2')format("woff");}.ffc_c00177{font-family:ffc_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00177;src:url('chunks/assets/font_dd9cdc102134f44f2375bd74.woff2')format("woff");}.ffd_c00177{font-family:ffd_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00177;src:url('chunks/assets/font_cc7e0427694aeb7a1e501990.woff2')format("woff");}.ffe_c00177{font-family:ffe_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00177;src:url('chunks/assets/font_1518e7f3af0924723d389d31.woff2')format("woff");}.fff_c00177{font-family:fff_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00177;src:url('chunks/assets/font_b225da1d0ee02582b5b63712.woff2')format("woff");}.ff10_c00177{font-family:ff10_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00177;src:url('chunks/assets/font_ad9c01138af95b0c66ca5c9a.woff2')format("woff");}.ff11_c00177{font-family:ff11_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00177;src:url('chunks/assets/font_45c76be238eea294fb4609ef.woff2')format("woff");}.ff12_c00177{font-family:ff12_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00177;src:url('chunks/assets/font_404eda3cdb80f062d5f8523e.woff2')format("woff");}.ff13_c00177{font-family:ff13_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00177;src:url('chunks/assets/font_bb33c846379c8612946b5a43.woff2')format("woff");}.ff14_c00177{font-family:ff14_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00177;src:url('chunks/assets/font_a3fc544c9c009101cdb57b2e.woff2')format("woff");}.ff15_c00177{font-family:ff15_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00177;src:url('chunks/assets/font_2b6e147e4741b3d221288234.woff2')format("woff");}.ff16_c00177{font-family:ff16_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00177;src:url('chunks/assets/font_d3c2815ef561c3f7d02cd54e.woff2')format("woff");}.ff17_c00177{font-family:ff17_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00177;src:url('chunks/assets/font_dfe67c7e8b47b40fdc885a24.woff2')format("woff");}.ff18_c00177{font-family:ff18_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00177;src:url('chunks/assets/font_a9f7cf2e4dfd881c698d954a.woff2')format("woff");}.ff19_c00177{font-family:ff19_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00177;src:url('chunks/assets/font_c8d4a41856f9d9cad62f514d.woff2')format("woff");}.ff1a_c00177{font-family:ff1a_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00177;src:url('chunks/assets/font_d15deaeda4da5ac1a5f4b53c.woff2')format("woff");}.ff1b_c00177{font-family:ff1b_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00177;src:url('chunks/assets/font_2f3a5868c5c4942e6c15281d.woff2')format("woff");}.ff1c_c00177{font-family:ff1c_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00177;src:url('chunks/assets/font_40fed507949fd822f71c7425.woff2')format("woff");}.ff1d_c00177{font-family:ff1d_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00177;src:url('chunks/assets/font_8bf47a09a443f286135d783d.woff2')format("woff");}.ff1e_c00177{font-family:ff1e_c00177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00177;src:url('chunks/assets/font_d5b284d49e3e4f608098628a.woff2')format("woff");}.ff1f_c00177{font-family:ff1f_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00177;src:url('chunks/assets/font_cc77b48f80cdce183eb3f458.woff2')format("woff");}.ff20_c00177{font-family:ff20_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00177;src:url('chunks/assets/font_dd09208a832b25d717b6f30a.woff2')format("woff");}.ff21_c00177{font-family:ff21_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00177;src:url('chunks/assets/font_cd8136ec5163f118cc4eb123.woff2')format("woff");}.ff22_c00177{font-family:ff22_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00177;src:url('chunks/assets/font_ff1bb6300f5f5ca25f335270.woff2')format("woff");}.ff23_c00177{font-family:ff23_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00177;src:url('chunks/assets/font_60ba89c66175986979b029da.woff2')format("woff");}.ff24_c00177{font-family:ff24_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00177;src:url('chunks/assets/font_b3a9b8e66f676439e5d676cf.woff2')format("woff");}.ff25_c00177{font-family:ff25_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00177;src:url('chunks/assets/font_4dfc50ce4255394db24b0304.woff2')format("woff");}.ff26_c00177{font-family:ff26_c00177;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00177;src:url('chunks/assets/font_3423d3bd42be39b9bb7fd2c0.woff2')format("woff");}.ff27_c00177{font-family:ff27_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00177;src:url('chunks/assets/font_5b0171407455fb2b77895732.woff2')format("woff");}.ff28_c00177{font-family:ff28_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00177;src:url('chunks/assets/font_69b468f5a560470066c8929f.woff2')format("woff");}.ff29_c00177{font-family:ff29_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00177;src:url('chunks/assets/font_c940e283d6017f605261f376.woff2')format("woff");}.ff2a_c00177{font-family:ff2a_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00177;src:url('chunks/assets/font_bd59ee7b628b26fea896ce5a.woff2')format("woff");}.ff2b_c00177{font-family:ff2b_c00177;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00177{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00177{vertical-align:0.000000px;}
.ls1_c00177{letter-spacing:0.000000px;}
.ls0_c00177{letter-spacing:0.072000px;}
.sc__c00177{text-shadow:none;}
.sc0_c00177{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00177{-webkit-text-stroke:0px transparent;}
.sc0_c00177{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00177{word-spacing:-0.072000px;}
.ws1_c00177{word-spacing:0.000000px;}
._a_c00177{width:1.202400px;}
._1_c00177{width:2.642400px;}
._5_c00177{width:4.399200px;}
._7_c00177{width:5.760000px;}
._c_c00177{width:7.272000px;}
._b_c00177{width:8.524800px;}
._d_c00177{width:9.554400px;}
._3_c00177{width:11.160000px;}
._0_c00177{width:12.384000px;}
._6_c00177{width:13.435200px;}
._4_c00177{width:22.723200px;}
._2_c00177{width:24.393600px;}
._9_c00177{width:25.394400px;}
._8_c00177{width:26.604000px;}
.fc1_c00177{color:transparent;}
.fc0_c00177{color:rgb(0,0,0);}
.fs1_c00177{font-size:64.800000px;}
.fs0_c00177{font-size:72.000000px;}
.y0_c00177{bottom:0.000000px;}
.y5_c00177{bottom:5.040000px;}
.y1_c00177{bottom:12.735000px;}
.y3_c00177{bottom:45.045000px;}
.y4_c00177{bottom:52.740000px;}
.y21_c00177{bottom:110.565000px;}
.y20_c00177{bottom:146.565000px;}
.y1f_c00177{bottom:182.565000px;}
.y1e_c00177{bottom:218.565000px;}
.y1d_c00177{bottom:254.565000px;}
.y1c_c00177{bottom:290.565000px;}
.y1b_c00177{bottom:326.565000px;}
.y1a_c00177{bottom:362.565000px;}
.y19_c00177{bottom:398.565000px;}
.y18_c00177{bottom:434.565000px;}
.y17_c00177{bottom:470.565000px;}
.y16_c00177{bottom:506.565000px;}
.y15_c00177{bottom:542.565000px;}
.y14_c00177{bottom:578.565000px;}
.y13_c00177{bottom:614.565000px;}
.y12_c00177{bottom:650.565000px;}
.y11_c00177{bottom:686.565000px;}
.y10_c00177{bottom:722.565000px;}
.yf_c00177{bottom:758.565000px;}
.ye_c00177{bottom:794.565000px;}
.yd_c00177{bottom:830.565000px;}
.yc_c00177{bottom:866.565000px;}
.yb_c00177{bottom:902.565000px;}
.ya_c00177{bottom:938.565000px;}
.y9_c00177{bottom:974.565000px;}
.y8_c00177{bottom:1010.565000px;}
.y7_c00177{bottom:1046.565000px;}
.y6_c00177{bottom:1082.565000px;}
.y2_c00177{bottom:1165.365000px;}
.h4_c00177{height:20.880000px;}
.h3_c00177{height:70.664062px;}
.h5_c00177{height:74.004654px;}
.h2_c00177{height:1237.365000px;}
.h0_c00177{height:1262.835000px;}
.h1_c00177{height:1263.000000px;}
.w3_c00177{width:27.000000px;}
.w2_c00177{width:867.465000px;}
.w0_c00177{width:892.935000px;}
.w1_c00177{width:893.250000px;}
.x0_c00177{left:0.000000px;}
.x1_c00177{left:12.735000px;}
.x3_c00177{left:95.406300px;}
.x5_c00177{left:149.400150px;}
.x4_c00177{left:433.215000px;}
.x2_c00177{left:878.550300px;}
@media print{
.v0_c00177{vertical-align:0.000000pt;}
.ls1_c00177{letter-spacing:0.000000pt;}
.ls0_c00177{letter-spacing:0.064000pt;}
.ws0_c00177{word-spacing:-0.064000pt;}
.ws1_c00177{word-spacing:0.000000pt;}
._a_c00177{width:1.068800pt;}
._1_c00177{width:2.348800pt;}
._5_c00177{width:3.910400pt;}
._7_c00177{width:5.120000pt;}
._c_c00177{width:6.464000pt;}
._b_c00177{width:7.577600pt;}
._d_c00177{width:8.492800pt;}
._3_c00177{width:9.920000pt;}
._0_c00177{width:11.008000pt;}
._6_c00177{width:11.942400pt;}
._4_c00177{width:20.198400pt;}
._2_c00177{width:21.683200pt;}
._9_c00177{width:22.572800pt;}
._8_c00177{width:23.648000pt;}
.fs1_c00177{font-size:57.600000pt;}
.fs0_c00177{font-size:64.000000pt;}
.y0_c00177{bottom:0.000000pt;}
.y5_c00177{bottom:4.480000pt;}
.y1_c00177{bottom:11.320000pt;}
.y3_c00177{bottom:40.040000pt;}
.y4_c00177{bottom:46.880000pt;}
.y21_c00177{bottom:98.280000pt;}
.y20_c00177{bottom:130.280000pt;}
.y1f_c00177{bottom:162.280000pt;}
.y1e_c00177{bottom:194.280000pt;}
.y1d_c00177{bottom:226.280000pt;}
.y1c_c00177{bottom:258.280000pt;}
.y1b_c00177{bottom:290.280000pt;}
.y1a_c00177{bottom:322.280000pt;}
.y19_c00177{bottom:354.280000pt;}
.y18_c00177{bottom:386.280000pt;}
.y17_c00177{bottom:418.280000pt;}
.y16_c00177{bottom:450.280000pt;}
.y15_c00177{bottom:482.280000pt;}
.y14_c00177{bottom:514.280000pt;}
.y13_c00177{bottom:546.280000pt;}
.y12_c00177{bottom:578.280000pt;}
.y11_c00177{bottom:610.280000pt;}
.y10_c00177{bottom:642.280000pt;}
.yf_c00177{bottom:674.280000pt;}
.ye_c00177{bottom:706.280000pt;}
.yd_c00177{bottom:738.280000pt;}
.yc_c00177{bottom:770.280000pt;}
.yb_c00177{bottom:802.280000pt;}
.ya_c00177{bottom:834.280000pt;}
.y9_c00177{bottom:866.280000pt;}
.y8_c00177{bottom:898.280000pt;}
.y7_c00177{bottom:930.280000pt;}
.y6_c00177{bottom:962.280000pt;}
.y2_c00177{bottom:1035.880000pt;}
.h4_c00177{height:18.560000pt;}
.h3_c00177{height:62.812500pt;}
.h5_c00177{height:65.781915pt;}
.h2_c00177{height:1099.880000pt;}
.h0_c00177{height:1122.520000pt;}
.h1_c00177{height:1122.666667pt;}
.w3_c00177{width:24.000000pt;}
.w2_c00177{width:771.080000pt;}
.w0_c00177{width:793.720000pt;}
.w1_c00177{width:794.000000pt;}
.x0_c00177{left:0.000000pt;}
.x1_c00177{left:11.320000pt;}
.x3_c00177{left:84.805600pt;}
.x5_c00177{left:132.800133pt;}
.x4_c00177{left:385.080000pt;}
.x2_c00177{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00178{font-family:ff1_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00178;src:url('chunks/assets/font_373944b7b217a7708e1dee0e.woff2')format("woff");}.ff2_c00178{font-family:ff2_c00178;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00178;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00178{font-family:ff3_c00178;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00178;src:url('chunks/assets/font_edad9fcf12aec9be3a9e83f7.woff2')format("woff");}.ff4_c00178{font-family:ff4_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00178;src:url('chunks/assets/font_2ea6823359349eb5f0a25a38.woff2')format("woff");}.ff5_c00178{font-family:ff5_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00178;src:url('chunks/assets/font_53165d45468802536051c88d.woff2')format("woff");}.ff6_c00178{font-family:ff6_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00178;src:url('chunks/assets/font_910561a99e4253e5b6eec877.woff2')format("woff");}.ff7_c00178{font-family:ff7_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00178;src:url('chunks/assets/font_c5098e8328dc6ece2485a773.woff2')format("woff");}.ff8_c00178{font-family:ff8_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00178;src:url('chunks/assets/font_5f99df48b5e5d7fe7f5f70cd.woff2')format("woff");}.ff9_c00178{font-family:ff9_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00178;src:url('chunks/assets/font_bdf310011d920891b77f3335.woff2')format("woff");}.ffa_c00178{font-family:ffa_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00178;src:url('chunks/assets/font_1a7c9cb757f327a57482ae80.woff2')format("woff");}.ffb_c00178{font-family:ffb_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00178;src:url('chunks/assets/font_784877c2510359159997a42d.woff2')format("woff");}.ffc_c00178{font-family:ffc_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00178;src:url('chunks/assets/font_548b5a26b659eb784837c76d.woff2')format("woff");}.ffd_c00178{font-family:ffd_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00178;src:url('chunks/assets/font_8bf4fb6f08eb5351cd9366de.woff2')format("woff");}.ffe_c00178{font-family:ffe_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00178;src:url('chunks/assets/font_62e90ecfb83faa7460dac573.woff2')format("woff");}.fff_c00178{font-family:fff_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00178;src:url('chunks/assets/font_13834186cfa6421ed119a3a0.woff2')format("woff");}.ff10_c00178{font-family:ff10_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00178;src:url('chunks/assets/font_f755ca0f524a974ccc3b8c9c.woff2')format("woff");}.ff11_c00178{font-family:ff11_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00178;src:url('chunks/assets/font_96e96e40fd56a5bccd8f4e96.woff2')format("woff");}.ff12_c00178{font-family:ff12_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00178;src:url('chunks/assets/font_1e8738f14c60c62f8f21e819.woff2')format("woff");}.ff13_c00178{font-family:ff13_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00178;src:url('chunks/assets/font_44ca56c882977f49d4f15668.woff2')format("woff");}.ff14_c00178{font-family:ff14_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00178;src:url('chunks/assets/font_1fab6e0686b4144b91e3e2d6.woff2')format("woff");}.ff15_c00178{font-family:ff15_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00178;src:url('chunks/assets/font_29ce6dfb606f9e0a0d611205.woff2')format("woff");}.ff16_c00178{font-family:ff16_c00178;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:ff17_c00178;src:url('chunks/assets/font_e9072a831e05d8b973bd4679.woff2')format("woff");}.ff17_c00178{font-family:ff17_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00178;src:url('chunks/assets/font_3ca9326d60b6570ef0d8659b.woff2')format("woff");}.ff18_c00178{font-family:ff18_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00178;src:url('chunks/assets/font_a9c4650d3b0dbde0cd30eefd.woff2')format("woff");}.ff19_c00178{font-family:ff19_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00178;src:url('chunks/assets/font_3445a7343fc175f214e8a3d0.woff2')format("woff");}.ff1a_c00178{font-family:ff1a_c00178;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:ff1b_c00178;src:url('chunks/assets/font_c7db044b80e7f81953045222.woff2')format("woff");}.ff1b_c00178{font-family:ff1b_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00178;src:url('chunks/assets/font_a3635d1b3fe4960261b85c5c.woff2')format("woff");}.ff1c_c00178{font-family:ff1c_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00178;src:url('chunks/assets/font_7915a32244bdd11f34358f1e.woff2')format("woff");}.ff1d_c00178{font-family:ff1d_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00178;src:url('chunks/assets/font_beb0bbdbd97065480de36184.woff2')format("woff");}.ff1e_c00178{font-family:ff1e_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00178;src:url('chunks/assets/font_df41d6d0ee75843ea89fdeb3.woff2')format("woff");}.ff1f_c00178{font-family:ff1f_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00178;src:url('chunks/assets/font_7c57887ff49c9dc4691e940f.woff2')format("woff");}.ff20_c00178{font-family:ff20_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00178;src:url('chunks/assets/font_04fe8b284f4b0a32034dae05.woff2')format("woff");}.ff21_c00178{font-family:ff21_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00178;src:url('chunks/assets/font_b80b8fa7dc1225653bf48bc2.woff2')format("woff");}.ff22_c00178{font-family:ff22_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00178;src:url('chunks/assets/font_a85e6ab65897e88e8fc22c27.woff2')format("woff");}.ff23_c00178{font-family:ff23_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00178;src:url('chunks/assets/font_c385a9bcfd21947b5d6c14ef.woff2')format("woff");}.ff24_c00178{font-family:ff24_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00178;src:url('chunks/assets/font_e52a458cdb9f906333a506cb.woff2')format("woff");}.ff25_c00178{font-family:ff25_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00178;src:url('chunks/assets/font_0d43837c6e1c839de2b7e4ad.woff2')format("woff");}.ff26_c00178{font-family:ff26_c00178;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:ff27_c00178;src:url('chunks/assets/font_fa3c693f06f2eef1f5e933e0.woff2')format("woff");}.ff27_c00178{font-family:ff27_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00178;src:url('chunks/assets/font_8c4e1f535768a4d1c055613e.woff2')format("woff");}.ff28_c00178{font-family:ff28_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00178;src:url('chunks/assets/font_b0927d37d66bc6fbb2a6011e.woff2')format("woff");}.ff29_c00178{font-family:ff29_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00178;src:url('chunks/assets/font_3424d94b7728cdf71954286e.woff2')format("woff");}.ff2a_c00178{font-family:ff2a_c00178;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00178{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00178{vertical-align:0.000000px;}
.ls1_c00178{letter-spacing:0.000000px;}
.ls2_c00178{letter-spacing:0.014400px;}
.ls0_c00178{letter-spacing:0.050400px;}
.sc__c00178{text-shadow:none;}
.sc0_c00178{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00178{-webkit-text-stroke:0px transparent;}
.sc0_c00178{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00178{word-spacing:-0.072000px;}
.ws1_c00178{word-spacing:0.000000px;}
._8_c00178{width:2.232000px;}
._9_c00178{width:3.585600px;}
._3_c00178{width:4.658400px;}
._1_c00178{width:5.781600px;}
._5_c00178{width:7.610400px;}
._6_c00178{width:10.188000px;}
._0_c00178{width:11.880000px;}
._2_c00178{width:13.521600px;}
._4_c00178{width:16.056000px;}
._a_c00178{width:19.627200px;}
._7_c00178{width:23.889600px;}
.fc1_c00178{color:transparent;}
.fc0_c00178{color:rgb(0,0,0);}
.fs1_c00178{font-size:64.800000px;}
.fs0_c00178{font-size:72.000000px;}
.y0_c00178{bottom:0.000000px;}
.y5_c00178{bottom:5.040000px;}
.y1_c00178{bottom:12.735000px;}
.y3_c00178{bottom:45.045000px;}
.y4_c00178{bottom:52.740000px;}
.y21_c00178{bottom:110.565000px;}
.y20_c00178{bottom:146.565000px;}
.y1f_c00178{bottom:182.565000px;}
.y1e_c00178{bottom:218.565000px;}
.y1d_c00178{bottom:254.565000px;}
.y1c_c00178{bottom:290.565000px;}
.y1b_c00178{bottom:326.565000px;}
.y1a_c00178{bottom:362.565000px;}
.y19_c00178{bottom:398.565000px;}
.y18_c00178{bottom:434.565000px;}
.y17_c00178{bottom:470.565000px;}
.y16_c00178{bottom:506.565000px;}
.y15_c00178{bottom:542.565000px;}
.y14_c00178{bottom:578.565000px;}
.y13_c00178{bottom:614.565000px;}
.y12_c00178{bottom:650.565000px;}
.y11_c00178{bottom:686.565000px;}
.y10_c00178{bottom:722.565000px;}
.yf_c00178{bottom:758.565000px;}
.ye_c00178{bottom:794.565000px;}
.yd_c00178{bottom:830.565000px;}
.yc_c00178{bottom:866.565000px;}
.yb_c00178{bottom:902.565000px;}
.ya_c00178{bottom:938.565000px;}
.y9_c00178{bottom:974.565000px;}
.y8_c00178{bottom:1010.565000px;}
.y7_c00178{bottom:1046.565000px;}
.y6_c00178{bottom:1082.565000px;}
.y2_c00178{bottom:1165.365000px;}
.h4_c00178{height:20.880000px;}
.h3_c00178{height:70.664062px;}
.h5_c00178{height:74.004654px;}
.h6_c00178{height:74.953125px;}
.h2_c00178{height:1237.365000px;}
.h0_c00178{height:1262.835000px;}
.h1_c00178{height:1263.000000px;}
.w3_c00178{width:27.000000px;}
.w2_c00178{width:867.465000px;}
.w0_c00178{width:892.935000px;}
.w1_c00178{width:893.250000px;}
.x0_c00178{left:0.000000px;}
.x1_c00178{left:12.735000px;}
.x3_c00178{left:95.406300px;}
.x5_c00178{left:149.400150px;}
.x4_c00178{left:433.215000px;}
.x2_c00178{left:878.550300px;}
@media print{
.v0_c00178{vertical-align:0.000000pt;}
.ls1_c00178{letter-spacing:0.000000pt;}
.ls2_c00178{letter-spacing:0.012800pt;}
.ls0_c00178{letter-spacing:0.044800pt;}
.ws0_c00178{word-spacing:-0.064000pt;}
.ws1_c00178{word-spacing:0.000000pt;}
._8_c00178{width:1.984000pt;}
._9_c00178{width:3.187200pt;}
._3_c00178{width:4.140800pt;}
._1_c00178{width:5.139200pt;}
._5_c00178{width:6.764800pt;}
._6_c00178{width:9.056000pt;}
._0_c00178{width:10.560000pt;}
._2_c00178{width:12.019200pt;}
._4_c00178{width:14.272000pt;}
._a_c00178{width:17.446400pt;}
._7_c00178{width:21.235200pt;}
.fs1_c00178{font-size:57.600000pt;}
.fs0_c00178{font-size:64.000000pt;}
.y0_c00178{bottom:0.000000pt;}
.y5_c00178{bottom:4.480000pt;}
.y1_c00178{bottom:11.320000pt;}
.y3_c00178{bottom:40.040000pt;}
.y4_c00178{bottom:46.880000pt;}
.y21_c00178{bottom:98.280000pt;}
.y20_c00178{bottom:130.280000pt;}
.y1f_c00178{bottom:162.280000pt;}
.y1e_c00178{bottom:194.280000pt;}
.y1d_c00178{bottom:226.280000pt;}
.y1c_c00178{bottom:258.280000pt;}
.y1b_c00178{bottom:290.280000pt;}
.y1a_c00178{bottom:322.280000pt;}
.y19_c00178{bottom:354.280000pt;}
.y18_c00178{bottom:386.280000pt;}
.y17_c00178{bottom:418.280000pt;}
.y16_c00178{bottom:450.280000pt;}
.y15_c00178{bottom:482.280000pt;}
.y14_c00178{bottom:514.280000pt;}
.y13_c00178{bottom:546.280000pt;}
.y12_c00178{bottom:578.280000pt;}
.y11_c00178{bottom:610.280000pt;}
.y10_c00178{bottom:642.280000pt;}
.yf_c00178{bottom:674.280000pt;}
.ye_c00178{bottom:706.280000pt;}
.yd_c00178{bottom:738.280000pt;}
.yc_c00178{bottom:770.280000pt;}
.yb_c00178{bottom:802.280000pt;}
.ya_c00178{bottom:834.280000pt;}
.y9_c00178{bottom:866.280000pt;}
.y8_c00178{bottom:898.280000pt;}
.y7_c00178{bottom:930.280000pt;}
.y6_c00178{bottom:962.280000pt;}
.y2_c00178{bottom:1035.880000pt;}
.h4_c00178{height:18.560000pt;}
.h3_c00178{height:62.812500pt;}
.h5_c00178{height:65.781915pt;}
.h6_c00178{height:66.625000pt;}
.h2_c00178{height:1099.880000pt;}
.h0_c00178{height:1122.520000pt;}
.h1_c00178{height:1122.666667pt;}
.w3_c00178{width:24.000000pt;}
.w2_c00178{width:771.080000pt;}
.w0_c00178{width:793.720000pt;}
.w1_c00178{width:794.000000pt;}
.x0_c00178{left:0.000000pt;}
.x1_c00178{left:11.320000pt;}
.x3_c00178{left:84.805600pt;}
.x5_c00178{left:132.800133pt;}
.x4_c00178{left:385.080000pt;}
.x2_c00178{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3c648e2dc55d418e41d7301.woff2')format("woff");}.ff1_c00179{font-family:ff1_c00179;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00179;src:url('chunks/assets/font_80372207d91bb21ab5745948.woff2')format("woff");}.ff2_c00179{font-family:ff2_c00179;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00179;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00179{font-family:ff3_c00179;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00179;src:url('chunks/assets/font_4812f8657f62dcff570e28b2.woff2')format("woff");}.ff4_c00179{font-family:ff4_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00179;src:url('chunks/assets/font_b8930502f1530fa2ab8e1767.woff2')format("woff");}.ff5_c00179{font-family:ff5_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00179;src:url('chunks/assets/font_6fb1fb6cd9847dcb1bb6310c.woff2')format("woff");}.ff6_c00179{font-family:ff6_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00179;src:url('chunks/assets/font_1cd53c14403ff8a7c722b488.woff2')format("woff");}.ff7_c00179{font-family:ff7_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00179;src:url('chunks/assets/font_f1722c6f4057897a4f63a6f2.woff2')format("woff");}.ff8_c00179{font-family:ff8_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00179;src:url('chunks/assets/font_3f204b1a860aebfcf95ff1ee.woff2')format("woff");}.ff9_c00179{font-family:ff9_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00179;src:url('chunks/assets/font_6b430f6ecb982326e081c5e3.woff2')format("woff");}.ffa_c00179{font-family:ffa_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00179;src:url('chunks/assets/font_41945146b47c0f7b9d5973f1.woff2')format("woff");}.ffb_c00179{font-family:ffb_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00179;src:url('chunks/assets/font_a10dbcb9673531ea48d0d259.woff2')format("woff");}.ffc_c00179{font-family:ffc_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00179;src:url('chunks/assets/font_9bd66c9652feeb7b9f62b2f1.woff2')format("woff");}.ffd_c00179{font-family:ffd_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00179;src:url('chunks/assets/font_747dc7da15d27b68e1cb8016.woff2')format("woff");}.ffe_c00179{font-family:ffe_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00179;src:url('chunks/assets/font_eb08081883fae9dd6fb69707.woff2')format("woff");}.fff_c00179{font-family:fff_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00179;src:url('chunks/assets/font_4363a0232d4ebf2edf8a1ef6.woff2')format("woff");}.ff10_c00179{font-family:ff10_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:ff11_c00179;src:url('chunks/assets/font_fa19a9649d1cbab0e9694156.woff2')format("woff");}.ff11_c00179{font-family:ff11_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00179;src:url('chunks/assets/font_1b7c35fafcb79ab3afc80c09.woff2')format("woff");}.ff12_c00179{font-family:ff12_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00179;src:url('chunks/assets/font_4ad8e52dc52bcc99335fa45c.woff2')format("woff");}.ff13_c00179{font-family:ff13_c00179;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:ff14_c00179;src:url('chunks/assets/font_448960ec42275409b9b82934.woff2')format("woff");}.ff14_c00179{font-family:ff14_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00179;src:url('chunks/assets/font_177664a7b89dccd9f7df929b.woff2')format("woff");}.ff15_c00179{font-family:ff15_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00179;src:url('chunks/assets/font_b89bd5533e3cb44f1c11e9ae.woff2')format("woff");}.ff16_c00179{font-family:ff16_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00179;src:url('chunks/assets/font_4ed23fb4bf09542b013ec421.woff2')format("woff");}.ff17_c00179{font-family:ff17_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00179;src:url('chunks/assets/font_a500db407f0a99394c551326.woff2')format("woff");}.ff18_c00179{font-family:ff18_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00179;src:url('chunks/assets/font_20c3f2cbf5293304a3930722.woff2')format("woff");}.ff19_c00179{font-family:ff19_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00179;src:url('chunks/assets/font_e07d1c080eae2d1d24eafa1b.woff2')format("woff");}.ff1a_c00179{font-family:ff1a_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00179;src:url('chunks/assets/font_857d6916fda2e5f690f2f8f5.woff2')format("woff");}.ff1b_c00179{font-family:ff1b_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:ff1c_c00179;src:url('chunks/assets/font_8d6a4491c737fd578d7fb366.woff2')format("woff");}.ff1c_c00179{font-family:ff1c_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00179;src:url('chunks/assets/font_c488b86e3c61ede2b93a6f4b.woff2')format("woff");}.ff1d_c00179{font-family:ff1d_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00179;src:url('chunks/assets/font_6fcd4f693c1236037b1fbd99.woff2')format("woff");}.ff1e_c00179{font-family:ff1e_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00179;src:url('chunks/assets/font_50741f9ee4813133b1dfa1e3.woff2')format("woff");}.ff1f_c00179{font-family:ff1f_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00179;src:url('chunks/assets/font_ad6b557222537e8b03cb1097.woff2')format("woff");}.ff20_c00179{font-family:ff20_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:ff21_c00179;src:url('chunks/assets/font_3877e5ada19627e9f90f2b52.woff2')format("woff");}.ff21_c00179{font-family:ff21_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:ff22_c00179;src:url('chunks/assets/font_8a2703bb396b3f9bd652173f.woff2')format("woff");}.ff22_c00179{font-family:ff22_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00179;src:url('chunks/assets/font_92a06cd9cfa10f50b94e00bc.woff2')format("woff");}.ff23_c00179{font-family:ff23_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00179;src:url('chunks/assets/font_779d83c856f4058aca3461f0.woff2')format("woff");}.ff24_c00179{font-family:ff24_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00179;src:url('chunks/assets/font_a3d3d78019acf3f53470ce07.woff2')format("woff");}.ff25_c00179{font-family:ff25_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00179;src:url('chunks/assets/font_441be3ff1339ed412d4db936.woff2')format("woff");}.ff26_c00179{font-family:ff26_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00179;src:url('chunks/assets/font_a42b41ea2d2d003ed403a5cb.woff2')format("woff");}.ff27_c00179{font-family:ff27_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00179;src:url('chunks/assets/font_510c16b6e6edd3d507e32ee4.woff2')format("woff");}.ff28_c00179{font-family:ff28_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00179;src:url('chunks/assets/font_2f7fee8025cd8657ec78c838.woff2')format("woff");}.ff29_c00179{font-family:ff29_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00179;src:url('chunks/assets/font_229d6c8e674de9bb1669a4f1.woff2')format("woff");}.ff2a_c00179{font-family:ff2a_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00179;src:url('chunks/assets/font_038ccd1f330ff7dee448c283.woff2')format("woff");}.ff2b_c00179{font-family:ff2b_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00179;src:url('chunks/assets/font_a28f94d641bd5eb86664f9df.woff2')format("woff");}.ff2c_c00179{font-family:ff2c_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00179;src:url('chunks/assets/font_a767a3f7307f6a2a281e9cec.woff2')format("woff");}.ff2d_c00179{font-family:ff2d_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00179;src:url('chunks/assets/font_fd690c7de471b5f260796b0b.woff2')format("woff");}.ff2e_c00179{font-family:ff2e_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00179;src:url('chunks/assets/font_fcf249d8399edb5dae916b71.woff2')format("woff");}.ff2f_c00179{font-family:ff2f_c00179;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00179{letter-spacing:0.000000px;}
.ls0_c00179{letter-spacing:0.014400px;}
.sc__c00179{text-shadow:none;}
.sc0_c00179{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00179{-webkit-text-stroke:0px transparent;}
.sc0_c00179{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00179{word-spacing:-0.072000px;}
.ws1_c00179{word-spacing:0.000000px;}
._9_c00179{width:1.764000px;}
._c_c00179{width:2.872800px;}
._8_c00179{width:3.880800px;}
._e_c00179{width:4.946400px;}
._0_c00179{width:6.026400px;}
._7_c00179{width:7.567200px;}
._a_c00179{width:9.439200px;}
._3_c00179{width:10.706400px;}
._4_c00179{width:11.887200px;}
._d_c00179{width:13.377600px;}
._b_c00179{width:14.428800px;}
._2_c00179{width:16.236000px;}
._f_c00179{width:20.210400px;}
._1_c00179{width:22.348800px;}
._6_c00179{width:23.457600px;}
._5_c00179{width:24.458400px;}
.fc1_c00179{color:transparent;}
.fc0_c00179{color:rgb(0,0,0);}
.fs1_c00179{font-size:64.800000px;}
.fs0_c00179{font-size:72.000000px;}
.y0_c00179{bottom:0.000000px;}
.y5_c00179{bottom:5.040000px;}
.y1_c00179{bottom:12.735000px;}
.y3_c00179{bottom:45.045000px;}
.y4_c00179{bottom:52.740000px;}
.y21_c00179{bottom:110.565000px;}
.y20_c00179{bottom:146.565000px;}
.y1f_c00179{bottom:182.565000px;}
.y1e_c00179{bottom:218.565000px;}
.y1d_c00179{bottom:254.565000px;}
.y1c_c00179{bottom:290.565000px;}
.y1b_c00179{bottom:326.565000px;}
.y1a_c00179{bottom:362.565000px;}
.y19_c00179{bottom:398.565000px;}
.y18_c00179{bottom:434.565000px;}
.y17_c00179{bottom:470.565000px;}
.y16_c00179{bottom:506.565000px;}
.y15_c00179{bottom:542.565000px;}
.y14_c00179{bottom:578.565000px;}
.y13_c00179{bottom:614.565000px;}
.y12_c00179{bottom:650.565000px;}
.y11_c00179{bottom:686.565000px;}
.y10_c00179{bottom:722.565000px;}
.yf_c00179{bottom:758.565000px;}
.ye_c00179{bottom:794.565000px;}
.yd_c00179{bottom:830.565000px;}
.yc_c00179{bottom:866.565000px;}
.yb_c00179{bottom:902.565000px;}
.ya_c00179{bottom:938.565000px;}
.y9_c00179{bottom:974.565000px;}
.y8_c00179{bottom:1010.565000px;}
.y7_c00179{bottom:1046.565000px;}
.y6_c00179{bottom:1082.565000px;}
.y2_c00179{bottom:1165.365000px;}
.h4_c00179{height:20.880000px;}
.h5_c00179{height:70.664062px;}
.h3_c00179{height:74.004654px;}
.h2_c00179{height:1237.365000px;}
.h0_c00179{height:1262.835000px;}
.h1_c00179{height:1263.000000px;}
.w3_c00179{width:27.000000px;}
.w2_c00179{width:867.465000px;}
.w0_c00179{width:892.935000px;}
.w1_c00179{width:893.250000px;}
.x0_c00179{left:0.000000px;}
.x1_c00179{left:12.735000px;}
.x3_c00179{left:95.406300px;}
.x5_c00179{left:149.400150px;}
.x4_c00179{left:433.215000px;}
.x2_c00179{left:878.550300px;}
@media print{
.v0_c00179{vertical-align:0.000000pt;}
.ls1_c00179{letter-spacing:0.000000pt;}
.ls0_c00179{letter-spacing:0.012800pt;}
.ws0_c00179{word-spacing:-0.064000pt;}
.ws1_c00179{word-spacing:0.000000pt;}
._9_c00179{width:1.568000pt;}
._c_c00179{width:2.553600pt;}
._8_c00179{width:3.449600pt;}
._e_c00179{width:4.396800pt;}
._0_c00179{width:5.356800pt;}
._7_c00179{width:6.726400pt;}
._a_c00179{width:8.390400pt;}
._3_c00179{width:9.516800pt;}
._4_c00179{width:10.566400pt;}
._d_c00179{width:11.891200pt;}
._b_c00179{width:12.825600pt;}
._2_c00179{width:14.432000pt;}
._f_c00179{width:17.964800pt;}
._1_c00179{width:19.865600pt;}
._6_c00179{width:20.851200pt;}
._5_c00179{width:21.740800pt;}
.fs1_c00179{font-size:57.600000pt;}
.fs0_c00179{font-size:64.000000pt;}
.y0_c00179{bottom:0.000000pt;}
.y5_c00179{bottom:4.480000pt;}
.y1_c00179{bottom:11.320000pt;}
.y3_c00179{bottom:40.040000pt;}
.y4_c00179{bottom:46.880000pt;}
.y21_c00179{bottom:98.280000pt;}
.y20_c00179{bottom:130.280000pt;}
.y1f_c00179{bottom:162.280000pt;}
.y1e_c00179{bottom:194.280000pt;}
.y1d_c00179{bottom:226.280000pt;}
.y1c_c00179{bottom:258.280000pt;}
.y1b_c00179{bottom:290.280000pt;}
.y1a_c00179{bottom:322.280000pt;}
.y19_c00179{bottom:354.280000pt;}
.y18_c00179{bottom:386.280000pt;}
.y17_c00179{bottom:418.280000pt;}
.y16_c00179{bottom:450.280000pt;}
.y15_c00179{bottom:482.280000pt;}
.y14_c00179{bottom:514.280000pt;}
.y13_c00179{bottom:546.280000pt;}
.y12_c00179{bottom:578.280000pt;}
.y11_c00179{bottom:610.280000pt;}
.y10_c00179{bottom:642.280000pt;}
.yf_c00179{bottom:674.280000pt;}
.ye_c00179{bottom:706.280000pt;}
.yd_c00179{bottom:738.280000pt;}
.yc_c00179{bottom:770.280000pt;}
.yb_c00179{bottom:802.280000pt;}
.ya_c00179{bottom:834.280000pt;}
.y9_c00179{bottom:866.280000pt;}
.y8_c00179{bottom:898.280000pt;}
.y7_c00179{bottom:930.280000pt;}
.y6_c00179{bottom:962.280000pt;}
.y2_c00179{bottom:1035.880000pt;}
.h4_c00179{height:18.560000pt;}
.h5_c00179{height:62.812500pt;}
.h3_c00179{height:65.781915pt;}
.h2_c00179{height:1099.880000pt;}
.h0_c00179{height:1122.520000pt;}
.h1_c00179{height:1122.666667pt;}
.w3_c00179{width:24.000000pt;}
.w2_c00179{width:771.080000pt;}
.w0_c00179{width:793.720000pt;}
.w1_c00179{width:794.000000pt;}
.x0_c00179{left:0.000000pt;}
.x1_c00179{left:11.320000pt;}
.x3_c00179{left:84.805600pt;}
.x5_c00179{left:132.800133pt;}
.x4_c00179{left:385.080000pt;}
.x2_c00179{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00180{font-family:ff1_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00180;src:url('chunks/assets/font_85c09ed58be4437e90f47329.woff2')format("woff");}.ff2_c00180{font-family:ff2_c00180;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00180;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00180{font-family:ff3_c00180;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00180;src:url('chunks/assets/font_aa6033feaa0c7e6ddc47af41.woff2')format("woff");}.ff4_c00180{font-family:ff4_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00180;src:url('chunks/assets/font_4479a6618474598d46c558af.woff2')format("woff");}.ff5_c00180{font-family:ff5_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00180;src:url('chunks/assets/font_6b7a9e4eb05360d95408d0de.woff2')format("woff");}.ff6_c00180{font-family:ff6_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00180;src:url('chunks/assets/font_0af590d857d08b89ebe3aec7.woff2')format("woff");}.ff7_c00180{font-family:ff7_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00180;src:url('chunks/assets/font_b72eaeedf6a7cb23ee24f263.woff2')format("woff");}.ff8_c00180{font-family:ff8_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00180;src:url('chunks/assets/font_b2d1b593d8b34ec8b0f2af8f.woff2')format("woff");}.ff9_c00180{font-family:ff9_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00180;src:url('chunks/assets/font_03151d25eaccc3885b6f1894.woff2')format("woff");}.ffa_c00180{font-family:ffa_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00180;src:url('chunks/assets/font_0b7caa94eb8d01d2efb9c4e7.woff2')format("woff");}.ffb_c00180{font-family:ffb_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00180;src:url('chunks/assets/font_c155c8af8adf960f4f7b1ab5.woff2')format("woff");}.ffc_c00180{font-family:ffc_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00180;src:url('chunks/assets/font_194d19ce7d2bc77db0f8230d.woff2')format("woff");}.ffd_c00180{font-family:ffd_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00180;src:url('chunks/assets/font_9f9d62710011503b3e6fcb2b.woff2')format("woff");}.ffe_c00180{font-family:ffe_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00180;src:url('chunks/assets/font_7f14b77bea48c529935d07cb.woff2')format("woff");}.fff_c00180{font-family:fff_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00180;src:url('chunks/assets/font_71bb2e434fa2558755e6dc93.woff2')format("woff");}.ff10_c00180{font-family:ff10_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00180;src:url('chunks/assets/font_42a956345f8319aced140a6a.woff2')format("woff");}.ff11_c00180{font-family:ff11_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00180;src:url('chunks/assets/font_47c511017700ca343bbcecda.woff2')format("woff");}.ff12_c00180{font-family:ff12_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00180;src:url('chunks/assets/font_dc0f74423f91659ca9c42095.woff2')format("woff");}.ff13_c00180{font-family:ff13_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00180;src:url('chunks/assets/font_682bf3bbdd3917ef99fdad36.woff2')format("woff");}.ff14_c00180{font-family:ff14_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00180;src:url('chunks/assets/font_38f81065778a0fa39de9128e.woff2')format("woff");}.ff15_c00180{font-family:ff15_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00180;src:url('chunks/assets/font_911e1ad7e6839f5c70cc241a.woff2')format("woff");}.ff16_c00180{font-family:ff16_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00180;src:url('chunks/assets/font_c416ea20743bdfad6c319169.woff2')format("woff");}.ff17_c00180{font-family:ff17_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00180;src:url('chunks/assets/font_7efbb2f614429d66c50c725b.woff2')format("woff");}.ff18_c00180{font-family:ff18_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00180;src:url('chunks/assets/font_4569fb3286f0c603cca637dd.woff2')format("woff");}.ff19_c00180{font-family:ff19_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00180;src:url('chunks/assets/font_c504de0a4e07d766da9202dc.woff2')format("woff");}.ff1a_c00180{font-family:ff1a_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00180;src:url('chunks/assets/font_2deb0125b5b7e3d0aa43f9ce.woff2')format("woff");}.ff1b_c00180{font-family:ff1b_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00180;src:url('chunks/assets/font_b5e91078543bdd1859c2344c.woff2')format("woff");}.ff1c_c00180{font-family:ff1c_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00180;src:url('chunks/assets/font_9f263235726906b574a46bc1.woff2')format("woff");}.ff1d_c00180{font-family:ff1d_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00180;src:url('chunks/assets/font_b5184d1f51ae15cf37da3ad3.woff2')format("woff");}.ff1e_c00180{font-family:ff1e_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00180;src:url('chunks/assets/font_528b7394dd7c66ca133c25fc.woff2')format("woff");}.ff1f_c00180{font-family:ff1f_c00180;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:ff20_c00180;src:url('chunks/assets/font_b11fb50cd2831555f185a3b8.woff2')format("woff");}.ff20_c00180{font-family:ff20_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00180;src:url('chunks/assets/font_8a3a71077d6bab201d6f4ac8.woff2')format("woff");}.ff21_c00180{font-family:ff21_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00180;src:url('chunks/assets/font_bcfea3cf73760aab4a1f1440.woff2')format("woff");}.ff22_c00180{font-family:ff22_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00180;src:url('chunks/assets/font_84cc11126ec2bc3585956e8d.woff2')format("woff");}.ff23_c00180{font-family:ff23_c00180;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00180;src:url('chunks/assets/font_6d06d55e6f28b8b05a617d0f.woff2')format("woff");}.ff24_c00180{font-family:ff24_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00180;src:url('chunks/assets/font_2d5f50ad64a8a6e32ae8e5ff.woff2')format("woff");}.ff25_c00180{font-family:ff25_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00180;src:url('chunks/assets/font_2a980b867fd5ad3d71d0e7a8.woff2')format("woff");}.ff26_c00180{font-family:ff26_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00180;src:url('chunks/assets/font_d1e1e609d1ae14b5296007e5.woff2')format("woff");}.ff27_c00180{font-family:ff27_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00180;src:url('chunks/assets/font_1390405d7b3f1b05f22e260a.woff2')format("woff");}.ff28_c00180{font-family:ff28_c00180;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:ff29_c00180;src:url('chunks/assets/font_db74df31c258c946d6cbecc2.woff2')format("woff");}.ff29_c00180{font-family:ff29_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00180;src:url('chunks/assets/font_3d9af57e9f309222a1d01ee7.woff2')format("woff");}.ff2a_c00180{font-family:ff2a_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00180;src:url('chunks/assets/font_a2dd3acc6148302d5ac99e9c.woff2')format("woff");}.ff2b_c00180{font-family:ff2b_c00180;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00180;src:url('chunks/assets/font_9c098207307f7f929feaf6ff.woff2')format("woff");}.ff2c_c00180{font-family:ff2c_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00180;src:url('chunks/assets/font_96787bbee3a05cf5a7948f37.woff2')format("woff");}.ff2d_c00180{font-family:ff2d_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00180;src:url('chunks/assets/font_501e375e7e7fb1b7deb785e7.woff2')format("woff");}.ff2e_c00180{font-family:ff2e_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00180;src:url('chunks/assets/font_10272b8100c7e4cb956fab77.woff2')format("woff");}.ff2f_c00180{font-family:ff2f_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00180;src:url('chunks/assets/font_55eec8b57a5ff579d2221ad9.woff2')format("woff");}.ff30_c00180{font-family:ff30_c00180;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00180;src:url('chunks/assets/font_c0f2f54435c1ce7969e299d4.woff2')format("woff");}.ff31_c00180{font-family:ff31_c00180;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:ff32_c00180;src:url('chunks/assets/font_bbfff7b7d848e3045f2704de.woff2')format("woff");}.ff32_c00180{font-family:ff32_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00180;src:url('chunks/assets/font_ffd8c9e48f754f92d1c908e2.woff2')format("woff");}.ff33_c00180{font-family:ff33_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00180;src:url('chunks/assets/font_89d40bfe91aab6f747331fa4.woff2')format("woff");}.ff34_c00180{font-family:ff34_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00180;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff35_c00180{font-family:ff35_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00180;src:url('chunks/assets/font_a80dfdc6019fcab99f3bd470.woff2')format("woff");}.ff36_c00180{font-family:ff36_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00180;src:url('chunks/assets/font_f1cc31f3f056c079c4990bf5.woff2')format("woff");}.ff37_c00180{font-family:ff37_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00180;src:url('chunks/assets/font_d0456ba9945437e92ba3d508.woff2')format("woff");}.ff38_c00180{font-family:ff38_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00180;src:url('chunks/assets/font_9035e2a2ba43a11663dc5409.woff2')format("woff");}.ff39_c00180{font-family:ff39_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00180;src:url('chunks/assets/font_4f73a69960f97b8e54bbd103.woff2')format("woff");}.ff3a_c00180{font-family:ff3a_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00180;src:url('chunks/assets/font_30f168f991fa41b7d1911473.woff2')format("woff");}.ff3b_c00180{font-family:ff3b_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00180;src:url('chunks/assets/font_6bfb4d920e765574a0e219d0.woff2')format("woff");}.ff3c_c00180{font-family:ff3c_c00180;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00180;src:url('chunks/assets/font_5c2170423bab2a36ccfd0f06.woff2')format("woff");}.ff3d_c00180{font-family:ff3d_c00180;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00180;src:url('chunks/assets/font_8a6bf29b3672230aecf28c7f.woff2')format("woff");}.ff3e_c00180{font-family:ff3e_c00180;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:ff3f_c00180;src:url('chunks/assets/font_6a1159b02ee50ac01f2cbeb9.woff2')format("woff");}.ff3f_c00180{font-family:ff3f_c00180;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00180{letter-spacing:0.000000px;}
.ls1_c00180{letter-spacing:0.072000px;}
.ls0_c00180{letter-spacing:0.100800px;}
.ls2_c00180{letter-spacing:0.216000px;}
.sc__c00180{text-shadow:none;}
.sc0_c00180{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00180{-webkit-text-stroke:0px transparent;}
.sc0_c00180{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00180{word-spacing:-0.072000px;}
.ws1_c00180{word-spacing:0.000000px;}
._4_c00180{width:1.324800px;}
._1_c00180{width:3.110400px;}
._7_c00180{width:4.140000px;}
._3_c00180{width:5.148000px;}
._2_c00180{width:8.035200px;}
._8_c00180{width:11.023200px;}
._5_c00180{width:12.196800px;}
._9_c00180{width:15.624000px;}
._a_c00180{width:16.747200px;}
._0_c00180{width:19.677600px;}
._6_c00180{width:30.772800px;}
.fc1_c00180{color:transparent;}
.fc0_c00180{color:rgb(0,0,0);}
.fs1_c00180{font-size:64.800000px;}
.fs0_c00180{font-size:72.000000px;}
.y0_c00180{bottom:0.000000px;}
.y5_c00180{bottom:5.040000px;}
.y1_c00180{bottom:12.735000px;}
.y3_c00180{bottom:45.045000px;}
.y4_c00180{bottom:52.740000px;}
.y21_c00180{bottom:110.565000px;}
.y20_c00180{bottom:146.565000px;}
.y1f_c00180{bottom:182.565000px;}
.y1e_c00180{bottom:218.565000px;}
.y1d_c00180{bottom:254.565000px;}
.y1c_c00180{bottom:290.565000px;}
.y1b_c00180{bottom:326.565000px;}
.y1a_c00180{bottom:362.565000px;}
.y19_c00180{bottom:398.565000px;}
.y18_c00180{bottom:434.565000px;}
.y17_c00180{bottom:470.565000px;}
.y16_c00180{bottom:506.565000px;}
.y15_c00180{bottom:542.565000px;}
.y14_c00180{bottom:578.565000px;}
.y13_c00180{bottom:614.565000px;}
.y12_c00180{bottom:650.565000px;}
.y11_c00180{bottom:686.565000px;}
.y10_c00180{bottom:722.565000px;}
.yf_c00180{bottom:758.565000px;}
.ye_c00180{bottom:794.565000px;}
.yd_c00180{bottom:830.565000px;}
.yc_c00180{bottom:866.565000px;}
.yb_c00180{bottom:902.565000px;}
.ya_c00180{bottom:938.565000px;}
.y9_c00180{bottom:974.565000px;}
.y8_c00180{bottom:1010.565000px;}
.y7_c00180{bottom:1046.565000px;}
.y6_c00180{bottom:1082.565000px;}
.y2_c00180{bottom:1165.365000px;}
.h4_c00180{height:20.880000px;}
.h6_c00180{height:70.628906px;}
.h3_c00180{height:70.664062px;}
.h7_c00180{height:71.824219px;}
.h5_c00180{height:74.004654px;}
.h2_c00180{height:1237.365000px;}
.h0_c00180{height:1262.835000px;}
.h1_c00180{height:1263.000000px;}
.w3_c00180{width:27.000000px;}
.w2_c00180{width:867.465000px;}
.w0_c00180{width:892.935000px;}
.w1_c00180{width:893.250000px;}
.x0_c00180{left:0.000000px;}
.x1_c00180{left:12.735000px;}
.x3_c00180{left:95.406300px;}
.x5_c00180{left:149.400150px;}
.x4_c00180{left:433.215000px;}
.x2_c00180{left:878.550300px;}
@media print{
.v0_c00180{vertical-align:0.000000pt;}
.ls3_c00180{letter-spacing:0.000000pt;}
.ls1_c00180{letter-spacing:0.064000pt;}
.ls0_c00180{letter-spacing:0.089600pt;}
.ls2_c00180{letter-spacing:0.192000pt;}
.ws0_c00180{word-spacing:-0.064000pt;}
.ws1_c00180{word-spacing:0.000000pt;}
._4_c00180{width:1.177600pt;}
._1_c00180{width:2.764800pt;}
._7_c00180{width:3.680000pt;}
._3_c00180{width:4.576000pt;}
._2_c00180{width:7.142400pt;}
._8_c00180{width:9.798400pt;}
._5_c00180{width:10.841600pt;}
._9_c00180{width:13.888000pt;}
._a_c00180{width:14.886400pt;}
._0_c00180{width:17.491200pt;}
._6_c00180{width:27.353600pt;}
.fs1_c00180{font-size:57.600000pt;}
.fs0_c00180{font-size:64.000000pt;}
.y0_c00180{bottom:0.000000pt;}
.y5_c00180{bottom:4.480000pt;}
.y1_c00180{bottom:11.320000pt;}
.y3_c00180{bottom:40.040000pt;}
.y4_c00180{bottom:46.880000pt;}
.y21_c00180{bottom:98.280000pt;}
.y20_c00180{bottom:130.280000pt;}
.y1f_c00180{bottom:162.280000pt;}
.y1e_c00180{bottom:194.280000pt;}
.y1d_c00180{bottom:226.280000pt;}
.y1c_c00180{bottom:258.280000pt;}
.y1b_c00180{bottom:290.280000pt;}
.y1a_c00180{bottom:322.280000pt;}
.y19_c00180{bottom:354.280000pt;}
.y18_c00180{bottom:386.280000pt;}
.y17_c00180{bottom:418.280000pt;}
.y16_c00180{bottom:450.280000pt;}
.y15_c00180{bottom:482.280000pt;}
.y14_c00180{bottom:514.280000pt;}
.y13_c00180{bottom:546.280000pt;}
.y12_c00180{bottom:578.280000pt;}
.y11_c00180{bottom:610.280000pt;}
.y10_c00180{bottom:642.280000pt;}
.yf_c00180{bottom:674.280000pt;}
.ye_c00180{bottom:706.280000pt;}
.yd_c00180{bottom:738.280000pt;}
.yc_c00180{bottom:770.280000pt;}
.yb_c00180{bottom:802.280000pt;}
.ya_c00180{bottom:834.280000pt;}
.y9_c00180{bottom:866.280000pt;}
.y8_c00180{bottom:898.280000pt;}
.y7_c00180{bottom:930.280000pt;}
.y6_c00180{bottom:962.280000pt;}
.y2_c00180{bottom:1035.880000pt;}
.h4_c00180{height:18.560000pt;}
.h6_c00180{height:62.781250pt;}
.h3_c00180{height:62.812500pt;}
.h7_c00180{height:63.843750pt;}
.h5_c00180{height:65.781915pt;}
.h2_c00180{height:1099.880000pt;}
.h0_c00180{height:1122.520000pt;}
.h1_c00180{height:1122.666667pt;}
.w3_c00180{width:24.000000pt;}
.w2_c00180{width:771.080000pt;}
.w0_c00180{width:793.720000pt;}
.w1_c00180{width:794.000000pt;}
.x0_c00180{left:0.000000pt;}
.x1_c00180{left:11.320000pt;}
.x3_c00180{left:84.805600pt;}
.x5_c00180{left:132.800133pt;}
.x4_c00180{left:385.080000pt;}
.x2_c00180{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00181{font-family:ff1_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00181;src:url('chunks/assets/font_ba098221392ff2c406b06bf0.woff2')format("woff");}.ff2_c00181{font-family:ff2_c00181;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00181;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00181{font-family:ff3_c00181;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00181;src:url('chunks/assets/font_4a73535b1dbdc3655114e243.woff2')format("woff");}.ff4_c00181{font-family:ff4_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00181;src:url('chunks/assets/font_ad1e7d47f0bb8a288d2f24e8.woff2')format("woff");}.ff5_c00181{font-family:ff5_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00181;src:url('chunks/assets/font_019ab6fbb92e7c1b29c6992c.woff2')format("woff");}.ff6_c00181{font-family:ff6_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00181;src:url('chunks/assets/font_c47f8442877f138e655a0d71.woff2')format("woff");}.ff7_c00181{font-family:ff7_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00181;src:url('chunks/assets/font_776dc18f5db2e42af10ed911.woff2')format("woff");}.ff8_c00181{font-family:ff8_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00181;src:url('chunks/assets/font_dba6d21d94f2e30b25af68b5.woff2')format("woff");}.ff9_c00181{font-family:ff9_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00181;src:url('chunks/assets/font_fe3953e558b8c1096d0431bd.woff2')format("woff");}.ffa_c00181{font-family:ffa_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00181;src:url('chunks/assets/font_24e2b4966d1eb11b99b4b8eb.woff2')format("woff");}.ffb_c00181{font-family:ffb_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00181;src:url('chunks/assets/font_6e2b110ea498f13fe6901dff.woff2')format("woff");}.ffc_c00181{font-family:ffc_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00181;src:url('chunks/assets/font_958ab36e3e551aca19cbee53.woff2')format("woff");}.ffd_c00181{font-family:ffd_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00181;src:url('chunks/assets/font_d05713b0cade1d60e9ae7f36.woff2')format("woff");}.ffe_c00181{font-family:ffe_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00181;src:url('chunks/assets/font_766b3bfd137df4ccffc68cba.woff2')format("woff");}.fff_c00181{font-family:fff_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00181;src:url('chunks/assets/font_1f2383333ea35c74988b32ac.woff2')format("woff");}.ff10_c00181{font-family:ff10_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00181;src:url('chunks/assets/font_85da0e37cb8f19228c15e2cb.woff2')format("woff");}.ff11_c00181{font-family:ff11_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00181;src:url('chunks/assets/font_5e0e94ea49ce79a132b91b40.woff2')format("woff");}.ff12_c00181{font-family:ff12_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00181;src:url('chunks/assets/font_5bf57537b41d2a5820ddf794.woff2')format("woff");}.ff13_c00181{font-family:ff13_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00181;src:url('chunks/assets/font_8af56d3b0746529f87e4dec4.woff2')format("woff");}.ff14_c00181{font-family:ff14_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00181;src:url('chunks/assets/font_0893ba11d1a21c82707a5535.woff2')format("woff");}.ff15_c00181{font-family:ff15_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00181;src:url('chunks/assets/font_40f6279ce05321215d6f41d2.woff2')format("woff");}.ff16_c00181{font-family:ff16_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00181;src:url('chunks/assets/font_9616727332665c0bc5e82966.woff2')format("woff");}.ff17_c00181{font-family:ff17_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00181;src:url('chunks/assets/font_11e79d591402b55da8cc74af.woff2')format("woff");}.ff18_c00181{font-family:ff18_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00181;src:url('chunks/assets/font_e1bd3b7adc69d621329a8456.woff2')format("woff");}.ff19_c00181{font-family:ff19_c00181;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00181;src:url('chunks/assets/font_9c4d30379cc5d8df61af58f3.woff2')format("woff");}.ff1a_c00181{font-family:ff1a_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00181;src:url('chunks/assets/font_a4d3adcff5fec64303ede9e3.woff2')format("woff");}.ff1b_c00181{font-family:ff1b_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00181;src:url('chunks/assets/font_1ed59e4853f0caafef62a471.woff2')format("woff");}.ff1c_c00181{font-family:ff1c_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00181;src:url('chunks/assets/font_e7a4e0b0a58bcd809e3a472c.woff2')format("woff");}.ff1d_c00181{font-family:ff1d_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00181;src:url('chunks/assets/font_d127b27bc1c5ae5df13ef1fc.woff2')format("woff");}.ff1e_c00181{font-family:ff1e_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00181;src:url('chunks/assets/font_c01ac3a5fc54ed119ae0a0c8.woff2')format("woff");}.ff1f_c00181{font-family:ff1f_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00181;src:url('chunks/assets/font_b7d79f1aea42b8b064e576b6.woff2')format("woff");}.ff20_c00181{font-family:ff20_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00181;src:url('chunks/assets/font_07b066f189fdde1e3117fc80.woff2')format("woff");}.ff21_c00181{font-family:ff21_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:ff22_c00181;src:url('chunks/assets/font_33d1ca95cd659f7faa1153c1.woff2')format("woff");}.ff22_c00181{font-family:ff22_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00181;src:url('chunks/assets/font_b926cd6860f7a6dcf7520901.woff2')format("woff");}.ff23_c00181{font-family:ff23_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00181;src:url('chunks/assets/font_5f9bce98504f7e4868ee083f.woff2')format("woff");}.ff24_c00181{font-family:ff24_c00181;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00181;src:url('chunks/assets/font_20788edbc43a7944eeb58fc5.woff2')format("woff");}.ff25_c00181{font-family:ff25_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00181;src:url('chunks/assets/font_8f1c94fb0cff94009badeb14.woff2')format("woff");}.ff26_c00181{font-family:ff26_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00181;src:url('chunks/assets/font_b38ca30934c346649f351d1e.woff2')format("woff");}.ff27_c00181{font-family:ff27_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00181;src:url('chunks/assets/font_d5c4d7147d90b7e2b894a908.woff2')format("woff");}.ff28_c00181{font-family:ff28_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00181;src:url('chunks/assets/font_e30a1e6010073374b625560a.woff2')format("woff");}.ff29_c00181{font-family:ff29_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00181;src:url('chunks/assets/font_447ad1bb3ea554b318dd64aa.woff2')format("woff");}.ff2a_c00181{font-family:ff2a_c00181;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00181;src:url('chunks/assets/font_35de8a3159ddf58e61cdd0d0.woff2')format("woff");}.ff2b_c00181{font-family:ff2b_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00181;src:url('chunks/assets/font_34bd28f2d2490da128353309.woff2')format("woff");}.ff2c_c00181{font-family:ff2c_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00181;src:url('chunks/assets/font_887b28aa7de26f358f0ffb30.woff2')format("woff");}.ff2d_c00181{font-family:ff2d_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00181;src:url('chunks/assets/font_dce1cff5d844d80b52991c91.woff2')format("woff");}.ff2e_c00181{font-family:ff2e_c00181;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00181{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00181{vertical-align:0.000000px;}
.ls1_c00181{letter-spacing:0.000000px;}
.ls0_c00181{letter-spacing:0.086400px;}
.sc__c00181{text-shadow:none;}
.sc0_c00181{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00181{-webkit-text-stroke:0px transparent;}
.sc0_c00181{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00181{word-spacing:-0.072000px;}
.ws1_c00181{word-spacing:0.000000px;}
._b_c00181{margin-left:-1.080000px;}
._4_c00181{width:1.267200px;}
._9_c00181{width:2.318400px;}
._d_c00181{width:3.355200px;}
._0_c00181{width:4.701600px;}
._1_c00181{width:6.940800px;}
._6_c00181{width:8.596800px;}
._c_c00181{width:9.835200px;}
._3_c00181{width:11.484000px;}
._7_c00181{width:12.736800px;}
._8_c00181{width:14.781600px;}
._a_c00181{width:16.200000px;}
._2_c00181{width:21.859200px;}
._5_c00181{width:23.198400px;}
.fc1_c00181{color:transparent;}
.fc0_c00181{color:rgb(0,0,0);}
.fs1_c00181{font-size:64.800000px;}
.fs0_c00181{font-size:72.000000px;}
.y0_c00181{bottom:0.000000px;}
.y5_c00181{bottom:5.040000px;}
.y1_c00181{bottom:12.735000px;}
.y3_c00181{bottom:45.045000px;}
.y4_c00181{bottom:52.740000px;}
.y21_c00181{bottom:110.565000px;}
.y20_c00181{bottom:146.565000px;}
.y1f_c00181{bottom:182.565000px;}
.y1e_c00181{bottom:218.565000px;}
.y1d_c00181{bottom:254.565000px;}
.y1c_c00181{bottom:290.565000px;}
.y1b_c00181{bottom:326.565000px;}
.y1a_c00181{bottom:362.565000px;}
.y19_c00181{bottom:398.565000px;}
.y18_c00181{bottom:434.565000px;}
.y17_c00181{bottom:470.565000px;}
.y16_c00181{bottom:506.565000px;}
.y15_c00181{bottom:542.565000px;}
.y14_c00181{bottom:578.565000px;}
.y13_c00181{bottom:614.565000px;}
.y12_c00181{bottom:650.565000px;}
.y11_c00181{bottom:686.565000px;}
.y10_c00181{bottom:722.565000px;}
.yf_c00181{bottom:758.565000px;}
.ye_c00181{bottom:794.565000px;}
.yd_c00181{bottom:830.565000px;}
.yc_c00181{bottom:866.565000px;}
.yb_c00181{bottom:902.565000px;}
.ya_c00181{bottom:938.565000px;}
.y9_c00181{bottom:974.565000px;}
.y8_c00181{bottom:1010.565000px;}
.y7_c00181{bottom:1046.565000px;}
.y6_c00181{bottom:1082.565000px;}
.y2_c00181{bottom:1165.365000px;}
.h4_c00181{height:20.880000px;}
.h3_c00181{height:70.664062px;}
.h5_c00181{height:74.004654px;}
.h2_c00181{height:1237.365000px;}
.h0_c00181{height:1262.835000px;}
.h1_c00181{height:1263.000000px;}
.w3_c00181{width:27.000000px;}
.w2_c00181{width:867.465000px;}
.w0_c00181{width:892.935000px;}
.w1_c00181{width:893.250000px;}
.x0_c00181{left:0.000000px;}
.x1_c00181{left:12.735000px;}
.x3_c00181{left:95.406300px;}
.x5_c00181{left:149.400150px;}
.x4_c00181{left:433.215000px;}
.x2_c00181{left:878.550300px;}
@media print{
.v0_c00181{vertical-align:0.000000pt;}
.ls1_c00181{letter-spacing:0.000000pt;}
.ls0_c00181{letter-spacing:0.076800pt;}
.ws0_c00181{word-spacing:-0.064000pt;}
.ws1_c00181{word-spacing:0.000000pt;}
._b_c00181{margin-left:-0.960000pt;}
._4_c00181{width:1.126400pt;}
._9_c00181{width:2.060800pt;}
._d_c00181{width:2.982400pt;}
._0_c00181{width:4.179200pt;}
._1_c00181{width:6.169600pt;}
._6_c00181{width:7.641600pt;}
._c_c00181{width:8.742400pt;}
._3_c00181{width:10.208000pt;}
._7_c00181{width:11.321600pt;}
._8_c00181{width:13.139200pt;}
._a_c00181{width:14.400000pt;}
._2_c00181{width:19.430400pt;}
._5_c00181{width:20.620800pt;}
.fs1_c00181{font-size:57.600000pt;}
.fs0_c00181{font-size:64.000000pt;}
.y0_c00181{bottom:0.000000pt;}
.y5_c00181{bottom:4.480000pt;}
.y1_c00181{bottom:11.320000pt;}
.y3_c00181{bottom:40.040000pt;}
.y4_c00181{bottom:46.880000pt;}
.y21_c00181{bottom:98.280000pt;}
.y20_c00181{bottom:130.280000pt;}
.y1f_c00181{bottom:162.280000pt;}
.y1e_c00181{bottom:194.280000pt;}
.y1d_c00181{bottom:226.280000pt;}
.y1c_c00181{bottom:258.280000pt;}
.y1b_c00181{bottom:290.280000pt;}
.y1a_c00181{bottom:322.280000pt;}
.y19_c00181{bottom:354.280000pt;}
.y18_c00181{bottom:386.280000pt;}
.y17_c00181{bottom:418.280000pt;}
.y16_c00181{bottom:450.280000pt;}
.y15_c00181{bottom:482.280000pt;}
.y14_c00181{bottom:514.280000pt;}
.y13_c00181{bottom:546.280000pt;}
.y12_c00181{bottom:578.280000pt;}
.y11_c00181{bottom:610.280000pt;}
.y10_c00181{bottom:642.280000pt;}
.yf_c00181{bottom:674.280000pt;}
.ye_c00181{bottom:706.280000pt;}
.yd_c00181{bottom:738.280000pt;}
.yc_c00181{bottom:770.280000pt;}
.yb_c00181{bottom:802.280000pt;}
.ya_c00181{bottom:834.280000pt;}
.y9_c00181{bottom:866.280000pt;}
.y8_c00181{bottom:898.280000pt;}
.y7_c00181{bottom:930.280000pt;}
.y6_c00181{bottom:962.280000pt;}
.y2_c00181{bottom:1035.880000pt;}
.h4_c00181{height:18.560000pt;}
.h3_c00181{height:62.812500pt;}
.h5_c00181{height:65.781915pt;}
.h2_c00181{height:1099.880000pt;}
.h0_c00181{height:1122.520000pt;}
.h1_c00181{height:1122.666667pt;}
.w3_c00181{width:24.000000pt;}
.w2_c00181{width:771.080000pt;}
.w0_c00181{width:793.720000pt;}
.w1_c00181{width:794.000000pt;}
.x0_c00181{left:0.000000pt;}
.x1_c00181{left:11.320000pt;}
.x3_c00181{left:84.805600pt;}
.x5_c00181{left:132.800133pt;}
.x4_c00181{left:385.080000pt;}
.x2_c00181{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00182{font-family:ff1_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00182;src:url('chunks/assets/font_24860c102edba3c6760a4d37.woff2')format("woff");}.ff2_c00182{font-family:ff2_c00182;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00182;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00182{font-family:ff3_c00182;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00182;src:url('chunks/assets/font_a828d76223c03a32e2440685.woff2')format("woff");}.ff4_c00182{font-family:ff4_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00182;src:url('chunks/assets/font_1d6331a01281c9cab630f8ec.woff2')format("woff");}.ff5_c00182{font-family:ff5_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00182;src:url('chunks/assets/font_168d40ed06fc2491b182c0bc.woff2')format("woff");}.ff6_c00182{font-family:ff6_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00182;src:url('chunks/assets/font_573c5ba7a21bd61b6b48dbf3.woff2')format("woff");}.ff7_c00182{font-family:ff7_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00182;src:url('chunks/assets/font_61e50e0783307d2c37091955.woff2')format("woff");}.ff8_c00182{font-family:ff8_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00182;src:url('chunks/assets/font_186e9137864366e3b05930b1.woff2')format("woff");}.ff9_c00182{font-family:ff9_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00182;src:url('chunks/assets/font_b4a3c6cde6c81529c91c15ee.woff2')format("woff");}.ffa_c00182{font-family:ffa_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00182;src:url('chunks/assets/font_0d39e688b7149d7ea1f79814.woff2')format("woff");}.ffb_c00182{font-family:ffb_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00182;src:url('chunks/assets/font_9c5d647746ce443948eaee5a.woff2')format("woff");}.ffc_c00182{font-family:ffc_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00182;src:url('chunks/assets/font_2bf71d0a753ce276d383d8d5.woff2')format("woff");}.ffd_c00182{font-family:ffd_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00182;src:url('chunks/assets/font_f065129c2add7fcf3c4f2737.woff2')format("woff");}.ffe_c00182{font-family:ffe_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00182;src:url('chunks/assets/font_62e4480e9a12f873b7d16928.woff2')format("woff");}.fff_c00182{font-family:fff_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00182;src:url('chunks/assets/font_a694955b41ced93ca1b65acf.woff2')format("woff");}.ff10_c00182{font-family:ff10_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00182;src:url('chunks/assets/font_5b06729b13d45103c0b5b4a4.woff2')format("woff");}.ff11_c00182{font-family:ff11_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00182;src:url('chunks/assets/font_39704d5edda4f2a097319079.woff2')format("woff");}.ff12_c00182{font-family:ff12_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00182;src:url('chunks/assets/font_0e0fb5351cde0a753435ba93.woff2')format("woff");}.ff13_c00182{font-family:ff13_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00182;src:url('chunks/assets/font_c2f387b9db7c4b36524c7e1f.woff2')format("woff");}.ff14_c00182{font-family:ff14_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00182;src:url('chunks/assets/font_576f18f9c13c145431f4694e.woff2')format("woff");}.ff15_c00182{font-family:ff15_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00182;src:url('chunks/assets/font_1511ff40a79966726494002a.woff2')format("woff");}.ff16_c00182{font-family:ff16_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00182;src:url('chunks/assets/font_9959ce5a5a11422f7b583419.woff2')format("woff");}.ff17_c00182{font-family:ff17_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00182;src:url('chunks/assets/font_3418a59f8bcd2d557496f2c4.woff2')format("woff");}.ff18_c00182{font-family:ff18_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00182;src:url('chunks/assets/font_da0d959e840465b2d39e8d34.woff2')format("woff");}.ff19_c00182{font-family:ff19_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00182;src:url('chunks/assets/font_92805313d773da669ec50c59.woff2')format("woff");}.ff1a_c00182{font-family:ff1a_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00182;src:url('chunks/assets/font_71455a3414082a0ad35e9725.woff2')format("woff");}.ff1b_c00182{font-family:ff1b_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00182;src:url('chunks/assets/font_e1080af009580b27ca395b08.woff2')format("woff");}.ff1c_c00182{font-family:ff1c_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00182;src:url('chunks/assets/font_97e42abde148abb0e76629c3.woff2')format("woff");}.ff1d_c00182{font-family:ff1d_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00182;src:url('chunks/assets/font_10e7c62c25c85f481f560bd3.woff2')format("woff");}.ff1e_c00182{font-family:ff1e_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00182;src:url('chunks/assets/font_06d3e65e6b5a79f778c9ffe2.woff2')format("woff");}.ff1f_c00182{font-family:ff1f_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00182;src:url('chunks/assets/font_74d4bf054bcdb58ec249ad18.woff2')format("woff");}.ff20_c00182{font-family:ff20_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00182;src:url('chunks/assets/font_bffbf18ed653aa4528488827.woff2')format("woff");}.ff21_c00182{font-family:ff21_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00182;src:url('chunks/assets/font_e61ac3024c816c63602ca33e.woff2')format("woff");}.ff22_c00182{font-family:ff22_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00182;src:url('chunks/assets/font_0817a4036658494dc9ada120.woff2')format("woff");}.ff23_c00182{font-family:ff23_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00182;src:url('chunks/assets/font_b72a9aac3a04ac85290ffd97.woff2')format("woff");}.ff24_c00182{font-family:ff24_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00182;src:url('chunks/assets/font_93293c5d6af641c3cf9056dc.woff2')format("woff");}.ff25_c00182{font-family:ff25_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00182;src:url('chunks/assets/font_bab9429ad9174b0ca8a28699.woff2')format("woff");}.ff26_c00182{font-family:ff26_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00182;src:url('chunks/assets/font_68c13b33bde4d697fcd1c3e5.woff2')format("woff");}.ff27_c00182{font-family:ff27_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00182;src:url('chunks/assets/font_c2e2db63107dd83e1ba5af54.woff2')format("woff");}.ff28_c00182{font-family:ff28_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00182;src:url('chunks/assets/font_ca118cb36b105a60545797d7.woff2')format("woff");}.ff29_c00182{font-family:ff29_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00182;src:url('chunks/assets/font_2ef13bedbcc3deac85d851c4.woff2')format("woff");}.ff2a_c00182{font-family:ff2a_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00182;src:url('chunks/assets/font_d8680987d500462ffba770e6.woff2')format("woff");}.ff2b_c00182{font-family:ff2b_c00182;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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:0.072000px;}
.sc__c00182{text-shadow:none;}
.sc0_c00182{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00182{-webkit-text-stroke:0px transparent;}
.sc0_c00182{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00182{word-spacing:-0.072000px;}
.ws1_c00182{word-spacing:0.000000px;}
._5_c00182{width:2.714400px;}
._7_c00182{width:3.873600px;}
._a_c00182{width:4.910400px;}
._2_c00182{width:6.120000px;}
._0_c00182{width:7.783200px;}
._1_c00182{width:8.892000px;}
._4_c00182{width:9.928800px;}
._3_c00182{width:10.965600px;}
._c_c00182{width:12.672000px;}
._6_c00182{width:13.708800px;}
._8_c00182{width:14.788800px;}
._b_c00182{width:19.800000px;}
._9_c00182{width:20.815200px;}
._d_c00182{width:22.233600px;}
.fc1_c00182{color:transparent;}
.fc0_c00182{color:rgb(0,0,0);}
.fs1_c00182{font-size:64.800000px;}
.fs0_c00182{font-size:72.000000px;}
.y0_c00182{bottom:0.000000px;}
.y5_c00182{bottom:5.040000px;}
.y1_c00182{bottom:12.735000px;}
.y3_c00182{bottom:45.045000px;}
.y4_c00182{bottom:52.740000px;}
.y21_c00182{bottom:110.565000px;}
.y20_c00182{bottom:146.565000px;}
.y1f_c00182{bottom:182.565000px;}
.y1e_c00182{bottom:218.565000px;}
.y1d_c00182{bottom:254.565000px;}
.y1c_c00182{bottom:290.565000px;}
.y1b_c00182{bottom:326.565000px;}
.y1a_c00182{bottom:362.565000px;}
.y19_c00182{bottom:398.565000px;}
.y18_c00182{bottom:434.565000px;}
.y17_c00182{bottom:470.565000px;}
.y16_c00182{bottom:506.565000px;}
.y15_c00182{bottom:542.565000px;}
.y14_c00182{bottom:578.565000px;}
.y13_c00182{bottom:614.565000px;}
.y12_c00182{bottom:650.565000px;}
.y11_c00182{bottom:686.565000px;}
.y10_c00182{bottom:722.565000px;}
.yf_c00182{bottom:758.565000px;}
.ye_c00182{bottom:794.565000px;}
.yd_c00182{bottom:830.565000px;}
.yc_c00182{bottom:866.565000px;}
.yb_c00182{bottom:902.565000px;}
.ya_c00182{bottom:938.565000px;}
.y9_c00182{bottom:974.565000px;}
.y8_c00182{bottom:1010.565000px;}
.y7_c00182{bottom:1046.565000px;}
.y6_c00182{bottom:1082.565000px;}
.y2_c00182{bottom:1165.365000px;}
.h4_c00182{height:20.880000px;}
.h3_c00182{height:70.664062px;}
.h5_c00182{height:74.004654px;}
.h2_c00182{height:1237.365000px;}
.h0_c00182{height:1262.835000px;}
.h1_c00182{height:1263.000000px;}
.w3_c00182{width:27.000000px;}
.w2_c00182{width:867.465000px;}
.w0_c00182{width:892.935000px;}
.w1_c00182{width:893.250000px;}
.x0_c00182{left:0.000000px;}
.x1_c00182{left:12.735000px;}
.x3_c00182{left:95.406300px;}
.x5_c00182{left:149.400150px;}
.x4_c00182{left:433.215000px;}
.x2_c00182{left:878.550300px;}
@media print{
.v0_c00182{vertical-align:0.000000pt;}
.ls1_c00182{letter-spacing:0.000000pt;}
.ls0_c00182{letter-spacing:0.064000pt;}
.ws0_c00182{word-spacing:-0.064000pt;}
.ws1_c00182{word-spacing:0.000000pt;}
._5_c00182{width:2.412800pt;}
._7_c00182{width:3.443200pt;}
._a_c00182{width:4.364800pt;}
._2_c00182{width:5.440000pt;}
._0_c00182{width:6.918400pt;}
._1_c00182{width:7.904000pt;}
._4_c00182{width:8.825600pt;}
._3_c00182{width:9.747200pt;}
._c_c00182{width:11.264000pt;}
._6_c00182{width:12.185600pt;}
._8_c00182{width:13.145600pt;}
._b_c00182{width:17.600000pt;}
._9_c00182{width:18.502400pt;}
._d_c00182{width:19.763200pt;}
.fs1_c00182{font-size:57.600000pt;}
.fs0_c00182{font-size:64.000000pt;}
.y0_c00182{bottom:0.000000pt;}
.y5_c00182{bottom:4.480000pt;}
.y1_c00182{bottom:11.320000pt;}
.y3_c00182{bottom:40.040000pt;}
.y4_c00182{bottom:46.880000pt;}
.y21_c00182{bottom:98.280000pt;}
.y20_c00182{bottom:130.280000pt;}
.y1f_c00182{bottom:162.280000pt;}
.y1e_c00182{bottom:194.280000pt;}
.y1d_c00182{bottom:226.280000pt;}
.y1c_c00182{bottom:258.280000pt;}
.y1b_c00182{bottom:290.280000pt;}
.y1a_c00182{bottom:322.280000pt;}
.y19_c00182{bottom:354.280000pt;}
.y18_c00182{bottom:386.280000pt;}
.y17_c00182{bottom:418.280000pt;}
.y16_c00182{bottom:450.280000pt;}
.y15_c00182{bottom:482.280000pt;}
.y14_c00182{bottom:514.280000pt;}
.y13_c00182{bottom:546.280000pt;}
.y12_c00182{bottom:578.280000pt;}
.y11_c00182{bottom:610.280000pt;}
.y10_c00182{bottom:642.280000pt;}
.yf_c00182{bottom:674.280000pt;}
.ye_c00182{bottom:706.280000pt;}
.yd_c00182{bottom:738.280000pt;}
.yc_c00182{bottom:770.280000pt;}
.yb_c00182{bottom:802.280000pt;}
.ya_c00182{bottom:834.280000pt;}
.y9_c00182{bottom:866.280000pt;}
.y8_c00182{bottom:898.280000pt;}
.y7_c00182{bottom:930.280000pt;}
.y6_c00182{bottom:962.280000pt;}
.y2_c00182{bottom:1035.880000pt;}
.h4_c00182{height:18.560000pt;}
.h3_c00182{height:62.812500pt;}
.h5_c00182{height:65.781915pt;}
.h2_c00182{height:1099.880000pt;}
.h0_c00182{height:1122.520000pt;}
.h1_c00182{height:1122.666667pt;}
.w3_c00182{width:24.000000pt;}
.w2_c00182{width:771.080000pt;}
.w0_c00182{width:793.720000pt;}
.w1_c00182{width:794.000000pt;}
.x0_c00182{left:0.000000pt;}
.x1_c00182{left:11.320000pt;}
.x3_c00182{left:84.805600pt;}
.x5_c00182{left:132.800133pt;}
.x4_c00182{left:385.080000pt;}
.x2_c00182{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00183{font-family:ff1_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00183;src:url('chunks/assets/font_938c5445b3ce6f16db367177.woff2')format("woff");}.ff2_c00183{font-family:ff2_c00183;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00183;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00183{font-family:ff3_c00183;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00183;src:url('chunks/assets/font_28ab14235fc523cfbc1ed772.woff2')format("woff");}.ff4_c00183{font-family:ff4_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00183;src:url('chunks/assets/font_849dfdd0d66fa7a23d0526b2.woff2')format("woff");}.ff5_c00183{font-family:ff5_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00183;src:url('chunks/assets/font_14b126a2dd35fed498fb81f5.woff2')format("woff");}.ff6_c00183{font-family:ff6_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00183;src:url('chunks/assets/font_b4b5613a68051b3ad6ff20c6.woff2')format("woff");}.ff7_c00183{font-family:ff7_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00183;src:url('chunks/assets/font_133ee4e7cacbbd1fddbcc593.woff2')format("woff");}.ff8_c00183{font-family:ff8_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00183;src:url('chunks/assets/font_f091bd9b8d6ea34b7c2d683b.woff2')format("woff");}.ff9_c00183{font-family:ff9_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00183;src:url('chunks/assets/font_9027df5cc4911e31ab7e295c.woff2')format("woff");}.ffa_c00183{font-family:ffa_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00183;src:url('chunks/assets/font_44546dcde394e41ed82d8a5d.woff2')format("woff");}.ffb_c00183{font-family:ffb_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00183;src:url('chunks/assets/font_104ee398ddb1bfc600530c0e.woff2')format("woff");}.ffc_c00183{font-family:ffc_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00183;src:url('chunks/assets/font_c883aac990f31e6f391add83.woff2')format("woff");}.ffd_c00183{font-family:ffd_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00183;src:url('chunks/assets/font_6ef614f59467b45d44489a66.woff2')format("woff");}.ffe_c00183{font-family:ffe_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00183;src:url('chunks/assets/font_a6c6cd7071b3b0e997f2a519.woff2')format("woff");}.fff_c00183{font-family:fff_c00183;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:ff10_c00183;src:url('chunks/assets/font_12f033b332be76f7a22bd989.woff2')format("woff");}.ff10_c00183{font-family:ff10_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00183;src:url('chunks/assets/font_cdf5a12a07ca7a1dcc02cb08.woff2')format("woff");}.ff11_c00183{font-family:ff11_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00183;src:url('chunks/assets/font_759e1ee1a171e79946defd69.woff2')format("woff");}.ff12_c00183{font-family:ff12_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00183;src:url('chunks/assets/font_a61bf9f6eda5e06b70ddf3be.woff2')format("woff");}.ff13_c00183{font-family:ff13_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00183;src:url('chunks/assets/font_d6788f9b5ee5fd339e6d467d.woff2')format("woff");}.ff14_c00183{font-family:ff14_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00183;src:url('chunks/assets/font_809911761ce9ee8c209a06a7.woff2')format("woff");}.ff15_c00183{font-family:ff15_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00183;src:url('chunks/assets/font_041800ee6f1a11a441b4c349.woff2')format("woff");}.ff16_c00183{font-family:ff16_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00183;src:url('chunks/assets/font_d74a08c0fc82b8b777cf5920.woff2')format("woff");}.ff17_c00183{font-family:ff17_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00183;src:url('chunks/assets/font_0e66df42eea21a6c6aec8ec8.woff2')format("woff");}.ff18_c00183{font-family:ff18_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00183;src:url('chunks/assets/font_cd3bba04e626b37a9dc31300.woff2')format("woff");}.ff19_c00183{font-family:ff19_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00183;src:url('chunks/assets/font_65725a581aba19999027c003.woff2')format("woff");}.ff1a_c00183{font-family:ff1a_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00183;src:url('chunks/assets/font_107ade5d26d9c846fc258896.woff2')format("woff");}.ff1b_c00183{font-family:ff1b_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00183;src:url('chunks/assets/font_11a4f2c684bb44f99a56f38d.woff2')format("woff");}.ff1c_c00183{font-family:ff1c_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00183;src:url('chunks/assets/font_28327908ce2149a2d210b58f.woff2')format("woff");}.ff1d_c00183{font-family:ff1d_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00183;src:url('chunks/assets/font_ddf1ffaaf22d7e97b0c79b78.woff2')format("woff");}.ff1e_c00183{font-family:ff1e_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00183;src:url('chunks/assets/font_0681002aa464f9c55169c4a4.woff2')format("woff");}.ff1f_c00183{font-family:ff1f_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00183;src:url('chunks/assets/font_8252356ae342b7f943dfca46.woff2')format("woff");}.ff20_c00183{font-family:ff20_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00183;src:url('chunks/assets/font_1895c8b59d333f5fcdaf0af8.woff2')format("woff");}.ff21_c00183{font-family:ff21_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00183;src:url('chunks/assets/font_922ae2c6f2e43d1a8e8cf675.woff2')format("woff");}.ff22_c00183{font-family:ff22_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00183;src:url('chunks/assets/font_992ffb0653c48308e3c74107.woff2')format("woff");}.ff23_c00183{font-family:ff23_c00183;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00183;src:url('chunks/assets/font_f9f4b477748477b7520b4495.woff2')format("woff");}.ff24_c00183{font-family:ff24_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00183;src:url('chunks/assets/font_38fc8972d002d83c8d6cf232.woff2')format("woff");}.ff25_c00183{font-family:ff25_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00183;src:url('chunks/assets/font_b621117cb34e3644285d82d3.woff2')format("woff");}.ff26_c00183{font-family:ff26_c00183;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00183;src:url('chunks/assets/font_922ae2c6f2e43d1a8e8cf675.woff2')format("woff");}.ff27_c00183{font-family:ff27_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00183;src:url('chunks/assets/font_4f8e8d86f07bb254b59024e6.woff2')format("woff");}.ff28_c00183{font-family:ff28_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00183;src:url('chunks/assets/font_3c1e9afdbf2e6630f4604d19.woff2')format("woff");}.ff29_c00183{font-family:ff29_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00183;src:url('chunks/assets/font_5e861d4de4ebc5ec5d087a8f.woff2')format("woff");}.ff2a_c00183{font-family:ff2a_c00183;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00183;src:url('chunks/assets/font_98dadf564126de77afa56f1a.woff2')format("woff");}.ff2b_c00183{font-family:ff2b_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00183;src:url('chunks/assets/font_eafe07459c33cd1827ba3c98.woff2')format("woff");}.ff2c_c00183{font-family:ff2c_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00183;src:url('chunks/assets/font_e5ae4415106961def1b2c4d4.woff2')format("woff");}.ff2d_c00183{font-family:ff2d_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00183;src:url('chunks/assets/font_51eaf238dc7d5b25a7bd59c3.woff2')format("woff");}.ff2e_c00183{font-family:ff2e_c00183;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00183;src:url('chunks/assets/font_6364d1c50a737b50301ed670.woff2')format("woff");}.ff2f_c00183{font-family:ff2f_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00183;src:url('chunks/assets/font_f58d2469a2ff3776dd8db3d8.woff2')format("woff");}.ff30_c00183{font-family:ff30_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00183;src:url('chunks/assets/font_c9e7cbc7b19f0b480554df8c.woff2')format("woff");}.ff31_c00183{font-family:ff31_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00183;src:url('chunks/assets/font_5337577173fd40126223340f.woff2')format("woff");}.ff32_c00183{font-family:ff32_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00183;src:url('chunks/assets/font_363e9cacd9edb82330596b5b.woff2')format("woff");}.ff33_c00183{font-family:ff33_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00183;src:url('chunks/assets/font_98155c9aa8d387cdd9f29e64.woff2')format("woff");}.ff34_c00183{font-family:ff34_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00183;src:url('chunks/assets/font_27e04ad666de34ad054e3a30.woff2')format("woff");}.ff35_c00183{font-family:ff35_c00183;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:ff36_c00183;src:url('chunks/assets/font_c1482d0226693ba037560d4a.woff2')format("woff");}.ff36_c00183{font-family:ff36_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00183;src:url('chunks/assets/font_087bc2297eee190795e7a03c.woff2')format("woff");}.ff37_c00183{font-family:ff37_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00183;src:url('chunks/assets/font_67dd6af73e25d32042192ca5.woff2')format("woff");}.ff38_c00183{font-family:ff38_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00183;src:url('chunks/assets/font_65351cbd50f34eac4835f10d.woff2')format("woff");}.ff39_c00183{font-family:ff39_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00183;src:url('chunks/assets/font_43d5f9d16b1ad4fa57e865ae.woff2')format("woff");}.ff3a_c00183{font-family:ff3a_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00183;src:url('chunks/assets/font_2991ee4c2e6426ccf23b25cb.woff2')format("woff");}.ff3b_c00183{font-family:ff3b_c00183;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls6_c00183{letter-spacing:-0.014400px;}
.ls3_c00183{letter-spacing:0.000000px;}
.ls0_c00183{letter-spacing:0.072000px;}
.ls4_c00183{letter-spacing:0.116928px;}
.ls1_c00183{letter-spacing:0.242208px;}
.ls2_c00183{letter-spacing:0.317376px;}
.ls5_c00183{letter-spacing:0.359136px;}
.sc__c00183{text-shadow:none;}
.sc0_c00183{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00183{-webkit-text-stroke:0px transparent;}
.sc0_c00183{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00183{word-spacing:-0.325728px;}
.ws0_c00183{word-spacing:-0.072000px;}
.ws2_c00183{word-spacing:0.000000px;}
._9_c00183{margin-left:-1.002240px;}
._5_c00183{width:1.267200px;}
._8_c00183{width:2.448000px;}
._1_c00183{width:3.902400px;}
._b_c00183{width:5.335200px;}
._2_c00183{width:6.732000px;}
._3_c00183{width:8.330400px;}
._0_c00183{width:10.490400px;}
._4_c00183{width:11.613600px;}
._7_c00183{width:13.226400px;}
._6_c00183{width:14.824800px;}
._a_c00183{width:16.027200px;}
._c_c00183{width:23.868000px;}
.fc2_c00183{color:transparent;}
.fc1_c00183{color:rgb(127,127,127);}
.fc0_c00183{color:rgb(0,0,0);}
.fs1_c00183{font-size:64.800000px;}
.fs0_c00183{font-size:72.000000px;}
.fs2_c00183{font-size:83.520000px;}
.y0_c00183{bottom:0.000000px;}
.y5_c00183{bottom:5.040000px;}
.y1_c00183{bottom:12.735000px;}
.y3_c00183{bottom:45.045000px;}
.y4_c00183{bottom:52.740000px;}
.y21_c00183{bottom:110.565000px;}
.y20_c00183{bottom:146.565000px;}
.y1f_c00183{bottom:182.565000px;}
.y1e_c00183{bottom:218.565000px;}
.y1d_c00183{bottom:254.565000px;}
.y1c_c00183{bottom:290.565000px;}
.y1b_c00183{bottom:326.565000px;}
.y1a_c00183{bottom:362.565000px;}
.y19_c00183{bottom:398.565000px;}
.y18_c00183{bottom:434.565000px;}
.y17_c00183{bottom:471.285000px;}
.y16_c00183{bottom:506.565000px;}
.y15_c00183{bottom:542.565000px;}
.y14_c00183{bottom:578.565000px;}
.y13_c00183{bottom:614.565000px;}
.y12_c00183{bottom:650.565000px;}
.y11_c00183{bottom:686.565000px;}
.y10_c00183{bottom:722.565000px;}
.yf_c00183{bottom:758.565000px;}
.ye_c00183{bottom:794.565000px;}
.yd_c00183{bottom:830.565000px;}
.yc_c00183{bottom:866.565000px;}
.yb_c00183{bottom:902.565000px;}
.ya_c00183{bottom:938.565000px;}
.y9_c00183{bottom:974.565000px;}
.y8_c00183{bottom:1010.565000px;}
.y7_c00183{bottom:1046.565000px;}
.y6_c00183{bottom:1082.565000px;}
.y2_c00183{bottom:1165.365000px;}
.h4_c00183{height:20.880000px;}
.h3_c00183{height:70.664062px;}
.h7_c00183{height:72.562500px;}
.h5_c00183{height:74.004654px;}
.h6_c00183{height:84.172500px;}
.h2_c00183{height:1237.365000px;}
.h0_c00183{height:1262.835000px;}
.h1_c00183{height:1263.000000px;}
.w3_c00183{width:27.000000px;}
.w2_c00183{width:867.465000px;}
.w0_c00183{width:892.935000px;}
.w1_c00183{width:893.250000px;}
.x0_c00183{left:0.000000px;}
.x1_c00183{left:12.735000px;}
.x3_c00183{left:95.406300px;}
.x5_c00183{left:149.400150px;}
.x4_c00183{left:433.215000px;}
.x2_c00183{left:878.550300px;}
@media print{
.v0_c00183{vertical-align:0.000000pt;}
.ls6_c00183{letter-spacing:-0.012800pt;}
.ls3_c00183{letter-spacing:0.000000pt;}
.ls0_c00183{letter-spacing:0.064000pt;}
.ls4_c00183{letter-spacing:0.103936pt;}
.ls1_c00183{letter-spacing:0.215296pt;}
.ls2_c00183{letter-spacing:0.282112pt;}
.ls5_c00183{letter-spacing:0.319232pt;}
.ws1_c00183{word-spacing:-0.289536pt;}
.ws0_c00183{word-spacing:-0.064000pt;}
.ws2_c00183{word-spacing:0.000000pt;}
._9_c00183{margin-left:-0.890880pt;}
._5_c00183{width:1.126400pt;}
._8_c00183{width:2.176000pt;}
._1_c00183{width:3.468800pt;}
._b_c00183{width:4.742400pt;}
._2_c00183{width:5.984000pt;}
._3_c00183{width:7.404800pt;}
._0_c00183{width:9.324800pt;}
._4_c00183{width:10.323200pt;}
._7_c00183{width:11.756800pt;}
._6_c00183{width:13.177600pt;}
._a_c00183{width:14.246400pt;}
._c_c00183{width:21.216000pt;}
.fs1_c00183{font-size:57.600000pt;}
.fs0_c00183{font-size:64.000000pt;}
.fs2_c00183{font-size:74.240000pt;}
.y0_c00183{bottom:0.000000pt;}
.y5_c00183{bottom:4.480000pt;}
.y1_c00183{bottom:11.320000pt;}
.y3_c00183{bottom:40.040000pt;}
.y4_c00183{bottom:46.880000pt;}
.y21_c00183{bottom:98.280000pt;}
.y20_c00183{bottom:130.280000pt;}
.y1f_c00183{bottom:162.280000pt;}
.y1e_c00183{bottom:194.280000pt;}
.y1d_c00183{bottom:226.280000pt;}
.y1c_c00183{bottom:258.280000pt;}
.y1b_c00183{bottom:290.280000pt;}
.y1a_c00183{bottom:322.280000pt;}
.y19_c00183{bottom:354.280000pt;}
.y18_c00183{bottom:386.280000pt;}
.y17_c00183{bottom:418.920000pt;}
.y16_c00183{bottom:450.280000pt;}
.y15_c00183{bottom:482.280000pt;}
.y14_c00183{bottom:514.280000pt;}
.y13_c00183{bottom:546.280000pt;}
.y12_c00183{bottom:578.280000pt;}
.y11_c00183{bottom:610.280000pt;}
.y10_c00183{bottom:642.280000pt;}
.yf_c00183{bottom:674.280000pt;}
.ye_c00183{bottom:706.280000pt;}
.yd_c00183{bottom:738.280000pt;}
.yc_c00183{bottom:770.280000pt;}
.yb_c00183{bottom:802.280000pt;}
.ya_c00183{bottom:834.280000pt;}
.y9_c00183{bottom:866.280000pt;}
.y8_c00183{bottom:898.280000pt;}
.y7_c00183{bottom:930.280000pt;}
.y6_c00183{bottom:962.280000pt;}
.y2_c00183{bottom:1035.880000pt;}
.h4_c00183{height:18.560000pt;}
.h3_c00183{height:62.812500pt;}
.h7_c00183{height:64.500000pt;}
.h5_c00183{height:65.781915pt;}
.h6_c00183{height:74.820000pt;}
.h2_c00183{height:1099.880000pt;}
.h0_c00183{height:1122.520000pt;}
.h1_c00183{height:1122.666667pt;}
.w3_c00183{width:24.000000pt;}
.w2_c00183{width:771.080000pt;}
.w0_c00183{width:793.720000pt;}
.w1_c00183{width:794.000000pt;}
.x0_c00183{left:0.000000pt;}
.x1_c00183{left:11.320000pt;}
.x3_c00183{left:84.805600pt;}
.x5_c00183{left:132.800133pt;}
.x4_c00183{left:385.080000pt;}
.x2_c00183{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00184{font-family:ff1_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00184;src:url('chunks/assets/font_6a607ca7d6543c9e41a9029c.woff2')format("woff");}.ff2_c00184{font-family:ff2_c00184;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00184;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00184{font-family:ff3_c00184;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00184;src:url('chunks/assets/font_b57c92c3e3bf8561255c93fd.woff2')format("woff");}.ff4_c00184{font-family:ff4_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00184;src:url('chunks/assets/font_f8eb5d75a3133247996099ad.woff2')format("woff");}.ff5_c00184{font-family:ff5_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00184;src:url('chunks/assets/font_b0f97f2bff5fe97e3413669d.woff2')format("woff");}.ff6_c00184{font-family:ff6_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00184;src:url('chunks/assets/font_729b481031e6b92034a41b1b.woff2')format("woff");}.ff7_c00184{font-family:ff7_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00184;src:url('chunks/assets/font_9c5366ef812dd1afaa008b3d.woff2')format("woff");}.ff8_c00184{font-family:ff8_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00184;src:url('chunks/assets/font_e25a331ad0d8aef15c82f6a7.woff2')format("woff");}.ff9_c00184{font-family:ff9_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00184;src:url('chunks/assets/font_3c63b81d83f889c2911ba66f.woff2')format("woff");}.ffa_c00184{font-family:ffa_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00184;src:url('chunks/assets/font_ebe5bb0591cbaa2266f6ef4d.woff2')format("woff");}.ffb_c00184{font-family:ffb_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00184;src:url('chunks/assets/font_d90ec78fa2775b28f4ddafe3.woff2')format("woff");}.ffc_c00184{font-family:ffc_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00184;src:url('chunks/assets/font_48d1453a98210c9744083849.woff2')format("woff");}.ffd_c00184{font-family:ffd_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00184;src:url('chunks/assets/font_8b08a0143c02748afa72062c.woff2')format("woff");}.ffe_c00184{font-family:ffe_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00184;src:url('chunks/assets/font_e6a60fc19bfd8d7cbe34fcef.woff2')format("woff");}.fff_c00184{font-family:fff_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00184;src:url('chunks/assets/font_c78629ab008428a3544d0ded.woff2')format("woff");}.ff10_c00184{font-family:ff10_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00184;src:url('chunks/assets/font_84a9ca978a1531381b78dbcb.woff2')format("woff");}.ff11_c00184{font-family:ff11_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00184;src:url('chunks/assets/font_e12fe86cac6996f0b2d326a4.woff2')format("woff");}.ff12_c00184{font-family:ff12_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00184;src:url('chunks/assets/font_16f8f9788a2279f335af387e.woff2')format("woff");}.ff13_c00184{font-family:ff13_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00184;src:url('chunks/assets/font_b7b94a3a0b63e7238daa2e05.woff2')format("woff");}.ff14_c00184{font-family:ff14_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00184;src:url('chunks/assets/font_58dcbbc131d50366e15e587f.woff2')format("woff");}.ff15_c00184{font-family:ff15_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00184;src:url('chunks/assets/font_45bbc3c70d8465981d8d3a0d.woff2')format("woff");}.ff16_c00184{font-family:ff16_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00184;src:url('chunks/assets/font_7514208834b73ed5b37da5f2.woff2')format("woff");}.ff17_c00184{font-family:ff17_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00184;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff18_c00184{font-family:ff18_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00184;src:url('chunks/assets/font_9692a12835af5e3d570375be.woff2')format("woff");}.ff19_c00184{font-family:ff19_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00184;src:url('chunks/assets/font_2a766c6645c7b089c33d8a82.woff2')format("woff");}.ff1a_c00184{font-family:ff1a_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00184;src:url('chunks/assets/font_63974bb59bfc785deb67daa3.woff2')format("woff");}.ff1b_c00184{font-family:ff1b_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00184;src:url('chunks/assets/font_197c5da1ecf2c9ab9570d32c.woff2')format("woff");}.ff1c_c00184{font-family:ff1c_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00184;src:url('chunks/assets/font_2f86b11596d66fc0001c9034.woff2')format("woff");}.ff1d_c00184{font-family:ff1d_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00184;src:url('chunks/assets/font_d9c5b278b6a10ca5c675ebc8.woff2')format("woff");}.ff1e_c00184{font-family:ff1e_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00184;src:url('chunks/assets/font_9f87e5ada16c1093e6e80b15.woff2')format("woff");}.ff1f_c00184{font-family:ff1f_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00184;src:url('chunks/assets/font_051d4e07196a43d47ddee6ae.woff2')format("woff");}.ff20_c00184{font-family:ff20_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00184;src:url('chunks/assets/font_292bb9921d8bbee056a62046.woff2')format("woff");}.ff21_c00184{font-family:ff21_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00184;src:url('chunks/assets/font_829366c1821a50b853f8c5c8.woff2')format("woff");}.ff22_c00184{font-family:ff22_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00184;src:url('chunks/assets/font_f616ccd515429245a7f20c8c.woff2')format("woff");}.ff23_c00184{font-family:ff23_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00184;src:url('chunks/assets/font_07e6ac567f70d9bc3df611be.woff2')format("woff");}.ff24_c00184{font-family:ff24_c00184;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00184;src:url('chunks/assets/font_2b3e108e1b1725c902411de0.woff2')format("woff");}.ff25_c00184{font-family:ff25_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00184;src:url('chunks/assets/font_058c4f10a71c300cc4c5d521.woff2')format("woff");}.ff26_c00184{font-family:ff26_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00184;src:url('chunks/assets/font_2c7155a582c29f60ac58e5c2.woff2')format("woff");}.ff27_c00184{font-family:ff27_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00184;src:url('chunks/assets/font_8dbdd3648379bc1fe65a20f0.woff2')format("woff");}.ff28_c00184{font-family:ff28_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00184;src:url('chunks/assets/font_b7e70e8c078b9b314262d923.woff2')format("woff");}.ff29_c00184{font-family:ff29_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00184;src:url('chunks/assets/font_89f1f32793e5097621402068.woff2')format("woff");}.ff2a_c00184{font-family:ff2a_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00184;src:url('chunks/assets/font_26ed21799006002cfff5199a.woff2')format("woff");}.ff2b_c00184{font-family:ff2b_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00184;src:url('chunks/assets/font_9756b2d0568acf1208a5c021.woff2')format("woff");}.ff2c_c00184{font-family:ff2c_c00184;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00184;src:url('chunks/assets/font_e714af2d0ab64bb81d757003.woff2')format("woff");}.ff2d_c00184{font-family:ff2d_c00184;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00184{letter-spacing:-0.014400px;}
.ls1_c00184{letter-spacing:0.000000px;}
.ls0_c00184{letter-spacing:0.129600px;}
.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:-0.072000px;}
.ws1_c00184{word-spacing:-0.057600px;}
.ws2_c00184{word-spacing:0.000000px;}
._6_c00184{width:1.166400px;}
._3_c00184{width:3.088800px;}
._1_c00184{width:4.701600px;}
._5_c00184{width:6.328800px;}
._0_c00184{width:8.186400px;}
._4_c00184{width:10.087200px;}
._8_c00184{width:11.556000px;}
._2_c00184{width:13.384800px;}
._7_c00184{width:14.954400px;}
._a_c00184{width:16.948800px;}
._9_c00184{width:32.752800px;}
.fc1_c00184{color:transparent;}
.fc0_c00184{color:rgb(0,0,0);}
.fs1_c00184{font-size:64.800000px;}
.fs0_c00184{font-size:72.000000px;}
.y0_c00184{bottom:0.000000px;}
.y5_c00184{bottom:5.040000px;}
.y1_c00184{bottom:12.735000px;}
.y3_c00184{bottom:45.045000px;}
.y4_c00184{bottom:52.740000px;}
.y21_c00184{bottom:110.565000px;}
.y20_c00184{bottom:146.565000px;}
.y1f_c00184{bottom:182.565000px;}
.y1e_c00184{bottom:218.565000px;}
.y1d_c00184{bottom:254.565000px;}
.y1c_c00184{bottom:290.565000px;}
.y1b_c00184{bottom:326.565000px;}
.y1a_c00184{bottom:362.565000px;}
.y19_c00184{bottom:398.565000px;}
.y18_c00184{bottom:434.565000px;}
.y17_c00184{bottom:470.565000px;}
.y16_c00184{bottom:506.565000px;}
.y15_c00184{bottom:542.565000px;}
.y14_c00184{bottom:578.565000px;}
.y13_c00184{bottom:614.565000px;}
.y12_c00184{bottom:650.565000px;}
.y11_c00184{bottom:686.565000px;}
.y10_c00184{bottom:722.565000px;}
.yf_c00184{bottom:758.565000px;}
.ye_c00184{bottom:794.565000px;}
.yd_c00184{bottom:830.565000px;}
.yc_c00184{bottom:866.565000px;}
.yb_c00184{bottom:902.565000px;}
.ya_c00184{bottom:938.565000px;}
.y9_c00184{bottom:974.565000px;}
.y8_c00184{bottom:1010.565000px;}
.y7_c00184{bottom:1046.565000px;}
.y6_c00184{bottom:1082.565000px;}
.y2_c00184{bottom:1165.365000px;}
.h4_c00184{height:20.880000px;}
.h6_c00184{height:70.628906px;}
.h3_c00184{height:70.664062px;}
.h7_c00184{height:71.824219px;}
.h5_c00184{height:74.004654px;}
.h2_c00184{height:1237.365000px;}
.h0_c00184{height:1262.835000px;}
.h1_c00184{height:1263.000000px;}
.w3_c00184{width:27.000000px;}
.w2_c00184{width:867.465000px;}
.w0_c00184{width:892.935000px;}
.w1_c00184{width:893.250000px;}
.x0_c00184{left:0.000000px;}
.x1_c00184{left:12.735000px;}
.x3_c00184{left:95.406300px;}
.x5_c00184{left:149.400150px;}
.x4_c00184{left:433.215000px;}
.x2_c00184{left:878.550300px;}
@media print{
.v0_c00184{vertical-align:0.000000pt;}
.ls2_c00184{letter-spacing:-0.012800pt;}
.ls1_c00184{letter-spacing:0.000000pt;}
.ls0_c00184{letter-spacing:0.115200pt;}
.ws0_c00184{word-spacing:-0.064000pt;}
.ws1_c00184{word-spacing:-0.051200pt;}
.ws2_c00184{word-spacing:0.000000pt;}
._6_c00184{width:1.036800pt;}
._3_c00184{width:2.745600pt;}
._1_c00184{width:4.179200pt;}
._5_c00184{width:5.625600pt;}
._0_c00184{width:7.276800pt;}
._4_c00184{width:8.966400pt;}
._8_c00184{width:10.272000pt;}
._2_c00184{width:11.897600pt;}
._7_c00184{width:13.292800pt;}
._a_c00184{width:15.065600pt;}
._9_c00184{width:29.113600pt;}
.fs1_c00184{font-size:57.600000pt;}
.fs0_c00184{font-size:64.000000pt;}
.y0_c00184{bottom:0.000000pt;}
.y5_c00184{bottom:4.480000pt;}
.y1_c00184{bottom:11.320000pt;}
.y3_c00184{bottom:40.040000pt;}
.y4_c00184{bottom:46.880000pt;}
.y21_c00184{bottom:98.280000pt;}
.y20_c00184{bottom:130.280000pt;}
.y1f_c00184{bottom:162.280000pt;}
.y1e_c00184{bottom:194.280000pt;}
.y1d_c00184{bottom:226.280000pt;}
.y1c_c00184{bottom:258.280000pt;}
.y1b_c00184{bottom:290.280000pt;}
.y1a_c00184{bottom:322.280000pt;}
.y19_c00184{bottom:354.280000pt;}
.y18_c00184{bottom:386.280000pt;}
.y17_c00184{bottom:418.280000pt;}
.y16_c00184{bottom:450.280000pt;}
.y15_c00184{bottom:482.280000pt;}
.y14_c00184{bottom:514.280000pt;}
.y13_c00184{bottom:546.280000pt;}
.y12_c00184{bottom:578.280000pt;}
.y11_c00184{bottom:610.280000pt;}
.y10_c00184{bottom:642.280000pt;}
.yf_c00184{bottom:674.280000pt;}
.ye_c00184{bottom:706.280000pt;}
.yd_c00184{bottom:738.280000pt;}
.yc_c00184{bottom:770.280000pt;}
.yb_c00184{bottom:802.280000pt;}
.ya_c00184{bottom:834.280000pt;}
.y9_c00184{bottom:866.280000pt;}
.y8_c00184{bottom:898.280000pt;}
.y7_c00184{bottom:930.280000pt;}
.y6_c00184{bottom:962.280000pt;}
.y2_c00184{bottom:1035.880000pt;}
.h4_c00184{height:18.560000pt;}
.h6_c00184{height:62.781250pt;}
.h3_c00184{height:62.812500pt;}
.h7_c00184{height:63.843750pt;}
.h5_c00184{height:65.781915pt;}
.h2_c00184{height:1099.880000pt;}
.h0_c00184{height:1122.520000pt;}
.h1_c00184{height:1122.666667pt;}
.w3_c00184{width:24.000000pt;}
.w2_c00184{width:771.080000pt;}
.w0_c00184{width:793.720000pt;}
.w1_c00184{width:794.000000pt;}
.x0_c00184{left:0.000000pt;}
.x1_c00184{left:11.320000pt;}
.x3_c00184{left:84.805600pt;}
.x5_c00184{left:132.800133pt;}
.x4_c00184{left:385.080000pt;}
.x2_c00184{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00185{font-family:ff1_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00185;src:url('chunks/assets/font_8505bab5124125a6f9ea9e54.woff2')format("woff");}.ff2_c00185{font-family:ff2_c00185;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00185;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00185{font-family:ff3_c00185;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00185;src:url('chunks/assets/font_0cbec5509899bb90c104227b.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_b471814e54a17ecb37750838.woff2')format("woff");}.ff5_c00185{font-family:ff5_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:ff6_c00185;src:url('chunks/assets/font_a3d6ebce385adfab786242ad.woff2')format("woff");}.ff6_c00185{font-family:ff6_c00185;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00185;src:url('chunks/assets/font_f863c37f9bf42e466137e5d4.woff2')format("woff");}.ff7_c00185{font-family:ff7_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:ff8_c00185;src:url('chunks/assets/font_b11ceec2befc774e1a7d8bf0.woff2')format("woff");}.ff8_c00185{font-family:ff8_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:ff9_c00185;src:url('chunks/assets/font_820c02c2fe5a13e905c5ed8c.woff2')format("woff");}.ff9_c00185{font-family:ff9_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:ffa_c00185;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ffa_c00185{font-family:ffa_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:ffb_c00185;src:url('chunks/assets/font_e1c537e6b084f9d7e74fd284.woff2')format("woff");}.ffb_c00185{font-family:ffb_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00185;src:url('chunks/assets/font_4ad4d6fba0fc6099be8ad05a.woff2')format("woff");}.ffc_c00185{font-family:ffc_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:ffd_c00185;src:url('chunks/assets/font_422c234111a27f43ec4138c0.woff2')format("woff");}.ffd_c00185{font-family:ffd_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:ffe_c00185;src:url('chunks/assets/font_1419600800ba577ddefda96b.woff2')format("woff");}.ffe_c00185{font-family:ffe_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00185;src:url('chunks/assets/font_7b00ba73f178a0f9a15b9611.woff2')format("woff");}.fff_c00185{font-family:fff_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00185;src:url('chunks/assets/font_68ae7112e78324e55a1c2bfe.woff2')format("woff");}.ff10_c00185{font-family:ff10_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00185;src:url('chunks/assets/font_3a3f58c3b6bf14439240efd9.woff2')format("woff");}.ff11_c00185{font-family:ff11_c00185;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:ff12_c00185;src:url('chunks/assets/font_74de0afb63ee3d66ffff4962.woff2')format("woff");}.ff12_c00185{font-family:ff12_c00185;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:ff13_c00185;src:url('chunks/assets/font_9f006c5dcc7f8fe718bd1206.woff2')format("woff");}.ff13_c00185{font-family:ff13_c00185;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:ff14_c00185;src:url('chunks/assets/font_15a13bdcfb4d05fefdbca94a.woff2')format("woff");}.ff14_c00185{font-family:ff14_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:ff15_c00185;src:url('chunks/assets/font_7f80ad58f3a1e721da265d9e.woff2')format("woff");}.ff15_c00185{font-family:ff15_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:ff16_c00185;src:url('chunks/assets/font_ef7527cb9809b50fc6457ee3.woff2')format("woff");}.ff16_c00185{font-family:ff16_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:ff17_c00185;src:url('chunks/assets/font_bafb2f1cb2386c78b6c6d71b.woff2')format("woff");}.ff17_c00185{font-family:ff17_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:ff18_c00185;src:url('chunks/assets/font_edeeda39b99aa483b7b4d06c.woff2')format("woff");}.ff18_c00185{font-family:ff18_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:ff19_c00185;src:url('chunks/assets/font_4da0260e959c9e8f96fc54f2.woff2')format("woff");}.ff19_c00185{font-family:ff19_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:ff1a_c00185;src:url('chunks/assets/font_dc7ce6633c52996999f75584.woff2')format("woff");}.ff1a_c00185{font-family:ff1a_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:ff1b_c00185;src:url('chunks/assets/font_85bdd60a8d23cb9f2ea8ba21.woff2')format("woff");}.ff1b_c00185{font-family:ff1b_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:ff1c_c00185;src:url('chunks/assets/font_d2a8eec905d79d098d164d16.woff2')format("woff");}.ff1c_c00185{font-family:ff1c_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:ff1d_c00185;src:url('chunks/assets/font_a3f239666a3b60498f7f1edd.woff2')format("woff");}.ff1d_c00185{font-family:ff1d_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:ff1e_c00185;src:url('chunks/assets/font_2df0d3dfd1e11707c54506c3.woff2')format("woff");}.ff1e_c00185{font-family:ff1e_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:ff1f_c00185;src:url('chunks/assets/font_9de03958f90827325a55fb15.woff2')format("woff");}.ff1f_c00185{font-family:ff1f_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:ff20_c00185;src:url('chunks/assets/font_376d933540edc86775bced29.woff2')format("woff");}.ff20_c00185{font-family:ff20_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:ff21_c00185;src:url('chunks/assets/font_98bd18be51f32ae0b75a97db.woff2')format("woff");}.ff21_c00185{font-family:ff21_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:ff22_c00185;src:url('chunks/assets/font_11f95709fb12aac86fa73860.woff2')format("woff");}.ff22_c00185{font-family:ff22_c00185;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00185;src:url('chunks/assets/font_089c1f382fcca3288184b02a.woff2')format("woff");}.ff23_c00185{font-family:ff23_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:ff24_c00185;src:url('chunks/assets/font_b610356a8bd68eaff79267e4.woff2')format("woff");}.ff24_c00185{font-family:ff24_c00185;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00185;src:url('chunks/assets/font_50d8ac9fdebb90ed3e81272f.woff2')format("woff");}.ff25_c00185{font-family:ff25_c00185;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00185;src:url('chunks/assets/font_c6019a58a669ee628eb841d6.woff2')format("woff");}.ff26_c00185{font-family:ff26_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00185;src:url('chunks/assets/font_6d4f25b917dbac23e9b3459b.woff2')format("woff");}.ff27_c00185{font-family:ff27_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00185;src:url('chunks/assets/font_7cd42964dd98ec533918b81f.woff2')format("woff");}.ff28_c00185{font-family:ff28_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00185;src:url('chunks/assets/font_392770f3b93f70c5a91b8c7b.woff2')format("woff");}.ff29_c00185{font-family:ff29_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00185;src:url('chunks/assets/font_5fc61ec297d245fec675688b.woff2')format("woff");}.ff2a_c00185{font-family:ff2a_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00185;src:url('chunks/assets/font_1cd1d4ef72d4ef6ab6a2507d.woff2')format("woff");}.ff2b_c00185{font-family:ff2b_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00185;src:url('chunks/assets/font_cd2dd548056308a24fbfd634.woff2')format("woff");}.ff2c_c00185{font-family:ff2c_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00185;src:url('chunks/assets/font_da5c8c73f21acd87f461045d.woff2')format("woff");}.ff2d_c00185{font-family:ff2d_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00185;src:url('chunks/assets/font_d4dcaf743d7e7532b7fc046d.woff2')format("woff");}.ff2e_c00185{font-family:ff2e_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00185;src:url('chunks/assets/font_c95baa7823a2740dc02dcef0.woff2')format("woff");}.ff2f_c00185{font-family:ff2f_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00185;src:url('chunks/assets/font_069cce2ab05191d51cc78a26.woff2')format("woff");}.ff30_c00185{font-family:ff30_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00185;src:url('chunks/assets/font_48d1453a98210c9744083849.woff2')format("woff");}.ff31_c00185{font-family:ff31_c00185;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00185;src:url('chunks/assets/font_a0ee248cb1a1b603088e4a44.woff2')format("woff");}.ff32_c00185{font-family:ff32_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:ff33_c00185;src:url('chunks/assets/font_b45e7753caec24f727dbd4d3.woff2')format("woff");}.ff33_c00185{font-family:ff33_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:ff34_c00185;src:url('chunks/assets/font_48fba89a607805796d4da776.woff2')format("woff");}.ff34_c00185{font-family:ff34_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:ff35_c00185;src:url('chunks/assets/font_a6b09812491cf9e390a73560.woff2')format("woff");}.ff35_c00185{font-family:ff35_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;}
.m0_c00185{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00185{vertical-align:0.000000px;}
.ls2_c00185{letter-spacing:0.000000px;}
.ls1_c00185{letter-spacing:0.086400px;}
.ls0_c00185{letter-spacing:8.928000px;}
.sc__c00185{text-shadow:none;}
.sc0_c00185{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00185{-webkit-text-stroke:0px transparent;}
.sc0_c00185{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00185{word-spacing:-0.072000px;}
.ws1_c00185{word-spacing:0.000000px;}
._8_c00185{width:1.015200px;}
._2_c00185{width:2.721600px;}
._3_c00185{width:4.420800px;}
._7_c00185{width:5.587200px;}
._c_c00185{width:6.602400px;}
._a_c00185{width:7.876800px;}
._5_c00185{width:8.935200px;}
._0_c00185{width:10.893600px;}
._1_c00185{width:12.384000px;}
._9_c00185{width:14.140800px;}
._b_c00185{width:16.790400px;}
._6_c00185{width:19.684800px;}
._4_c00185{width:26.488800px;}
.fc1_c00185{color:transparent;}
.fc0_c00185{color:rgb(0,0,0);}
.fs1_c00185{font-size:64.800000px;}
.fs0_c00185{font-size:72.000000px;}
.y0_c00185{bottom:0.000000px;}
.y5_c00185{bottom:5.040000px;}
.y1_c00185{bottom:12.735000px;}
.y3_c00185{bottom:45.045000px;}
.y4_c00185{bottom:52.740000px;}
.y21_c00185{bottom:110.565000px;}
.y20_c00185{bottom:146.565000px;}
.y1f_c00185{bottom:182.565000px;}
.y1e_c00185{bottom:218.565000px;}
.y1d_c00185{bottom:254.565000px;}
.y1c_c00185{bottom:290.565000px;}
.y1b_c00185{bottom:326.565000px;}
.y1a_c00185{bottom:362.565000px;}
.y19_c00185{bottom:398.565000px;}
.y18_c00185{bottom:434.565000px;}
.y17_c00185{bottom:470.565000px;}
.y16_c00185{bottom:506.565000px;}
.y15_c00185{bottom:542.565000px;}
.y14_c00185{bottom:578.565000px;}
.y13_c00185{bottom:614.565000px;}
.y12_c00185{bottom:650.565000px;}
.y11_c00185{bottom:686.565000px;}
.y10_c00185{bottom:722.565000px;}
.yf_c00185{bottom:758.565000px;}
.ye_c00185{bottom:794.565000px;}
.yd_c00185{bottom:830.565000px;}
.yc_c00185{bottom:866.565000px;}
.yb_c00185{bottom:902.565000px;}
.ya_c00185{bottom:938.565000px;}
.y9_c00185{bottom:974.565000px;}
.y8_c00185{bottom:1010.565000px;}
.y7_c00185{bottom:1046.565000px;}
.y6_c00185{bottom:1082.565000px;}
.y2_c00185{bottom:1165.365000px;}
.h4_c00185{height:20.880000px;}
.h6_c00185{height:70.628906px;}
.h3_c00185{height:70.664062px;}
.h7_c00185{height:71.824219px;}
.h5_c00185{height:74.004654px;}
.h2_c00185{height:1237.365000px;}
.h0_c00185{height:1262.835000px;}
.h1_c00185{height:1263.000000px;}
.w3_c00185{width:27.000000px;}
.w2_c00185{width:867.465000px;}
.w0_c00185{width:892.935000px;}
.w1_c00185{width:893.250000px;}
.x0_c00185{left:0.000000px;}
.x1_c00185{left:12.735000px;}
.x3_c00185{left:95.406300px;}
.x5_c00185{left:149.400150px;}
.x4_c00185{left:433.215000px;}
.x2_c00185{left:878.550300px;}
@media print{
.v0_c00185{vertical-align:0.000000pt;}
.ls2_c00185{letter-spacing:0.000000pt;}
.ls1_c00185{letter-spacing:0.076800pt;}
.ls0_c00185{letter-spacing:7.936000pt;}
.ws0_c00185{word-spacing:-0.064000pt;}
.ws1_c00185{word-spacing:0.000000pt;}
._8_c00185{width:0.902400pt;}
._2_c00185{width:2.419200pt;}
._3_c00185{width:3.929600pt;}
._7_c00185{width:4.966400pt;}
._c_c00185{width:5.868800pt;}
._a_c00185{width:7.001600pt;}
._5_c00185{width:7.942400pt;}
._0_c00185{width:9.683200pt;}
._1_c00185{width:11.008000pt;}
._9_c00185{width:12.569600pt;}
._b_c00185{width:14.924800pt;}
._6_c00185{width:17.497600pt;}
._4_c00185{width:23.545600pt;}
.fs1_c00185{font-size:57.600000pt;}
.fs0_c00185{font-size:64.000000pt;}
.y0_c00185{bottom:0.000000pt;}
.y5_c00185{bottom:4.480000pt;}
.y1_c00185{bottom:11.320000pt;}
.y3_c00185{bottom:40.040000pt;}
.y4_c00185{bottom:46.880000pt;}
.y21_c00185{bottom:98.280000pt;}
.y20_c00185{bottom:130.280000pt;}
.y1f_c00185{bottom:162.280000pt;}
.y1e_c00185{bottom:194.280000pt;}
.y1d_c00185{bottom:226.280000pt;}
.y1c_c00185{bottom:258.280000pt;}
.y1b_c00185{bottom:290.280000pt;}
.y1a_c00185{bottom:322.280000pt;}
.y19_c00185{bottom:354.280000pt;}
.y18_c00185{bottom:386.280000pt;}
.y17_c00185{bottom:418.280000pt;}
.y16_c00185{bottom:450.280000pt;}
.y15_c00185{bottom:482.280000pt;}
.y14_c00185{bottom:514.280000pt;}
.y13_c00185{bottom:546.280000pt;}
.y12_c00185{bottom:578.280000pt;}
.y11_c00185{bottom:610.280000pt;}
.y10_c00185{bottom:642.280000pt;}
.yf_c00185{bottom:674.280000pt;}
.ye_c00185{bottom:706.280000pt;}
.yd_c00185{bottom:738.280000pt;}
.yc_c00185{bottom:770.280000pt;}
.yb_c00185{bottom:802.280000pt;}
.ya_c00185{bottom:834.280000pt;}
.y9_c00185{bottom:866.280000pt;}
.y8_c00185{bottom:898.280000pt;}
.y7_c00185{bottom:930.280000pt;}
.y6_c00185{bottom:962.280000pt;}
.y2_c00185{bottom:1035.880000pt;}
.h4_c00185{height:18.560000pt;}
.h6_c00185{height:62.781250pt;}
.h3_c00185{height:62.812500pt;}
.h7_c00185{height:63.843750pt;}
.h5_c00185{height:65.781915pt;}
.h2_c00185{height:1099.880000pt;}
.h0_c00185{height:1122.520000pt;}
.h1_c00185{height:1122.666667pt;}
.w3_c00185{width:24.000000pt;}
.w2_c00185{width:771.080000pt;}
.w0_c00185{width:793.720000pt;}
.w1_c00185{width:794.000000pt;}
.x0_c00185{left:0.000000pt;}
.x1_c00185{left:11.320000pt;}
.x3_c00185{left:84.805600pt;}
.x5_c00185{left:132.800133pt;}
.x4_c00185{left:385.080000pt;}
.x2_c00185{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00186{font-family:ff1_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00186;src:url('chunks/assets/font_f88e8a5db12a7aaf3f758f76.woff2')format("woff");}.ff2_c00186{font-family:ff2_c00186;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00186;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00186{font-family:ff3_c00186;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00186;src:url('chunks/assets/font_857a6e5f5057c12729484ddb.woff2')format("woff");}.ff4_c00186{font-family:ff4_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00186;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff5_c00186{font-family:ff5_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00186;src:url('chunks/assets/font_f71adf9b4836b52541bbd289.woff2')format("woff");}.ff6_c00186{font-family:ff6_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00186;src:url('chunks/assets/font_0c97fa4fc3404038ffdb76da.woff2')format("woff");}.ff7_c00186{font-family:ff7_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00186;src:url('chunks/assets/font_a7d2a5556c69eca48d3e435f.woff2')format("woff");}.ff8_c00186{font-family:ff8_c00186;line-height:1.284180;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_539956ea6b30355982feb26f.woff2')format("woff");}.ff9_c00186{font-family:ff9_c00186;line-height:1.284180;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_cf4f20022c9e6f0f62625af6.woff2')format("woff");}.ffa_c00186{font-family:ffa_c00186;line-height:1.284180;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_cf6a58f84c20b3da80488bb9.woff2')format("woff");}.ffb_c00186{font-family:ffb_c00186;line-height:1.284180;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_9d49fc8fdee8edf28307e484.woff2')format("woff");}.ffc_c00186{font-family:ffc_c00186;line-height:1.284180;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_9a6618d56b428e98fb87fda6.woff2')format("woff");}.ffd_c00186{font-family:ffd_c00186;line-height:1.284180;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_b9c574141fcc13d16858d08f.woff2')format("woff");}.ffe_c00186{font-family:ffe_c00186;line-height:1.284180;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_07d27935c3667af735263db2.woff2')format("woff");}.fff_c00186{font-family:fff_c00186;line-height:1.284180;font-style:normal;font-weight: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_c00186;src:url('chunks/assets/font_f0bedb08123d30d24394d2ab.woff2')format("woff");}.ff10_c00186{font-family:ff10_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00186;src:url('chunks/assets/font_a360b8cba99ffe8892908e26.woff2')format("woff");}.ff11_c00186{font-family:ff11_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00186;src:url('chunks/assets/font_27e77793eec69ad6df73ea3e.woff2')format("woff");}.ff12_c00186{font-family:ff12_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00186;src:url('chunks/assets/font_61ddeb72d64f3937aa659f5a.woff2')format("woff");}.ff13_c00186{font-family:ff13_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00186;src:url('chunks/assets/font_0dab226094a0fe1b6797e5f0.woff2')format("woff");}.ff14_c00186{font-family:ff14_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00186;src:url('chunks/assets/font_a65913a5a7a19058f578718b.woff2')format("woff");}.ff15_c00186{font-family:ff15_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00186;src:url('chunks/assets/font_93a04f6f0f8916b9d9be5674.woff2')format("woff");}.ff16_c00186{font-family:ff16_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00186;src:url('chunks/assets/font_7cd2c8a44c6afbc104fe8d93.woff2')format("woff");}.ff17_c00186{font-family:ff17_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00186;src:url('chunks/assets/font_9d07c9a8ad8cce5b78d79427.woff2')format("woff");}.ff18_c00186{font-family:ff18_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00186;src:url('chunks/assets/font_5d82f5ce9fb32cbe397922a6.woff2')format("woff");}.ff19_c00186{font-family:ff19_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00186;src:url('chunks/assets/font_f59d911bafd0c1e4ece2055b.woff2')format("woff");}.ff1a_c00186{font-family:ff1a_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00186;src:url('chunks/assets/font_c07f13cbebff49f717d1fc4e.woff2')format("woff");}.ff1b_c00186{font-family:ff1b_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00186;src:url('chunks/assets/font_634779e414f530602b6a97d2.woff2')format("woff");}.ff1c_c00186{font-family:ff1c_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00186;src:url('chunks/assets/font_07b066f189fdde1e3117fc80.woff2')format("woff");}.ff1d_c00186{font-family:ff1d_c00186;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00186;src:url('chunks/assets/font_f95d38355828883b7c651ddc.woff2')format("woff");}.ff1e_c00186{font-family:ff1e_c00186;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00186;src:url('chunks/assets/font_6314200511062b370a67d479.woff2')format("woff");}.ff1f_c00186{font-family:ff1f_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00186;src:url('chunks/assets/font_b568483628c327d4aa9b6463.woff2')format("woff");}.ff20_c00186{font-family:ff20_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00186;src:url('chunks/assets/font_4f4a5597b8a0d83d1caa0971.woff2')format("woff");}.ff21_c00186{font-family:ff21_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00186;src:url('chunks/assets/font_fe94d9eb7d7452d27962519d.woff2')format("woff");}.ff22_c00186{font-family:ff22_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00186;src:url('chunks/assets/font_9619f6becf5a8910990cfb9b.woff2')format("woff");}.ff23_c00186{font-family:ff23_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00186;src:url('chunks/assets/font_b4de74f031217202e7007ff8.woff2')format("woff");}.ff24_c00186{font-family:ff24_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00186;src:url('chunks/assets/font_d8723074888d4c407ecd77e1.woff2')format("woff");}.ff25_c00186{font-family:ff25_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00186;src:url('chunks/assets/font_e767292ba0cdb68327a9f6e7.woff2')format("woff");}.ff26_c00186{font-family:ff26_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00186;src:url('chunks/assets/font_aea62c1177b64b4108e6c1a5.woff2')format("woff");}.ff27_c00186{font-family:ff27_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00186;src:url('chunks/assets/font_208c8e7304820d1af10ff4ac.woff2')format("woff");}.ff28_c00186{font-family:ff28_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00186;src:url('chunks/assets/font_7f899ccb815c078cd3bc3c6e.woff2')format("woff");}.ff29_c00186{font-family:ff29_c00186;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:ff2a_c00186;src:url('chunks/assets/font_9a832797360a5d0e283f192d.woff2')format("woff");}.ff2a_c00186{font-family:ff2a_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00186;src:url('chunks/assets/font_a099fdcbac13cb6265e9235a.woff2')format("woff");}.ff2b_c00186{font-family:ff2b_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00186;src:url('chunks/assets/font_c8f3e5fc9c71785dc648079d.woff2')format("woff");}.ff2c_c00186{font-family:ff2c_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00186;src:url('chunks/assets/font_26487fb3b98eb80e02b64590.woff2')format("woff");}.ff2d_c00186{font-family:ff2d_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00186;src:url('chunks/assets/font_a36aea51142d6f091816ec88.woff2')format("woff");}.ff2e_c00186{font-family:ff2e_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00186;src:url('chunks/assets/font_8c1e0aa9591d761fe04b506d.woff2')format("woff");}.ff2f_c00186{font-family:ff2f_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00186;src:url('chunks/assets/font_b09d104920163e85ccd7175e.woff2')format("woff");}.ff30_c00186{font-family:ff30_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00186;src:url('chunks/assets/font_854b1365e36a0cb0656c589a.woff2')format("woff");}.ff31_c00186{font-family:ff31_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00186;src:url('chunks/assets/font_f55bfd994989e5079422a6bd.woff2')format("woff");}.ff32_c00186{font-family:ff32_c00186;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00186{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00186{vertical-align:0.000000px;}
.ls2_c00186{letter-spacing:-0.014400px;}
.ls1_c00186{letter-spacing:0.000000px;}
.ls0_c00186{letter-spacing:0.072000px;}
.sc__c00186{text-shadow:none;}
.sc0_c00186{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00186{-webkit-text-stroke:0px transparent;}
.sc0_c00186{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00186{word-spacing:-0.072000px;}
.ws1_c00186{word-spacing:0.000000px;}
._1_c00186{width:1.224000px;}
._6_c00186{width:2.260800px;}
._7_c00186{width:3.384000px;}
._0_c00186{width:5.083200px;}
._2_c00186{width:7.012800px;}
._5_c00186{width:8.935200px;}
._9_c00186{width:10.526400px;}
._8_c00186{width:14.018400px;}
._4_c00186{width:19.094400px;}
._a_c00186{width:20.541600px;}
._3_c00186{width:30.600000px;}
.fc1_c00186{color:transparent;}
.fc0_c00186{color:rgb(0,0,0);}
.fs1_c00186{font-size:64.800000px;}
.fs0_c00186{font-size:72.000000px;}
.y0_c00186{bottom:0.000000px;}
.y5_c00186{bottom:5.040000px;}
.y1_c00186{bottom:12.735000px;}
.y3_c00186{bottom:45.045000px;}
.y4_c00186{bottom:52.740000px;}
.y21_c00186{bottom:110.565000px;}
.y20_c00186{bottom:146.565000px;}
.y1f_c00186{bottom:182.565000px;}
.y1e_c00186{bottom:218.565000px;}
.y1d_c00186{bottom:254.565000px;}
.y1c_c00186{bottom:290.565000px;}
.y1b_c00186{bottom:326.565000px;}
.y1a_c00186{bottom:362.565000px;}
.y19_c00186{bottom:398.565000px;}
.y18_c00186{bottom:434.565000px;}
.y17_c00186{bottom:470.565000px;}
.y16_c00186{bottom:506.565000px;}
.y15_c00186{bottom:542.565000px;}
.y14_c00186{bottom:578.565000px;}
.y13_c00186{bottom:614.565000px;}
.y12_c00186{bottom:650.565000px;}
.y11_c00186{bottom:686.565000px;}
.y10_c00186{bottom:722.565000px;}
.yf_c00186{bottom:758.565000px;}
.ye_c00186{bottom:794.565000px;}
.yd_c00186{bottom:830.565000px;}
.yc_c00186{bottom:866.565000px;}
.yb_c00186{bottom:902.565000px;}
.ya_c00186{bottom:938.565000px;}
.y9_c00186{bottom:974.565000px;}
.y8_c00186{bottom:1010.565000px;}
.y7_c00186{bottom:1046.565000px;}
.y6_c00186{bottom:1082.565000px;}
.y2_c00186{bottom:1165.365000px;}
.h4_c00186{height:20.880000px;}
.h6_c00186{height:70.628906px;}
.h3_c00186{height:70.664062px;}
.h7_c00186{height:71.824219px;}
.h5_c00186{height:74.004654px;}
.h2_c00186{height:1237.365000px;}
.h0_c00186{height:1262.835000px;}
.h1_c00186{height:1263.000000px;}
.w3_c00186{width:27.000000px;}
.w2_c00186{width:867.465000px;}
.w0_c00186{width:892.935000px;}
.w1_c00186{width:893.250000px;}
.x0_c00186{left:0.000000px;}
.x1_c00186{left:12.735000px;}
.x3_c00186{left:95.406300px;}
.x5_c00186{left:149.400150px;}
.x4_c00186{left:433.215000px;}
.x2_c00186{left:878.550300px;}
@media print{
.v0_c00186{vertical-align:0.000000pt;}
.ls2_c00186{letter-spacing:-0.012800pt;}
.ls1_c00186{letter-spacing:0.000000pt;}
.ls0_c00186{letter-spacing:0.064000pt;}
.ws0_c00186{word-spacing:-0.064000pt;}
.ws1_c00186{word-spacing:0.000000pt;}
._1_c00186{width:1.088000pt;}
._6_c00186{width:2.009600pt;}
._7_c00186{width:3.008000pt;}
._0_c00186{width:4.518400pt;}
._2_c00186{width:6.233600pt;}
._5_c00186{width:7.942400pt;}
._9_c00186{width:9.356800pt;}
._8_c00186{width:12.460800pt;}
._4_c00186{width:16.972800pt;}
._a_c00186{width:18.259200pt;}
._3_c00186{width:27.200000pt;}
.fs1_c00186{font-size:57.600000pt;}
.fs0_c00186{font-size:64.000000pt;}
.y0_c00186{bottom:0.000000pt;}
.y5_c00186{bottom:4.480000pt;}
.y1_c00186{bottom:11.320000pt;}
.y3_c00186{bottom:40.040000pt;}
.y4_c00186{bottom:46.880000pt;}
.y21_c00186{bottom:98.280000pt;}
.y20_c00186{bottom:130.280000pt;}
.y1f_c00186{bottom:162.280000pt;}
.y1e_c00186{bottom:194.280000pt;}
.y1d_c00186{bottom:226.280000pt;}
.y1c_c00186{bottom:258.280000pt;}
.y1b_c00186{bottom:290.280000pt;}
.y1a_c00186{bottom:322.280000pt;}
.y19_c00186{bottom:354.280000pt;}
.y18_c00186{bottom:386.280000pt;}
.y17_c00186{bottom:418.280000pt;}
.y16_c00186{bottom:450.280000pt;}
.y15_c00186{bottom:482.280000pt;}
.y14_c00186{bottom:514.280000pt;}
.y13_c00186{bottom:546.280000pt;}
.y12_c00186{bottom:578.280000pt;}
.y11_c00186{bottom:610.280000pt;}
.y10_c00186{bottom:642.280000pt;}
.yf_c00186{bottom:674.280000pt;}
.ye_c00186{bottom:706.280000pt;}
.yd_c00186{bottom:738.280000pt;}
.yc_c00186{bottom:770.280000pt;}
.yb_c00186{bottom:802.280000pt;}
.ya_c00186{bottom:834.280000pt;}
.y9_c00186{bottom:866.280000pt;}
.y8_c00186{bottom:898.280000pt;}
.y7_c00186{bottom:930.280000pt;}
.y6_c00186{bottom:962.280000pt;}
.y2_c00186{bottom:1035.880000pt;}
.h4_c00186{height:18.560000pt;}
.h6_c00186{height:62.781250pt;}
.h3_c00186{height:62.812500pt;}
.h7_c00186{height:63.843750pt;}
.h5_c00186{height:65.781915pt;}
.h2_c00186{height:1099.880000pt;}
.h0_c00186{height:1122.520000pt;}
.h1_c00186{height:1122.666667pt;}
.w3_c00186{width:24.000000pt;}
.w2_c00186{width:771.080000pt;}
.w0_c00186{width:793.720000pt;}
.w1_c00186{width:794.000000pt;}
.x0_c00186{left:0.000000pt;}
.x1_c00186{left:11.320000pt;}
.x3_c00186{left:84.805600pt;}
.x5_c00186{left:132.800133pt;}
.x4_c00186{left:385.080000pt;}
.x2_c00186{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00187{font-family:ff1_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00187;src:url('chunks/assets/font_047d266ff0c921832e24084a.woff2')format("woff");}.ff2_c00187{font-family:ff2_c00187;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00187;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00187{font-family:ff3_c00187;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00187;src:url('chunks/assets/font_f77fc597fc3076b057f839a5.woff2')format("woff");}.ff4_c00187{font-family:ff4_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00187;src:url('chunks/assets/font_a6ff538f0107f45e55c00bba.woff2')format("woff");}.ff5_c00187{font-family:ff5_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00187;src:url('chunks/assets/font_8e34ce48d27451edad41f14f.woff2')format("woff");}.ff6_c00187{font-family:ff6_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00187;src:url('chunks/assets/font_3fac1e784d58f28ce583be46.woff2')format("woff");}.ff7_c00187{font-family:ff7_c00187;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_c00187;src:url('chunks/assets/font_21e9e188ddd0a062e3acc5dd.woff2')format("woff");}.ff8_c00187{font-family:ff8_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00187;src:url('chunks/assets/font_a1d0a6c4738959c39d38d975.woff2')format("woff");}.ff9_c00187{font-family:ff9_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00187;src:url('chunks/assets/font_db99332aba67e781f6cf8a48.woff2')format("woff");}.ffa_c00187{font-family:ffa_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00187;src:url('chunks/assets/font_5ce1761f1732dc1e15d2477b.woff2')format("woff");}.ffb_c00187{font-family:ffb_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00187;src:url('chunks/assets/font_f58fa72007728ed46299ac66.woff2')format("woff");}.ffc_c00187{font-family:ffc_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00187;src:url('chunks/assets/font_f631d61e658ada57dc051283.woff2')format("woff");}.ffd_c00187{font-family:ffd_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00187;src:url('chunks/assets/font_e6515c4aabf2efde228b940c.woff2')format("woff");}.ffe_c00187{font-family:ffe_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00187;src:url('chunks/assets/font_a1edb448aec95049bb25227c.woff2')format("woff");}.fff_c00187{font-family:fff_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00187;src:url('chunks/assets/font_58e319409282866dd4e1c469.woff2')format("woff");}.ff10_c00187{font-family:ff10_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00187;src:url('chunks/assets/font_cd7e83e4651cdce5b3cf1993.woff2')format("woff");}.ff11_c00187{font-family:ff11_c00187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00187;src:url('chunks/assets/font_bc3500a80693ade19727237c.woff2')format("woff");}.ff12_c00187{font-family:ff12_c00187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00187;src:url('chunks/assets/font_de2c4166c6a57f39896c6b4c.woff2')format("woff");}.ff13_c00187{font-family:ff13_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00187;src:url('chunks/assets/font_c1374baaa123223c60b8d7c9.woff2')format("woff");}.ff14_c00187{font-family:ff14_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00187;src:url('chunks/assets/font_c63afcfab76d8a27034085ce.woff2')format("woff");}.ff15_c00187{font-family:ff15_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00187;src:url('chunks/assets/font_d5d3d6e645d0ce6dd59d732f.woff2')format("woff");}.ff16_c00187{font-family:ff16_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00187;src:url('chunks/assets/font_31a4be4908a370dfebe66402.woff2')format("woff");}.ff17_c00187{font-family:ff17_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00187;src:url('chunks/assets/font_818a9727b4742d59934eef21.woff2')format("woff");}.ff18_c00187{font-family:ff18_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00187;src:url('chunks/assets/font_44ed370ce840434b2e22dfd8.woff2')format("woff");}.ff19_c00187{font-family:ff19_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00187;src:url('chunks/assets/font_6f6ecbedb1275064bb806d20.woff2')format("woff");}.ff1a_c00187{font-family:ff1a_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00187;src:url('chunks/assets/font_dbc75e9936d4c65c391a57d3.woff2')format("woff");}.ff1b_c00187{font-family:ff1b_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00187;src:url('chunks/assets/font_0b45c65a539f9455b37c1003.woff2')format("woff");}.ff1c_c00187{font-family:ff1c_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00187;src:url('chunks/assets/font_2ffe5e22c2dee3d20050e5bb.woff2')format("woff");}.ff1d_c00187{font-family:ff1d_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00187;src:url('chunks/assets/font_a48b099cf8e06b2190af97f4.woff2')format("woff");}.ff1e_c00187{font-family:ff1e_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00187;src:url('chunks/assets/font_db8c77ca8bc965bbc81e0a46.woff2')format("woff");}.ff1f_c00187{font-family:ff1f_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00187;src:url('chunks/assets/font_493a9fc5bb434e00c104f8a5.woff2')format("woff");}.ff20_c00187{font-family:ff20_c00187;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00187;src:url('chunks/assets/font_450684ad1355727ce3de14d1.woff2')format("woff");}.ff21_c00187{font-family:ff21_c00187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00187;src:url('chunks/assets/font_655bc7646e2fb6c27437c9dd.woff2')format("woff");}.ff22_c00187{font-family:ff22_c00187;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00187;src:url('chunks/assets/font_493a9fc5bb434e00c104f8a5.woff2')format("woff");}.ff23_c00187{font-family:ff23_c00187;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00187;src:url('chunks/assets/font_14b1a74855072c8419919c11.woff2')format("woff");}.ff24_c00187{font-family:ff24_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00187;src:url('chunks/assets/font_70a3ab3b575c758f99481492.woff2')format("woff");}.ff25_c00187{font-family:ff25_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00187;src:url('chunks/assets/font_03e9abfa33acfd8a35ad18a1.woff2')format("woff");}.ff26_c00187{font-family:ff26_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00187;src:url('chunks/assets/font_b288196eb4e4038c28e67f1c.woff2')format("woff");}.ff27_c00187{font-family:ff27_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00187;src:url('chunks/assets/font_e697390d910c77d088276670.woff2')format("woff");}.ff28_c00187{font-family:ff28_c00187;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00187{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00187{vertical-align:0.000000px;}
.ls1_c00187{letter-spacing:0.000000px;}
.ls0_c00187{letter-spacing:0.072000px;}
.sc__c00187{text-shadow:none;}
.sc0_c00187{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00187{-webkit-text-stroke:0px transparent;}
.sc0_c00187{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00187{word-spacing:-0.072000px;}
.ws1_c00187{word-spacing:0.000000px;}
._2_c00187{width:1.051200px;}
._a_c00187{width:2.966400px;}
._9_c00187{width:4.305600px;}
._5_c00187{width:6.040800px;}
._8_c00187{width:8.128800px;}
._4_c00187{width:9.640800px;}
._7_c00187{width:11.440800px;}
._3_c00187{width:12.614400px;}
._c_c00187{width:13.824000px;}
._0_c00187{width:16.048800px;}
._d_c00187{width:19.490400px;}
._e_c00187{width:23.054400px;}
._1_c00187{width:24.192000px;}
._b_c00187{width:25.315200px;}
._6_c00187{width:28.396800px;}
.fc1_c00187{color:transparent;}
.fc0_c00187{color:rgb(0,0,0);}
.fs1_c00187{font-size:64.800000px;}
.fs0_c00187{font-size:72.000000px;}
.y0_c00187{bottom:0.000000px;}
.y5_c00187{bottom:5.040000px;}
.y1_c00187{bottom:12.735000px;}
.y3_c00187{bottom:45.045000px;}
.y4_c00187{bottom:52.740000px;}
.y21_c00187{bottom:110.565000px;}
.y20_c00187{bottom:146.565000px;}
.y1f_c00187{bottom:182.565000px;}
.y1e_c00187{bottom:218.565000px;}
.y1d_c00187{bottom:254.565000px;}
.y1c_c00187{bottom:290.565000px;}
.y1b_c00187{bottom:326.565000px;}
.y1a_c00187{bottom:362.565000px;}
.y19_c00187{bottom:398.565000px;}
.y18_c00187{bottom:434.565000px;}
.y17_c00187{bottom:470.565000px;}
.y16_c00187{bottom:506.565000px;}
.y15_c00187{bottom:542.565000px;}
.y14_c00187{bottom:578.565000px;}
.y13_c00187{bottom:614.565000px;}
.y12_c00187{bottom:650.565000px;}
.y11_c00187{bottom:686.565000px;}
.y10_c00187{bottom:722.565000px;}
.yf_c00187{bottom:758.565000px;}
.ye_c00187{bottom:794.565000px;}
.yd_c00187{bottom:830.565000px;}
.yc_c00187{bottom:866.565000px;}
.yb_c00187{bottom:902.565000px;}
.ya_c00187{bottom:938.565000px;}
.y9_c00187{bottom:974.565000px;}
.y8_c00187{bottom:1010.565000px;}
.y7_c00187{bottom:1046.565000px;}
.y6_c00187{bottom:1082.565000px;}
.y2_c00187{bottom:1165.365000px;}
.h4_c00187{height:20.880000px;}
.h3_c00187{height:70.664062px;}
.h6_c00187{height:71.824219px;}
.h5_c00187{height:74.004654px;}
.h2_c00187{height:1237.365000px;}
.h0_c00187{height:1262.835000px;}
.h1_c00187{height:1263.000000px;}
.w3_c00187{width:27.000000px;}
.w2_c00187{width:867.465000px;}
.w0_c00187{width:892.935000px;}
.w1_c00187{width:893.250000px;}
.x0_c00187{left:0.000000px;}
.x1_c00187{left:12.735000px;}
.x3_c00187{left:95.406300px;}
.x5_c00187{left:149.382150px;}
.x6_c00187{left:180.414150px;}
.x4_c00187{left:433.215000px;}
.x2_c00187{left:878.550300px;}
@media print{
.v0_c00187{vertical-align:0.000000pt;}
.ls1_c00187{letter-spacing:0.000000pt;}
.ls0_c00187{letter-spacing:0.064000pt;}
.ws0_c00187{word-spacing:-0.064000pt;}
.ws1_c00187{word-spacing:0.000000pt;}
._2_c00187{width:0.934400pt;}
._a_c00187{width:2.636800pt;}
._9_c00187{width:3.827200pt;}
._5_c00187{width:5.369600pt;}
._8_c00187{width:7.225600pt;}
._4_c00187{width:8.569600pt;}
._7_c00187{width:10.169600pt;}
._3_c00187{width:11.212800pt;}
._c_c00187{width:12.288000pt;}
._0_c00187{width:14.265600pt;}
._d_c00187{width:17.324800pt;}
._e_c00187{width:20.492800pt;}
._1_c00187{width:21.504000pt;}
._b_c00187{width:22.502400pt;}
._6_c00187{width:25.241600pt;}
.fs1_c00187{font-size:57.600000pt;}
.fs0_c00187{font-size:64.000000pt;}
.y0_c00187{bottom:0.000000pt;}
.y5_c00187{bottom:4.480000pt;}
.y1_c00187{bottom:11.320000pt;}
.y3_c00187{bottom:40.040000pt;}
.y4_c00187{bottom:46.880000pt;}
.y21_c00187{bottom:98.280000pt;}
.y20_c00187{bottom:130.280000pt;}
.y1f_c00187{bottom:162.280000pt;}
.y1e_c00187{bottom:194.280000pt;}
.y1d_c00187{bottom:226.280000pt;}
.y1c_c00187{bottom:258.280000pt;}
.y1b_c00187{bottom:290.280000pt;}
.y1a_c00187{bottom:322.280000pt;}
.y19_c00187{bottom:354.280000pt;}
.y18_c00187{bottom:386.280000pt;}
.y17_c00187{bottom:418.280000pt;}
.y16_c00187{bottom:450.280000pt;}
.y15_c00187{bottom:482.280000pt;}
.y14_c00187{bottom:514.280000pt;}
.y13_c00187{bottom:546.280000pt;}
.y12_c00187{bottom:578.280000pt;}
.y11_c00187{bottom:610.280000pt;}
.y10_c00187{bottom:642.280000pt;}
.yf_c00187{bottom:674.280000pt;}
.ye_c00187{bottom:706.280000pt;}
.yd_c00187{bottom:738.280000pt;}
.yc_c00187{bottom:770.280000pt;}
.yb_c00187{bottom:802.280000pt;}
.ya_c00187{bottom:834.280000pt;}
.y9_c00187{bottom:866.280000pt;}
.y8_c00187{bottom:898.280000pt;}
.y7_c00187{bottom:930.280000pt;}
.y6_c00187{bottom:962.280000pt;}
.y2_c00187{bottom:1035.880000pt;}
.h4_c00187{height:18.560000pt;}
.h3_c00187{height:62.812500pt;}
.h6_c00187{height:63.843750pt;}
.h5_c00187{height:65.781915pt;}
.h2_c00187{height:1099.880000pt;}
.h0_c00187{height:1122.520000pt;}
.h1_c00187{height:1122.666667pt;}
.w3_c00187{width:24.000000pt;}
.w2_c00187{width:771.080000pt;}
.w0_c00187{width:793.720000pt;}
.w1_c00187{width:794.000000pt;}
.x0_c00187{left:0.000000pt;}
.x1_c00187{left:11.320000pt;}
.x3_c00187{left:84.805600pt;}
.x5_c00187{left:132.784133pt;}
.x6_c00187{left:160.368133pt;}
.x4_c00187{left:385.080000pt;}
.x2_c00187{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00188{font-family:ff1_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00188;src:url('chunks/assets/font_30c884bf495cb1593bb44dbf.woff2')format("woff");}.ff2_c00188{font-family:ff2_c00188;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00188;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00188{font-family:ff3_c00188;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00188;src:url('chunks/assets/font_a47cac8d46e6c522d2c5c52a.woff2')format("woff");}.ff4_c00188{font-family:ff4_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00188;src:url('chunks/assets/font_0246346ce035788c10e04eb9.woff2')format("woff");}.ff5_c00188{font-family:ff5_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00188;src:url('chunks/assets/font_b19f3aed3dab25950a4eb3dd.woff2')format("woff");}.ff6_c00188{font-family:ff6_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00188;src:url('chunks/assets/font_1e0578100dcac13d4da040b7.woff2')format("woff");}.ff7_c00188{font-family:ff7_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00188;src:url('chunks/assets/font_095f6e3f0553466396b4f3bb.woff2')format("woff");}.ff8_c00188{font-family:ff8_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00188;src:url('chunks/assets/font_3ae3c320bcb1865b4aa68eef.woff2')format("woff");}.ff9_c00188{font-family:ff9_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00188;src:url('chunks/assets/font_6e0308de703f7676c9dc941a.woff2')format("woff");}.ffa_c00188{font-family:ffa_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00188;src:url('chunks/assets/font_31de3ec7316f8997a63158d7.woff2')format("woff");}.ffb_c00188{font-family:ffb_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00188;src:url('chunks/assets/font_c084d5f381fda05703fd6258.woff2')format("woff");}.ffc_c00188{font-family:ffc_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00188;src:url('chunks/assets/font_6aec310adff816d592e68864.woff2')format("woff");}.ffd_c00188{font-family:ffd_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00188;src:url('chunks/assets/font_21c51b3b96c540aa6f8d53cc.woff2')format("woff");}.ffe_c00188{font-family:ffe_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00188;src:url('chunks/assets/font_3450dd882491a9e77f48e98f.woff2')format("woff");}.fff_c00188{font-family:fff_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00188;src:url('chunks/assets/font_bfb40d6e7110f14c058ed33b.woff2')format("woff");}.ff10_c00188{font-family:ff10_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00188;src:url('chunks/assets/font_2d255ca5ab739c813e0a61fb.woff2')format("woff");}.ff11_c00188{font-family:ff11_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00188;src:url('chunks/assets/font_4c1df2a0fe1ecddc4616a101.woff2')format("woff");}.ff12_c00188{font-family:ff12_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00188;src:url('chunks/assets/font_511278a5c674626e363e8b94.woff2')format("woff");}.ff13_c00188{font-family:ff13_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00188;src:url('chunks/assets/font_b4cc7f9f33e9c60d9596ed15.woff2')format("woff");}.ff14_c00188{font-family:ff14_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00188;src:url('chunks/assets/font_6d29983593fa6ae5bc0ed00e.woff2')format("woff");}.ff15_c00188{font-family:ff15_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00188;src:url('chunks/assets/font_fe9fd2b0b1e70ffc49393c9f.woff2')format("woff");}.ff16_c00188{font-family:ff16_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00188;src:url('chunks/assets/font_d9f1caf37b35ffe2e9658eb0.woff2')format("woff");}.ff17_c00188{font-family:ff17_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00188;src:url('chunks/assets/font_034dd182059a2770c2fdec9d.woff2')format("woff");}.ff18_c00188{font-family:ff18_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00188;src:url('chunks/assets/font_dbc516bfe9ba40f9b0fbccd5.woff2')format("woff");}.ff19_c00188{font-family:ff19_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00188;src:url('chunks/assets/font_01dd950558a714e63ffa4c60.woff2')format("woff");}.ff1a_c00188{font-family:ff1a_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00188;src:url('chunks/assets/font_b7e836515b117fc3d6edb684.woff2')format("woff");}.ff1b_c00188{font-family:ff1b_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00188;src:url('chunks/assets/font_1e92e96e5898680154f539c6.woff2')format("woff");}.ff1c_c00188{font-family:ff1c_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00188;src:url('chunks/assets/font_8acb0df7677c48ceaef63a0d.woff2')format("woff");}.ff1d_c00188{font-family:ff1d_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00188;src:url('chunks/assets/font_35410a59ababae0882f62dcf.woff2')format("woff");}.ff1e_c00188{font-family:ff1e_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00188;src:url('chunks/assets/font_bed12102968e7fb0bdb0dc20.woff2')format("woff");}.ff1f_c00188{font-family:ff1f_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00188;src:url('chunks/assets/font_4f04238d5d98d1b7cbd63b29.woff2')format("woff");}.ff20_c00188{font-family:ff20_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00188;src:url('chunks/assets/font_efa9d036866b56d5b46b9415.woff2')format("woff");}.ff21_c00188{font-family:ff21_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00188;src:url('chunks/assets/font_b5f2ac054b81c2b093566ee4.woff2')format("woff");}.ff22_c00188{font-family:ff22_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00188;src:url('chunks/assets/font_526cc36f241c53ce4215fb8a.woff2')format("woff");}.ff23_c00188{font-family:ff23_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00188;src:url('chunks/assets/font_927d0edda2087d1ea58425f5.woff2')format("woff");}.ff24_c00188{font-family:ff24_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00188;src:url('chunks/assets/font_5dab5ff903d92a46988e5a6a.woff2')format("woff");}.ff25_c00188{font-family:ff25_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00188;src:url('chunks/assets/font_0c705f06b13e5e3941ba9b74.woff2')format("woff");}.ff26_c00188{font-family:ff26_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00188;src:url('chunks/assets/font_780d99bf106156e8601314cd.woff2')format("woff");}.ff27_c00188{font-family:ff27_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:ff28_c00188;src:url('chunks/assets/font_f1c6c786cd781a7ae4c6e012.woff2')format("woff");}.ff28_c00188{font-family:ff28_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00188;src:url('chunks/assets/font_db9d88b1d0d23a730b5faef3.woff2')format("woff");}.ff29_c00188{font-family:ff29_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00188;src:url('chunks/assets/font_1dfea36ebbd1517332ee108d.woff2')format("woff");}.ff2a_c00188{font-family:ff2a_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00188;src:url('chunks/assets/font_29562d5a63d1e1dd58922090.woff2')format("woff");}.ff2b_c00188{font-family:ff2b_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:ff2c_c00188;src:url('chunks/assets/font_01343da5ae191dfb19bfe19e.woff2')format("woff");}.ff2c_c00188{font-family:ff2c_c00188;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00188{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00188{vertical-align:0.000000px;}
.ls2_c00188{letter-spacing:0.000000px;}
.ls3_c00188{letter-spacing:0.014400px;}
.ls0_c00188{letter-spacing:0.043200px;}
.ls1_c00188{letter-spacing:0.072000px;}
.sc__c00188{text-shadow:none;}
.sc0_c00188{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00188{-webkit-text-stroke:0px transparent;}
.sc0_c00188{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00188{word-spacing:-0.072000px;}
.ws1_c00188{word-spacing:0.000000px;}
._3_c00188{width:1.216800px;}
._0_c00188{width:2.368800px;}
._6_c00188{width:4.521600px;}
._8_c00188{width:5.536800px;}
._4_c00188{width:6.717600px;}
._7_c00188{width:8.604000px;}
._2_c00188{width:9.648000px;}
._a_c00188{width:11.131200px;}
._5_c00188{width:12.873600px;}
._9_c00188{width:15.480000px;}
._1_c00188{width:19.123200px;}
.fc1_c00188{color:transparent;}
.fc0_c00188{color:rgb(0,0,0);}
.fs1_c00188{font-size:64.800000px;}
.fs0_c00188{font-size:72.000000px;}
.y0_c00188{bottom:0.000000px;}
.y5_c00188{bottom:5.040000px;}
.y1_c00188{bottom:12.735000px;}
.y3_c00188{bottom:45.045000px;}
.y4_c00188{bottom:52.740000px;}
.y21_c00188{bottom:110.565000px;}
.y20_c00188{bottom:146.565000px;}
.y1f_c00188{bottom:182.565000px;}
.y1e_c00188{bottom:218.565000px;}
.y1d_c00188{bottom:254.565000px;}
.y1c_c00188{bottom:290.565000px;}
.y1b_c00188{bottom:326.565000px;}
.y1a_c00188{bottom:362.565000px;}
.y19_c00188{bottom:398.565000px;}
.y18_c00188{bottom:434.565000px;}
.y17_c00188{bottom:470.565000px;}
.y16_c00188{bottom:506.565000px;}
.y15_c00188{bottom:542.565000px;}
.y14_c00188{bottom:578.565000px;}
.y13_c00188{bottom:614.565000px;}
.y12_c00188{bottom:650.565000px;}
.y11_c00188{bottom:686.565000px;}
.y10_c00188{bottom:722.565000px;}
.yf_c00188{bottom:758.565000px;}
.ye_c00188{bottom:794.565000px;}
.yd_c00188{bottom:830.565000px;}
.yc_c00188{bottom:866.565000px;}
.yb_c00188{bottom:902.565000px;}
.ya_c00188{bottom:938.565000px;}
.y9_c00188{bottom:974.565000px;}
.y8_c00188{bottom:1010.565000px;}
.y7_c00188{bottom:1046.565000px;}
.y6_c00188{bottom:1082.565000px;}
.y2_c00188{bottom:1165.365000px;}
.h4_c00188{height:20.880000px;}
.h3_c00188{height:70.664062px;}
.h5_c00188{height:74.004654px;}
.h2_c00188{height:1237.365000px;}
.h0_c00188{height:1262.835000px;}
.h1_c00188{height:1263.000000px;}
.w3_c00188{width:27.000000px;}
.w2_c00188{width:867.465000px;}
.w0_c00188{width:892.935000px;}
.w1_c00188{width:893.250000px;}
.x0_c00188{left:0.000000px;}
.x1_c00188{left:12.735000px;}
.x3_c00188{left:95.406300px;}
.x5_c00188{left:149.400150px;}
.x4_c00188{left:433.215000px;}
.x2_c00188{left:878.550300px;}
@media print{
.v0_c00188{vertical-align:0.000000pt;}
.ls2_c00188{letter-spacing:0.000000pt;}
.ls3_c00188{letter-spacing:0.012800pt;}
.ls0_c00188{letter-spacing:0.038400pt;}
.ls1_c00188{letter-spacing:0.064000pt;}
.ws0_c00188{word-spacing:-0.064000pt;}
.ws1_c00188{word-spacing:0.000000pt;}
._3_c00188{width:1.081600pt;}
._0_c00188{width:2.105600pt;}
._6_c00188{width:4.019200pt;}
._8_c00188{width:4.921600pt;}
._4_c00188{width:5.971200pt;}
._7_c00188{width:7.648000pt;}
._2_c00188{width:8.576000pt;}
._a_c00188{width:9.894400pt;}
._5_c00188{width:11.443200pt;}
._9_c00188{width:13.760000pt;}
._1_c00188{width:16.998400pt;}
.fs1_c00188{font-size:57.600000pt;}
.fs0_c00188{font-size:64.000000pt;}
.y0_c00188{bottom:0.000000pt;}
.y5_c00188{bottom:4.480000pt;}
.y1_c00188{bottom:11.320000pt;}
.y3_c00188{bottom:40.040000pt;}
.y4_c00188{bottom:46.880000pt;}
.y21_c00188{bottom:98.280000pt;}
.y20_c00188{bottom:130.280000pt;}
.y1f_c00188{bottom:162.280000pt;}
.y1e_c00188{bottom:194.280000pt;}
.y1d_c00188{bottom:226.280000pt;}
.y1c_c00188{bottom:258.280000pt;}
.y1b_c00188{bottom:290.280000pt;}
.y1a_c00188{bottom:322.280000pt;}
.y19_c00188{bottom:354.280000pt;}
.y18_c00188{bottom:386.280000pt;}
.y17_c00188{bottom:418.280000pt;}
.y16_c00188{bottom:450.280000pt;}
.y15_c00188{bottom:482.280000pt;}
.y14_c00188{bottom:514.280000pt;}
.y13_c00188{bottom:546.280000pt;}
.y12_c00188{bottom:578.280000pt;}
.y11_c00188{bottom:610.280000pt;}
.y10_c00188{bottom:642.280000pt;}
.yf_c00188{bottom:674.280000pt;}
.ye_c00188{bottom:706.280000pt;}
.yd_c00188{bottom:738.280000pt;}
.yc_c00188{bottom:770.280000pt;}
.yb_c00188{bottom:802.280000pt;}
.ya_c00188{bottom:834.280000pt;}
.y9_c00188{bottom:866.280000pt;}
.y8_c00188{bottom:898.280000pt;}
.y7_c00188{bottom:930.280000pt;}
.y6_c00188{bottom:962.280000pt;}
.y2_c00188{bottom:1035.880000pt;}
.h4_c00188{height:18.560000pt;}
.h3_c00188{height:62.812500pt;}
.h5_c00188{height:65.781915pt;}
.h2_c00188{height:1099.880000pt;}
.h0_c00188{height:1122.520000pt;}
.h1_c00188{height:1122.666667pt;}
.w3_c00188{width:24.000000pt;}
.w2_c00188{width:771.080000pt;}
.w0_c00188{width:793.720000pt;}
.w1_c00188{width:794.000000pt;}
.x0_c00188{left:0.000000pt;}
.x1_c00188{left:11.320000pt;}
.x3_c00188{left:84.805600pt;}
.x5_c00188{left:132.800133pt;}
.x4_c00188{left:385.080000pt;}
.x2_c00188{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7d89f9951dc1807d34592957.woff2')format("woff");}.ff1_c00189{font-family:ff1_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00189;src:url('chunks/assets/font_eab030efaafb6907e9787aa1.woff2')format("woff");}.ff2_c00189{font-family:ff2_c00189;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00189;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00189{font-family:ff3_c00189;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00189;src:url('chunks/assets/font_050684ff47958939fb0e58ee.woff2')format("woff");}.ff4_c00189{font-family:ff4_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00189;src:url('chunks/assets/font_3688b77d8afae386fda9eee7.woff2')format("woff");}.ff5_c00189{font-family:ff5_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00189;src:url('chunks/assets/font_f98db4f6e2fef271ce415de4.woff2')format("woff");}.ff6_c00189{font-family:ff6_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00189;src:url('chunks/assets/font_506f028ecec68ac2f7b6bfe0.woff2')format("woff");}.ff7_c00189{font-family:ff7_c00189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00189;src:url('chunks/assets/font_ec3f2d55483339acdf5cd361.woff2')format("woff");}.ff8_c00189{font-family:ff8_c00189;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00189;src:url('chunks/assets/font_5f79d306eebd6520f85bfc24.woff2')format("woff");}.ff9_c00189{font-family:ff9_c00189;line-height:1.284180;font-style:normal;font-weight: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_c00189;src:url('chunks/assets/font_8fb4f648aceea19513cae8d6.woff2')format("woff");}.ffa_c00189{font-family:ffa_c00189;line-height:1.284180;font-style:normal;font-weight: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_c00189;src:url('chunks/assets/font_d52fc65f6cb4285493fc12b2.woff2')format("woff");}.ffb_c00189{font-family:ffb_c00189;line-height:1.284180;font-style:normal;font-weight: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_c00189;src:url('chunks/assets/font_e3fccd24d47f6a642fcef9c7.woff2')format("woff");}.ffc_c00189{font-family:ffc_c00189;line-height:1.284180;font-style:normal;font-weight: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_c00189;src:url('chunks/assets/font_25f0cde30956016b60debe64.woff2')format("woff");}.ffd_c00189{font-family:ffd_c00189;line-height:1.284180;font-style:normal;font-weight: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_c00189;src:url('chunks/assets/font_4f9c445fe04d10a7742e997a.woff2')format("woff");}.ffe_c00189{font-family:ffe_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00189;src:url('chunks/assets/font_bb72292f22dd42fcf252a3d7.woff2')format("woff");}.fff_c00189{font-family:fff_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00189;src:url('chunks/assets/font_e5c38808e66d2ec34ebf0c4c.woff2')format("woff");}.ff10_c00189{font-family:ff10_c00189;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00189;src:url('chunks/assets/font_9438052ab3c7509f5c150a39.woff2')format("woff");}.ff11_c00189{font-family:ff11_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00189;src:url('chunks/assets/font_9e8a915f94516a0d95b9a174.woff2')format("woff");}.ff12_c00189{font-family:ff12_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00189;src:url('chunks/assets/font_e5c38808e66d2ec34ebf0c4c.woff2')format("woff");}.ff13_c00189{font-family:ff13_c00189;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00189;src:url('chunks/assets/font_95e5a482b4a76da8885c7a62.woff2')format("woff");}.ff14_c00189{font-family:ff14_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00189;src:url('chunks/assets/font_e5c38808e66d2ec34ebf0c4c.woff2')format("woff");}.ff15_c00189{font-family:ff15_c00189;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00189;src:url('chunks/assets/font_b9d9d12731dfd9ae763b67e4.woff2')format("woff");}.ff16_c00189{font-family:ff16_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00189;src:url('chunks/assets/font_512d9f1cfe15d1b302101384.woff2')format("woff");}.ff17_c00189{font-family:ff17_c00189;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:ff18_c00189;src:url('chunks/assets/font_d281c22914615649ba783160.woff2')format("woff");}.ff18_c00189{font-family:ff18_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00189;src:url('chunks/assets/font_5fa0878a1bd8f9f4bf40c13c.woff2')format("woff");}.ff19_c00189{font-family:ff19_c00189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00189;src:url('chunks/assets/font_db0813a784d5fd5851ac6eb2.woff2')format("woff");}.ff1a_c00189{font-family:ff1a_c00189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00189;src:url('chunks/assets/font_844aaaa1060ecc83730a9c1a.woff2')format("woff");}.ff1b_c00189{font-family:ff1b_c00189;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00189;src:url('chunks/assets/font_49e57e42cc771c1dd260518e.woff2')format("woff");}.ff1c_c00189{font-family:ff1c_c00189;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:ff1d_c00189;src:url('chunks/assets/font_1fdb8f8bee7d964aa201ac66.woff2')format("woff");}.ff1d_c00189{font-family:ff1d_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00189;src:url('chunks/assets/font_18bdd376547d25ec254aae06.woff2')format("woff");}.ff1e_c00189{font-family:ff1e_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00189;src:url('chunks/assets/font_f8d763dee01f980b8c2a8249.woff2')format("woff");}.ff1f_c00189{font-family:ff1f_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00189;src:url('chunks/assets/font_450bbf160f7bd3ad988eac98.woff2')format("woff");}.ff20_c00189{font-family:ff20_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00189;src:url('chunks/assets/font_94df46cf87787af667ecd5f3.woff2')format("woff");}.ff21_c00189{font-family:ff21_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00189;src:url('chunks/assets/font_53ad8fae834924b46213c817.woff2')format("woff");}.ff22_c00189{font-family:ff22_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00189;src:url('chunks/assets/font_bff6b8de0ab11c7967de9833.woff2')format("woff");}.ff23_c00189{font-family:ff23_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00189;src:url('chunks/assets/font_1afcc79252979953439bb90b.woff2')format("woff");}.ff24_c00189{font-family:ff24_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00189;src:url('chunks/assets/font_a1e328b219ebd13a1f297dcb.woff2')format("woff");}.ff25_c00189{font-family:ff25_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00189;src:url('chunks/assets/font_bedead2f97798a47cb71ebd6.woff2')format("woff");}.ff26_c00189{font-family:ff26_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00189;src:url('chunks/assets/font_ff3a8fbfec7bc83e45abe346.woff2')format("woff");}.ff27_c00189{font-family:ff27_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00189;src:url('chunks/assets/font_a6b2cb86db70d91be4b7432d.woff2')format("woff");}.ff28_c00189{font-family:ff28_c00189;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:ff29_c00189;src:url('chunks/assets/font_8063416769c276c4a071377c.woff2')format("woff");}.ff29_c00189{font-family:ff29_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00189;src:url('chunks/assets/font_d660381956efc9cc9934b6db.woff2')format("woff");}.ff2a_c00189{font-family:ff2a_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00189;src:url('chunks/assets/font_6f94c9465584076dbbd69340.woff2')format("woff");}.ff2b_c00189{font-family:ff2b_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00189;src:url('chunks/assets/font_ac07060009af7b3f6f90806f.woff2')format("woff");}.ff2c_c00189{font-family:ff2c_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00189;src:url('chunks/assets/font_3f43544151fea5cca04b2259.woff2')format("woff");}.ff2d_c00189{font-family:ff2d_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00189;src:url('chunks/assets/font_80bea6e54c986c0145b09df0.woff2')format("woff");}.ff2e_c00189{font-family:ff2e_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00189;src:url('chunks/assets/font_7250bb33a1cfa502bc6aa037.woff2')format("woff");}.ff2f_c00189{font-family:ff2f_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00189;src:url('chunks/assets/font_4016acdc998cdfa9c001b8a3.woff2')format("woff");}.ff30_c00189{font-family:ff30_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00189;src:url('chunks/assets/font_4479a6618474598d46c558af.woff2')format("woff");}.ff31_c00189{font-family:ff31_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00189;src:url('chunks/assets/font_c852f09150990e4141fde236.woff2')format("woff");}.ff32_c00189{font-family:ff32_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00189;src:url('chunks/assets/font_2d4a29144eb132b401a470c7.woff2')format("woff");}.ff33_c00189{font-family:ff33_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00189;src:url('chunks/assets/font_7392d39d8c129bfb38ae8deb.woff2')format("woff");}.ff34_c00189{font-family:ff34_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00189;src:url('chunks/assets/font_51beeb8acc1d0eb6d9af14bf.woff2')format("woff");}.ff35_c00189{font-family:ff35_c00189;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00189{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00189{vertical-align:0.000000px;}
.ls4_c00189{letter-spacing:0.000000px;}
.ls3_c00189{letter-spacing:0.144000px;}
.ls2_c00189{letter-spacing:14.205600px;}
.ls1_c00189{letter-spacing:14.400000px;}
.ls0_c00189{letter-spacing:15.393600px;}
.sc__c00189{text-shadow:none;}
.sc0_c00189{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00189{-webkit-text-stroke:0px transparent;}
.sc0_c00189{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00189{word-spacing:-18.000000px;}
.ws0_c00189{word-spacing:-0.072000px;}
.ws2_c00189{word-spacing:0.000000px;}
._a_c00189{width:1.800000px;}
._2_c00189{width:2.815200px;}
._7_c00189{width:3.830400px;}
._1_c00189{width:5.126400px;}
._0_c00189{width:6.177600px;}
._3_c00189{width:7.214400px;}
._b_c00189{width:10.648800px;}
._8_c00189{width:11.728800px;}
._5_c00189{width:14.428800px;}
._4_c00189{width:15.436800px;}
._9_c00189{width:20.052000px;}
._6_c00189{width:23.522400px;}
._d_c00189{width:24.760800px;}
._c_c00189{width:26.856000px;}
._e_c00189{width:28.879200px;}
.fc1_c00189{color:transparent;}
.fc0_c00189{color:rgb(0,0,0);}
.fs1_c00189{font-size:64.800000px;}
.fs0_c00189{font-size:72.000000px;}
.y0_c00189{bottom:0.000000px;}
.y5_c00189{bottom:5.040000px;}
.y1_c00189{bottom:12.735000px;}
.y3_c00189{bottom:45.045000px;}
.y4_c00189{bottom:52.740000px;}
.y20_c00189{bottom:146.565000px;}
.y1f_c00189{bottom:182.565000px;}
.y1e_c00189{bottom:218.565000px;}
.y1d_c00189{bottom:254.565000px;}
.y1c_c00189{bottom:290.565000px;}
.y1b_c00189{bottom:326.565000px;}
.y1a_c00189{bottom:362.565000px;}
.y19_c00189{bottom:398.565000px;}
.y18_c00189{bottom:434.565000px;}
.y17_c00189{bottom:470.565000px;}
.y16_c00189{bottom:506.565000px;}
.y15_c00189{bottom:542.565000px;}
.y14_c00189{bottom:578.565000px;}
.y13_c00189{bottom:614.565000px;}
.y12_c00189{bottom:650.565000px;}
.y11_c00189{bottom:686.565000px;}
.y10_c00189{bottom:722.565000px;}
.yf_c00189{bottom:758.565000px;}
.ye_c00189{bottom:794.565000px;}
.yd_c00189{bottom:830.565000px;}
.yc_c00189{bottom:866.565000px;}
.yb_c00189{bottom:902.565000px;}
.ya_c00189{bottom:938.565000px;}
.y9_c00189{bottom:974.565000px;}
.y8_c00189{bottom:1010.565000px;}
.y7_c00189{bottom:1046.565000px;}
.y6_c00189{bottom:1082.565000px;}
.y2_c00189{bottom:1165.365000px;}
.h4_c00189{height:20.880000px;}
.h7_c00189{height:70.628906px;}
.h3_c00189{height:70.664062px;}
.h6_c00189{height:71.824219px;}
.h5_c00189{height:74.004654px;}
.h2_c00189{height:1237.365000px;}
.h0_c00189{height:1262.835000px;}
.h1_c00189{height:1263.000000px;}
.w3_c00189{width:27.000000px;}
.w2_c00189{width:867.465000px;}
.w0_c00189{width:892.935000px;}
.w1_c00189{width:893.250000px;}
.x0_c00189{left:0.000000px;}
.x1_c00189{left:12.735000px;}
.x3_c00189{left:95.406300px;}
.x5_c00189{left:149.418150px;}
.x4_c00189{left:433.215000px;}
.x2_c00189{left:878.550300px;}
@media print{
.v0_c00189{vertical-align:0.000000pt;}
.ls4_c00189{letter-spacing:0.000000pt;}
.ls3_c00189{letter-spacing:0.128000pt;}
.ls2_c00189{letter-spacing:12.627200pt;}
.ls1_c00189{letter-spacing:12.800000pt;}
.ls0_c00189{letter-spacing:13.683200pt;}
.ws1_c00189{word-spacing:-16.000000pt;}
.ws0_c00189{word-spacing:-0.064000pt;}
.ws2_c00189{word-spacing:0.000000pt;}
._a_c00189{width:1.600000pt;}
._2_c00189{width:2.502400pt;}
._7_c00189{width:3.404800pt;}
._1_c00189{width:4.556800pt;}
._0_c00189{width:5.491200pt;}
._3_c00189{width:6.412800pt;}
._b_c00189{width:9.465600pt;}
._8_c00189{width:10.425600pt;}
._5_c00189{width:12.825600pt;}
._4_c00189{width:13.721600pt;}
._9_c00189{width:17.824000pt;}
._6_c00189{width:20.908800pt;}
._d_c00189{width:22.009600pt;}
._c_c00189{width:23.872000pt;}
._e_c00189{width:25.670400pt;}
.fs1_c00189{font-size:57.600000pt;}
.fs0_c00189{font-size:64.000000pt;}
.y0_c00189{bottom:0.000000pt;}
.y5_c00189{bottom:4.480000pt;}
.y1_c00189{bottom:11.320000pt;}
.y3_c00189{bottom:40.040000pt;}
.y4_c00189{bottom:46.880000pt;}
.y20_c00189{bottom:130.280000pt;}
.y1f_c00189{bottom:162.280000pt;}
.y1e_c00189{bottom:194.280000pt;}
.y1d_c00189{bottom:226.280000pt;}
.y1c_c00189{bottom:258.280000pt;}
.y1b_c00189{bottom:290.280000pt;}
.y1a_c00189{bottom:322.280000pt;}
.y19_c00189{bottom:354.280000pt;}
.y18_c00189{bottom:386.280000pt;}
.y17_c00189{bottom:418.280000pt;}
.y16_c00189{bottom:450.280000pt;}
.y15_c00189{bottom:482.280000pt;}
.y14_c00189{bottom:514.280000pt;}
.y13_c00189{bottom:546.280000pt;}
.y12_c00189{bottom:578.280000pt;}
.y11_c00189{bottom:610.280000pt;}
.y10_c00189{bottom:642.280000pt;}
.yf_c00189{bottom:674.280000pt;}
.ye_c00189{bottom:706.280000pt;}
.yd_c00189{bottom:738.280000pt;}
.yc_c00189{bottom:770.280000pt;}
.yb_c00189{bottom:802.280000pt;}
.ya_c00189{bottom:834.280000pt;}
.y9_c00189{bottom:866.280000pt;}
.y8_c00189{bottom:898.280000pt;}
.y7_c00189{bottom:930.280000pt;}
.y6_c00189{bottom:962.280000pt;}
.y2_c00189{bottom:1035.880000pt;}
.h4_c00189{height:18.560000pt;}
.h7_c00189{height:62.781250pt;}
.h3_c00189{height:62.812500pt;}
.h6_c00189{height:63.843750pt;}
.h5_c00189{height:65.781915pt;}
.h2_c00189{height:1099.880000pt;}
.h0_c00189{height:1122.520000pt;}
.h1_c00189{height:1122.666667pt;}
.w3_c00189{width:24.000000pt;}
.w2_c00189{width:771.080000pt;}
.w0_c00189{width:793.720000pt;}
.w1_c00189{width:794.000000pt;}
.x0_c00189{left:0.000000pt;}
.x1_c00189{left:11.320000pt;}
.x3_c00189{left:84.805600pt;}
.x5_c00189{left:132.816133pt;}
.x4_c00189{left:385.080000pt;}
.x2_c00189{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00190{font-family:ff1_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00190;src:url('chunks/assets/font_1f56a4130d6a409e4748d60e.woff2')format("woff");}.ff2_c00190{font-family:ff2_c00190;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00190;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00190{font-family:ff3_c00190;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00190;src:url('chunks/assets/font_c8763496025d2f2ee9f32ff3.woff2')format("woff");}.ff4_c00190{font-family:ff4_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00190;src:url('chunks/assets/font_622ade75050229e5aaa676d8.woff2')format("woff");}.ff5_c00190{font-family:ff5_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00190;src:url('chunks/assets/font_2382e739a42bb48211dafbbd.woff2')format("woff");}.ff6_c00190{font-family:ff6_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00190;src:url('chunks/assets/font_7bec7adb5401b70106f01fad.woff2')format("woff");}.ff7_c00190{font-family:ff7_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00190;src:url('chunks/assets/font_7ec59901f6cd685fc9d5ace5.woff2')format("woff");}.ff8_c00190{font-family:ff8_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00190;src:url('chunks/assets/font_6747f1db8e73b979209880b6.woff2')format("woff");}.ff9_c00190{font-family:ff9_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00190;src:url('chunks/assets/font_3101b4ce0b35d269060fcd8e.woff2')format("woff");}.ffa_c00190{font-family:ffa_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00190;src:url('chunks/assets/font_850147d49071f34f3ccdcd12.woff2')format("woff");}.ffb_c00190{font-family:ffb_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00190;src:url('chunks/assets/font_058971eecfcf3e40f8852cc4.woff2')format("woff");}.ffc_c00190{font-family:ffc_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00190;src:url('chunks/assets/font_036170279685fe7835d8debe.woff2')format("woff");}.ffd_c00190{font-family:ffd_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00190;src:url('chunks/assets/font_7778fcf81b251c6fd6b538a9.woff2')format("woff");}.ffe_c00190{font-family:ffe_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00190;src:url('chunks/assets/font_ad07cf886ac6cc7ce5ae6aba.woff2')format("woff");}.fff_c00190{font-family:fff_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00190;src:url('chunks/assets/font_9c787724d4c949159bd2c46e.woff2')format("woff");}.ff10_c00190{font-family:ff10_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00190;src:url('chunks/assets/font_0001e471a97079d4d522f4ba.woff2')format("woff");}.ff11_c00190{font-family:ff11_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00190;src:url('chunks/assets/font_9ec3fd05c01637403d0c160b.woff2')format("woff");}.ff12_c00190{font-family:ff12_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00190;src:url('chunks/assets/font_63046707476a1dbc9c3ec788.woff2')format("woff");}.ff13_c00190{font-family:ff13_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00190;src:url('chunks/assets/font_5b6c1c862969878a40f31c73.woff2')format("woff");}.ff14_c00190{font-family:ff14_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00190;src:url('chunks/assets/font_0cb8a5d1ffb14c99594df4b9.woff2')format("woff");}.ff15_c00190{font-family:ff15_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00190;src:url('chunks/assets/font_52cbdcb5132aab233be307f8.woff2')format("woff");}.ff16_c00190{font-family:ff16_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00190;src:url('chunks/assets/font_39858310ec71bd2baa2d3f5c.woff2')format("woff");}.ff17_c00190{font-family:ff17_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00190;src:url('chunks/assets/font_b6edaee7578623e6472c3acc.woff2')format("woff");}.ff18_c00190{font-family:ff18_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00190;src:url('chunks/assets/font_a90fbf7922fc85fc16aae9b3.woff2')format("woff");}.ff19_c00190{font-family:ff19_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:ff1a_c00190;src:url('chunks/assets/font_9e9eac0488391fccc0609781.woff2')format("woff");}.ff1a_c00190{font-family:ff1a_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:ff1b_c00190;src:url('chunks/assets/font_7c2ad8348ce7edb07e11134a.woff2')format("woff");}.ff1b_c00190{font-family:ff1b_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:ff1c_c00190;src:url('chunks/assets/font_4cac96034533a6baa4e443fc.woff2')format("woff");}.ff1c_c00190{font-family:ff1c_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:ff1d_c00190;src:url('chunks/assets/font_05ee6c9e817d290ef2340485.woff2')format("woff");}.ff1d_c00190{font-family:ff1d_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:ff1e_c00190;src:url('chunks/assets/font_e3420b92393f40a8af785b67.woff2')format("woff");}.ff1e_c00190{font-family:ff1e_c00190;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00190;src:url('chunks/assets/font_8dc04df8ed55dc38284157d8.woff2')format("woff");}.ff1f_c00190{font-family:ff1f_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:ff20_c00190;src:url('chunks/assets/font_cf9f63366334bd5868980cf0.woff2')format("woff");}.ff20_c00190{font-family:ff20_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:ff21_c00190;src:url('chunks/assets/font_d1159424ad9d51d59a9f1fb8.woff2')format("woff");}.ff21_c00190{font-family:ff21_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:ff22_c00190;src:url('chunks/assets/font_ac19fbbe083e5dbdf14ae857.woff2')format("woff");}.ff22_c00190{font-family:ff22_c00190;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00190;src:url('chunks/assets/font_b14965e5770be24881f461b4.woff2')format("woff");}.ff23_c00190{font-family:ff23_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:ff24_c00190;src:url('chunks/assets/font_56bb3cf374aad1abd3716eb4.woff2')format("woff");}.ff24_c00190{font-family:ff24_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:ff25_c00190;src:url('chunks/assets/font_1a1f69fa4dfc3d03c83fbde9.woff2')format("woff");}.ff25_c00190{font-family:ff25_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:ff26_c00190;src:url('chunks/assets/font_865f206da513442c4558dfd0.woff2')format("woff");}.ff26_c00190{font-family:ff26_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:ff27_c00190;src:url('chunks/assets/font_ac0343bf617abff4de068b66.woff2')format("woff");}.ff27_c00190{font-family:ff27_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:ff28_c00190;src:url('chunks/assets/font_ac19fbbe083e5dbdf14ae857.woff2')format("woff");}.ff28_c00190{font-family:ff28_c00190;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00190;src:url('chunks/assets/font_ee4f855a514a6e6f072f240e.woff2')format("woff");}.ff29_c00190{font-family:ff29_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:ff2a_c00190;src:url('chunks/assets/font_7a10d653cc3322b4af9a1b3b.woff2')format("woff");}.ff2a_c00190{font-family:ff2a_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:ff2b_c00190;src:url('chunks/assets/font_f0887698659d01fad5ecb8f2.woff2')format("woff");}.ff2b_c00190{font-family:ff2b_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:ff2c_c00190;src:url('chunks/assets/font_cf624cfb754683f406ccc398.woff2')format("woff");}.ff2c_c00190{font-family:ff2c_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:ff2d_c00190;src:url('chunks/assets/font_4be4f02932cccbc1b5afbec5.woff2')format("woff");}.ff2d_c00190{font-family:ff2d_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:ff2e_c00190;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff2e_c00190{font-family:ff2e_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:ff2f_c00190;src:url('chunks/assets/font_05dbdb89205748f868334b1f.woff2')format("woff");}.ff2f_c00190{font-family:ff2f_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00190;src:url('chunks/assets/font_3b009912813d4a54ac6d6482.woff2')format("woff");}.ff30_c00190{font-family:ff30_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:ff31_c00190;src:url('chunks/assets/font_e53b4cb8e4562c0a571acb9d.woff2')format("woff");}.ff31_c00190{font-family:ff31_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:ff32_c00190;src:url('chunks/assets/font_9ce77c2d87dc429319d57632.woff2')format("woff");}.ff32_c00190{font-family:ff32_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:ff33_c00190;src:url('chunks/assets/font_1f7bf52be36afbc780fbdd5a.woff2')format("woff");}.ff33_c00190{font-family:ff33_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00190;src:url('chunks/assets/font_2de74e5b43037c0ebd761eed.woff2')format("woff");}.ff34_c00190{font-family:ff34_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00190;src:url('chunks/assets/font_4f2fc5033e00478fa300afed.woff2')format("woff");}.ff35_c00190{font-family:ff35_c00190;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00190{letter-spacing:0.000000px;}
.ls2_c00190{letter-spacing:4.492800px;}
.ls1_c00190{letter-spacing:4.557600px;}
.ls0_c00190{letter-spacing:4.769400px;}
.sc__c00190{text-shadow:none;}
.sc0_c00190{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00190{-webkit-text-stroke:0px transparent;}
.sc0_c00190{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00190{word-spacing:-0.072000px;}
.ws1_c00190{word-spacing:0.000000px;}
._1_c00190{width:1.915200px;}
._2_c00190{width:3.376800px;}
._5_c00190{width:4.608000px;}
._6_c00190{width:6.156000px;}
._4_c00190{width:7.452000px;}
._7_c00190{width:9.698400px;}
._8_c00190{width:10.944000px;}
._3_c00190{width:22.924800px;}
._0_c00190{width:24.264000px;}
.fc1_c00190{color:transparent;}
.fc0_c00190{color:rgb(0,0,0);}
.fs2_c00190{font-size:53.280000px;}
.fs1_c00190{font-size:64.800000px;}
.fs0_c00190{font-size:72.000000px;}
.y0_c00190{bottom:0.000000px;}
.y5_c00190{bottom:5.040000px;}
.y1_c00190{bottom:12.735000px;}
.y3_c00190{bottom:45.045000px;}
.y4_c00190{bottom:52.740000px;}
.y21_c00190{bottom:110.565000px;}
.y20_c00190{bottom:146.565000px;}
.y1f_c00190{bottom:182.565000px;}
.y1e_c00190{bottom:218.565000px;}
.y1d_c00190{bottom:254.565000px;}
.y1c_c00190{bottom:290.565000px;}
.y1b_c00190{bottom:326.565000px;}
.y1a_c00190{bottom:362.565000px;}
.y19_c00190{bottom:398.565000px;}
.y18_c00190{bottom:434.565000px;}
.y17_c00190{bottom:470.565000px;}
.y16_c00190{bottom:506.565000px;}
.y15_c00190{bottom:542.565000px;}
.y14_c00190{bottom:578.565000px;}
.y13_c00190{bottom:614.565000px;}
.y12_c00190{bottom:650.565000px;}
.y11_c00190{bottom:686.565000px;}
.y10_c00190{bottom:722.565000px;}
.yf_c00190{bottom:758.565000px;}
.ye_c00190{bottom:794.565000px;}
.yd_c00190{bottom:830.565000px;}
.yc_c00190{bottom:866.565000px;}
.yb_c00190{bottom:902.565000px;}
.ya_c00190{bottom:938.565000px;}
.y9_c00190{bottom:974.565000px;}
.y8_c00190{bottom:1010.565000px;}
.y7_c00190{bottom:1046.565000px;}
.y6_c00190{bottom:1082.565000px;}
.y2_c00190{bottom:1165.365000px;}
.h4_c00190{height:20.880000px;}
.h6_c00190{height:70.628906px;}
.h3_c00190{height:70.664062px;}
.h7_c00190{height:71.824219px;}
.h5_c00190{height:74.004654px;}
.h2_c00190{height:1237.365000px;}
.h0_c00190{height:1262.835000px;}
.h1_c00190{height:1263.000000px;}
.w3_c00190{width:27.000000px;}
.w2_c00190{width:867.465000px;}
.w0_c00190{width:892.935000px;}
.w1_c00190{width:893.250000px;}
.x0_c00190{left:0.000000px;}
.x1_c00190{left:12.735000px;}
.x3_c00190{left:95.406300px;}
.x5_c00190{left:149.400150px;}
.x4_c00190{left:433.215000px;}
.x2_c00190{left:878.550300px;}
@media print{
.v0_c00190{vertical-align:0.000000pt;}
.ls3_c00190{letter-spacing:0.000000pt;}
.ls2_c00190{letter-spacing:3.993600pt;}
.ls1_c00190{letter-spacing:4.051200pt;}
.ls0_c00190{letter-spacing:4.239467pt;}
.ws0_c00190{word-spacing:-0.064000pt;}
.ws1_c00190{word-spacing:0.000000pt;}
._1_c00190{width:1.702400pt;}
._2_c00190{width:3.001600pt;}
._5_c00190{width:4.096000pt;}
._6_c00190{width:5.472000pt;}
._4_c00190{width:6.624000pt;}
._7_c00190{width:8.620800pt;}
._8_c00190{width:9.728000pt;}
._3_c00190{width:20.377600pt;}
._0_c00190{width:21.568000pt;}
.fs2_c00190{font-size:47.360000pt;}
.fs1_c00190{font-size:57.600000pt;}
.fs0_c00190{font-size:64.000000pt;}
.y0_c00190{bottom:0.000000pt;}
.y5_c00190{bottom:4.480000pt;}
.y1_c00190{bottom:11.320000pt;}
.y3_c00190{bottom:40.040000pt;}
.y4_c00190{bottom:46.880000pt;}
.y21_c00190{bottom:98.280000pt;}
.y20_c00190{bottom:130.280000pt;}
.y1f_c00190{bottom:162.280000pt;}
.y1e_c00190{bottom:194.280000pt;}
.y1d_c00190{bottom:226.280000pt;}
.y1c_c00190{bottom:258.280000pt;}
.y1b_c00190{bottom:290.280000pt;}
.y1a_c00190{bottom:322.280000pt;}
.y19_c00190{bottom:354.280000pt;}
.y18_c00190{bottom:386.280000pt;}
.y17_c00190{bottom:418.280000pt;}
.y16_c00190{bottom:450.280000pt;}
.y15_c00190{bottom:482.280000pt;}
.y14_c00190{bottom:514.280000pt;}
.y13_c00190{bottom:546.280000pt;}
.y12_c00190{bottom:578.280000pt;}
.y11_c00190{bottom:610.280000pt;}
.y10_c00190{bottom:642.280000pt;}
.yf_c00190{bottom:674.280000pt;}
.ye_c00190{bottom:706.280000pt;}
.yd_c00190{bottom:738.280000pt;}
.yc_c00190{bottom:770.280000pt;}
.yb_c00190{bottom:802.280000pt;}
.ya_c00190{bottom:834.280000pt;}
.y9_c00190{bottom:866.280000pt;}
.y8_c00190{bottom:898.280000pt;}
.y7_c00190{bottom:930.280000pt;}
.y6_c00190{bottom:962.280000pt;}
.y2_c00190{bottom:1035.880000pt;}
.h4_c00190{height:18.560000pt;}
.h6_c00190{height:62.781250pt;}
.h3_c00190{height:62.812500pt;}
.h7_c00190{height:63.843750pt;}
.h5_c00190{height:65.781915pt;}
.h2_c00190{height:1099.880000pt;}
.h0_c00190{height:1122.520000pt;}
.h1_c00190{height:1122.666667pt;}
.w3_c00190{width:24.000000pt;}
.w2_c00190{width:771.080000pt;}
.w0_c00190{width:793.720000pt;}
.w1_c00190{width:794.000000pt;}
.x0_c00190{left:0.000000pt;}
.x1_c00190{left:11.320000pt;}
.x3_c00190{left:84.805600pt;}
.x5_c00190{left:132.800133pt;}
.x4_c00190{left:385.080000pt;}
.x2_c00190{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00191{font-family:ff1_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00191;src:url('chunks/assets/font_95a61b41e72092ac1e640399.woff2')format("woff");}.ff2_c00191{font-family:ff2_c00191;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00191;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00191{font-family:ff3_c00191;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00191;src:url('chunks/assets/font_0c703ca39ecdf41503727750.woff2')format("woff");}.ff4_c00191{font-family:ff4_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00191;src:url('chunks/assets/font_417e2921acf8cd7f2d65a6d6.woff2')format("woff");}.ff5_c00191{font-family:ff5_c00191;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00191;src:url('chunks/assets/font_f4803c2191be1f9370d16038.woff2')format("woff");}.ff6_c00191{font-family:ff6_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00191;src:url('chunks/assets/font_3e51e029f47dc793712dd5a9.woff2')format("woff");}.ff7_c00191{font-family:ff7_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00191;src:url('chunks/assets/font_16dd402dda3f4cd9311110ce.woff2')format("woff");}.ff8_c00191{font-family:ff8_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00191;src:url('chunks/assets/font_2de863fb12aad7be493cbdde.woff2')format("woff");}.ff9_c00191{font-family:ff9_c00191;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00191;src:url('chunks/assets/font_6a6c645dc86921b613786459.woff2')format("woff");}.ffa_c00191{font-family:ffa_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00191;src:url('chunks/assets/font_d46f7ce4a2fd50c1bbbf00cc.woff2')format("woff");}.ffb_c00191{font-family:ffb_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00191;src:url('chunks/assets/font_d902247dd8007c6845fb3633.woff2')format("woff");}.ffc_c00191{font-family:ffc_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00191;src:url('chunks/assets/font_876b6450c56487fb5acace8b.woff2')format("woff");}.ffd_c00191{font-family:ffd_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00191;src:url('chunks/assets/font_099d7068d2aa539ecb5f5095.woff2')format("woff");}.ffe_c00191{font-family:ffe_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00191;src:url('chunks/assets/font_eaa47a68f545755a0afcb20d.woff2')format("woff");}.fff_c00191{font-family:fff_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00191;src:url('chunks/assets/font_5aafbccbbec29772b8ec058c.woff2')format("woff");}.ff10_c00191{font-family:ff10_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00191;src:url('chunks/assets/font_3a45972383236def364db7f4.woff2')format("woff");}.ff11_c00191{font-family:ff11_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00191;src:url('chunks/assets/font_17c3e111506f0807ce9e69e7.woff2')format("woff");}.ff12_c00191{font-family:ff12_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00191;src:url('chunks/assets/font_ded98e96b1b0e5c88809151f.woff2')format("woff");}.ff13_c00191{font-family:ff13_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00191;src:url('chunks/assets/font_bc77f5a1875a1e403fd6359b.woff2')format("woff");}.ff14_c00191{font-family:ff14_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00191;src:url('chunks/assets/font_8efe86d0ee9bd59ef7aa7f7a.woff2')format("woff");}.ff15_c00191{font-family:ff15_c00191;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00191;src:url('chunks/assets/font_5d32e9f6d30c6eedfbc90a74.woff2')format("woff");}.ff16_c00191{font-family:ff16_c00191;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00191;src:url('chunks/assets/font_2613c71051c3c7250072eac2.woff2')format("woff");}.ff17_c00191{font-family:ff17_c00191;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00191;src:url('chunks/assets/font_a6a62336cf97e7ac279b2113.woff2')format("woff");}.ff18_c00191{font-family:ff18_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00191;src:url('chunks/assets/font_47fdc99250d96ddf3df8a1ee.woff2')format("woff");}.ff19_c00191{font-family:ff19_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00191;src:url('chunks/assets/font_9c2f713dfa2ec25f9994dcfa.woff2')format("woff");}.ff1a_c00191{font-family:ff1a_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00191;src:url('chunks/assets/font_d72dd46e79ed9353ad379da6.woff2')format("woff");}.ff1b_c00191{font-family:ff1b_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00191;src:url('chunks/assets/font_5f22546f6f72b9a5782b40d1.woff2')format("woff");}.ff1c_c00191{font-family:ff1c_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00191;src:url('chunks/assets/font_2117b70712c70af1ccb2854a.woff2')format("woff");}.ff1d_c00191{font-family:ff1d_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00191;src:url('chunks/assets/font_624a04916f5fd8d6fd888db7.woff2')format("woff");}.ff1e_c00191{font-family:ff1e_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00191;src:url('chunks/assets/font_3aab49845f451d8251dafd91.woff2')format("woff");}.ff1f_c00191{font-family:ff1f_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00191;src:url('chunks/assets/font_5f766c7493c66503b5057613.woff2')format("woff");}.ff20_c00191{font-family:ff20_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00191;src:url('chunks/assets/font_b337f3a7a6db61131960cbab.woff2')format("woff");}.ff21_c00191{font-family:ff21_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00191;src:url('chunks/assets/font_52cf3a9366ebdc3d2e44aee4.woff2')format("woff");}.ff22_c00191{font-family:ff22_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00191;src:url('chunks/assets/font_ae4012a2e5de387cb6511a3c.woff2')format("woff");}.ff23_c00191{font-family:ff23_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00191;src:url('chunks/assets/font_67d73163b40223a996f92e23.woff2')format("woff");}.ff24_c00191{font-family:ff24_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00191;src:url('chunks/assets/font_53cd7458d7022ff45577cf17.woff2')format("woff");}.ff25_c00191{font-family:ff25_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00191;src:url('chunks/assets/font_cde2423deef4a2925d651a9a.woff2')format("woff");}.ff26_c00191{font-family:ff26_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00191;src:url('chunks/assets/font_c6712a538f10d187a75da67f.woff2')format("woff");}.ff27_c00191{font-family:ff27_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00191;src:url('chunks/assets/font_885b43f6d97c302d07c09734.woff2')format("woff");}.ff28_c00191{font-family:ff28_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00191;src:url('chunks/assets/font_c7e4dfb08f303c54d0f701bc.woff2')format("woff");}.ff29_c00191{font-family:ff29_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00191;src:url('chunks/assets/font_1ddc2adc689864fdc809a3a5.woff2')format("woff");}.ff2a_c00191{font-family:ff2a_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00191;src:url('chunks/assets/font_f2def95128af35804606a26a.woff2')format("woff");}.ff2b_c00191{font-family:ff2b_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00191;src:url('chunks/assets/font_e1dcbc1fddd976af6a9ed178.woff2')format("woff");}.ff2c_c00191{font-family:ff2c_c00191;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00191{letter-spacing:0.000000px;}
.sc__c00191{text-shadow:none;}
.sc0_c00191{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00191{-webkit-text-stroke:0px transparent;}
.sc0_c00191{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00191{word-spacing:-0.072000px;}
.ws1_c00191{word-spacing:0.000000px;}
._6_c00191{width:1.591200px;}
._0_c00191{width:3.103200px;}
._7_c00191{width:4.204800px;}
._3_c00191{width:5.644800px;}
._2_c00191{width:7.603200px;}
._8_c00191{width:8.726400px;}
._9_c00191{width:11.361600px;}
._5_c00191{width:12.837600px;}
._1_c00191{width:15.134400px;}
._a_c00191{width:16.365600px;}
._4_c00191{width:21.571200px;}
.fc1_c00191{color:transparent;}
.fc0_c00191{color:rgb(0,0,0);}
.fs1_c00191{font-size:64.800000px;}
.fs0_c00191{font-size:72.000000px;}
.y0_c00191{bottom:0.000000px;}
.y5_c00191{bottom:5.040000px;}
.y1_c00191{bottom:12.735000px;}
.y3_c00191{bottom:45.045000px;}
.y4_c00191{bottom:52.740000px;}
.y21_c00191{bottom:110.565000px;}
.y20_c00191{bottom:146.565000px;}
.y1f_c00191{bottom:182.565000px;}
.y1e_c00191{bottom:218.565000px;}
.y1d_c00191{bottom:254.565000px;}
.y1c_c00191{bottom:290.565000px;}
.y1b_c00191{bottom:326.565000px;}
.y1a_c00191{bottom:362.565000px;}
.y19_c00191{bottom:398.565000px;}
.y18_c00191{bottom:434.565000px;}
.y17_c00191{bottom:470.565000px;}
.y16_c00191{bottom:506.565000px;}
.y15_c00191{bottom:542.565000px;}
.y14_c00191{bottom:578.565000px;}
.y13_c00191{bottom:614.565000px;}
.y12_c00191{bottom:650.565000px;}
.y11_c00191{bottom:686.565000px;}
.y10_c00191{bottom:722.565000px;}
.yf_c00191{bottom:758.565000px;}
.ye_c00191{bottom:794.565000px;}
.yd_c00191{bottom:830.565000px;}
.yc_c00191{bottom:866.565000px;}
.yb_c00191{bottom:902.565000px;}
.ya_c00191{bottom:938.565000px;}
.y9_c00191{bottom:974.565000px;}
.y8_c00191{bottom:1010.565000px;}
.y7_c00191{bottom:1046.565000px;}
.y6_c00191{bottom:1082.565000px;}
.y2_c00191{bottom:1165.365000px;}
.h4_c00191{height:20.880000px;}
.h7_c00191{height:70.628906px;}
.h3_c00191{height:70.664062px;}
.h6_c00191{height:71.824219px;}
.h5_c00191{height:74.004654px;}
.h2_c00191{height:1237.365000px;}
.h0_c00191{height:1262.835000px;}
.h1_c00191{height:1263.000000px;}
.w3_c00191{width:27.000000px;}
.w2_c00191{width:867.465000px;}
.w0_c00191{width:892.935000px;}
.w1_c00191{width:893.250000px;}
.x0_c00191{left:0.000000px;}
.x1_c00191{left:12.735000px;}
.x3_c00191{left:95.406300px;}
.x5_c00191{left:149.400150px;}
.x4_c00191{left:433.215000px;}
.x2_c00191{left:878.550300px;}
@media print{
.v0_c00191{vertical-align:0.000000pt;}
.ls0_c00191{letter-spacing:0.000000pt;}
.ws0_c00191{word-spacing:-0.064000pt;}
.ws1_c00191{word-spacing:0.000000pt;}
._6_c00191{width:1.414400pt;}
._0_c00191{width:2.758400pt;}
._7_c00191{width:3.737600pt;}
._3_c00191{width:5.017600pt;}
._2_c00191{width:6.758400pt;}
._8_c00191{width:7.756800pt;}
._9_c00191{width:10.099200pt;}
._5_c00191{width:11.411200pt;}
._1_c00191{width:13.452800pt;}
._a_c00191{width:14.547200pt;}
._4_c00191{width:19.174400pt;}
.fs1_c00191{font-size:57.600000pt;}
.fs0_c00191{font-size:64.000000pt;}
.y0_c00191{bottom:0.000000pt;}
.y5_c00191{bottom:4.480000pt;}
.y1_c00191{bottom:11.320000pt;}
.y3_c00191{bottom:40.040000pt;}
.y4_c00191{bottom:46.880000pt;}
.y21_c00191{bottom:98.280000pt;}
.y20_c00191{bottom:130.280000pt;}
.y1f_c00191{bottom:162.280000pt;}
.y1e_c00191{bottom:194.280000pt;}
.y1d_c00191{bottom:226.280000pt;}
.y1c_c00191{bottom:258.280000pt;}
.y1b_c00191{bottom:290.280000pt;}
.y1a_c00191{bottom:322.280000pt;}
.y19_c00191{bottom:354.280000pt;}
.y18_c00191{bottom:386.280000pt;}
.y17_c00191{bottom:418.280000pt;}
.y16_c00191{bottom:450.280000pt;}
.y15_c00191{bottom:482.280000pt;}
.y14_c00191{bottom:514.280000pt;}
.y13_c00191{bottom:546.280000pt;}
.y12_c00191{bottom:578.280000pt;}
.y11_c00191{bottom:610.280000pt;}
.y10_c00191{bottom:642.280000pt;}
.yf_c00191{bottom:674.280000pt;}
.ye_c00191{bottom:706.280000pt;}
.yd_c00191{bottom:738.280000pt;}
.yc_c00191{bottom:770.280000pt;}
.yb_c00191{bottom:802.280000pt;}
.ya_c00191{bottom:834.280000pt;}
.y9_c00191{bottom:866.280000pt;}
.y8_c00191{bottom:898.280000pt;}
.y7_c00191{bottom:930.280000pt;}
.y6_c00191{bottom:962.280000pt;}
.y2_c00191{bottom:1035.880000pt;}
.h4_c00191{height:18.560000pt;}
.h7_c00191{height:62.781250pt;}
.h3_c00191{height:62.812500pt;}
.h6_c00191{height:63.843750pt;}
.h5_c00191{height:65.781915pt;}
.h2_c00191{height:1099.880000pt;}
.h0_c00191{height:1122.520000pt;}
.h1_c00191{height:1122.666667pt;}
.w3_c00191{width:24.000000pt;}
.w2_c00191{width:771.080000pt;}
.w0_c00191{width:793.720000pt;}
.w1_c00191{width:794.000000pt;}
.x0_c00191{left:0.000000pt;}
.x1_c00191{left:11.320000pt;}
.x3_c00191{left:84.805600pt;}
.x5_c00191{left:132.800133pt;}
.x4_c00191{left:385.080000pt;}
.x2_c00191{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6fa6d5b37801880d2b2f6d6.woff2')format("woff");}.ff1_c00192{font-family:ff1_c00192;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00192;src:url('chunks/assets/font_25b0e8175a96e108b7d70227.woff2')format("woff");}.ff2_c00192{font-family:ff2_c00192;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00192;src:url('chunks/assets/font_80727554596d3bd0892997c7.woff2')format("woff");}.ff3_c00192{font-family:ff3_c00192;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00192;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff4_c00192{font-family:ff4_c00192;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00192;src:url('chunks/assets/font_ca73b8027ab334490df68c13.woff2')format("woff");}.ff5_c00192{font-family:ff5_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00192;src:url('chunks/assets/font_b6d287478aa9a748f84fc8d2.woff2')format("woff");}.ff6_c00192{font-family:ff6_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00192;src:url('chunks/assets/font_ab12f1a7a0fe513b5b2a73f4.woff2')format("woff");}.ff7_c00192{font-family:ff7_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00192;src:url('chunks/assets/font_7e927e0924ae9a7a549f8cc8.woff2')format("woff");}.ff8_c00192{font-family:ff8_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00192;src:url('chunks/assets/font_a6a3e44a989d7ea30dbe8157.woff2')format("woff");}.ff9_c00192{font-family:ff9_c00192;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_c00192;src:url('chunks/assets/font_bada1b156b225759dac0e6de.woff2')format("woff");}.ffa_c00192{font-family:ffa_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00192;src:url('chunks/assets/font_342e78ad33909e89d7328c13.woff2')format("woff");}.ffb_c00192{font-family:ffb_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00192;src:url('chunks/assets/font_771c8714c72c096dc9b3000e.woff2')format("woff");}.ffc_c00192{font-family:ffc_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00192;src:url('chunks/assets/font_6dff91cd0bfbc1e5d3764878.woff2')format("woff");}.ffd_c00192{font-family:ffd_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00192;src:url('chunks/assets/font_6a76128136197208729cd85d.woff2')format("woff");}.ffe_c00192{font-family:ffe_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00192;src:url('chunks/assets/font_4f18b4a2b836f32f576dff4d.woff2')format("woff");}.fff_c00192{font-family:fff_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00192;src:url('chunks/assets/font_bd89041aaa2a14281b9a8da4.woff2')format("woff");}.ff10_c00192{font-family:ff10_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00192;src:url('chunks/assets/font_b4f11e96b4c15aeec20c6691.woff2')format("woff");}.ff11_c00192{font-family:ff11_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00192;src:url('chunks/assets/font_a7ea39bf5ebae2eeb6b0fd1d.woff2')format("woff");}.ff12_c00192{font-family:ff12_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00192;src:url('chunks/assets/font_2ddddb9d75f7a8e4955a03cf.woff2')format("woff");}.ff13_c00192{font-family:ff13_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:ff14_c00192;src:url('chunks/assets/font_f66a4ea6f7f696c396e7a7ed.woff2')format("woff");}.ff14_c00192{font-family:ff14_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00192;src:url('chunks/assets/font_6ad3cba28414be6197ee14f7.woff2')format("woff");}.ff15_c00192{font-family:ff15_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00192;src:url('chunks/assets/font_3fd7a88cf0c3466bc3f29e91.woff2')format("woff");}.ff16_c00192{font-family:ff16_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00192;src:url('chunks/assets/font_2c4f4d69abe24c4c5fc7e691.woff2')format("woff");}.ff17_c00192{font-family:ff17_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00192;src:url('chunks/assets/font_922ae2c6f2e43d1a8e8cf675.woff2')format("woff");}.ff18_c00192{font-family:ff18_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:ff19_c00192;src:url('chunks/assets/font_7d408feb20f94b88ae42e9e3.woff2')format("woff");}.ff19_c00192{font-family:ff19_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:ff1a_c00192;src:url('chunks/assets/font_016cf8a823ef61e6e83656d9.woff2')format("woff");}.ff1a_c00192{font-family:ff1a_c00192;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00192;src:url('chunks/assets/font_87be5a07198222373cea93b3.woff2')format("woff");}.ff1b_c00192{font-family:ff1b_c00192;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00192;src:url('chunks/assets/font_218ddb42ffba1161e0896fa0.woff2')format("woff");}.ff1c_c00192{font-family:ff1c_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00192;src:url('chunks/assets/font_dc52e9c82d46e8da8b48afcc.woff2')format("woff");}.ff1d_c00192{font-family:ff1d_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:ff1e_c00192;src:url('chunks/assets/font_2ca16e644f728ad1f3994993.woff2')format("woff");}.ff1e_c00192{font-family:ff1e_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00192;src:url('chunks/assets/font_0f71343111335854b4af356e.woff2')format("woff");}.ff1f_c00192{font-family:ff1f_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:ff20_c00192;src:url('chunks/assets/font_10870c288fd8c0b7a4581dab.woff2')format("woff");}.ff20_c00192{font-family:ff20_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00192;src:url('chunks/assets/font_2596e83641ee323fd783261c.woff2')format("woff");}.ff21_c00192{font-family:ff21_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00192;src:url('chunks/assets/font_cb15f27b5f5ffbeaefd4182c.woff2')format("woff");}.ff22_c00192{font-family:ff22_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00192;src:url('chunks/assets/font_c201b25d675a24fb9502c8e4.woff2')format("woff");}.ff23_c00192{font-family:ff23_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00192;src:url('chunks/assets/font_a19ccebead4f63977b9bdb7e.woff2')format("woff");}.ff24_c00192{font-family:ff24_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00192;src:url('chunks/assets/font_4d290137d359218c895c3ce4.woff2')format("woff");}.ff25_c00192{font-family:ff25_c00192;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:ff26_c00192;src:url('chunks/assets/font_582bac6fb62af7bbd4802f71.woff2')format("woff");}.ff26_c00192{font-family:ff26_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00192;src:url('chunks/assets/font_66b78ffdeeb215d4b7c847e2.woff2')format("woff");}.ff27_c00192{font-family:ff27_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:ff28_c00192;src:url('chunks/assets/font_f922735828711c48cb2254e3.woff2')format("woff");}.ff28_c00192{font-family:ff28_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:ff29_c00192;src:url('chunks/assets/font_9f4b3f6a4f71064fa96dc390.woff2')format("woff");}.ff29_c00192{font-family:ff29_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:ff2a_c00192;src:url('chunks/assets/font_27632afa303974808bd7aad1.woff2')format("woff");}.ff2a_c00192{font-family:ff2a_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:ff2b_c00192;src:url('chunks/assets/font_b4d6779a7ed309b40e708352.woff2')format("woff");}.ff2b_c00192{font-family:ff2b_c00192;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00192;src:url('chunks/assets/font_b4d6779a7ed309b40e708352.woff2')format("woff");}.ff2c_c00192{font-family:ff2c_c00192;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00192;src:url('chunks/assets/font_c955af33b7cd0f5117455292.woff2')format("woff");}.ff2d_c00192{font-family:ff2d_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00192;src:url('chunks/assets/font_b355b83d1980caef447904b2.woff2')format("woff");}.ff2e_c00192{font-family:ff2e_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:ff2f_c00192;src:url('chunks/assets/font_b2a34e4e3739896c085ae16d.woff2')format("woff");}.ff2f_c00192{font-family:ff2f_c00192;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00192;src:url('chunks/assets/font_46f999d0c3533966f633a534.woff2')format("woff");}.ff30_c00192{font-family:ff30_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:ff31_c00192;src:url('chunks/assets/font_3259aa60c945a98d692d9797.woff2')format("woff");}.ff31_c00192{font-family:ff31_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00192;src:url('chunks/assets/font_b1d08499f258b465e7fce15d.woff2')format("woff");}.ff32_c00192{font-family:ff32_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00192;src:url('chunks/assets/font_c2c20c3050627d2a6f168f33.woff2')format("woff");}.ff33_c00192{font-family:ff33_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00192;src:url('chunks/assets/font_97c4dfdf17d56d3305505d4d.woff2')format("woff");}.ff34_c00192{font-family:ff34_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00192;src:url('chunks/assets/font_f1ee6093194ea3791be002c3.woff2')format("woff");}.ff35_c00192{font-family:ff35_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00192;src:url('chunks/assets/font_f0e954abb05c689475c880dd.woff2')format("woff");}.ff36_c00192{font-family:ff36_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00192;src:url('chunks/assets/font_ed1865aa76531e5f6056173d.woff2')format("woff");}.ff37_c00192{font-family:ff37_c00192;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00192{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00192{vertical-align:0.000000px;}
.ls0_c00192{letter-spacing:0.000000px;}
.ls1_c00192{letter-spacing:0.021600px;}
.sc__c00192{text-shadow:none;}
.sc0_c00192{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00192{-webkit-text-stroke:0px transparent;}
.sc0_c00192{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00192{word-spacing:-0.072000px;}
.ws1_c00192{word-spacing:0.000000px;}
._3_c00192{margin-left:-1.051200px;}
._6_c00192{width:1.411200px;}
._8_c00192{width:2.448000px;}
._4_c00192{width:3.672000px;}
._5_c00192{width:4.716000px;}
._7_c00192{width:6.069600px;}
._1_c00192{width:7.106400px;}
._0_c00192{width:8.964000px;}
._a_c00192{width:10.231200px;}
._9_c00192{width:11.476800px;}
._2_c00192{width:13.831200px;}
.fc1_c00192{color:transparent;}
.fc0_c00192{color:rgb(0,0,0);}
.fs1_c00192{font-size:64.800000px;}
.fs0_c00192{font-size:72.000000px;}
.y0_c00192{bottom:0.000000px;}
.y5_c00192{bottom:5.040000px;}
.y1_c00192{bottom:12.735000px;}
.y3_c00192{bottom:45.045000px;}
.y4_c00192{bottom:52.740000px;}
.y20_c00192{bottom:146.565000px;}
.y1f_c00192{bottom:182.565000px;}
.y1e_c00192{bottom:218.565000px;}
.y1d_c00192{bottom:254.565000px;}
.y1c_c00192{bottom:290.565000px;}
.y1b_c00192{bottom:326.565000px;}
.y1a_c00192{bottom:362.565000px;}
.y19_c00192{bottom:398.565000px;}
.y18_c00192{bottom:434.565000px;}
.y17_c00192{bottom:470.565000px;}
.y16_c00192{bottom:506.565000px;}
.y15_c00192{bottom:542.565000px;}
.y14_c00192{bottom:578.565000px;}
.y13_c00192{bottom:614.565000px;}
.y12_c00192{bottom:650.565000px;}
.y11_c00192{bottom:686.565000px;}
.y10_c00192{bottom:722.565000px;}
.yf_c00192{bottom:758.565000px;}
.ye_c00192{bottom:794.565000px;}
.yd_c00192{bottom:830.565000px;}
.yc_c00192{bottom:866.565000px;}
.yb_c00192{bottom:902.565000px;}
.ya_c00192{bottom:938.565000px;}
.y9_c00192{bottom:974.565000px;}
.y8_c00192{bottom:1010.565000px;}
.y7_c00192{bottom:1046.565000px;}
.y6_c00192{bottom:1082.565000px;}
.y2_c00192{bottom:1165.365000px;}
.h4_c00192{height:20.880000px;}
.h5_c00192{height:70.664062px;}
.h7_c00192{height:71.824219px;}
.h6_c00192{height:72.562500px;}
.h3_c00192{height:74.004654px;}
.h2_c00192{height:1237.365000px;}
.h0_c00192{height:1262.835000px;}
.h1_c00192{height:1263.000000px;}
.w3_c00192{width:27.000000px;}
.w2_c00192{width:867.465000px;}
.w0_c00192{width:892.935000px;}
.w1_c00192{width:893.250000px;}
.x0_c00192{left:0.000000px;}
.x1_c00192{left:12.735000px;}
.x3_c00192{left:95.406300px;}
.x5_c00192{left:149.400150px;}
.x6_c00192{left:180.450150px;}
.x4_c00192{left:433.215000px;}
.x2_c00192{left:878.550300px;}
@media print{
.v0_c00192{vertical-align:0.000000pt;}
.ls0_c00192{letter-spacing:0.000000pt;}
.ls1_c00192{letter-spacing:0.019200pt;}
.ws0_c00192{word-spacing:-0.064000pt;}
.ws1_c00192{word-spacing:0.000000pt;}
._3_c00192{margin-left:-0.934400pt;}
._6_c00192{width:1.254400pt;}
._8_c00192{width:2.176000pt;}
._4_c00192{width:3.264000pt;}
._5_c00192{width:4.192000pt;}
._7_c00192{width:5.395200pt;}
._1_c00192{width:6.316800pt;}
._0_c00192{width:7.968000pt;}
._a_c00192{width:9.094400pt;}
._9_c00192{width:10.201600pt;}
._2_c00192{width:12.294400pt;}
.fs1_c00192{font-size:57.600000pt;}
.fs0_c00192{font-size:64.000000pt;}
.y0_c00192{bottom:0.000000pt;}
.y5_c00192{bottom:4.480000pt;}
.y1_c00192{bottom:11.320000pt;}
.y3_c00192{bottom:40.040000pt;}
.y4_c00192{bottom:46.880000pt;}
.y20_c00192{bottom:130.280000pt;}
.y1f_c00192{bottom:162.280000pt;}
.y1e_c00192{bottom:194.280000pt;}
.y1d_c00192{bottom:226.280000pt;}
.y1c_c00192{bottom:258.280000pt;}
.y1b_c00192{bottom:290.280000pt;}
.y1a_c00192{bottom:322.280000pt;}
.y19_c00192{bottom:354.280000pt;}
.y18_c00192{bottom:386.280000pt;}
.y17_c00192{bottom:418.280000pt;}
.y16_c00192{bottom:450.280000pt;}
.y15_c00192{bottom:482.280000pt;}
.y14_c00192{bottom:514.280000pt;}
.y13_c00192{bottom:546.280000pt;}
.y12_c00192{bottom:578.280000pt;}
.y11_c00192{bottom:610.280000pt;}
.y10_c00192{bottom:642.280000pt;}
.yf_c00192{bottom:674.280000pt;}
.ye_c00192{bottom:706.280000pt;}
.yd_c00192{bottom:738.280000pt;}
.yc_c00192{bottom:770.280000pt;}
.yb_c00192{bottom:802.280000pt;}
.ya_c00192{bottom:834.280000pt;}
.y9_c00192{bottom:866.280000pt;}
.y8_c00192{bottom:898.280000pt;}
.y7_c00192{bottom:930.280000pt;}
.y6_c00192{bottom:962.280000pt;}
.y2_c00192{bottom:1035.880000pt;}
.h4_c00192{height:18.560000pt;}
.h5_c00192{height:62.812500pt;}
.h7_c00192{height:63.843750pt;}
.h6_c00192{height:64.500000pt;}
.h3_c00192{height:65.781915pt;}
.h2_c00192{height:1099.880000pt;}
.h0_c00192{height:1122.520000pt;}
.h1_c00192{height:1122.666667pt;}
.w3_c00192{width:24.000000pt;}
.w2_c00192{width:771.080000pt;}
.w0_c00192{width:793.720000pt;}
.w1_c00192{width:794.000000pt;}
.x0_c00192{left:0.000000pt;}
.x1_c00192{left:11.320000pt;}
.x3_c00192{left:84.805600pt;}
.x5_c00192{left:132.800133pt;}
.x6_c00192{left:160.400133pt;}
.x4_c00192{left:385.080000pt;}
.x2_c00192{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00193{font-family:ff1_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00193;src:url('chunks/assets/font_86a7a489a4e7538de880509a.woff2')format("woff");}.ff2_c00193{font-family:ff2_c00193;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00193;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00193{font-family:ff3_c00193;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00193;src:url('chunks/assets/font_2881118b8911557ce2d19753.woff2')format("woff");}.ff4_c00193{font-family:ff4_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00193;src:url('chunks/assets/font_6238f04a28c99eee632b508b.woff2')format("woff");}.ff5_c00193{font-family:ff5_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00193;src:url('chunks/assets/font_b9fb506888b16b64c67a6569.woff2')format("woff");}.ff6_c00193{font-family:ff6_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00193;src:url('chunks/assets/font_8b06f7cb719bd76b9c476ac9.woff2')format("woff");}.ff7_c00193{font-family:ff7_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00193;src:url('chunks/assets/font_c0b2beac561ef11e89384298.woff2')format("woff");}.ff8_c00193{font-family:ff8_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00193;src:url('chunks/assets/font_045189c8f23a3cac30c15dab.woff2')format("woff");}.ff9_c00193{font-family:ff9_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00193;src:url('chunks/assets/font_1ac1dbe6a809e2e455a107d1.woff2')format("woff");}.ffa_c00193{font-family:ffa_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00193;src:url('chunks/assets/font_2f99461eeedf51b9f2c72898.woff2')format("woff");}.ffb_c00193{font-family:ffb_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00193;src:url('chunks/assets/font_55ebf919ba4eae97726be515.woff2')format("woff");}.ffc_c00193{font-family:ffc_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00193;src:url('chunks/assets/font_f0f51ea5076cb5dc7973a3bd.woff2')format("woff");}.ffd_c00193{font-family:ffd_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00193;src:url('chunks/assets/font_08938a6be46fb468a0eca555.woff2')format("woff");}.ffe_c00193{font-family:ffe_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00193;src:url('chunks/assets/font_2c09cc06983e90273ca5b88d.woff2')format("woff");}.fff_c00193{font-family:fff_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00193;src:url('chunks/assets/font_b01afc8b938f9b04d2954077.woff2')format("woff");}.ff10_c00193{font-family:ff10_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00193;src:url('chunks/assets/font_ed150959286ba67f442ad8c7.woff2')format("woff");}.ff11_c00193{font-family:ff11_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00193;src:url('chunks/assets/font_03e581f12640830d2a3dab8d.woff2')format("woff");}.ff12_c00193{font-family:ff12_c00193;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00193;src:url('chunks/assets/font_2728b5d3140b5627c462a120.woff2')format("woff");}.ff13_c00193{font-family:ff13_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00193;src:url('chunks/assets/font_f2ed1287218df8cf4eeeb7d6.woff2')format("woff");}.ff14_c00193{font-family:ff14_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00193;src:url('chunks/assets/font_e5e23cce8e6b937eb0405780.woff2')format("woff");}.ff15_c00193{font-family:ff15_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00193;src:url('chunks/assets/font_268b2590a2541e645ccfb287.woff2')format("woff");}.ff16_c00193{font-family:ff16_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00193;src:url('chunks/assets/font_df692615c2bed291f5231814.woff2')format("woff");}.ff17_c00193{font-family:ff17_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00193;src:url('chunks/assets/font_7cf971af297c66270ec0072c.woff2')format("woff");}.ff18_c00193{font-family:ff18_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00193;src:url('chunks/assets/font_8c77c130284760533d88e5af.woff2')format("woff");}.ff19_c00193{font-family:ff19_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00193;src:url('chunks/assets/font_d184454c1173d9d3643ff069.woff2')format("woff");}.ff1a_c00193{font-family:ff1a_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00193;src:url('chunks/assets/font_35323a3226245e5167bd9a59.woff2')format("woff");}.ff1b_c00193{font-family:ff1b_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00193;src:url('chunks/assets/font_f64d4282539196c157cd2301.woff2')format("woff");}.ff1c_c00193{font-family:ff1c_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00193;src:url('chunks/assets/font_21b05c164dc53d19c03d59b2.woff2')format("woff");}.ff1d_c00193{font-family:ff1d_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00193;src:url('chunks/assets/font_b9b2afb2473d182a4d4c8b6c.woff2')format("woff");}.ff1e_c00193{font-family:ff1e_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00193;src:url('chunks/assets/font_bff80d53f2f0a6f692ba0813.woff2')format("woff");}.ff1f_c00193{font-family:ff1f_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00193;src:url('chunks/assets/font_458b212e36bacd85bd33a5e6.woff2')format("woff");}.ff20_c00193{font-family:ff20_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00193;src:url('chunks/assets/font_0932095c2d97d84e59b8382d.woff2')format("woff");}.ff21_c00193{font-family:ff21_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00193;src:url('chunks/assets/font_90d7cce0714f79b94c47fe04.woff2')format("woff");}.ff22_c00193{font-family:ff22_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00193;src:url('chunks/assets/font_9857c36692878f0a0a35eeb2.woff2')format("woff");}.ff23_c00193{font-family:ff23_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00193;src:url('chunks/assets/font_9391c93888f08c138a2ac6da.woff2')format("woff");}.ff24_c00193{font-family:ff24_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00193;src:url('chunks/assets/font_34f6952bb6a9f05e5b46ece1.woff2')format("woff");}.ff25_c00193{font-family:ff25_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00193;src:url('chunks/assets/font_6d9cb90881c008438b4d563d.woff2')format("woff");}.ff26_c00193{font-family:ff26_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00193;src:url('chunks/assets/font_4eced2ddc923bcbaa0578c22.woff2')format("woff");}.ff27_c00193{font-family:ff27_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00193;src:url('chunks/assets/font_a5e7a0745b13d435df292c3d.woff2')format("woff");}.ff28_c00193{font-family:ff28_c00193;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00193{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00193{vertical-align:0.000000px;}
.ls1_c00193{letter-spacing:0.000000px;}
.ls2_c00193{letter-spacing:0.050400px;}
.ls0_c00193{letter-spacing:0.072000px;}
.sc__c00193{text-shadow:none;}
.sc0_c00193{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00193{-webkit-text-stroke:0px transparent;}
.sc0_c00193{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00193{word-spacing:-0.072000px;}
.ws1_c00193{word-spacing:0.000000px;}
._3_c00193{width:2.037600px;}
._8_c00193{width:3.038400px;}
._2_c00193{width:4.046400px;}
._4_c00193{width:5.320800px;}
._7_c00193{width:7.567200px;}
._5_c00193{width:9.309600px;}
._a_c00193{width:10.497600px;}
._0_c00193{width:12.182400px;}
._1_c00193{width:13.651200px;}
._6_c00193{width:20.808000px;}
._9_c00193{width:25.646400px;}
.fc1_c00193{color:transparent;}
.fc0_c00193{color:rgb(0,0,0);}
.fs1_c00193{font-size:64.800000px;}
.fs0_c00193{font-size:72.000000px;}
.y0_c00193{bottom:0.000000px;}
.y5_c00193{bottom:5.040000px;}
.y1_c00193{bottom:12.735000px;}
.y3_c00193{bottom:45.045000px;}
.y4_c00193{bottom:52.740000px;}
.y21_c00193{bottom:110.565000px;}
.y20_c00193{bottom:146.565000px;}
.y1f_c00193{bottom:182.565000px;}
.y1e_c00193{bottom:218.565000px;}
.y1d_c00193{bottom:254.565000px;}
.y1c_c00193{bottom:290.565000px;}
.y1b_c00193{bottom:326.565000px;}
.y1a_c00193{bottom:362.565000px;}
.y19_c00193{bottom:398.565000px;}
.y18_c00193{bottom:434.565000px;}
.y17_c00193{bottom:470.565000px;}
.y16_c00193{bottom:506.565000px;}
.y15_c00193{bottom:542.565000px;}
.y14_c00193{bottom:578.565000px;}
.y13_c00193{bottom:614.565000px;}
.y12_c00193{bottom:650.565000px;}
.y11_c00193{bottom:686.565000px;}
.y10_c00193{bottom:722.565000px;}
.yf_c00193{bottom:758.565000px;}
.ye_c00193{bottom:794.565000px;}
.yd_c00193{bottom:830.565000px;}
.yc_c00193{bottom:866.565000px;}
.yb_c00193{bottom:902.565000px;}
.ya_c00193{bottom:938.565000px;}
.y9_c00193{bottom:974.565000px;}
.y8_c00193{bottom:1010.565000px;}
.y7_c00193{bottom:1046.565000px;}
.y6_c00193{bottom:1082.565000px;}
.y2_c00193{bottom:1165.365000px;}
.h4_c00193{height:20.880000px;}
.h3_c00193{height:70.664062px;}
.h5_c00193{height:74.004654px;}
.h2_c00193{height:1237.365000px;}
.h0_c00193{height:1262.835000px;}
.h1_c00193{height:1263.000000px;}
.w3_c00193{width:27.000000px;}
.w2_c00193{width:867.465000px;}
.w0_c00193{width:892.935000px;}
.w1_c00193{width:893.250000px;}
.x0_c00193{left:0.000000px;}
.x1_c00193{left:12.735000px;}
.x3_c00193{left:95.406300px;}
.x5_c00193{left:149.400150px;}
.x4_c00193{left:433.215000px;}
.x2_c00193{left:878.550300px;}
@media print{
.v0_c00193{vertical-align:0.000000pt;}
.ls1_c00193{letter-spacing:0.000000pt;}
.ls2_c00193{letter-spacing:0.044800pt;}
.ls0_c00193{letter-spacing:0.064000pt;}
.ws0_c00193{word-spacing:-0.064000pt;}
.ws1_c00193{word-spacing:0.000000pt;}
._3_c00193{width:1.811200pt;}
._8_c00193{width:2.700800pt;}
._2_c00193{width:3.596800pt;}
._4_c00193{width:4.729600pt;}
._7_c00193{width:6.726400pt;}
._5_c00193{width:8.275200pt;}
._a_c00193{width:9.331200pt;}
._0_c00193{width:10.828800pt;}
._1_c00193{width:12.134400pt;}
._6_c00193{width:18.496000pt;}
._9_c00193{width:22.796800pt;}
.fs1_c00193{font-size:57.600000pt;}
.fs0_c00193{font-size:64.000000pt;}
.y0_c00193{bottom:0.000000pt;}
.y5_c00193{bottom:4.480000pt;}
.y1_c00193{bottom:11.320000pt;}
.y3_c00193{bottom:40.040000pt;}
.y4_c00193{bottom:46.880000pt;}
.y21_c00193{bottom:98.280000pt;}
.y20_c00193{bottom:130.280000pt;}
.y1f_c00193{bottom:162.280000pt;}
.y1e_c00193{bottom:194.280000pt;}
.y1d_c00193{bottom:226.280000pt;}
.y1c_c00193{bottom:258.280000pt;}
.y1b_c00193{bottom:290.280000pt;}
.y1a_c00193{bottom:322.280000pt;}
.y19_c00193{bottom:354.280000pt;}
.y18_c00193{bottom:386.280000pt;}
.y17_c00193{bottom:418.280000pt;}
.y16_c00193{bottom:450.280000pt;}
.y15_c00193{bottom:482.280000pt;}
.y14_c00193{bottom:514.280000pt;}
.y13_c00193{bottom:546.280000pt;}
.y12_c00193{bottom:578.280000pt;}
.y11_c00193{bottom:610.280000pt;}
.y10_c00193{bottom:642.280000pt;}
.yf_c00193{bottom:674.280000pt;}
.ye_c00193{bottom:706.280000pt;}
.yd_c00193{bottom:738.280000pt;}
.yc_c00193{bottom:770.280000pt;}
.yb_c00193{bottom:802.280000pt;}
.ya_c00193{bottom:834.280000pt;}
.y9_c00193{bottom:866.280000pt;}
.y8_c00193{bottom:898.280000pt;}
.y7_c00193{bottom:930.280000pt;}
.y6_c00193{bottom:962.280000pt;}
.y2_c00193{bottom:1035.880000pt;}
.h4_c00193{height:18.560000pt;}
.h3_c00193{height:62.812500pt;}
.h5_c00193{height:65.781915pt;}
.h2_c00193{height:1099.880000pt;}
.h0_c00193{height:1122.520000pt;}
.h1_c00193{height:1122.666667pt;}
.w3_c00193{width:24.000000pt;}
.w2_c00193{width:771.080000pt;}
.w0_c00193{width:793.720000pt;}
.w1_c00193{width:794.000000pt;}
.x0_c00193{left:0.000000pt;}
.x1_c00193{left:11.320000pt;}
.x3_c00193{left:84.805600pt;}
.x5_c00193{left:132.800133pt;}
.x4_c00193{left:385.080000pt;}
.x2_c00193{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_69735be8bae058ba007c2539.woff2')format("woff");}.ff1_c00194{font-family:ff1_c00194;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00194;src:url('chunks/assets/font_a8c88d1554ba9de25b02c700.woff2')format("woff");}.ff2_c00194{font-family:ff2_c00194;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00194;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00194{font-family:ff3_c00194;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00194;src:url('chunks/assets/font_610cd188305e2885f96de86b.woff2')format("woff");}.ff4_c00194{font-family:ff4_c00194;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00194;src:url('chunks/assets/font_33b4f084bb4bf9d597a2ba23.woff2')format("woff");}.ff5_c00194{font-family:ff5_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:ff6_c00194;src:url('chunks/assets/font_8acba824e3fc8a55bd149857.woff2')format("woff");}.ff6_c00194{font-family:ff6_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:ff7_c00194;src:url('chunks/assets/font_a4895b83811259956c2788bd.woff2')format("woff");}.ff7_c00194{font-family:ff7_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:ff8_c00194;src:url('chunks/assets/font_3fbcacac2e32cf35f9c956d2.woff2')format("woff");}.ff8_c00194{font-family:ff8_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:ff9_c00194;src:url('chunks/assets/font_80db20640c8100028eb406e6.woff2')format("woff");}.ff9_c00194{font-family:ff9_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:ffa_c00194;src:url('chunks/assets/font_0b9140b0e89ba13d44ede5ba.woff2')format("woff");}.ffa_c00194{font-family:ffa_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:ffb_c00194;src:url('chunks/assets/font_f08a39d5e38eb270658065c5.woff2')format("woff");}.ffb_c00194{font-family:ffb_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:ffc_c00194;src:url('chunks/assets/font_9b877ad60897d682a4790686.woff2')format("woff");}.ffc_c00194{font-family:ffc_c00194;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:ffd_c00194;src:url('chunks/assets/font_54ba4d6f84a22f403c8d36aa.woff2')format("woff");}.ffd_c00194{font-family:ffd_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:ffe_c00194;src:url('chunks/assets/font_72f530e1468cc213d7daf08a.woff2')format("woff");}.ffe_c00194{font-family:ffe_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:fff_c00194;src:url('chunks/assets/font_92c5cb97c8819deabfa53e2c.woff2')format("woff");}.fff_c00194{font-family:fff_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:ff10_c00194;src:url('chunks/assets/font_9b877ad60897d682a4790686.woff2')format("woff");}.ff10_c00194{font-family:ff10_c00194;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:ff11_c00194;src:url('chunks/assets/font_73dbb4c476d45672f77e46af.woff2')format("woff");}.ff11_c00194{font-family:ff11_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:ff12_c00194;src:url('chunks/assets/font_3a5f4cd7711fe9d9d980e28a.woff2')format("woff");}.ff12_c00194{font-family:ff12_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:ff13_c00194;src:url('chunks/assets/font_bea147b4b4c89274bb4719c3.woff2')format("woff");}.ff13_c00194{font-family:ff13_c00194;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:ff14_c00194;src:url('chunks/assets/font_7a577f197cdda5d80ae73d1c.woff2')format("woff");}.ff14_c00194{font-family:ff14_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:ff15_c00194;src:url('chunks/assets/font_398f8c962ce5f356523ce24e.woff2')format("woff");}.ff15_c00194{font-family:ff15_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:ff16_c00194;src:url('chunks/assets/font_efba42d50d9084f61ce5ce96.woff2')format("woff");}.ff16_c00194{font-family:ff16_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:ff17_c00194;src:url('chunks/assets/font_d4251ed9dee97b47747486db.woff2')format("woff");}.ff17_c00194{font-family:ff17_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:ff18_c00194;src:url('chunks/assets/font_d078d1a2c602262863efa258.woff2')format("woff");}.ff18_c00194{font-family:ff18_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:ff19_c00194;src:url('chunks/assets/font_66b78ffdeeb215d4b7c847e2.woff2')format("woff");}.ff19_c00194{font-family:ff19_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:ff1a_c00194;src:url('chunks/assets/font_05eb92b5b53c66f1d35e5189.woff2')format("woff");}.ff1a_c00194{font-family:ff1a_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:ff1b_c00194;src:url('chunks/assets/font_ec29c637145eb64f36184ada.woff2')format("woff");}.ff1b_c00194{font-family:ff1b_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:ff1c_c00194;src:url('chunks/assets/font_85eb1b03065ba2e84595d417.woff2')format("woff");}.ff1c_c00194{font-family:ff1c_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:ff1d_c00194;src:url('chunks/assets/font_0b5fc67dc4c41be969b4fd7a.woff2')format("woff");}.ff1d_c00194{font-family:ff1d_c00194;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00194;src:url('chunks/assets/font_3ab5aa787282ba74835d0eda.woff2')format("woff");}.ff1e_c00194{font-family:ff1e_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:ff1f_c00194;src:url('chunks/assets/font_b355b83d1980caef447904b2.woff2')format("woff");}.ff1f_c00194{font-family:ff1f_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:ff20_c00194;src:url('chunks/assets/font_3d96694632fafef41f995363.woff2')format("woff");}.ff20_c00194{font-family:ff20_c00194;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00194;src:url('chunks/assets/font_46f999d0c3533966f633a534.woff2')format("woff");}.ff21_c00194{font-family:ff21_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:ff22_c00194;src:url('chunks/assets/font_586cea4bec219265c434812a.woff2')format("woff");}.ff22_c00194{font-family:ff22_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:ff23_c00194;src:url('chunks/assets/font_55cf45246975b053ed58de2f.woff2')format("woff");}.ff23_c00194{font-family:ff23_c00194;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:ff24_c00194;src:url('chunks/assets/font_00e2127cee3e4760b4d80c6e.woff2')format("woff");}.ff24_c00194{font-family:ff24_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:ff25_c00194;src:url('chunks/assets/font_883ac6094f65d1aaa2bb5f99.woff2')format("woff");}.ff25_c00194{font-family:ff25_c00194;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:ff26_c00194;src:url('chunks/assets/font_71b67ef41251c6428f8c1449.woff2')format("woff");}.ff26_c00194{font-family:ff26_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:ff27_c00194;src:url('chunks/assets/font_599dc16b84baa8e60725e682.woff2')format("woff");}.ff27_c00194{font-family:ff27_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:ff28_c00194;src:url('chunks/assets/font_68bd7bcce1e7389d5b3e5e4b.woff2')format("woff");}.ff28_c00194{font-family:ff28_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:ff29_c00194;src:url('chunks/assets/font_c488e7a9f2c2c8646c9606ae.woff2')format("woff");}.ff29_c00194{font-family:ff29_c00194;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00194;src:url('chunks/assets/font_15dcfbd6cbae9052d8fc0f21.woff2')format("woff");}.ff2a_c00194{font-family:ff2a_c00194;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:ff2b_c00194;src:url('chunks/assets/font_b444e76bd3512c39f3171392.woff2')format("woff");}.ff2b_c00194{font-family:ff2b_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:ff2c_c00194;src:url('chunks/assets/font_30bcc57c0630b8408b146aee.woff2')format("woff");}.ff2c_c00194{font-family:ff2c_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:ff2d_c00194;src:url('chunks/assets/font_d25ee46ca9dc15942cf7594c.woff2')format("woff");}.ff2d_c00194{font-family:ff2d_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:ff2e_c00194;src:url('chunks/assets/font_c488e7a9f2c2c8646c9606ae.woff2')format("woff");}.ff2e_c00194{font-family:ff2e_c00194;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00194;src:url('chunks/assets/font_59add06ea54688a5b86e0162.woff2')format("woff");}.ff2f_c00194{font-family:ff2f_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:ff30_c00194;src:url('chunks/assets/font_30bcc57c0630b8408b146aee.woff2')format("woff");}.ff30_c00194{font-family:ff30_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:ff31_c00194;src:url('chunks/assets/font_236ad72a9315ff967d37f544.woff2')format("woff");}.ff31_c00194{font-family:ff31_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:ff32_c00194;src:url('chunks/assets/font_2cb47373850012f65f1361a6.woff2')format("woff");}.ff32_c00194{font-family:ff32_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:ff33_c00194;src:url('chunks/assets/font_83dc34185e5d1385d8a4f50b.woff2')format("woff");}.ff33_c00194{font-family:ff33_c00194;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00194;src:url('chunks/assets/font_832ecb41e1b011464adc685f.woff2')format("woff");}.ff34_c00194{font-family:ff34_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:ff35_c00194;src:url('chunks/assets/font_f2903289da892d0bebe65042.woff2')format("woff");}.ff35_c00194{font-family:ff35_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:ff36_c00194;src:url('chunks/assets/font_6ea706d24baaca57292c7aad.woff2')format("woff");}.ff36_c00194{font-family:ff36_c00194;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:ff37_c00194;src:url('chunks/assets/font_ec6bd54c18c4b5408638a5ac.woff2')format("woff");}.ff37_c00194{font-family:ff37_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:ff38_c00194;src:url('chunks/assets/font_116b1495c487b0bc26bb79df.woff2')format("woff");}.ff38_c00194{font-family:ff38_c00194;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:ff39_c00194;src:url('chunks/assets/font_d38b75c21f855da5d8f57a54.woff2')format("woff");}.ff39_c00194{font-family:ff39_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:ff3a_c00194;src:url('chunks/assets/font_a938e58ea329abe5473e7286.woff2')format("woff");}.ff3a_c00194{font-family:ff3a_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:ff3b_c00194;src:url('chunks/assets/font_208140c61283da1bee0813cb.woff2')format("woff");}.ff3b_c00194{font-family:ff3b_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:ff3c_c00194;src:url('chunks/assets/font_1038a4cca2729feb745a11e6.woff2')format("woff");}.ff3c_c00194{font-family:ff3c_c00194;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:ff3d_c00194;src:url('chunks/assets/font_73263ea89fd796df566a9b57.woff2')format("woff");}.ff3d_c00194{font-family:ff3d_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:ff3e_c00194;src:url('chunks/assets/font_8fb5eb3599c93546f27c8cba.woff2')format("woff");}.ff3e_c00194{font-family:ff3e_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:ff3f_c00194;src:url('chunks/assets/font_0bf31916e0bb8d1b835dc894.woff2')format("woff");}.ff3f_c00194{font-family:ff3f_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:ff40_c00194;src:url('chunks/assets/font_aa1ca58b8cf6188a5eac8c84.woff2')format("woff");}.ff40_c00194{font-family:ff40_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:ff41_c00194;src:url('chunks/assets/font_46c4a674cc29e71d97820cf9.woff2')format("woff");}.ff41_c00194{font-family:ff41_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:ff42_c00194;src:url('chunks/assets/font_93576bc1bca5823a8113aa53.woff2')format("woff");}.ff42_c00194{font-family:ff42_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;}
.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;}
.ls0_c00194{letter-spacing:0.000000px;}
.ls1_c00194{letter-spacing:0.014400px;}
.sc__c00194{text-shadow:none;}
.sc0_c00194{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00194{-webkit-text-stroke:0px transparent;}
.sc0_c00194{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00194{word-spacing:-0.072000px;}
.ws1_c00194{word-spacing:0.000000px;}
._a_c00194{width:1.152000px;}
._6_c00194{width:2.419200px;}
._5_c00194{width:4.240800px;}
._1_c00194{width:5.688000px;}
._8_c00194{width:7.898400px;}
._4_c00194{width:9.115200px;}
._3_c00194{width:11.001600px;}
._2_c00194{width:12.182400px;}
._9_c00194{width:14.040000px;}
._0_c00194{width:15.292800px;}
._b_c00194{width:16.884000px;}
._7_c00194{width:19.065600px;}
.fc3_c00194{color:transparent;}
.fc2_c00194{color:rgb(255,0,0);}
.fc1_c00194{color:rgb(255,255,0);}
.fc0_c00194{color:rgb(0,0,0);}
.fs1_c00194{font-size:64.800000px;}
.fs0_c00194{font-size:72.000000px;}
.y0_c00194{bottom:0.000000px;}
.y5_c00194{bottom:5.040000px;}
.y1_c00194{bottom:12.735000px;}
.y3_c00194{bottom:45.045000px;}
.y4_c00194{bottom:52.740000px;}
.y21_c00194{bottom:110.565000px;}
.y20_c00194{bottom:146.565000px;}
.y1f_c00194{bottom:182.565000px;}
.y1e_c00194{bottom:218.565000px;}
.y1d_c00194{bottom:254.565000px;}
.y1c_c00194{bottom:290.565000px;}
.y1b_c00194{bottom:326.565000px;}
.y1a_c00194{bottom:362.565000px;}
.y19_c00194{bottom:398.565000px;}
.y18_c00194{bottom:434.565000px;}
.y17_c00194{bottom:470.565000px;}
.y16_c00194{bottom:506.565000px;}
.y15_c00194{bottom:542.565000px;}
.y14_c00194{bottom:578.565000px;}
.y13_c00194{bottom:614.565000px;}
.y12_c00194{bottom:650.565000px;}
.y11_c00194{bottom:686.565000px;}
.y10_c00194{bottom:722.565000px;}
.yf_c00194{bottom:758.565000px;}
.ye_c00194{bottom:794.565000px;}
.yd_c00194{bottom:830.565000px;}
.yc_c00194{bottom:866.565000px;}
.yb_c00194{bottom:902.565000px;}
.ya_c00194{bottom:938.565000px;}
.y9_c00194{bottom:974.565000px;}
.y8_c00194{bottom:1010.565000px;}
.y7_c00194{bottom:1046.565000px;}
.y6_c00194{bottom:1082.565000px;}
.y2_c00194{bottom:1165.365000px;}
.h4_c00194{height:20.880000px;}
.h5_c00194{height:70.664062px;}
.h6_c00194{height:71.824219px;}
.h3_c00194{height:74.004654px;}
.h2_c00194{height:1237.365000px;}
.h0_c00194{height:1262.835000px;}
.h1_c00194{height:1263.000000px;}
.w3_c00194{width:27.000000px;}
.w2_c00194{width:867.465000px;}
.w0_c00194{width:892.935000px;}
.w1_c00194{width:893.250000px;}
.x0_c00194{left:0.000000px;}
.x1_c00194{left:12.735000px;}
.x3_c00194{left:95.406300px;}
.x5_c00194{left:149.400150px;}
.x6_c00194{left:180.486150px;}
.x4_c00194{left:433.215000px;}
.x2_c00194{left:878.550300px;}
@media print{
.v0_c00194{vertical-align:0.000000pt;}
.ls0_c00194{letter-spacing:0.000000pt;}
.ls1_c00194{letter-spacing:0.012800pt;}
.ws0_c00194{word-spacing:-0.064000pt;}
.ws1_c00194{word-spacing:0.000000pt;}
._a_c00194{width:1.024000pt;}
._6_c00194{width:2.150400pt;}
._5_c00194{width:3.769600pt;}
._1_c00194{width:5.056000pt;}
._8_c00194{width:7.020800pt;}
._4_c00194{width:8.102400pt;}
._3_c00194{width:9.779200pt;}
._2_c00194{width:10.828800pt;}
._9_c00194{width:12.480000pt;}
._0_c00194{width:13.593600pt;}
._b_c00194{width:15.008000pt;}
._7_c00194{width:16.947200pt;}
.fs1_c00194{font-size:57.600000pt;}
.fs0_c00194{font-size:64.000000pt;}
.y0_c00194{bottom:0.000000pt;}
.y5_c00194{bottom:4.480000pt;}
.y1_c00194{bottom:11.320000pt;}
.y3_c00194{bottom:40.040000pt;}
.y4_c00194{bottom:46.880000pt;}
.y21_c00194{bottom:98.280000pt;}
.y20_c00194{bottom:130.280000pt;}
.y1f_c00194{bottom:162.280000pt;}
.y1e_c00194{bottom:194.280000pt;}
.y1d_c00194{bottom:226.280000pt;}
.y1c_c00194{bottom:258.280000pt;}
.y1b_c00194{bottom:290.280000pt;}
.y1a_c00194{bottom:322.280000pt;}
.y19_c00194{bottom:354.280000pt;}
.y18_c00194{bottom:386.280000pt;}
.y17_c00194{bottom:418.280000pt;}
.y16_c00194{bottom:450.280000pt;}
.y15_c00194{bottom:482.280000pt;}
.y14_c00194{bottom:514.280000pt;}
.y13_c00194{bottom:546.280000pt;}
.y12_c00194{bottom:578.280000pt;}
.y11_c00194{bottom:610.280000pt;}
.y10_c00194{bottom:642.280000pt;}
.yf_c00194{bottom:674.280000pt;}
.ye_c00194{bottom:706.280000pt;}
.yd_c00194{bottom:738.280000pt;}
.yc_c00194{bottom:770.280000pt;}
.yb_c00194{bottom:802.280000pt;}
.ya_c00194{bottom:834.280000pt;}
.y9_c00194{bottom:866.280000pt;}
.y8_c00194{bottom:898.280000pt;}
.y7_c00194{bottom:930.280000pt;}
.y6_c00194{bottom:962.280000pt;}
.y2_c00194{bottom:1035.880000pt;}
.h4_c00194{height:18.560000pt;}
.h5_c00194{height:62.812500pt;}
.h6_c00194{height:63.843750pt;}
.h3_c00194{height:65.781915pt;}
.h2_c00194{height:1099.880000pt;}
.h0_c00194{height:1122.520000pt;}
.h1_c00194{height:1122.666667pt;}
.w3_c00194{width:24.000000pt;}
.w2_c00194{width:771.080000pt;}
.w0_c00194{width:793.720000pt;}
.w1_c00194{width:794.000000pt;}
.x0_c00194{left:0.000000pt;}
.x1_c00194{left:11.320000pt;}
.x3_c00194{left:84.805600pt;}
.x5_c00194{left:132.800133pt;}
.x6_c00194{left:160.432133pt;}
.x4_c00194{left:385.080000pt;}
.x2_c00194{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_bb0d5289aafc94e54a056a8e.woff2')format("woff");}.ff1_c00195{font-family:ff1_c00195;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00195;src:url('chunks/assets/font_ebeb42b3a3e9ecf459815d3c.woff2')format("woff");}.ff2_c00195{font-family:ff2_c00195;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00195;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00195{font-family:ff3_c00195;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00195;src:url('chunks/assets/font_139ef9bde12aa3f80f34f816.woff2')format("woff");}.ff4_c00195{font-family:ff4_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00195;src:url('chunks/assets/font_2d6fb504fa062f17c7ebff55.woff2')format("woff");}.ff5_c00195{font-family:ff5_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00195;src:url('chunks/assets/font_1c4036617f13d5049610a6cd.woff2')format("woff");}.ff6_c00195{font-family:ff6_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00195;src:url('chunks/assets/font_bbee4758e4403f0919d626b0.woff2')format("woff");}.ff7_c00195{font-family:ff7_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00195;src:url('chunks/assets/font_bb7f7df400d431d07fc9a5ea.woff2')format("woff");}.ff8_c00195{font-family:ff8_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00195;src:url('chunks/assets/font_ffdbaccbe1e4b6605d236cea.woff2')format("woff");}.ff9_c00195{font-family:ff9_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00195;src:url('chunks/assets/font_749edc9b28f094c61464d61a.woff2')format("woff");}.ffa_c00195{font-family:ffa_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00195;src:url('chunks/assets/font_576d86d9174506b14b97f54e.woff2')format("woff");}.ffb_c00195{font-family:ffb_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00195;src:url('chunks/assets/font_f068d485ba9e39911a4e8337.woff2')format("woff");}.ffc_c00195{font-family:ffc_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00195;src:url('chunks/assets/font_833fbe90f697864fec1ce583.woff2')format("woff");}.ffd_c00195{font-family:ffd_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00195;src:url('chunks/assets/font_e318e90bce9c107dd12f5405.woff2')format("woff");}.ffe_c00195{font-family:ffe_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00195;src:url('chunks/assets/font_43908e539a566a167413e58a.woff2')format("woff");}.fff_c00195{font-family:fff_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00195;src:url('chunks/assets/font_567604dc2fd3b2718f7624e7.woff2')format("woff");}.ff10_c00195{font-family:ff10_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00195;src:url('chunks/assets/font_e16c9a74c2692aaa7a03969b.woff2')format("woff");}.ff11_c00195{font-family:ff11_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00195;src:url('chunks/assets/font_d557df2d673f1049727c9318.woff2')format("woff");}.ff12_c00195{font-family:ff12_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00195;src:url('chunks/assets/font_2d1b90684c6c48eebebd1b51.woff2')format("woff");}.ff13_c00195{font-family:ff13_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00195;src:url('chunks/assets/font_19d3a2afd441b1d27438d61a.woff2')format("woff");}.ff14_c00195{font-family:ff14_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00195;src:url('chunks/assets/font_0cd453f6f24c058e6b06a585.woff2')format("woff");}.ff15_c00195{font-family:ff15_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00195;src:url('chunks/assets/font_9f2029bb9d11fdfd324be7fd.woff2')format("woff");}.ff16_c00195{font-family:ff16_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00195;src:url('chunks/assets/font_fb984ab89af8bfca6e6157a5.woff2')format("woff");}.ff17_c00195{font-family:ff17_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00195;src:url('chunks/assets/font_114431d86e63a99ea4458528.woff2')format("woff");}.ff18_c00195{font-family:ff18_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00195;src:url('chunks/assets/font_0ab686cb94bf0a394fd84763.woff2')format("woff");}.ff19_c00195{font-family:ff19_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00195;src:url('chunks/assets/font_8843ee242ff6a6fe3ce78b82.woff2')format("woff");}.ff1a_c00195{font-family:ff1a_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00195;src:url('chunks/assets/font_f43fa3c7e1280126440b56a0.woff2')format("woff");}.ff1b_c00195{font-family:ff1b_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00195;src:url('chunks/assets/font_aaae48a6ce8a6df4d4ca04a6.woff2')format("woff");}.ff1c_c00195{font-family:ff1c_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00195;src:url('chunks/assets/font_9270d9b331595bb5f3d26949.woff2')format("woff");}.ff1d_c00195{font-family:ff1d_c00195;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:ff1e_c00195;src:url('chunks/assets/font_66b78ffdeeb215d4b7c847e2.woff2')format("woff");}.ff1e_c00195{font-family:ff1e_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00195;src:url('chunks/assets/font_a3055cc1b1256958ca86a4cc.woff2')format("woff");}.ff1f_c00195{font-family:ff1f_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00195;src:url('chunks/assets/font_b12af79289b1246cb9a2897e.woff2')format("woff");}.ff20_c00195{font-family:ff20_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00195;src:url('chunks/assets/font_3c721ef3a3eb136bf6a7858c.woff2')format("woff");}.ff21_c00195{font-family:ff21_c00195;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00195;src:url('chunks/assets/font_fadd223f917c8779909da67b.woff2')format("woff");}.ff22_c00195{font-family:ff22_c00195;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00195;src:url('chunks/assets/font_c651cf5f764e9b5e51d67b66.woff2')format("woff");}.ff23_c00195{font-family:ff23_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00195;src:url('chunks/assets/font_6ae717e66c45f325eb99f194.woff2')format("woff");}.ff24_c00195{font-family:ff24_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00195;src:url('chunks/assets/font_00841c81fe439ad24b9a1f6f.woff2')format("woff");}.ff25_c00195{font-family:ff25_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00195;src:url('chunks/assets/font_1225580a720fe97d7a5ed00a.woff2')format("woff");}.ff26_c00195{font-family:ff26_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00195;src:url('chunks/assets/font_25314efd904b9dec2150db7a.woff2')format("woff");}.ff27_c00195{font-family:ff27_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00195;src:url('chunks/assets/font_c0cb48bcf52758311be9bfb5.woff2')format("woff");}.ff28_c00195{font-family:ff28_c00195;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00195{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00195{vertical-align:0.000000px;}
.ls0_c00195{letter-spacing:0.000000px;}
.sc__c00195{text-shadow:none;}
.sc0_c00195{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00195{-webkit-text-stroke:0px transparent;}
.sc0_c00195{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00195{word-spacing:-0.072000px;}
.ws1_c00195{word-spacing:0.000000px;}
._a_c00195{width:1.087200px;}
._9_c00195{width:2.433600px;}
._6_c00195{width:3.758400px;}
._4_c00195{width:4.824000px;}
._0_c00195{width:6.192000px;}
._3_c00195{width:8.949600px;}
._8_c00195{width:10.209600px;}
._5_c00195{width:11.887200px;}
._1_c00195{width:16.588800px;}
._b_c00195{width:19.864800px;}
._2_c00195{width:22.564800px;}
._7_c00195{width:28.576800px;}
.fc1_c00195{color:transparent;}
.fc0_c00195{color:rgb(0,0,0);}
.fs1_c00195{font-size:64.800000px;}
.fs0_c00195{font-size:72.000000px;}
.y0_c00195{bottom:0.000000px;}
.y5_c00195{bottom:5.040000px;}
.y1_c00195{bottom:12.735000px;}
.y3_c00195{bottom:45.045000px;}
.y4_c00195{bottom:52.740000px;}
.y21_c00195{bottom:110.565000px;}
.y20_c00195{bottom:146.565000px;}
.y1f_c00195{bottom:182.565000px;}
.y1e_c00195{bottom:218.565000px;}
.y1d_c00195{bottom:254.565000px;}
.y1c_c00195{bottom:290.565000px;}
.y1b_c00195{bottom:326.565000px;}
.y1a_c00195{bottom:362.565000px;}
.y19_c00195{bottom:398.565000px;}
.y18_c00195{bottom:434.565000px;}
.y17_c00195{bottom:470.565000px;}
.y16_c00195{bottom:506.565000px;}
.y15_c00195{bottom:542.565000px;}
.y14_c00195{bottom:578.565000px;}
.y13_c00195{bottom:614.565000px;}
.y12_c00195{bottom:650.565000px;}
.y11_c00195{bottom:686.565000px;}
.y10_c00195{bottom:722.565000px;}
.yf_c00195{bottom:758.565000px;}
.ye_c00195{bottom:794.565000px;}
.yd_c00195{bottom:830.565000px;}
.yc_c00195{bottom:866.565000px;}
.yb_c00195{bottom:902.565000px;}
.ya_c00195{bottom:938.565000px;}
.y9_c00195{bottom:974.565000px;}
.y8_c00195{bottom:1010.565000px;}
.y7_c00195{bottom:1046.565000px;}
.y6_c00195{bottom:1082.565000px;}
.y2_c00195{bottom:1165.365000px;}
.h4_c00195{height:20.880000px;}
.h7_c00195{height:70.628906px;}
.h5_c00195{height:70.664062px;}
.h6_c00195{height:71.824219px;}
.h3_c00195{height:74.004654px;}
.h2_c00195{height:1237.365000px;}
.h0_c00195{height:1262.835000px;}
.h1_c00195{height:1263.000000px;}
.w3_c00195{width:27.000000px;}
.w2_c00195{width:867.465000px;}
.w0_c00195{width:892.935000px;}
.w1_c00195{width:893.250000px;}
.x0_c00195{left:0.000000px;}
.x1_c00195{left:12.735000px;}
.x3_c00195{left:95.406300px;}
.x5_c00195{left:149.400150px;}
.x7_c00195{left:176.400150px;}
.x6_c00195{left:180.450150px;}
.x4_c00195{left:433.215000px;}
.x2_c00195{left:878.550300px;}
@media print{
.v0_c00195{vertical-align:0.000000pt;}
.ls0_c00195{letter-spacing:0.000000pt;}
.ws0_c00195{word-spacing:-0.064000pt;}
.ws1_c00195{word-spacing:0.000000pt;}
._a_c00195{width:0.966400pt;}
._9_c00195{width:2.163200pt;}
._6_c00195{width:3.340800pt;}
._4_c00195{width:4.288000pt;}
._0_c00195{width:5.504000pt;}
._3_c00195{width:7.955200pt;}
._8_c00195{width:9.075200pt;}
._5_c00195{width:10.566400pt;}
._1_c00195{width:14.745600pt;}
._b_c00195{width:17.657600pt;}
._2_c00195{width:20.057600pt;}
._7_c00195{width:25.401600pt;}
.fs1_c00195{font-size:57.600000pt;}
.fs0_c00195{font-size:64.000000pt;}
.y0_c00195{bottom:0.000000pt;}
.y5_c00195{bottom:4.480000pt;}
.y1_c00195{bottom:11.320000pt;}
.y3_c00195{bottom:40.040000pt;}
.y4_c00195{bottom:46.880000pt;}
.y21_c00195{bottom:98.280000pt;}
.y20_c00195{bottom:130.280000pt;}
.y1f_c00195{bottom:162.280000pt;}
.y1e_c00195{bottom:194.280000pt;}
.y1d_c00195{bottom:226.280000pt;}
.y1c_c00195{bottom:258.280000pt;}
.y1b_c00195{bottom:290.280000pt;}
.y1a_c00195{bottom:322.280000pt;}
.y19_c00195{bottom:354.280000pt;}
.y18_c00195{bottom:386.280000pt;}
.y17_c00195{bottom:418.280000pt;}
.y16_c00195{bottom:450.280000pt;}
.y15_c00195{bottom:482.280000pt;}
.y14_c00195{bottom:514.280000pt;}
.y13_c00195{bottom:546.280000pt;}
.y12_c00195{bottom:578.280000pt;}
.y11_c00195{bottom:610.280000pt;}
.y10_c00195{bottom:642.280000pt;}
.yf_c00195{bottom:674.280000pt;}
.ye_c00195{bottom:706.280000pt;}
.yd_c00195{bottom:738.280000pt;}
.yc_c00195{bottom:770.280000pt;}
.yb_c00195{bottom:802.280000pt;}
.ya_c00195{bottom:834.280000pt;}
.y9_c00195{bottom:866.280000pt;}
.y8_c00195{bottom:898.280000pt;}
.y7_c00195{bottom:930.280000pt;}
.y6_c00195{bottom:962.280000pt;}
.y2_c00195{bottom:1035.880000pt;}
.h4_c00195{height:18.560000pt;}
.h7_c00195{height:62.781250pt;}
.h5_c00195{height:62.812500pt;}
.h6_c00195{height:63.843750pt;}
.h3_c00195{height:65.781915pt;}
.h2_c00195{height:1099.880000pt;}
.h0_c00195{height:1122.520000pt;}
.h1_c00195{height:1122.666667pt;}
.w3_c00195{width:24.000000pt;}
.w2_c00195{width:771.080000pt;}
.w0_c00195{width:793.720000pt;}
.w1_c00195{width:794.000000pt;}
.x0_c00195{left:0.000000pt;}
.x1_c00195{left:11.320000pt;}
.x3_c00195{left:84.805600pt;}
.x5_c00195{left:132.800133pt;}
.x7_c00195{left:156.800133pt;}
.x6_c00195{left:160.400133pt;}
.x4_c00195{left:385.080000pt;}
.x2_c00195{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00196{font-family:ff1_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00196;src:url('chunks/assets/font_66d5d1aef42cfc0abd432cb6.woff2')format("woff");}.ff2_c00196{font-family:ff2_c00196;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00196;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00196{font-family:ff3_c00196;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00196;src:url('chunks/assets/font_f530c5b5e049e4df1b7e10d7.woff2')format("woff");}.ff4_c00196{font-family:ff4_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00196;src:url('chunks/assets/font_316be7bbd1ee11763def730c.woff2')format("woff");}.ff5_c00196{font-family:ff5_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00196;src:url('chunks/assets/font_327d01d44f07760afe2051d8.woff2')format("woff");}.ff6_c00196{font-family:ff6_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00196;src:url('chunks/assets/font_a502bb5e0013eab472b7072c.woff2')format("woff");}.ff7_c00196{font-family:ff7_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00196;src:url('chunks/assets/font_549cb56206bf770c4448954a.woff2')format("woff");}.ff8_c00196{font-family:ff8_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00196;src:url('chunks/assets/font_30c49536f91da5399cea1710.woff2')format("woff");}.ff9_c00196{font-family:ff9_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00196;src:url('chunks/assets/font_72880159ccdd3591ef5b0fb6.woff2')format("woff");}.ffa_c00196{font-family:ffa_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00196;src:url('chunks/assets/font_a822a072f5100d449f0c2dec.woff2')format("woff");}.ffb_c00196{font-family:ffb_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00196;src:url('chunks/assets/font_ba6cb4de176ba718bb26f53a.woff2')format("woff");}.ffc_c00196{font-family:ffc_c00196;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:ffd_c00196;src:url('chunks/assets/font_46f4bacc915fbccd00343dcd.woff2')format("woff");}.ffd_c00196{font-family:ffd_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00196;src:url('chunks/assets/font_0f5c02bb19621cafcfd5b14f.woff2')format("woff");}.ffe_c00196{font-family:ffe_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00196;src:url('chunks/assets/font_9161b4276c809387dc9f520b.woff2')format("woff");}.fff_c00196{font-family:fff_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00196;src:url('chunks/assets/font_e6420081191f715ba7417077.woff2')format("woff");}.ff10_c00196{font-family:ff10_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00196;src:url('chunks/assets/font_ce1928f9b17f6cf8f2928c7b.woff2')format("woff");}.ff11_c00196{font-family:ff11_c00196;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:ff12_c00196;src:url('chunks/assets/font_da99d75a55fda39d732f47ff.woff2')format("woff");}.ff12_c00196{font-family:ff12_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00196;src:url('chunks/assets/font_9a6eb4f3d9bda44213159645.woff2')format("woff");}.ff13_c00196{font-family:ff13_c00196;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:ff14_c00196;src:url('chunks/assets/font_835b7f2e46a715edf37b46c8.woff2')format("woff");}.ff14_c00196{font-family:ff14_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00196;src:url('chunks/assets/font_6b7dd28cfa78f235f8108d6e.woff2')format("woff");}.ff15_c00196{font-family:ff15_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00196;src:url('chunks/assets/font_5b143d4e347b6421eb50caff.woff2')format("woff");}.ff16_c00196{font-family:ff16_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00196;src:url('chunks/assets/font_e89f2ebea5de24b4c8312621.woff2')format("woff");}.ff17_c00196{font-family:ff17_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00196;src:url('chunks/assets/font_8c0a8317b897cc7098fc5ee8.woff2')format("woff");}.ff18_c00196{font-family:ff18_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00196;src:url('chunks/assets/font_8352ddd90babf62be53b97f2.woff2')format("woff");}.ff19_c00196{font-family:ff19_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00196;src:url('chunks/assets/font_8540c3d81a88bfc7722b6910.woff2')format("woff");}.ff1a_c00196{font-family:ff1a_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00196;src:url('chunks/assets/font_73436ee98b3e781af1390f1a.woff2')format("woff");}.ff1b_c00196{font-family:ff1b_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00196;src:url('chunks/assets/font_ede13114f1bcc15d257f8972.woff2')format("woff");}.ff1c_c00196{font-family:ff1c_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00196;src:url('chunks/assets/font_7a6966997d0b77be9cd65480.woff2')format("woff");}.ff1d_c00196{font-family:ff1d_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00196;src:url('chunks/assets/font_350016d84c832b67ce272473.woff2')format("woff");}.ff1e_c00196{font-family:ff1e_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00196;src:url('chunks/assets/font_e5090e7f278126ceee51cb08.woff2')format("woff");}.ff1f_c00196{font-family:ff1f_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00196;src:url('chunks/assets/font_52e60606d1fdaf19f820d7e8.woff2')format("woff");}.ff20_c00196{font-family:ff20_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00196;src:url('chunks/assets/font_3c62b347d11f65455e140d57.woff2')format("woff");}.ff21_c00196{font-family:ff21_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00196;src:url('chunks/assets/font_21e1d3f2de7bdfefd6b6dc27.woff2')format("woff");}.ff22_c00196{font-family:ff22_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00196;src:url('chunks/assets/font_8d8767a53f9e23cb00114b69.woff2')format("woff");}.ff23_c00196{font-family:ff23_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00196;src:url('chunks/assets/font_1a62a665e47379d42329db18.woff2')format("woff");}.ff24_c00196{font-family:ff24_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00196;src:url('chunks/assets/font_07394847776b5a7ec9ab4a9b.woff2')format("woff");}.ff25_c00196{font-family:ff25_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00196;src:url('chunks/assets/font_699e9e93d558a5db87a4542f.woff2')format("woff");}.ff26_c00196{font-family:ff26_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00196;src:url('chunks/assets/font_9c71d9de7dff5eb77adfdc81.woff2')format("woff");}.ff27_c00196{font-family:ff27_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00196;src:url('chunks/assets/font_16b38565c6c53b1416f8443c.woff2')format("woff");}.ff28_c00196{font-family:ff28_c00196;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00196;src:url('chunks/assets/font_7889626d59457bed4a1008a0.woff2')format("woff");}.ff29_c00196{font-family:ff29_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00196;src:url('chunks/assets/font_c0ef846963fdb01612eb0058.woff2')format("woff");}.ff2a_c00196{font-family:ff2a_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00196;src:url('chunks/assets/font_ea28a203ebe2aefcae200c5e.woff2')format("woff");}.ff2b_c00196{font-family:ff2b_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00196;src:url('chunks/assets/font_d4f13cfd0c7007bfc3e717d8.woff2')format("woff");}.ff2c_c00196{font-family:ff2c_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00196;src:url('chunks/assets/font_e285235c89a455df07b9ed00.woff2')format("woff");}.ff2d_c00196{font-family:ff2d_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00196;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff2e_c00196{font-family:ff2e_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00196;src:url('chunks/assets/font_9ccf32fed973849b9242ce06.woff2')format("woff");}.ff2f_c00196{font-family:ff2f_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00196;src:url('chunks/assets/font_cfd10188376fba45cade0cf2.woff2')format("woff");}.ff30_c00196{font-family:ff30_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00196;src:url('chunks/assets/font_60160175c205516da79374f2.woff2')format("woff");}.ff31_c00196{font-family:ff31_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00196;src:url('chunks/assets/font_36c4df879368d2f3d385d613.woff2')format("woff");}.ff32_c00196{font-family:ff32_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00196;src:url('chunks/assets/font_768e2080929d0cfe0c3d660f.woff2')format("woff");}.ff33_c00196{font-family:ff33_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00196;src:url('chunks/assets/font_799233ebd4071df11197c7c9.woff2')format("woff");}.ff34_c00196{font-family:ff34_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00196;src:url('chunks/assets/font_70e81c020f5bf67967a5284b.woff2')format("woff");}.ff35_c00196{font-family:ff35_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00196;src:url('chunks/assets/font_cf93787485af020db338cb3c.woff2')format("woff");}.ff36_c00196{font-family:ff36_c00196;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00196{letter-spacing:0.000000px;}
.ls1_c00196{letter-spacing:0.050400px;}
.ls0_c00196{letter-spacing:0.072000px;}
.sc__c00196{text-shadow:none;}
.sc0_c00196{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00196{-webkit-text-stroke:0px transparent;}
.sc0_c00196{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00196{word-spacing:-18.000000px;}
.ws0_c00196{word-spacing:-0.072000px;}
.ws2_c00196{word-spacing:0.000000px;}
._9_c00196{width:1.728000px;}
._8_c00196{width:4.435200px;}
._0_c00196{width:5.608800px;}
._a_c00196{width:6.753600px;}
._1_c00196{width:8.661600px;}
._2_c00196{width:9.748800px;}
._7_c00196{width:10.972800px;}
._3_c00196{width:12.031200px;}
._4_c00196{width:16.228800px;}
._6_c00196{width:19.411200px;}
._b_c00196{width:22.687200px;}
._5_c00196{width:25.855200px;}
.fc1_c00196{color:transparent;}
.fc0_c00196{color:rgb(0,0,0);}
.fs1_c00196{font-size:64.800000px;}
.fs0_c00196{font-size:72.000000px;}
.y0_c00196{bottom:0.000000px;}
.y5_c00196{bottom:5.040000px;}
.y1_c00196{bottom:12.735000px;}
.y3_c00196{bottom:45.045000px;}
.y4_c00196{bottom:52.740000px;}
.y21_c00196{bottom:110.565000px;}
.y20_c00196{bottom:146.565000px;}
.y1f_c00196{bottom:182.565000px;}
.y1e_c00196{bottom:218.565000px;}
.y1d_c00196{bottom:254.565000px;}
.y1c_c00196{bottom:290.565000px;}
.y1b_c00196{bottom:326.565000px;}
.y1a_c00196{bottom:362.565000px;}
.y19_c00196{bottom:398.565000px;}
.y18_c00196{bottom:434.565000px;}
.y17_c00196{bottom:470.565000px;}
.y16_c00196{bottom:506.565000px;}
.y15_c00196{bottom:542.565000px;}
.y14_c00196{bottom:578.565000px;}
.y13_c00196{bottom:614.565000px;}
.y12_c00196{bottom:650.565000px;}
.y11_c00196{bottom:686.565000px;}
.y10_c00196{bottom:722.565000px;}
.yf_c00196{bottom:758.565000px;}
.ye_c00196{bottom:794.565000px;}
.yd_c00196{bottom:830.565000px;}
.yc_c00196{bottom:866.565000px;}
.yb_c00196{bottom:902.565000px;}
.ya_c00196{bottom:938.565000px;}
.y9_c00196{bottom:974.565000px;}
.y8_c00196{bottom:1010.565000px;}
.y7_c00196{bottom:1046.565000px;}
.y6_c00196{bottom:1082.565000px;}
.y2_c00196{bottom:1165.365000px;}
.h4_c00196{height:20.880000px;}
.h6_c00196{height:70.628906px;}
.h3_c00196{height:70.664062px;}
.h5_c00196{height:74.004654px;}
.h2_c00196{height:1237.365000px;}
.h0_c00196{height:1262.835000px;}
.h1_c00196{height:1263.000000px;}
.w3_c00196{width:27.000000px;}
.w2_c00196{width:867.465000px;}
.w0_c00196{width:892.935000px;}
.w1_c00196{width:893.250000px;}
.x0_c00196{left:0.000000px;}
.x1_c00196{left:12.735000px;}
.x3_c00196{left:95.406300px;}
.x5_c00196{left:149.400150px;}
.x4_c00196{left:433.215000px;}
.x2_c00196{left:878.550300px;}
@media print{
.v0_c00196{vertical-align:0.000000pt;}
.ls2_c00196{letter-spacing:0.000000pt;}
.ls1_c00196{letter-spacing:0.044800pt;}
.ls0_c00196{letter-spacing:0.064000pt;}
.ws1_c00196{word-spacing:-16.000000pt;}
.ws0_c00196{word-spacing:-0.064000pt;}
.ws2_c00196{word-spacing:0.000000pt;}
._9_c00196{width:1.536000pt;}
._8_c00196{width:3.942400pt;}
._0_c00196{width:4.985600pt;}
._a_c00196{width:6.003200pt;}
._1_c00196{width:7.699200pt;}
._2_c00196{width:8.665600pt;}
._7_c00196{width:9.753600pt;}
._3_c00196{width:10.694400pt;}
._4_c00196{width:14.425600pt;}
._6_c00196{width:17.254400pt;}
._b_c00196{width:20.166400pt;}
._5_c00196{width:22.982400pt;}
.fs1_c00196{font-size:57.600000pt;}
.fs0_c00196{font-size:64.000000pt;}
.y0_c00196{bottom:0.000000pt;}
.y5_c00196{bottom:4.480000pt;}
.y1_c00196{bottom:11.320000pt;}
.y3_c00196{bottom:40.040000pt;}
.y4_c00196{bottom:46.880000pt;}
.y21_c00196{bottom:98.280000pt;}
.y20_c00196{bottom:130.280000pt;}
.y1f_c00196{bottom:162.280000pt;}
.y1e_c00196{bottom:194.280000pt;}
.y1d_c00196{bottom:226.280000pt;}
.y1c_c00196{bottom:258.280000pt;}
.y1b_c00196{bottom:290.280000pt;}
.y1a_c00196{bottom:322.280000pt;}
.y19_c00196{bottom:354.280000pt;}
.y18_c00196{bottom:386.280000pt;}
.y17_c00196{bottom:418.280000pt;}
.y16_c00196{bottom:450.280000pt;}
.y15_c00196{bottom:482.280000pt;}
.y14_c00196{bottom:514.280000pt;}
.y13_c00196{bottom:546.280000pt;}
.y12_c00196{bottom:578.280000pt;}
.y11_c00196{bottom:610.280000pt;}
.y10_c00196{bottom:642.280000pt;}
.yf_c00196{bottom:674.280000pt;}
.ye_c00196{bottom:706.280000pt;}
.yd_c00196{bottom:738.280000pt;}
.yc_c00196{bottom:770.280000pt;}
.yb_c00196{bottom:802.280000pt;}
.ya_c00196{bottom:834.280000pt;}
.y9_c00196{bottom:866.280000pt;}
.y8_c00196{bottom:898.280000pt;}
.y7_c00196{bottom:930.280000pt;}
.y6_c00196{bottom:962.280000pt;}
.y2_c00196{bottom:1035.880000pt;}
.h4_c00196{height:18.560000pt;}
.h6_c00196{height:62.781250pt;}
.h3_c00196{height:62.812500pt;}
.h5_c00196{height:65.781915pt;}
.h2_c00196{height:1099.880000pt;}
.h0_c00196{height:1122.520000pt;}
.h1_c00196{height:1122.666667pt;}
.w3_c00196{width:24.000000pt;}
.w2_c00196{width:771.080000pt;}
.w0_c00196{width:793.720000pt;}
.w1_c00196{width:794.000000pt;}
.x0_c00196{left:0.000000pt;}
.x1_c00196{left:11.320000pt;}
.x3_c00196{left:84.805600pt;}
.x5_c00196{left:132.800133pt;}
.x4_c00196{left:385.080000pt;}
.x2_c00196{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00197{font-family:ff1_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00197;src:url('chunks/assets/font_0abecd8804c9526f08ef1d91.woff2')format("woff");}.ff2_c00197{font-family:ff2_c00197;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00197;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00197{font-family:ff3_c00197;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00197;src:url('chunks/assets/font_c7ead16e6387652f3b02d7a8.woff2')format("woff");}.ff4_c00197{font-family:ff4_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00197;src:url('chunks/assets/font_e8f49ebcce1e3ff378878c8b.woff2')format("woff");}.ff5_c00197{font-family:ff5_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00197;src:url('chunks/assets/font_3e0f001c2321ed0fa19e9c58.woff2')format("woff");}.ff6_c00197{font-family:ff6_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00197;src:url('chunks/assets/font_7175a2c3ef66af029380d499.woff2')format("woff");}.ff7_c00197{font-family:ff7_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00197;src:url('chunks/assets/font_6789c53eaea6cc64984495f7.woff2')format("woff");}.ff8_c00197{font-family:ff8_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00197;src:url('chunks/assets/font_f8fa9cd5d4a9e46388d8cb11.woff2')format("woff");}.ff9_c00197{font-family:ff9_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00197;src:url('chunks/assets/font_051d4e07196a43d47ddee6ae.woff2')format("woff");}.ffa_c00197{font-family:ffa_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00197;src:url('chunks/assets/font_240f27780f1b3c3864f3339a.woff2')format("woff");}.ffb_c00197{font-family:ffb_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00197;src:url('chunks/assets/font_a5ba9238a15335a89c35bd97.woff2')format("woff");}.ffc_c00197{font-family:ffc_c00197;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:ffd_c00197;src:url('chunks/assets/font_70d6da800080a13eccd8c526.woff2')format("woff");}.ffd_c00197{font-family:ffd_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00197;src:url('chunks/assets/font_2458696b49d94367d12c9d76.woff2')format("woff");}.ffe_c00197{font-family:ffe_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00197;src:url('chunks/assets/font_8a9f39778364acf2c1993ef5.woff2')format("woff");}.fff_c00197{font-family:fff_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00197;src:url('chunks/assets/font_2c23738825c561438fc7fe75.woff2')format("woff");}.ff10_c00197{font-family:ff10_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00197;src:url('chunks/assets/font_f457b6db55aa4239fa5dfcd6.woff2')format("woff");}.ff11_c00197{font-family:ff11_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00197;src:url('chunks/assets/font_0312b8553a3cc9692627f28a.woff2')format("woff");}.ff12_c00197{font-family:ff12_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00197;src:url('chunks/assets/font_e445b0b8010d96b65204163f.woff2')format("woff");}.ff13_c00197{font-family:ff13_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00197;src:url('chunks/assets/font_edd6f96b5bfa560675615d4f.woff2')format("woff");}.ff14_c00197{font-family:ff14_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00197;src:url('chunks/assets/font_f17740cfbc2f5d8bf00c2f99.woff2')format("woff");}.ff15_c00197{font-family:ff15_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00197;src:url('chunks/assets/font_c49c4fcd3681c1bf9861ce0b.woff2')format("woff");}.ff16_c00197{font-family:ff16_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00197;src:url('chunks/assets/font_513e97ca4f16fd968d47762a.woff2')format("woff");}.ff17_c00197{font-family:ff17_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00197;src:url('chunks/assets/font_719b5873fceb6e421d5cd2db.woff2')format("woff");}.ff18_c00197{font-family:ff18_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00197;src:url('chunks/assets/font_b26f0fb43e1daae8441fdf1a.woff2')format("woff");}.ff19_c00197{font-family:ff19_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00197;src:url('chunks/assets/font_8a1d34c3951bef34219a95a9.woff2')format("woff");}.ff1a_c00197{font-family:ff1a_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00197;src:url('chunks/assets/font_494948aa92dc207dc8b75cee.woff2')format("woff");}.ff1b_c00197{font-family:ff1b_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00197;src:url('chunks/assets/font_55ea0380d29f891e8858c429.woff2')format("woff");}.ff1c_c00197{font-family:ff1c_c00197;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:ff1d_c00197;src:url('chunks/assets/font_eed12b5ae78b8a85fa0652ce.woff2')format("woff");}.ff1d_c00197{font-family:ff1d_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:ff1e_c00197;src:url('chunks/assets/font_8d6a1c36fce89b1621755314.woff2')format("woff");}.ff1e_c00197{font-family:ff1e_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:ff1f_c00197;src:url('chunks/assets/font_1e761d336ed3306981ca0415.woff2')format("woff");}.ff1f_c00197{font-family:ff1f_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:ff20_c00197;src:url('chunks/assets/font_7e1d82cff9c896f8a3269f6a.woff2')format("woff");}.ff20_c00197{font-family:ff20_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:ff21_c00197;src:url('chunks/assets/font_ba8b9f2ff5e3ee3aeb269b7d.woff2')format("woff");}.ff21_c00197{font-family:ff21_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:ff22_c00197;src:url('chunks/assets/font_09c761bfb7b99ce77ad31286.woff2')format("woff");}.ff22_c00197{font-family:ff22_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:ff23_c00197;src:url('chunks/assets/font_bd4cf5f0b3a21904bfb4dbd9.woff2')format("woff");}.ff23_c00197{font-family:ff23_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:ff24_c00197;src:url('chunks/assets/font_02cc48f5288322bd86702af6.woff2')format("woff");}.ff24_c00197{font-family:ff24_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:ff25_c00197;src:url('chunks/assets/font_087366b17a60a75acf626cb8.woff2')format("woff");}.ff25_c00197{font-family:ff25_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:ff26_c00197;src:url('chunks/assets/font_0b46fa8129576cdc6edc889b.woff2')format("woff");}.ff26_c00197{font-family:ff26_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:ff27_c00197;src:url('chunks/assets/font_a55ab3c8886f4d9e02c85b82.woff2')format("woff");}.ff27_c00197{font-family:ff27_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:ff28_c00197;src:url('chunks/assets/font_3f1c822fb1cd4640cfa6114b.woff2')format("woff");}.ff28_c00197{font-family:ff28_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:ff29_c00197;src:url('chunks/assets/font_3d1434f3c6a3ec09f55064d3.woff2')format("woff");}.ff29_c00197{font-family:ff29_c00197;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00197;src:url('chunks/assets/font_a0e176c271452eb3108641cf.woff2')format("woff");}.ff2a_c00197{font-family:ff2a_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00197;src:url('chunks/assets/font_c03b50d6d28204dedb8aa113.woff2')format("woff");}.ff2b_c00197{font-family:ff2b_c00197;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00197;src:url('chunks/assets/font_5dca7837946a95b8b729b672.woff2')format("woff");}.ff2c_c00197{font-family:ff2c_c00197;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:ff2d_c00197;src:url('chunks/assets/font_2bddfbab8181382704a80242.woff2')format("woff");}.ff2d_c00197{font-family:ff2d_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:ff2e_c00197;src:url('chunks/assets/font_17d74b1d96e250844de54bbd.woff2')format("woff");}.ff2e_c00197{font-family:ff2e_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:ff2f_c00197;src:url('chunks/assets/font_b142ae58741e35b706a4a718.woff2')format("woff");}.ff2f_c00197{font-family:ff2f_c00197;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00197;src:url('chunks/assets/font_522d352dead8932effbb52bb.woff2')format("woff");}.ff30_c00197{font-family:ff30_c00197;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00197{letter-spacing:-0.014400px;}
.ls2_c00197{letter-spacing:0.000000px;}
.ls0_c00197{letter-spacing:0.072000px;}
.ls1_c00197{letter-spacing:0.100800px;}
.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:-0.072000px;}
.ws1_c00197{word-spacing:0.000000px;}
._1_c00197{width:1.008000px;}
._c_c00197{width:3.513600px;}
._5_c00197{width:4.896000px;}
._7_c00197{width:6.127200px;}
._a_c00197{width:7.718400px;}
._b_c00197{width:9.338400px;}
._2_c00197{width:10.828800px;}
._3_c00197{width:11.887200px;}
._d_c00197{width:12.924000px;}
._0_c00197{width:14.047200px;}
._6_c00197{width:16.891200px;}
._9_c00197{width:19.857600px;}
._8_c00197{width:23.709600px;}
._4_c00197{width:29.469600px;}
.fc1_c00197{color:transparent;}
.fc0_c00197{color:rgb(0,0,0);}
.fs1_c00197{font-size:64.800000px;}
.fs0_c00197{font-size:72.000000px;}
.y0_c00197{bottom:0.000000px;}
.y5_c00197{bottom:5.040000px;}
.y1_c00197{bottom:12.735000px;}
.y3_c00197{bottom:45.045000px;}
.y4_c00197{bottom:52.740000px;}
.y21_c00197{bottom:110.565000px;}
.y20_c00197{bottom:146.565000px;}
.y1f_c00197{bottom:182.565000px;}
.y1e_c00197{bottom:218.565000px;}
.y1d_c00197{bottom:254.565000px;}
.y1c_c00197{bottom:290.565000px;}
.y1b_c00197{bottom:326.565000px;}
.y1a_c00197{bottom:362.565000px;}
.y19_c00197{bottom:398.565000px;}
.y18_c00197{bottom:434.565000px;}
.y17_c00197{bottom:470.565000px;}
.y16_c00197{bottom:506.565000px;}
.y15_c00197{bottom:542.565000px;}
.y14_c00197{bottom:578.565000px;}
.y13_c00197{bottom:614.565000px;}
.y12_c00197{bottom:650.565000px;}
.y11_c00197{bottom:686.565000px;}
.y10_c00197{bottom:722.565000px;}
.yf_c00197{bottom:758.565000px;}
.ye_c00197{bottom:794.565000px;}
.yd_c00197{bottom:830.565000px;}
.yc_c00197{bottom:866.565000px;}
.yb_c00197{bottom:902.565000px;}
.ya_c00197{bottom:938.565000px;}
.y9_c00197{bottom:974.565000px;}
.y8_c00197{bottom:1010.565000px;}
.y7_c00197{bottom:1046.565000px;}
.y6_c00197{bottom:1082.565000px;}
.y2_c00197{bottom:1165.365000px;}
.h4_c00197{height:20.880000px;}
.h6_c00197{height:70.628906px;}
.h3_c00197{height:70.664062px;}
.h7_c00197{height:71.824219px;}
.h5_c00197{height:74.004654px;}
.h2_c00197{height:1237.365000px;}
.h0_c00197{height:1262.835000px;}
.h1_c00197{height:1263.000000px;}
.w3_c00197{width:27.000000px;}
.w2_c00197{width:867.465000px;}
.w0_c00197{width:892.935000px;}
.w1_c00197{width:893.250000px;}
.x0_c00197{left:0.000000px;}
.x1_c00197{left:12.735000px;}
.x3_c00197{left:95.406300px;}
.x5_c00197{left:149.400150px;}
.x4_c00197{left:433.215000px;}
.x2_c00197{left:878.550300px;}
@media print{
.v0_c00197{vertical-align:0.000000pt;}
.ls3_c00197{letter-spacing:-0.012800pt;}
.ls2_c00197{letter-spacing:0.000000pt;}
.ls0_c00197{letter-spacing:0.064000pt;}
.ls1_c00197{letter-spacing:0.089600pt;}
.ws0_c00197{word-spacing:-0.064000pt;}
.ws1_c00197{word-spacing:0.000000pt;}
._1_c00197{width:0.896000pt;}
._c_c00197{width:3.123200pt;}
._5_c00197{width:4.352000pt;}
._7_c00197{width:5.446400pt;}
._a_c00197{width:6.860800pt;}
._b_c00197{width:8.300800pt;}
._2_c00197{width:9.625600pt;}
._3_c00197{width:10.566400pt;}
._d_c00197{width:11.488000pt;}
._0_c00197{width:12.486400pt;}
._6_c00197{width:15.014400pt;}
._9_c00197{width:17.651200pt;}
._8_c00197{width:21.075200pt;}
._4_c00197{width:26.195200pt;}
.fs1_c00197{font-size:57.600000pt;}
.fs0_c00197{font-size:64.000000pt;}
.y0_c00197{bottom:0.000000pt;}
.y5_c00197{bottom:4.480000pt;}
.y1_c00197{bottom:11.320000pt;}
.y3_c00197{bottom:40.040000pt;}
.y4_c00197{bottom:46.880000pt;}
.y21_c00197{bottom:98.280000pt;}
.y20_c00197{bottom:130.280000pt;}
.y1f_c00197{bottom:162.280000pt;}
.y1e_c00197{bottom:194.280000pt;}
.y1d_c00197{bottom:226.280000pt;}
.y1c_c00197{bottom:258.280000pt;}
.y1b_c00197{bottom:290.280000pt;}
.y1a_c00197{bottom:322.280000pt;}
.y19_c00197{bottom:354.280000pt;}
.y18_c00197{bottom:386.280000pt;}
.y17_c00197{bottom:418.280000pt;}
.y16_c00197{bottom:450.280000pt;}
.y15_c00197{bottom:482.280000pt;}
.y14_c00197{bottom:514.280000pt;}
.y13_c00197{bottom:546.280000pt;}
.y12_c00197{bottom:578.280000pt;}
.y11_c00197{bottom:610.280000pt;}
.y10_c00197{bottom:642.280000pt;}
.yf_c00197{bottom:674.280000pt;}
.ye_c00197{bottom:706.280000pt;}
.yd_c00197{bottom:738.280000pt;}
.yc_c00197{bottom:770.280000pt;}
.yb_c00197{bottom:802.280000pt;}
.ya_c00197{bottom:834.280000pt;}
.y9_c00197{bottom:866.280000pt;}
.y8_c00197{bottom:898.280000pt;}
.y7_c00197{bottom:930.280000pt;}
.y6_c00197{bottom:962.280000pt;}
.y2_c00197{bottom:1035.880000pt;}
.h4_c00197{height:18.560000pt;}
.h6_c00197{height:62.781250pt;}
.h3_c00197{height:62.812500pt;}
.h7_c00197{height:63.843750pt;}
.h5_c00197{height:65.781915pt;}
.h2_c00197{height:1099.880000pt;}
.h0_c00197{height:1122.520000pt;}
.h1_c00197{height:1122.666667pt;}
.w3_c00197{width:24.000000pt;}
.w2_c00197{width:771.080000pt;}
.w0_c00197{width:793.720000pt;}
.w1_c00197{width:794.000000pt;}
.x0_c00197{left:0.000000pt;}
.x1_c00197{left:11.320000pt;}
.x3_c00197{left:84.805600pt;}
.x5_c00197{left:132.800133pt;}
.x4_c00197{left:385.080000pt;}
.x2_c00197{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f478b4375b28358ec146361.woff2')format("woff");}.ff1_c00198{font-family:ff1_c00198;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00198;src:url('chunks/assets/font_2c7144633bcd2a67afa534ad.woff2')format("woff");}.ff2_c00198{font-family:ff2_c00198;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00198;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00198{font-family:ff3_c00198;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00198;src:url('chunks/assets/font_08cddab178ff9b53d2d53a58.woff2')format("woff");}.ff4_c00198{font-family:ff4_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00198;src:url('chunks/assets/font_04c6b9909660d4dba2eda37c.woff2')format("woff");}.ff5_c00198{font-family:ff5_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00198;src:url('chunks/assets/font_5127d59750ab95f335378d42.woff2')format("woff");}.ff6_c00198{font-family:ff6_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00198;src:url('chunks/assets/font_12b57b0bb40e510d6ef363e3.woff2')format("woff");}.ff7_c00198{font-family:ff7_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00198;src:url('chunks/assets/font_6e8bb9f0b02a29a768f5f1b5.woff2')format("woff");}.ff8_c00198{font-family:ff8_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00198;src:url('chunks/assets/font_d04235fbc6394eb7ef1dbc9e.woff2')format("woff");}.ff9_c00198{font-family:ff9_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00198;src:url('chunks/assets/font_767f17149d2b9061bbca83bb.woff2')format("woff");}.ffa_c00198{font-family:ffa_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00198;src:url('chunks/assets/font_9c0e970a2814a0a7e5b2263b.woff2')format("woff");}.ffb_c00198{font-family:ffb_c00198;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00198;src:url('chunks/assets/font_4569fb3286f0c603cca637dd.woff2')format("woff");}.ffc_c00198{font-family:ffc_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00198;src:url('chunks/assets/font_1ada6fbd14bef1a55750bf7e.woff2')format("woff");}.ffd_c00198{font-family:ffd_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00198;src:url('chunks/assets/font_f6a307e3e06544105db53771.woff2')format("woff");}.ffe_c00198{font-family:ffe_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00198;src:url('chunks/assets/font_768ff8c54a1110f485da08d0.woff2')format("woff");}.fff_c00198{font-family:fff_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00198;src:url('chunks/assets/font_615643303a463db99b407382.woff2')format("woff");}.ff10_c00198{font-family:ff10_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00198;src:url('chunks/assets/font_7956a3188be1d35e89d5bd43.woff2')format("woff");}.ff11_c00198{font-family:ff11_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00198;src:url('chunks/assets/font_ac27d0fa1005350659c682c9.woff2')format("woff");}.ff12_c00198{font-family:ff12_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00198;src:url('chunks/assets/font_6491a7adeb8eb028589b4340.woff2')format("woff");}.ff13_c00198{font-family:ff13_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00198;src:url('chunks/assets/font_1a415201ac3f5c387f8d4345.woff2')format("woff");}.ff14_c00198{font-family:ff14_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00198;src:url('chunks/assets/font_381e41171f22f71ebef68bc5.woff2')format("woff");}.ff15_c00198{font-family:ff15_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00198;src:url('chunks/assets/font_b0dfb6b0239ac8c2bd227aba.woff2')format("woff");}.ff16_c00198{font-family:ff16_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00198;src:url('chunks/assets/font_12148ad9d3574fbee04eb566.woff2')format("woff");}.ff17_c00198{font-family:ff17_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00198;src:url('chunks/assets/font_b87f4e5b1bfb8a5abeb93b5a.woff2')format("woff");}.ff18_c00198{font-family:ff18_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00198;src:url('chunks/assets/font_66ddc0c9fc7544c42ac89b1d.woff2')format("woff");}.ff19_c00198{font-family:ff19_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00198;src:url('chunks/assets/font_218a78ed600a92caf9e962c8.woff2')format("woff");}.ff1a_c00198{font-family:ff1a_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00198;src:url('chunks/assets/font_fafd63e8d0c04e92a48b055c.woff2')format("woff");}.ff1b_c00198{font-family:ff1b_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00198;src:url('chunks/assets/font_fe86e79ef183bb2ee8c16e94.woff2')format("woff");}.ff1c_c00198{font-family:ff1c_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00198;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff1d_c00198{font-family:ff1d_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00198;src:url('chunks/assets/font_a8451cef8b025f4a68eea27f.woff2')format("woff");}.ff1e_c00198{font-family:ff1e_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00198;src:url('chunks/assets/font_d1cd2a6a6e800ef970be0b6b.woff2')format("woff");}.ff1f_c00198{font-family:ff1f_c00198;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00198;src:url('chunks/assets/font_52381c4bd6e7f8604a4be71d.woff2')format("woff");}.ff20_c00198{font-family:ff20_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00198;src:url('chunks/assets/font_4b37e20636e8339447fa96b5.woff2')format("woff");}.ff21_c00198{font-family:ff21_c00198;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00198;src:url('chunks/assets/font_2c34415ee0b8afe49525844e.woff2')format("woff");}.ff22_c00198{font-family:ff22_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00198;src:url('chunks/assets/font_5df99e375a8bef02f2981ee4.woff2')format("woff");}.ff23_c00198{font-family:ff23_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00198;src:url('chunks/assets/font_c8dccc5216073c6c087b9717.woff2')format("woff");}.ff24_c00198{font-family:ff24_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00198;src:url('chunks/assets/font_ca0c25974801edfbbeb56779.woff2')format("woff");}.ff25_c00198{font-family:ff25_c00198;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00198;src:url('chunks/assets/font_d4cd5b1096f0785f8ce7de96.woff2')format("woff");}.ff26_c00198{font-family:ff26_c00198;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00198;src:url('chunks/assets/font_2174ae7e7e3c41bbcfbff046.woff2')format("woff");}.ff27_c00198{font-family:ff27_c00198;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00198;src:url('chunks/assets/font_6e36892e4601c3558394798a.woff2')format("woff");}.ff28_c00198{font-family:ff28_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00198;src:url('chunks/assets/font_d3dc0fcaeb688fe08465165d.woff2')format("woff");}.ff29_c00198{font-family:ff29_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00198;src:url('chunks/assets/font_6bfced0667fbc93d1d14079b.woff2')format("woff");}.ff2a_c00198{font-family:ff2a_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00198;src:url('chunks/assets/font_91a78f051a4e17aaf5489006.woff2')format("woff");}.ff2b_c00198{font-family:ff2b_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00198;src:url('chunks/assets/font_0208002cea496df0c3e27229.woff2')format("woff");}.ff2c_c00198{font-family:ff2c_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00198;src:url('chunks/assets/font_28e23b1131472ca5eeca02f2.woff2')format("woff");}.ff2d_c00198{font-family:ff2d_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00198;src:url('chunks/assets/font_9c827a27637b6a1c00b70504.woff2')format("woff");}.ff2e_c00198{font-family:ff2e_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00198;src:url('chunks/assets/font_e8ee16a1417206db89e339e7.woff2')format("woff");}.ff2f_c00198{font-family:ff2f_c00198;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:ff30_c00198;src:url('chunks/assets/font_5bf95037ecfc1949450630cd.woff2')format("woff");}.ff30_c00198{font-family:ff30_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00198;src:url('chunks/assets/font_5f08402f6b73198765ef3db1.woff2')format("woff");}.ff31_c00198{font-family:ff31_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00198;src:url('chunks/assets/font_7d24d1aeccfbc3d6f12e311d.woff2')format("woff");}.ff32_c00198{font-family:ff32_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00198;src:url('chunks/assets/font_0aad5903c6e3beaf1097a5fd.woff2')format("woff");}.ff33_c00198{font-family:ff33_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00198;src:url('chunks/assets/font_18874d5a635d27024027b524.woff2')format("woff");}.ff34_c00198{font-family:ff34_c00198;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:ff35_c00198;src:url('chunks/assets/font_333aec261731576aacddd8da.woff2')format("woff");}.ff35_c00198{font-family:ff35_c00198;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00198;src:url('chunks/assets/font_a9cca6f4ca908f5fa6d8db21.woff2')format("woff");}.ff36_c00198{font-family:ff36_c00198;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls2_c00198{letter-spacing:-0.014400px;}
.ls1_c00198{letter-spacing:0.000000px;}
.ls0_c00198{letter-spacing:1.101600px;}
.sc__c00198{text-shadow:none;}
.sc0_c00198{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00198{-webkit-text-stroke:0px transparent;}
.sc0_c00198{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00198{word-spacing:-0.072000px;}
.ws1_c00198{word-spacing:0.000000px;}
._5_c00198{width:1.036800px;}
._0_c00198{width:2.606400px;}
._2_c00198{width:3.672000px;}
._4_c00198{width:5.140800px;}
._b_c00198{width:6.177600px;}
._a_c00198{width:7.956000px;}
._3_c00198{width:9.021600px;}
._8_c00198{width:11.073600px;}
._6_c00198{width:13.010400px;}
._c_c00198{width:15.588000px;}
._1_c00198{width:19.022400px;}
._7_c00198{width:20.131200px;}
._9_c00198{width:23.198400px;}
.fc1_c00198{color:transparent;}
.fc0_c00198{color:rgb(0,0,0);}
.fs1_c00198{font-size:64.800000px;}
.fs0_c00198{font-size:72.000000px;}
.y0_c00198{bottom:0.000000px;}
.y5_c00198{bottom:5.040000px;}
.y1_c00198{bottom:12.735000px;}
.y3_c00198{bottom:45.045000px;}
.y4_c00198{bottom:52.740000px;}
.y21_c00198{bottom:110.565000px;}
.y20_c00198{bottom:146.565000px;}
.y1f_c00198{bottom:182.565000px;}
.y1e_c00198{bottom:218.565000px;}
.y1d_c00198{bottom:254.565000px;}
.y1c_c00198{bottom:290.565000px;}
.y1b_c00198{bottom:326.565000px;}
.y1a_c00198{bottom:362.565000px;}
.y19_c00198{bottom:398.565000px;}
.y18_c00198{bottom:434.565000px;}
.y17_c00198{bottom:470.565000px;}
.y16_c00198{bottom:506.565000px;}
.y15_c00198{bottom:542.565000px;}
.y14_c00198{bottom:578.565000px;}
.y13_c00198{bottom:614.565000px;}
.y12_c00198{bottom:650.565000px;}
.y11_c00198{bottom:686.565000px;}
.y10_c00198{bottom:722.565000px;}
.yf_c00198{bottom:758.565000px;}
.ye_c00198{bottom:794.565000px;}
.yd_c00198{bottom:830.565000px;}
.yc_c00198{bottom:866.565000px;}
.yb_c00198{bottom:902.565000px;}
.ya_c00198{bottom:938.565000px;}
.y9_c00198{bottom:974.565000px;}
.y8_c00198{bottom:1010.565000px;}
.y7_c00198{bottom:1046.565000px;}
.y6_c00198{bottom:1082.565000px;}
.y2_c00198{bottom:1165.365000px;}
.h4_c00198{height:20.880000px;}
.h6_c00198{height:70.628906px;}
.h5_c00198{height:70.664062px;}
.h7_c00198{height:71.824219px;}
.h3_c00198{height:74.004654px;}
.h8_c00198{height:74.953125px;}
.h2_c00198{height:1237.365000px;}
.h0_c00198{height:1262.835000px;}
.h1_c00198{height:1263.000000px;}
.w3_c00198{width:27.000000px;}
.w2_c00198{width:867.465000px;}
.w0_c00198{width:892.935000px;}
.w1_c00198{width:893.250000px;}
.x0_c00198{left:0.000000px;}
.x1_c00198{left:12.735000px;}
.x3_c00198{left:95.406300px;}
.x5_c00198{left:149.400150px;}
.x4_c00198{left:433.215000px;}
.x2_c00198{left:878.550300px;}
@media print{
.v0_c00198{vertical-align:0.000000pt;}
.ls2_c00198{letter-spacing:-0.012800pt;}
.ls1_c00198{letter-spacing:0.000000pt;}
.ls0_c00198{letter-spacing:0.979200pt;}
.ws0_c00198{word-spacing:-0.064000pt;}
.ws1_c00198{word-spacing:0.000000pt;}
._5_c00198{width:0.921600pt;}
._0_c00198{width:2.316800pt;}
._2_c00198{width:3.264000pt;}
._4_c00198{width:4.569600pt;}
._b_c00198{width:5.491200pt;}
._a_c00198{width:7.072000pt;}
._3_c00198{width:8.019200pt;}
._8_c00198{width:9.843200pt;}
._6_c00198{width:11.564800pt;}
._c_c00198{width:13.856000pt;}
._1_c00198{width:16.908800pt;}
._7_c00198{width:17.894400pt;}
._9_c00198{width:20.620800pt;}
.fs1_c00198{font-size:57.600000pt;}
.fs0_c00198{font-size:64.000000pt;}
.y0_c00198{bottom:0.000000pt;}
.y5_c00198{bottom:4.480000pt;}
.y1_c00198{bottom:11.320000pt;}
.y3_c00198{bottom:40.040000pt;}
.y4_c00198{bottom:46.880000pt;}
.y21_c00198{bottom:98.280000pt;}
.y20_c00198{bottom:130.280000pt;}
.y1f_c00198{bottom:162.280000pt;}
.y1e_c00198{bottom:194.280000pt;}
.y1d_c00198{bottom:226.280000pt;}
.y1c_c00198{bottom:258.280000pt;}
.y1b_c00198{bottom:290.280000pt;}
.y1a_c00198{bottom:322.280000pt;}
.y19_c00198{bottom:354.280000pt;}
.y18_c00198{bottom:386.280000pt;}
.y17_c00198{bottom:418.280000pt;}
.y16_c00198{bottom:450.280000pt;}
.y15_c00198{bottom:482.280000pt;}
.y14_c00198{bottom:514.280000pt;}
.y13_c00198{bottom:546.280000pt;}
.y12_c00198{bottom:578.280000pt;}
.y11_c00198{bottom:610.280000pt;}
.y10_c00198{bottom:642.280000pt;}
.yf_c00198{bottom:674.280000pt;}
.ye_c00198{bottom:706.280000pt;}
.yd_c00198{bottom:738.280000pt;}
.yc_c00198{bottom:770.280000pt;}
.yb_c00198{bottom:802.280000pt;}
.ya_c00198{bottom:834.280000pt;}
.y9_c00198{bottom:866.280000pt;}
.y8_c00198{bottom:898.280000pt;}
.y7_c00198{bottom:930.280000pt;}
.y6_c00198{bottom:962.280000pt;}
.y2_c00198{bottom:1035.880000pt;}
.h4_c00198{height:18.560000pt;}
.h6_c00198{height:62.781250pt;}
.h5_c00198{height:62.812500pt;}
.h7_c00198{height:63.843750pt;}
.h3_c00198{height:65.781915pt;}
.h8_c00198{height:66.625000pt;}
.h2_c00198{height:1099.880000pt;}
.h0_c00198{height:1122.520000pt;}
.h1_c00198{height:1122.666667pt;}
.w3_c00198{width:24.000000pt;}
.w2_c00198{width:771.080000pt;}
.w0_c00198{width:793.720000pt;}
.w1_c00198{width:794.000000pt;}
.x0_c00198{left:0.000000pt;}
.x1_c00198{left:11.320000pt;}
.x3_c00198{left:84.805600pt;}
.x5_c00198{left:132.800133pt;}
.x4_c00198{left:385.080000pt;}
.x2_c00198{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00199{font-family:ff1_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00199;src:url('chunks/assets/font_78471c23f09669a3c99e56e9.woff2')format("woff");}.ff2_c00199{font-family:ff2_c00199;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00199;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00199{font-family:ff3_c00199;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00199;src:url('chunks/assets/font_9c694ed0e0916e997d3d5ee6.woff2')format("woff");}.ff4_c00199{font-family:ff4_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00199;src:url('chunks/assets/font_0a4f947e02a6cf67972a969e.woff2')format("woff");}.ff5_c00199{font-family:ff5_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00199;src:url('chunks/assets/font_7df230b693a9283ec0f15692.woff2')format("woff");}.ff6_c00199{font-family:ff6_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00199;src:url('chunks/assets/font_4a9548d1a53812634f49dceb.woff2')format("woff");}.ff7_c00199{font-family:ff7_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00199;src:url('chunks/assets/font_38f1e44bee2f885ece475e3e.woff2')format("woff");}.ff8_c00199{font-family:ff8_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00199;src:url('chunks/assets/font_c612ac010358123599585a7f.woff2')format("woff");}.ff9_c00199{font-family:ff9_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00199;src:url('chunks/assets/font_0ba8b5a0a6b3383527764a9b.woff2')format("woff");}.ffa_c00199{font-family:ffa_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00199;src:url('chunks/assets/font_98f8fa6a99e3ee98f132429d.woff2')format("woff");}.ffb_c00199{font-family:ffb_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00199;src:url('chunks/assets/font_9a96dd9826cced345ca30e99.woff2')format("woff");}.ffc_c00199{font-family:ffc_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00199;src:url('chunks/assets/font_bb70d5ba1a6c3ae1e5165f26.woff2')format("woff");}.ffd_c00199{font-family:ffd_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00199;src:url('chunks/assets/font_8d32db06f65c93323304c267.woff2')format("woff");}.ffe_c00199{font-family:ffe_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00199;src:url('chunks/assets/font_571978f1b446f17614416041.woff2')format("woff");}.fff_c00199{font-family:fff_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00199;src:url('chunks/assets/font_52da2090bd51fddb3d95cbeb.woff2')format("woff");}.ff10_c00199{font-family:ff10_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00199;src:url('chunks/assets/font_1eb00a4df746b1b3a1c826d0.woff2')format("woff");}.ff11_c00199{font-family:ff11_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00199;src:url('chunks/assets/font_aca365a42d3e743961f73375.woff2')format("woff");}.ff12_c00199{font-family:ff12_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00199;src:url('chunks/assets/font_45b535d9898fb0e46d0ac45c.woff2')format("woff");}.ff13_c00199{font-family:ff13_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00199;src:url('chunks/assets/font_2acf52d2b561d1810275ceb8.woff2')format("woff");}.ff14_c00199{font-family:ff14_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00199;src:url('chunks/assets/font_9ad68f794b011fc18c981d22.woff2')format("woff");}.ff15_c00199{font-family:ff15_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00199;src:url('chunks/assets/font_7aab52c0b28e6b1d5f088038.woff2')format("woff");}.ff16_c00199{font-family:ff16_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00199;src:url('chunks/assets/font_56146d1d2011758ed9a5d543.woff2')format("woff");}.ff17_c00199{font-family:ff17_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00199;src:url('chunks/assets/font_9288193f722dc2e4504dc00e.woff2')format("woff");}.ff18_c00199{font-family:ff18_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00199;src:url('chunks/assets/font_416e6e65c5271e689492636d.woff2')format("woff");}.ff19_c00199{font-family:ff19_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00199;src:url('chunks/assets/font_36cfacc96878dd40deddcb02.woff2')format("woff");}.ff1a_c00199{font-family:ff1a_c00199;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:ff1b_c00199;src:url('chunks/assets/font_2856df4e1c3419959c88f206.woff2')format("woff");}.ff1b_c00199{font-family:ff1b_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00199;src:url('chunks/assets/font_3de234e970b98439a54b15a2.woff2')format("woff");}.ff1c_c00199{font-family:ff1c_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00199;src:url('chunks/assets/font_fda04c705696f0f31434fe1f.woff2')format("woff");}.ff1d_c00199{font-family:ff1d_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00199;src:url('chunks/assets/font_18b6d533403943017a59865f.woff2')format("woff");}.ff1e_c00199{font-family:ff1e_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00199;src:url('chunks/assets/font_0b84ecaab5f072e04837811a.woff2')format("woff");}.ff1f_c00199{font-family:ff1f_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00199;src:url('chunks/assets/font_4078402f2d02d51688f62f6d.woff2')format("woff");}.ff20_c00199{font-family:ff20_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00199;src:url('chunks/assets/font_c06b0d10296f38f530c52401.woff2')format("woff");}.ff21_c00199{font-family:ff21_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00199;src:url('chunks/assets/font_1a5e85ffd92cd2a8d8d5d2a9.woff2')format("woff");}.ff22_c00199{font-family:ff22_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00199;src:url('chunks/assets/font_7db91c500900408c7c0ce204.woff2')format("woff");}.ff23_c00199{font-family:ff23_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00199;src:url('chunks/assets/font_bcce4304e1e38d10d27f455f.woff2')format("woff");}.ff24_c00199{font-family:ff24_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00199;src:url('chunks/assets/font_8c5d98d79c9285bdaa84fffb.woff2')format("woff");}.ff25_c00199{font-family:ff25_c00199;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:ff26_c00199;src:url('chunks/assets/font_dcaf82339632724a3f137bfd.woff2')format("woff");}.ff26_c00199{font-family:ff26_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00199;src:url('chunks/assets/font_b49eb665e5df83005ca4d252.woff2')format("woff");}.ff27_c00199{font-family:ff27_c00199;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:ff28_c00199;src:url('chunks/assets/font_260a2c1eb730949cda716ab9.woff2')format("woff");}.ff28_c00199{font-family:ff28_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00199;src:url('chunks/assets/font_e8af49a27ef89e56d42056d6.woff2')format("woff");}.ff29_c00199{font-family:ff29_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00199;src:url('chunks/assets/font_5bc1d4e1397de718a9aec5f1.woff2')format("woff");}.ff2a_c00199{font-family:ff2a_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00199;src:url('chunks/assets/font_3859f2e83d224a5b9af31734.woff2')format("woff");}.ff2b_c00199{font-family:ff2b_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00199;src:url('chunks/assets/font_f325625355fe0b3e1aae28fe.woff2')format("woff");}.ff2c_c00199{font-family:ff2c_c00199;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00199;src:url('chunks/assets/font_a8b22d3bd1f3bbda39fe9522.woff2')format("woff");}.ff2d_c00199{font-family:ff2d_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00199;src:url('chunks/assets/font_1e801cb433b35e688e597830.woff2')format("woff");}.ff2e_c00199{font-family:ff2e_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00199;src:url('chunks/assets/font_445e532108e1bf6b05c3eb43.woff2')format("woff");}.ff2f_c00199{font-family:ff2f_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00199;src:url('chunks/assets/font_e527a25dd6fc73a3146d9a2c.woff2')format("woff");}.ff30_c00199{font-family:ff30_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00199;src:url('chunks/assets/font_7902844d4cdb33dfdb121fcc.woff2')format("woff");}.ff31_c00199{font-family:ff31_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00199;src:url('chunks/assets/font_ca9d42bcc3c3a71d10fa7b7d.woff2')format("woff");}.ff32_c00199{font-family:ff32_c00199;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:ff33_c00199;src:url('chunks/assets/font_694400e32396627541e965d8.woff2')format("woff");}.ff33_c00199{font-family:ff33_c00199;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00199{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00199{vertical-align:0.000000px;}
.ls3_c00199{letter-spacing:0.000000px;}
.ls1_c00199{letter-spacing:0.043200px;}
.ls0_c00199{letter-spacing:0.086400px;}
.ls2_c00199{letter-spacing:9.367200px;}
.sc__c00199{text-shadow:none;}
.sc0_c00199{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00199{-webkit-text-stroke:0px transparent;}
.sc0_c00199{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00199{word-spacing:-18.000000px;}
.ws0_c00199{word-spacing:-0.072000px;}
.ws2_c00199{word-spacing:0.000000px;}
._8_c00199{width:1.072800px;}
._6_c00199{width:2.520000px;}
._0_c00199{width:3.837600px;}
._2_c00199{width:5.220000px;}
._a_c00199{width:7.120800px;}
._d_c00199{width:8.517600px;}
._4_c00199{width:10.288800px;}
._9_c00199{width:11.332800px;}
._3_c00199{width:12.643200px;}
._c_c00199{width:13.809600px;}
._1_c00199{width:14.853600px;}
._7_c00199{width:16.509600px;}
._b_c00199{width:22.579200px;}
._5_c00199{width:27.043200px;}
.fc1_c00199{color:transparent;}
.fc0_c00199{color:rgb(0,0,0);}
.fs1_c00199{font-size:64.800000px;}
.fs0_c00199{font-size:72.000000px;}
.y0_c00199{bottom:0.000000px;}
.y5_c00199{bottom:5.040000px;}
.y1_c00199{bottom:12.735000px;}
.y3_c00199{bottom:45.045000px;}
.y4_c00199{bottom:52.740000px;}
.y21_c00199{bottom:110.565000px;}
.y20_c00199{bottom:146.565000px;}
.y1f_c00199{bottom:182.565000px;}
.y1e_c00199{bottom:218.565000px;}
.y1d_c00199{bottom:254.565000px;}
.y1c_c00199{bottom:290.565000px;}
.y1b_c00199{bottom:326.565000px;}
.y1a_c00199{bottom:362.565000px;}
.y19_c00199{bottom:398.565000px;}
.y18_c00199{bottom:434.565000px;}
.y17_c00199{bottom:470.565000px;}
.y16_c00199{bottom:506.565000px;}
.y15_c00199{bottom:542.565000px;}
.y14_c00199{bottom:578.565000px;}
.y13_c00199{bottom:614.565000px;}
.y12_c00199{bottom:650.565000px;}
.y11_c00199{bottom:686.565000px;}
.y10_c00199{bottom:722.565000px;}
.yf_c00199{bottom:758.565000px;}
.ye_c00199{bottom:794.565000px;}
.yd_c00199{bottom:830.565000px;}
.yc_c00199{bottom:866.565000px;}
.yb_c00199{bottom:902.565000px;}
.ya_c00199{bottom:938.565000px;}
.y9_c00199{bottom:974.565000px;}
.y8_c00199{bottom:1010.565000px;}
.y7_c00199{bottom:1046.565000px;}
.y6_c00199{bottom:1082.565000px;}
.y2_c00199{bottom:1165.365000px;}
.h4_c00199{height:20.880000px;}
.h3_c00199{height:70.664062px;}
.h6_c00199{height:71.824219px;}
.h5_c00199{height:74.004654px;}
.h2_c00199{height:1237.365000px;}
.h0_c00199{height:1262.835000px;}
.h1_c00199{height:1263.000000px;}
.w3_c00199{width:27.000000px;}
.w2_c00199{width:867.465000px;}
.w0_c00199{width:892.935000px;}
.w1_c00199{width:893.250000px;}
.x0_c00199{left:0.000000px;}
.x1_c00199{left:12.735000px;}
.x3_c00199{left:95.406300px;}
.x5_c00199{left:149.400150px;}
.x4_c00199{left:433.215000px;}
.x2_c00199{left:878.550300px;}
@media print{
.v0_c00199{vertical-align:0.000000pt;}
.ls3_c00199{letter-spacing:0.000000pt;}
.ls1_c00199{letter-spacing:0.038400pt;}
.ls0_c00199{letter-spacing:0.076800pt;}
.ls2_c00199{letter-spacing:8.326400pt;}
.ws1_c00199{word-spacing:-16.000000pt;}
.ws0_c00199{word-spacing:-0.064000pt;}
.ws2_c00199{word-spacing:0.000000pt;}
._8_c00199{width:0.953600pt;}
._6_c00199{width:2.240000pt;}
._0_c00199{width:3.411200pt;}
._2_c00199{width:4.640000pt;}
._a_c00199{width:6.329600pt;}
._d_c00199{width:7.571200pt;}
._4_c00199{width:9.145600pt;}
._9_c00199{width:10.073600pt;}
._3_c00199{width:11.238400pt;}
._c_c00199{width:12.275200pt;}
._1_c00199{width:13.203200pt;}
._7_c00199{width:14.675200pt;}
._b_c00199{width:20.070400pt;}
._5_c00199{width:24.038400pt;}
.fs1_c00199{font-size:57.600000pt;}
.fs0_c00199{font-size:64.000000pt;}
.y0_c00199{bottom:0.000000pt;}
.y5_c00199{bottom:4.480000pt;}
.y1_c00199{bottom:11.320000pt;}
.y3_c00199{bottom:40.040000pt;}
.y4_c00199{bottom:46.880000pt;}
.y21_c00199{bottom:98.280000pt;}
.y20_c00199{bottom:130.280000pt;}
.y1f_c00199{bottom:162.280000pt;}
.y1e_c00199{bottom:194.280000pt;}
.y1d_c00199{bottom:226.280000pt;}
.y1c_c00199{bottom:258.280000pt;}
.y1b_c00199{bottom:290.280000pt;}
.y1a_c00199{bottom:322.280000pt;}
.y19_c00199{bottom:354.280000pt;}
.y18_c00199{bottom:386.280000pt;}
.y17_c00199{bottom:418.280000pt;}
.y16_c00199{bottom:450.280000pt;}
.y15_c00199{bottom:482.280000pt;}
.y14_c00199{bottom:514.280000pt;}
.y13_c00199{bottom:546.280000pt;}
.y12_c00199{bottom:578.280000pt;}
.y11_c00199{bottom:610.280000pt;}
.y10_c00199{bottom:642.280000pt;}
.yf_c00199{bottom:674.280000pt;}
.ye_c00199{bottom:706.280000pt;}
.yd_c00199{bottom:738.280000pt;}
.yc_c00199{bottom:770.280000pt;}
.yb_c00199{bottom:802.280000pt;}
.ya_c00199{bottom:834.280000pt;}
.y9_c00199{bottom:866.280000pt;}
.y8_c00199{bottom:898.280000pt;}
.y7_c00199{bottom:930.280000pt;}
.y6_c00199{bottom:962.280000pt;}
.y2_c00199{bottom:1035.880000pt;}
.h4_c00199{height:18.560000pt;}
.h3_c00199{height:62.812500pt;}
.h6_c00199{height:63.843750pt;}
.h5_c00199{height:65.781915pt;}
.h2_c00199{height:1099.880000pt;}
.h0_c00199{height:1122.520000pt;}
.h1_c00199{height:1122.666667pt;}
.w3_c00199{width:24.000000pt;}
.w2_c00199{width:771.080000pt;}
.w0_c00199{width:793.720000pt;}
.w1_c00199{width:794.000000pt;}
.x0_c00199{left:0.000000pt;}
.x1_c00199{left:11.320000pt;}
.x3_c00199{left:84.805600pt;}
.x5_c00199{left:132.800133pt;}
.x4_c00199{left:385.080000pt;}
.x2_c00199{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_719a51162ed4b5a086dedd8b.woff2')format("woff");}.ff1_c00200{font-family:ff1_c00200;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00200;src:url('chunks/assets/font_07310879a5eb5eac22075dfc.woff2')format("woff");}.ff2_c00200{font-family:ff2_c00200;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00200;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00200{font-family:ff3_c00200;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00200;src:url('chunks/assets/font_b7c343b993baf35ce929fcbc.woff2')format("woff");}.ff4_c00200{font-family:ff4_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00200;src:url('chunks/assets/font_1cae6c5f2e7d38354e0a7c68.woff2')format("woff");}.ff5_c00200{font-family:ff5_c00200;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_c00200;src:url('chunks/assets/font_d54125154d0deb91f3eeb4c8.woff2')format("woff");}.ff6_c00200{font-family:ff6_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:ff7_c00200;src:url('chunks/assets/font_c3455098dbac61219bcbc014.woff2')format("woff");}.ff7_c00200{font-family:ff7_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:ff8_c00200;src:url('chunks/assets/font_5f853a73eda8f567679dcfa4.woff2')format("woff");}.ff8_c00200{font-family:ff8_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:ff9_c00200;src:url('chunks/assets/font_185fb1f8b5c3edee5a58d182.woff2')format("woff");}.ff9_c00200{font-family:ff9_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:ffa_c00200;src:url('chunks/assets/font_1c813a2b3c5cfb49d811089c.woff2')format("woff");}.ffa_c00200{font-family:ffa_c00200;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00200;src:url('chunks/assets/font_ab464bef8beb658f23145a53.woff2')format("woff");}.ffb_c00200{font-family:ffb_c00200;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00200;src:url('chunks/assets/font_006d7bca71d4ad40d05d4430.woff2')format("woff");}.ffc_c00200{font-family:ffc_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00200;src:url('chunks/assets/font_f352c478b7c6a0a9ff09723b.woff2')format("woff");}.ffd_c00200{font-family:ffd_c00200;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:ffe_c00200;src:url('chunks/assets/font_3011b8d3b04b7d9a3da6e55a.woff2')format("woff");}.ffe_c00200{font-family:ffe_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00200;src:url('chunks/assets/font_29fe5a0755fed87f4dc5445e.woff2')format("woff");}.fff_c00200{font-family:fff_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00200;src:url('chunks/assets/font_27fde0ce2e960110a2dca2b2.woff2')format("woff");}.ff10_c00200{font-family:ff10_c00200;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:ff11_c00200;src:url('chunks/assets/font_7d340c4a4b721486bedf0137.woff2')format("woff");}.ff11_c00200{font-family:ff11_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:ff12_c00200;src:url('chunks/assets/font_b55c79bcfbb1d37c46639abd.woff2')format("woff");}.ff12_c00200{font-family:ff12_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:ff13_c00200;src:url('chunks/assets/font_55229f9fdf241f6626a028a1.woff2')format("woff");}.ff13_c00200{font-family:ff13_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:ff14_c00200;src:url('chunks/assets/font_cb68aa8c2396f037b6d5edb5.woff2')format("woff");}.ff14_c00200{font-family:ff14_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:ff15_c00200;src:url('chunks/assets/font_afb3ed132da0ed5b2f1bdd7c.woff2')format("woff");}.ff15_c00200{font-family:ff15_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:ff16_c00200;src:url('chunks/assets/font_b3ebf1576a396dc29ffdb100.woff2')format("woff");}.ff16_c00200{font-family:ff16_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:ff17_c00200;src:url('chunks/assets/font_947b1cc085dbce550fa32586.woff2')format("woff");}.ff17_c00200{font-family:ff17_c00200;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00200;src:url('chunks/assets/font_6de9d93568c6ffc62f66c099.woff2')format("woff");}.ff18_c00200{font-family:ff18_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:ff19_c00200;src:url('chunks/assets/font_c083df87ea54fefea76d52f1.woff2')format("woff");}.ff19_c00200{font-family:ff19_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:ff1a_c00200;src:url('chunks/assets/font_44137c457a4e6871b1b75e67.woff2')format("woff");}.ff1a_c00200{font-family:ff1a_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:ff1b_c00200;src:url('chunks/assets/font_f6326f61dc842c52facb8aa3.woff2')format("woff");}.ff1b_c00200{font-family:ff1b_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:ff1c_c00200;src:url('chunks/assets/font_9b294854c831a430bb944ada.woff2')format("woff");}.ff1c_c00200{font-family:ff1c_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:ff1d_c00200;src:url('chunks/assets/font_b57bac4ebb64fa05f5d92803.woff2')format("woff");}.ff1d_c00200{font-family:ff1d_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:ff1e_c00200;src:url('chunks/assets/font_581ecbd8511e7a41bc89711e.woff2')format("woff");}.ff1e_c00200{font-family:ff1e_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:ff1f_c00200;src:url('chunks/assets/font_07ac1ec988d813645be7833a.woff2')format("woff");}.ff1f_c00200{font-family:ff1f_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:ff20_c00200;src:url('chunks/assets/font_0c995b5ed664eee1d0fabb3b.woff2')format("woff");}.ff20_c00200{font-family:ff20_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:ff21_c00200;src:url('chunks/assets/font_248971781a6a54e967552485.woff2')format("woff");}.ff21_c00200{font-family:ff21_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:ff22_c00200;src:url('chunks/assets/font_e09f595cc9c58e72b18b5732.woff2')format("woff");}.ff22_c00200{font-family:ff22_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:ff23_c00200;src:url('chunks/assets/font_2ffeb552313a159e6f448b6d.woff2')format("woff");}.ff23_c00200{font-family:ff23_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:ff24_c00200;src:url('chunks/assets/font_8f1c18dc4bf2039bce4ca694.woff2')format("woff");}.ff24_c00200{font-family:ff24_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:ff25_c00200;src:url('chunks/assets/font_2def3aa9ccb03dce7c411dfa.woff2')format("woff");}.ff25_c00200{font-family:ff25_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:ff26_c00200;src:url('chunks/assets/font_2213abf5c1f1b106f498b9c1.woff2')format("woff");}.ff26_c00200{font-family:ff26_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:ff27_c00200;src:url('chunks/assets/font_edad2421a1ff525a7702833c.woff2')format("woff");}.ff27_c00200{font-family:ff27_c00200;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:ff28_c00200;src:url('chunks/assets/font_080a6aa4d05ab3834187337b.woff2')format("woff");}.ff28_c00200{font-family:ff28_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00200;src:url('chunks/assets/font_0322009807209c46821582e8.woff2')format("woff");}.ff29_c00200{font-family:ff29_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00200;src:url('chunks/assets/font_67419883cc18ab970b5d0c5e.woff2')format("woff");}.ff2a_c00200{font-family:ff2a_c00200;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00200;src:url('chunks/assets/font_694d75fc4d49168526f5008b.woff2')format("woff");}.ff2b_c00200{font-family:ff2b_c00200;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00200;src:url('chunks/assets/font_29dbe4a059a0ad285f8b10b0.woff2')format("woff");}.ff2c_c00200{font-family:ff2c_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00200;src:url('chunks/assets/font_d404601159f6880cda67dc38.woff2')format("woff");}.ff2d_c00200{font-family:ff2d_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00200;src:url('chunks/assets/font_3b10cca2b02353d9dd479b45.woff2')format("woff");}.ff2e_c00200{font-family:ff2e_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00200;src:url('chunks/assets/font_bd34fcb2b3e29cecbd138283.woff2')format("woff");}.ff2f_c00200{font-family:ff2f_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00200;src:url('chunks/assets/font_708306cc7ed9fc51fcaea6fe.woff2')format("woff");}.ff30_c00200{font-family:ff30_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00200;src:url('chunks/assets/font_70f7499a6f3efd2b6dd1a0c0.woff2')format("woff");}.ff31_c00200{font-family:ff31_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00200;src:url('chunks/assets/font_c50da70e77b20b16860af59d.woff2')format("woff");}.ff32_c00200{font-family:ff32_c00200;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:ff33_c00200;src:url('chunks/assets/font_c02b16387d4452145ad84d30.woff2')format("woff");}.ff33_c00200{font-family:ff33_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00200;src:url('chunks/assets/font_82586ce75e84b7e7168ed071.woff2')format("woff");}.ff34_c00200{font-family:ff34_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00200;src:url('chunks/assets/font_c0cf4125de5c0ca6138fcffb.woff2')format("woff");}.ff35_c00200{font-family:ff35_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00200;src:url('chunks/assets/font_57569872a6cf95034af975cd.woff2')format("woff");}.ff36_c00200{font-family:ff36_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00200;src:url('chunks/assets/font_c50da70e77b20b16860af59d.woff2')format("woff");}.ff37_c00200{font-family:ff37_c00200;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:ff38_c00200;src:url('chunks/assets/font_51c4fc3a6187f6a7f9ae8747.woff2')format("woff");}.ff38_c00200{font-family:ff38_c00200;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00200;src:url('chunks/assets/font_437de980a57c4916e33eb41a.woff2')format("woff");}.ff39_c00200{font-family:ff39_c00200;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:ff3a_c00200;src:url('chunks/assets/font_e63120571bf10b124367ae19.woff2')format("woff");}.ff3a_c00200{font-family:ff3a_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:ff3b_c00200;src:url('chunks/assets/font_bfb8ab3adb1a48330eac7402.woff2')format("woff");}.ff3b_c00200{font-family:ff3b_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:ff3c_c00200;src:url('chunks/assets/font_f3ac4c869fff378200cfb9b2.woff2')format("woff");}.ff3c_c00200{font-family:ff3c_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:ff3d_c00200;src:url('chunks/assets/font_8d3a1ad3278c4ece0507d1e2.woff2')format("woff");}.ff3d_c00200{font-family:ff3d_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:ff3e_c00200;src:url('chunks/assets/font_2e4d76abefe1ee199f5a42b9.woff2')format("woff");}.ff3e_c00200{font-family:ff3e_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:ff3f_c00200;src:url('chunks/assets/font_9b6c43b6142c55a2d2d07a60.woff2')format("woff");}.ff3f_c00200{font-family:ff3f_c00200;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00200;src:url('chunks/assets/font_722ae1c44fbdc188c6aca2d9.woff2')format("woff");}.ff40_c00200{font-family:ff40_c00200;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00200{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00200{vertical-align:0.000000px;}
.ls3_c00200{letter-spacing:0.000000px;}
.ls0_c00200{letter-spacing:1.440000px;}
.ls1_c00200{letter-spacing:3.225600px;}
.ls2_c00200{letter-spacing:4.500000px;}
.sc__c00200{text-shadow:none;}
.sc0_c00200{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00200{-webkit-text-stroke:0px transparent;}
.sc0_c00200{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00200{word-spacing:-0.072000px;}
.ws1_c00200{word-spacing:0.000000px;}
._a_c00200{margin-left:-1.274400px;}
._2_c00200{width:1.404000px;}
._7_c00200{width:2.592000px;}
._4_c00200{width:4.032000px;}
._0_c00200{width:5.184000px;}
._5_c00200{width:6.840000px;}
._6_c00200{width:8.064000px;}
._8_c00200{width:9.748800px;}
._b_c00200{width:11.001600px;}
._9_c00200{width:12.240000px;}
._1_c00200{width:14.126400px;}
._3_c00200{width:16.862400px;}
.fc1_c00200{color:transparent;}
.fc0_c00200{color:rgb(0,0,0);}
.fs1_c00200{font-size:64.800000px;}
.fs0_c00200{font-size:72.000000px;}
.y0_c00200{bottom:0.000000px;}
.y5_c00200{bottom:5.040000px;}
.y1_c00200{bottom:12.735000px;}
.y3_c00200{bottom:45.045000px;}
.y4_c00200{bottom:52.740000px;}
.y21_c00200{bottom:110.565000px;}
.y20_c00200{bottom:146.565000px;}
.y1f_c00200{bottom:182.565000px;}
.y1e_c00200{bottom:218.565000px;}
.y1d_c00200{bottom:254.565000px;}
.y1c_c00200{bottom:290.565000px;}
.y1b_c00200{bottom:326.565000px;}
.y1a_c00200{bottom:362.565000px;}
.y19_c00200{bottom:398.565000px;}
.y18_c00200{bottom:434.565000px;}
.y17_c00200{bottom:470.565000px;}
.y16_c00200{bottom:506.565000px;}
.y15_c00200{bottom:542.565000px;}
.y14_c00200{bottom:578.565000px;}
.y13_c00200{bottom:614.565000px;}
.y12_c00200{bottom:650.565000px;}
.y11_c00200{bottom:686.565000px;}
.y10_c00200{bottom:722.565000px;}
.yf_c00200{bottom:758.565000px;}
.ye_c00200{bottom:794.565000px;}
.yd_c00200{bottom:830.565000px;}
.yc_c00200{bottom:866.565000px;}
.yb_c00200{bottom:902.565000px;}
.ya_c00200{bottom:938.565000px;}
.y9_c00200{bottom:974.565000px;}
.y8_c00200{bottom:1010.565000px;}
.y7_c00200{bottom:1046.565000px;}
.y6_c00200{bottom:1082.565000px;}
.y2_c00200{bottom:1165.365000px;}
.h4_c00200{height:20.880000px;}
.h5_c00200{height:70.628906px;}
.h7_c00200{height:70.664062px;}
.h6_c00200{height:71.824219px;}
.h3_c00200{height:74.004654px;}
.h2_c00200{height:1237.365000px;}
.h0_c00200{height:1262.835000px;}
.h1_c00200{height:1263.000000px;}
.w3_c00200{width:27.000000px;}
.w2_c00200{width:867.465000px;}
.w0_c00200{width:892.935000px;}
.w1_c00200{width:893.250000px;}
.x0_c00200{left:0.000000px;}
.x1_c00200{left:12.735000px;}
.x3_c00200{left:95.406300px;}
.x5_c00200{left:149.400150px;}
.x4_c00200{left:433.215000px;}
.x2_c00200{left:878.550300px;}
@media print{
.v0_c00200{vertical-align:0.000000pt;}
.ls3_c00200{letter-spacing:0.000000pt;}
.ls0_c00200{letter-spacing:1.280000pt;}
.ls1_c00200{letter-spacing:2.867200pt;}
.ls2_c00200{letter-spacing:4.000000pt;}
.ws0_c00200{word-spacing:-0.064000pt;}
.ws1_c00200{word-spacing:0.000000pt;}
._a_c00200{margin-left:-1.132800pt;}
._2_c00200{width:1.248000pt;}
._7_c00200{width:2.304000pt;}
._4_c00200{width:3.584000pt;}
._0_c00200{width:4.608000pt;}
._5_c00200{width:6.080000pt;}
._6_c00200{width:7.168000pt;}
._8_c00200{width:8.665600pt;}
._b_c00200{width:9.779200pt;}
._9_c00200{width:10.880000pt;}
._1_c00200{width:12.556800pt;}
._3_c00200{width:14.988800pt;}
.fs1_c00200{font-size:57.600000pt;}
.fs0_c00200{font-size:64.000000pt;}
.y0_c00200{bottom:0.000000pt;}
.y5_c00200{bottom:4.480000pt;}
.y1_c00200{bottom:11.320000pt;}
.y3_c00200{bottom:40.040000pt;}
.y4_c00200{bottom:46.880000pt;}
.y21_c00200{bottom:98.280000pt;}
.y20_c00200{bottom:130.280000pt;}
.y1f_c00200{bottom:162.280000pt;}
.y1e_c00200{bottom:194.280000pt;}
.y1d_c00200{bottom:226.280000pt;}
.y1c_c00200{bottom:258.280000pt;}
.y1b_c00200{bottom:290.280000pt;}
.y1a_c00200{bottom:322.280000pt;}
.y19_c00200{bottom:354.280000pt;}
.y18_c00200{bottom:386.280000pt;}
.y17_c00200{bottom:418.280000pt;}
.y16_c00200{bottom:450.280000pt;}
.y15_c00200{bottom:482.280000pt;}
.y14_c00200{bottom:514.280000pt;}
.y13_c00200{bottom:546.280000pt;}
.y12_c00200{bottom:578.280000pt;}
.y11_c00200{bottom:610.280000pt;}
.y10_c00200{bottom:642.280000pt;}
.yf_c00200{bottom:674.280000pt;}
.ye_c00200{bottom:706.280000pt;}
.yd_c00200{bottom:738.280000pt;}
.yc_c00200{bottom:770.280000pt;}
.yb_c00200{bottom:802.280000pt;}
.ya_c00200{bottom:834.280000pt;}
.y9_c00200{bottom:866.280000pt;}
.y8_c00200{bottom:898.280000pt;}
.y7_c00200{bottom:930.280000pt;}
.y6_c00200{bottom:962.280000pt;}
.y2_c00200{bottom:1035.880000pt;}
.h4_c00200{height:18.560000pt;}
.h5_c00200{height:62.781250pt;}
.h7_c00200{height:62.812500pt;}
.h6_c00200{height:63.843750pt;}
.h3_c00200{height:65.781915pt;}
.h2_c00200{height:1099.880000pt;}
.h0_c00200{height:1122.520000pt;}
.h1_c00200{height:1122.666667pt;}
.w3_c00200{width:24.000000pt;}
.w2_c00200{width:771.080000pt;}
.w0_c00200{width:793.720000pt;}
.w1_c00200{width:794.000000pt;}
.x0_c00200{left:0.000000pt;}
.x1_c00200{left:11.320000pt;}
.x3_c00200{left:84.805600pt;}
.x5_c00200{left:132.800133pt;}
.x4_c00200{left:385.080000pt;}
.x2_c00200{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00201{font-family:ff1_c00201;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00201;src:url('chunks/assets/font_fcd0b54019e75cc659dd731d.woff2')format("woff");}.ff2_c00201{font-family:ff2_c00201;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00201;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00201{font-family:ff3_c00201;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00201;src:url('chunks/assets/font_1a4f6db196ae1c4c242ed1c7.woff2')format("woff");}.ff4_c00201{font-family:ff4_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:ff5_c00201;src:url('chunks/assets/font_8064b713b06026ea9421e7a3.woff2')format("woff");}.ff5_c00201{font-family:ff5_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:ff6_c00201;src:url('chunks/assets/font_801610a7177efefd2bc26212.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_f7badc603d57db25ac16a85b.woff2')format("woff");}.ff7_c00201{font-family:ff7_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:ff8_c00201;src:url('chunks/assets/font_88f5957ba52532a8d14fd353.woff2')format("woff");}.ff8_c00201{font-family:ff8_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:ff9_c00201;src:url('chunks/assets/font_c0f463367106e3d59d5d5422.woff2')format("woff");}.ff9_c00201{font-family:ff9_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:ffa_c00201;src:url('chunks/assets/font_55b0c041a2409c06724fe011.woff2')format("woff");}.ffa_c00201{font-family:ffa_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:ffb_c00201;src:url('chunks/assets/font_8d62acf07666e262033262c3.woff2')format("woff");}.ffb_c00201{font-family:ffb_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:ffc_c00201;src:url('chunks/assets/font_08c0a38488d34f46aa07cf71.woff2')format("woff");}.ffc_c00201{font-family:ffc_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:ffd_c00201;src:url('chunks/assets/font_ab9cf29097910528b96e4e3f.woff2')format("woff");}.ffd_c00201{font-family:ffd_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:ffe_c00201;src:url('chunks/assets/font_c37bb77cd326cada12311cff.woff2')format("woff");}.ffe_c00201{font-family:ffe_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:fff_c00201;src:url('chunks/assets/font_3679b5f0ce285836287c0475.woff2')format("woff");}.fff_c00201{font-family:fff_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:ff10_c00201;src:url('chunks/assets/font_5fc0ff97c88867e2aba54289.woff2')format("woff");}.ff10_c00201{font-family:ff10_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:ff11_c00201;src:url('chunks/assets/font_34f9c1ecb43b4b61d9212484.woff2')format("woff");}.ff11_c00201{font-family:ff11_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:ff12_c00201;src:url('chunks/assets/font_2a70c3b10ea387816283e537.woff2')format("woff");}.ff12_c00201{font-family:ff12_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:ff13_c00201;src:url('chunks/assets/font_66b78ffdeeb215d4b7c847e2.woff2')format("woff");}.ff13_c00201{font-family:ff13_c00201;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00201;src:url('chunks/assets/font_39124b22d4109ca8f32327c0.woff2')format("woff");}.ff14_c00201{font-family:ff14_c00201;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00201;src:url('chunks/assets/font_11f0a4b3367f13fb0b488a61.woff2')format("woff");}.ff15_c00201{font-family:ff15_c00201;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00201;src:url('chunks/assets/font_da4b3bb0224ba2a62b5bd89a.woff2')format("woff");}.ff16_c00201{font-family:ff16_c00201;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00201;src:url('chunks/assets/font_50e0ea0c3aafbd1473f3d62a.woff2')format("woff");}.ff17_c00201{font-family:ff17_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:ff18_c00201;src:url('chunks/assets/font_635d6d7ac344fa6bc1d6d834.woff2')format("woff");}.ff18_c00201{font-family:ff18_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:ff19_c00201;src:url('chunks/assets/font_d05713b0cade1d60e9ae7f36.woff2')format("woff");}.ff19_c00201{font-family:ff19_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:ff1a_c00201;src:url('chunks/assets/font_c371ebbe76422fb9b23338b9.woff2')format("woff");}.ff1a_c00201{font-family:ff1a_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:ff1b_c00201;src:url('chunks/assets/font_2af046b9354657159c725185.woff2')format("woff");}.ff1b_c00201{font-family:ff1b_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:ff1c_c00201;src:url('chunks/assets/font_c41b0e2cca5ae47c936ce81a.woff2')format("woff");}.ff1c_c00201{font-family:ff1c_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:ff1d_c00201;src:url('chunks/assets/font_f595069c88b51e1b59480de5.woff2')format("woff");}.ff1d_c00201{font-family:ff1d_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:ff1e_c00201;src:url('chunks/assets/font_b8f7e5d7cdc30027f7c7081c.woff2')format("woff");}.ff1e_c00201{font-family:ff1e_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:ff1f_c00201;src:url('chunks/assets/font_e307b091a113e59e2dd830be.woff2')format("woff");}.ff1f_c00201{font-family:ff1f_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:ff20_c00201;src:url('chunks/assets/font_61072584a12abf7fbd9b337d.woff2')format("woff");}.ff20_c00201{font-family:ff20_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:ff21_c00201;src:url('chunks/assets/font_f05b7b28efcc4bb0f37f0069.woff2')format("woff");}.ff21_c00201{font-family:ff21_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:ff22_c00201;src:url('chunks/assets/font_b07132a0863e4375c034e5a1.woff2')format("woff");}.ff22_c00201{font-family:ff22_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:ff23_c00201;src:url('chunks/assets/font_2422e550ee32e7fd4e269569.woff2')format("woff");}.ff23_c00201{font-family:ff23_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:ff24_c00201;src:url('chunks/assets/font_d95791328af58cec14813bb0.woff2')format("woff");}.ff24_c00201{font-family:ff24_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:ff25_c00201;src:url('chunks/assets/font_55f9d4b9c2034db2c4f5fff0.woff2')format("woff");}.ff25_c00201{font-family:ff25_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:ff26_c00201;src:url('chunks/assets/font_462724f6716b360f24dffb48.woff2')format("woff");}.ff26_c00201{font-family:ff26_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:ff27_c00201;src:url('chunks/assets/font_a20d38577a5f5ce223d8f377.woff2')format("woff");}.ff27_c00201{font-family:ff27_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:ff28_c00201;src:url('chunks/assets/font_cf36b4eb58474587a51c1197.woff2')format("woff");}.ff28_c00201{font-family:ff28_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;}
.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;}
.ls2_c00201{letter-spacing:-0.014400px;}
.ls1_c00201{letter-spacing:0.000000px;}
.ls0_c00201{letter-spacing:0.072000px;}
.sc__c00201{text-shadow:none;}
.sc0_c00201{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00201{-webkit-text-stroke:0px transparent;}
.sc0_c00201{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00201{word-spacing:-0.072000px;}
.ws1_c00201{word-spacing:0.000000px;}
._3_c00201{width:1.159200px;}
._1_c00201{width:2.743200px;}
._9_c00201{width:3.902400px;}
._5_c00201{width:5.054400px;}
._6_c00201{width:6.948000px;}
._b_c00201{width:9.302400px;}
._a_c00201{width:10.447200px;}
._8_c00201{width:12.405600px;}
._0_c00201{width:14.853600px;}
._4_c00201{width:16.315200px;}
._7_c00201{width:20.030400px;}
._2_c00201{width:21.189600px;}
.fc1_c00201{color:transparent;}
.fc0_c00201{color:rgb(0,0,0);}
.fs1_c00201{font-size:64.800000px;}
.fs0_c00201{font-size:72.000000px;}
.y0_c00201{bottom:0.000000px;}
.y5_c00201{bottom:5.040000px;}
.y1_c00201{bottom:12.735000px;}
.y3_c00201{bottom:45.045000px;}
.y4_c00201{bottom:52.740000px;}
.y21_c00201{bottom:110.565000px;}
.y20_c00201{bottom:146.565000px;}
.y1f_c00201{bottom:182.565000px;}
.y1e_c00201{bottom:218.565000px;}
.y1d_c00201{bottom:254.565000px;}
.y1c_c00201{bottom:290.565000px;}
.y1b_c00201{bottom:326.565000px;}
.y1a_c00201{bottom:362.565000px;}
.y19_c00201{bottom:398.565000px;}
.y18_c00201{bottom:434.565000px;}
.y17_c00201{bottom:470.565000px;}
.y16_c00201{bottom:506.565000px;}
.y15_c00201{bottom:542.565000px;}
.y14_c00201{bottom:578.565000px;}
.y13_c00201{bottom:614.565000px;}
.y12_c00201{bottom:650.565000px;}
.y11_c00201{bottom:686.565000px;}
.y10_c00201{bottom:722.565000px;}
.yf_c00201{bottom:758.565000px;}
.ye_c00201{bottom:794.565000px;}
.yd_c00201{bottom:830.565000px;}
.yc_c00201{bottom:866.565000px;}
.yb_c00201{bottom:902.565000px;}
.ya_c00201{bottom:938.565000px;}
.y9_c00201{bottom:974.565000px;}
.y8_c00201{bottom:1010.565000px;}
.y7_c00201{bottom:1046.565000px;}
.y6_c00201{bottom:1082.565000px;}
.y2_c00201{bottom:1165.365000px;}
.h4_c00201{height:20.880000px;}
.h3_c00201{height:70.664062px;}
.h6_c00201{height:71.824219px;}
.h5_c00201{height:74.004654px;}
.h2_c00201{height:1237.365000px;}
.h0_c00201{height:1262.835000px;}
.h1_c00201{height:1263.000000px;}
.w3_c00201{width:27.000000px;}
.w2_c00201{width:867.465000px;}
.w0_c00201{width:892.935000px;}
.w1_c00201{width:893.250000px;}
.x0_c00201{left:0.000000px;}
.x1_c00201{left:12.735000px;}
.x3_c00201{left:95.406300px;}
.x5_c00201{left:149.400150px;}
.x6_c00201{left:180.450150px;}
.x4_c00201{left:433.215000px;}
.x2_c00201{left:878.550300px;}
@media print{
.v0_c00201{vertical-align:0.000000pt;}
.ls2_c00201{letter-spacing:-0.012800pt;}
.ls1_c00201{letter-spacing:0.000000pt;}
.ls0_c00201{letter-spacing:0.064000pt;}
.ws0_c00201{word-spacing:-0.064000pt;}
.ws1_c00201{word-spacing:0.000000pt;}
._3_c00201{width:1.030400pt;}
._1_c00201{width:2.438400pt;}
._9_c00201{width:3.468800pt;}
._5_c00201{width:4.492800pt;}
._6_c00201{width:6.176000pt;}
._b_c00201{width:8.268800pt;}
._a_c00201{width:9.286400pt;}
._8_c00201{width:11.027200pt;}
._0_c00201{width:13.203200pt;}
._4_c00201{width:14.502400pt;}
._7_c00201{width:17.804800pt;}
._2_c00201{width:18.835200pt;}
.fs1_c00201{font-size:57.600000pt;}
.fs0_c00201{font-size:64.000000pt;}
.y0_c00201{bottom:0.000000pt;}
.y5_c00201{bottom:4.480000pt;}
.y1_c00201{bottom:11.320000pt;}
.y3_c00201{bottom:40.040000pt;}
.y4_c00201{bottom:46.880000pt;}
.y21_c00201{bottom:98.280000pt;}
.y20_c00201{bottom:130.280000pt;}
.y1f_c00201{bottom:162.280000pt;}
.y1e_c00201{bottom:194.280000pt;}
.y1d_c00201{bottom:226.280000pt;}
.y1c_c00201{bottom:258.280000pt;}
.y1b_c00201{bottom:290.280000pt;}
.y1a_c00201{bottom:322.280000pt;}
.y19_c00201{bottom:354.280000pt;}
.y18_c00201{bottom:386.280000pt;}
.y17_c00201{bottom:418.280000pt;}
.y16_c00201{bottom:450.280000pt;}
.y15_c00201{bottom:482.280000pt;}
.y14_c00201{bottom:514.280000pt;}
.y13_c00201{bottom:546.280000pt;}
.y12_c00201{bottom:578.280000pt;}
.y11_c00201{bottom:610.280000pt;}
.y10_c00201{bottom:642.280000pt;}
.yf_c00201{bottom:674.280000pt;}
.ye_c00201{bottom:706.280000pt;}
.yd_c00201{bottom:738.280000pt;}
.yc_c00201{bottom:770.280000pt;}
.yb_c00201{bottom:802.280000pt;}
.ya_c00201{bottom:834.280000pt;}
.y9_c00201{bottom:866.280000pt;}
.y8_c00201{bottom:898.280000pt;}
.y7_c00201{bottom:930.280000pt;}
.y6_c00201{bottom:962.280000pt;}
.y2_c00201{bottom:1035.880000pt;}
.h4_c00201{height:18.560000pt;}
.h3_c00201{height:62.812500pt;}
.h6_c00201{height:63.843750pt;}
.h5_c00201{height:65.781915pt;}
.h2_c00201{height:1099.880000pt;}
.h0_c00201{height:1122.520000pt;}
.h1_c00201{height:1122.666667pt;}
.w3_c00201{width:24.000000pt;}
.w2_c00201{width:771.080000pt;}
.w0_c00201{width:793.720000pt;}
.w1_c00201{width:794.000000pt;}
.x0_c00201{left:0.000000pt;}
.x1_c00201{left:11.320000pt;}
.x3_c00201{left:84.805600pt;}
.x5_c00201{left:132.800133pt;}
.x6_c00201{left:160.400133pt;}
.x4_c00201{left:385.080000pt;}
.x2_c00201{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_424f1a04f4894d480065a2fa.woff2')format("woff");}.ff1_c00202{font-family:ff1_c00202;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00202;src:url('chunks/assets/font_6e050c6c6bdc11c9568015b4.woff2')format("woff");}.ff2_c00202{font-family:ff2_c00202;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00202;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00202{font-family:ff3_c00202;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00202;src:url('chunks/assets/font_4ebcdba13dc29080567c37ac.woff2')format("woff");}.ff4_c00202{font-family:ff4_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00202;src:url('chunks/assets/font_1a7798bdadc4722fb5827db4.woff2')format("woff");}.ff5_c00202{font-family:ff5_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00202;src:url('chunks/assets/font_3d5b7b54ea426536ef43d045.woff2')format("woff");}.ff6_c00202{font-family:ff6_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00202;src:url('chunks/assets/font_5a027e7e1abe3d418ff6344c.woff2')format("woff");}.ff7_c00202{font-family:ff7_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00202;src:url('chunks/assets/font_debf5faa6056411a88fd7d50.woff2')format("woff");}.ff8_c00202{font-family:ff8_c00202;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00202;src:url('chunks/assets/font_77fe0705f2522cf04686bb5c.woff2')format("woff");}.ff9_c00202{font-family:ff9_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00202;src:url('chunks/assets/font_39a4e6c2b1b4f605b9ac3593.woff2')format("woff");}.ffa_c00202{font-family:ffa_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00202;src:url('chunks/assets/font_bc59a51a47bf3350bea2c7f4.woff2')format("woff");}.ffb_c00202{font-family:ffb_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:ffc_c00202;src:url('chunks/assets/font_151ff58cfb7558a6616d9e31.woff2')format("woff");}.ffc_c00202{font-family:ffc_c00202;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:ffd_c00202;src:url('chunks/assets/font_2f24b1bc1ffafc68157a0747.woff2')format("woff");}.ffd_c00202{font-family:ffd_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00202;src:url('chunks/assets/font_3a3bdf7bf9c2aefd893e25f3.woff2')format("woff");}.ffe_c00202{font-family:ffe_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00202;src:url('chunks/assets/font_dd23aca991b9295f621e0303.woff2')format("woff");}.fff_c00202{font-family:fff_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00202;src:url('chunks/assets/font_d192c5bb7103fff83b0cb91b.woff2')format("woff");}.ff10_c00202{font-family:ff10_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00202;src:url('chunks/assets/font_5b3011f927b2eb68076f26f9.woff2')format("woff");}.ff11_c00202{font-family:ff11_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00202;src:url('chunks/assets/font_6e910e43d27835679168221d.woff2')format("woff");}.ff12_c00202{font-family:ff12_c00202;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:ff13_c00202;src:url('chunks/assets/font_6e58b0fa288a0bcb040bd510.woff2')format("woff");}.ff13_c00202{font-family:ff13_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:ff14_c00202;src:url('chunks/assets/font_ced729a8c291941523c0a6f9.woff2')format("woff");}.ff14_c00202{font-family:ff14_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:ff15_c00202;src:url('chunks/assets/font_f8e6619ddd5a09b797e76747.woff2')format("woff");}.ff15_c00202{font-family:ff15_c00202;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00202;src:url('chunks/assets/font_f4c6b19c4f2f8391bb982a2e.woff2')format("woff");}.ff16_c00202{font-family:ff16_c00202;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:ff17_c00202;src:url('chunks/assets/font_db23497858b0fa364e670c2b.woff2')format("woff");}.ff17_c00202{font-family:ff17_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00202;src:url('chunks/assets/font_2ccfe5e6e6338328775bd1a8.woff2')format("woff");}.ff18_c00202{font-family:ff18_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00202;src:url('chunks/assets/font_a5452c61c4341b5efb4ee570.woff2')format("woff");}.ff19_c00202{font-family:ff19_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00202;src:url('chunks/assets/font_3be639bb1bbc93ebcaf710bf.woff2')format("woff");}.ff1a_c00202{font-family:ff1a_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00202;src:url('chunks/assets/font_b591edd19ba3b2ffc387814f.woff2')format("woff");}.ff1b_c00202{font-family:ff1b_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00202;src:url('chunks/assets/font_4bfcc6c34a533e0a0cc88d1b.woff2')format("woff");}.ff1c_c00202{font-family:ff1c_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00202;src:url('chunks/assets/font_0f51a05d801bd73c05ec436b.woff2')format("woff");}.ff1d_c00202{font-family:ff1d_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00202;src:url('chunks/assets/font_8afe49cf3f76d1d258060d15.woff2')format("woff");}.ff1e_c00202{font-family:ff1e_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00202;src:url('chunks/assets/font_35ac4d6627e8dde40a04170e.woff2')format("woff");}.ff1f_c00202{font-family:ff1f_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00202;src:url('chunks/assets/font_439f3e9ffdce42be33854054.woff2')format("woff");}.ff20_c00202{font-family:ff20_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00202;src:url('chunks/assets/font_77d94cb61831d1071b23eb69.woff2')format("woff");}.ff21_c00202{font-family:ff21_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00202;src:url('chunks/assets/font_e438e82fa6357d1ab052b43f.woff2')format("woff");}.ff22_c00202{font-family:ff22_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00202;src:url('chunks/assets/font_e3283e7558a2399179cbe39c.woff2')format("woff");}.ff23_c00202{font-family:ff23_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00202;src:url('chunks/assets/font_49d23bf4093e463c39930b3c.woff2')format("woff");}.ff24_c00202{font-family:ff24_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00202;src:url('chunks/assets/font_a70e765d358cc2d8c7eae5a7.woff2')format("woff");}.ff25_c00202{font-family:ff25_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00202;src:url('chunks/assets/font_5d650aae33ca16bb75ba3e74.woff2')format("woff");}.ff26_c00202{font-family:ff26_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00202;src:url('chunks/assets/font_d4dbda3a8847c66de35bbf76.woff2')format("woff");}.ff27_c00202{font-family:ff27_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00202;src:url('chunks/assets/font_01949e4eab79f4a2be6963f7.woff2')format("woff");}.ff28_c00202{font-family:ff28_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00202;src:url('chunks/assets/font_57708431713560b7d941c1e3.woff2')format("woff");}.ff29_c00202{font-family:ff29_c00202;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:ff2a_c00202;src:url('chunks/assets/font_23402ebf62c4463d5441fa0e.woff2')format("woff");}.ff2a_c00202{font-family:ff2a_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00202;src:url('chunks/assets/font_46f982283362514b715cd02a.woff2')format("woff");}.ff2b_c00202{font-family:ff2b_c00202;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00202{letter-spacing:-0.014400px;}
.ls0_c00202{letter-spacing:0.000000px;}
.sc__c00202{text-shadow:none;}
.sc0_c00202{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00202{-webkit-text-stroke:0px transparent;}
.sc0_c00202{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00202{word-spacing:-0.072000px;}
.ws1_c00202{word-spacing:0.000000px;}
._d_c00202{width:1.202400px;}
._4_c00202{width:2.872800px;}
._6_c00202{width:4.456800px;}
._8_c00202{width:5.594400px;}
._3_c00202{width:7.185600px;}
._9_c00202{width:9.136800px;}
._e_c00202{width:10.951200px;}
._5_c00202{width:12.031200px;}
._7_c00202{width:13.759200px;}
._a_c00202{width:14.940000px;}
._0_c00202{width:16.581600px;}
._b_c00202{width:22.572000px;}
._1_c00202{width:24.350400px;}
._c_c00202{width:25.682400px;}
._2_c00202{width:198.000000px;}
.fc1_c00202{color:transparent;}
.fc0_c00202{color:rgb(0,0,0);}
.fs1_c00202{font-size:64.800000px;}
.fs0_c00202{font-size:72.000000px;}
.y0_c00202{bottom:0.000000px;}
.y5_c00202{bottom:5.040000px;}
.y1_c00202{bottom:12.735000px;}
.y3_c00202{bottom:45.045000px;}
.y4_c00202{bottom:52.740000px;}
.y20_c00202{bottom:146.565000px;}
.y1f_c00202{bottom:182.565000px;}
.y1e_c00202{bottom:218.565000px;}
.y1d_c00202{bottom:254.565000px;}
.y1c_c00202{bottom:290.565000px;}
.y1b_c00202{bottom:326.565000px;}
.y1a_c00202{bottom:362.565000px;}
.y19_c00202{bottom:398.565000px;}
.y18_c00202{bottom:434.565000px;}
.y17_c00202{bottom:470.565000px;}
.y16_c00202{bottom:506.565000px;}
.y15_c00202{bottom:542.565000px;}
.y14_c00202{bottom:578.565000px;}
.y13_c00202{bottom:614.565000px;}
.y12_c00202{bottom:650.565000px;}
.y11_c00202{bottom:686.565000px;}
.y10_c00202{bottom:722.565000px;}
.yf_c00202{bottom:758.565000px;}
.ye_c00202{bottom:794.565000px;}
.yd_c00202{bottom:830.565000px;}
.yc_c00202{bottom:866.565000px;}
.yb_c00202{bottom:902.565000px;}
.ya_c00202{bottom:938.565000px;}
.y9_c00202{bottom:974.565000px;}
.y8_c00202{bottom:1010.565000px;}
.y7_c00202{bottom:1046.565000px;}
.y6_c00202{bottom:1082.565000px;}
.y2_c00202{bottom:1165.365000px;}
.h4_c00202{height:20.880000px;}
.h5_c00202{height:70.664062px;}
.h3_c00202{height:74.004654px;}
.h2_c00202{height:1237.365000px;}
.h0_c00202{height:1262.835000px;}
.h1_c00202{height:1263.000000px;}
.w3_c00202{width:27.000000px;}
.w2_c00202{width:867.465000px;}
.w0_c00202{width:892.935000px;}
.w1_c00202{width:893.250000px;}
.x0_c00202{left:0.000000px;}
.x1_c00202{left:12.735000px;}
.x3_c00202{left:95.406300px;}
.x5_c00202{left:149.400150px;}
.x4_c00202{left:433.215000px;}
.x2_c00202{left:878.550300px;}
@media print{
.v0_c00202{vertical-align:0.000000pt;}
.ls1_c00202{letter-spacing:-0.012800pt;}
.ls0_c00202{letter-spacing:0.000000pt;}
.ws0_c00202{word-spacing:-0.064000pt;}
.ws1_c00202{word-spacing:0.000000pt;}
._d_c00202{width:1.068800pt;}
._4_c00202{width:2.553600pt;}
._6_c00202{width:3.961600pt;}
._8_c00202{width:4.972800pt;}
._3_c00202{width:6.387200pt;}
._9_c00202{width:8.121600pt;}
._e_c00202{width:9.734400pt;}
._5_c00202{width:10.694400pt;}
._7_c00202{width:12.230400pt;}
._a_c00202{width:13.280000pt;}
._0_c00202{width:14.739200pt;}
._b_c00202{width:20.064000pt;}
._1_c00202{width:21.644800pt;}
._c_c00202{width:22.828800pt;}
._2_c00202{width:176.000000pt;}
.fs1_c00202{font-size:57.600000pt;}
.fs0_c00202{font-size:64.000000pt;}
.y0_c00202{bottom:0.000000pt;}
.y5_c00202{bottom:4.480000pt;}
.y1_c00202{bottom:11.320000pt;}
.y3_c00202{bottom:40.040000pt;}
.y4_c00202{bottom:46.880000pt;}
.y20_c00202{bottom:130.280000pt;}
.y1f_c00202{bottom:162.280000pt;}
.y1e_c00202{bottom:194.280000pt;}
.y1d_c00202{bottom:226.280000pt;}
.y1c_c00202{bottom:258.280000pt;}
.y1b_c00202{bottom:290.280000pt;}
.y1a_c00202{bottom:322.280000pt;}
.y19_c00202{bottom:354.280000pt;}
.y18_c00202{bottom:386.280000pt;}
.y17_c00202{bottom:418.280000pt;}
.y16_c00202{bottom:450.280000pt;}
.y15_c00202{bottom:482.280000pt;}
.y14_c00202{bottom:514.280000pt;}
.y13_c00202{bottom:546.280000pt;}
.y12_c00202{bottom:578.280000pt;}
.y11_c00202{bottom:610.280000pt;}
.y10_c00202{bottom:642.280000pt;}
.yf_c00202{bottom:674.280000pt;}
.ye_c00202{bottom:706.280000pt;}
.yd_c00202{bottom:738.280000pt;}
.yc_c00202{bottom:770.280000pt;}
.yb_c00202{bottom:802.280000pt;}
.ya_c00202{bottom:834.280000pt;}
.y9_c00202{bottom:866.280000pt;}
.y8_c00202{bottom:898.280000pt;}
.y7_c00202{bottom:930.280000pt;}
.y6_c00202{bottom:962.280000pt;}
.y2_c00202{bottom:1035.880000pt;}
.h4_c00202{height:18.560000pt;}
.h5_c00202{height:62.812500pt;}
.h3_c00202{height:65.781915pt;}
.h2_c00202{height:1099.880000pt;}
.h0_c00202{height:1122.520000pt;}
.h1_c00202{height:1122.666667pt;}
.w3_c00202{width:24.000000pt;}
.w2_c00202{width:771.080000pt;}
.w0_c00202{width:793.720000pt;}
.w1_c00202{width:794.000000pt;}
.x0_c00202{left:0.000000pt;}
.x1_c00202{left:11.320000pt;}
.x3_c00202{left:84.805600pt;}
.x5_c00202{left:132.800133pt;}
.x4_c00202{left:385.080000pt;}
.x2_c00202{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00203{font-family:ff1_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00203;src:url('chunks/assets/font_a9a2ce5bfe7072308415efed.woff2')format("woff");}.ff2_c00203{font-family:ff2_c00203;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00203;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00203{font-family:ff3_c00203;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00203;src:url('chunks/assets/font_6961f6e30626d54af8d6e1f8.woff2')format("woff");}.ff4_c00203{font-family:ff4_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00203;src:url('chunks/assets/font_b8e50bfa93612a879e323deb.woff2')format("woff");}.ff5_c00203{font-family:ff5_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00203;src:url('chunks/assets/font_68bb964f50abd9356492c831.woff2')format("woff");}.ff6_c00203{font-family:ff6_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00203;src:url('chunks/assets/font_c9a8185cca6fed204e8fca9b.woff2')format("woff");}.ff7_c00203{font-family:ff7_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00203;src:url('chunks/assets/font_0bb856b615a0af4485ac8497.woff2')format("woff");}.ff8_c00203{font-family:ff8_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00203;src:url('chunks/assets/font_d20fc3f0ccd16de3f14cbe43.woff2')format("woff");}.ff9_c00203{font-family:ff9_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00203;src:url('chunks/assets/font_e9daf7054af2e112ac9104c6.woff2')format("woff");}.ffa_c00203{font-family:ffa_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00203;src:url('chunks/assets/font_5ebe074f0a9b7d877d28c98a.woff2')format("woff");}.ffb_c00203{font-family:ffb_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00203;src:url('chunks/assets/font_c8b3aa080045c413915e50b7.woff2')format("woff");}.ffc_c00203{font-family:ffc_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00203;src:url('chunks/assets/font_cd97c9151ec9809f0e91b57f.woff2')format("woff");}.ffd_c00203{font-family:ffd_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00203;src:url('chunks/assets/font_0beae0cedd3c04813f7f72a6.woff2')format("woff");}.ffe_c00203{font-family:ffe_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00203;src:url('chunks/assets/font_f6407947d2b2a19d35ae4be0.woff2')format("woff");}.fff_c00203{font-family:fff_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00203;src:url('chunks/assets/font_711fb60bf7d67950e6f5a529.woff2')format("woff");}.ff10_c00203{font-family:ff10_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00203;src:url('chunks/assets/font_59373ea6f354747493cadc48.woff2')format("woff");}.ff11_c00203{font-family:ff11_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00203;src:url('chunks/assets/font_8d25c81a8288d76263dce806.woff2')format("woff");}.ff12_c00203{font-family:ff12_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00203;src:url('chunks/assets/font_e82c4684e8a77b2ba14a9e5d.woff2')format("woff");}.ff13_c00203{font-family:ff13_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00203;src:url('chunks/assets/font_e0075ec235aef63e442f865c.woff2')format("woff");}.ff14_c00203{font-family:ff14_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00203;src:url('chunks/assets/font_e7e2a562350e9c580b65a70e.woff2')format("woff");}.ff15_c00203{font-family:ff15_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00203;src:url('chunks/assets/font_cb15f27b5f5ffbeaefd4182c.woff2')format("woff");}.ff16_c00203{font-family:ff16_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00203;src:url('chunks/assets/font_316b531ed48a64f5aeea0371.woff2')format("woff");}.ff17_c00203{font-family:ff17_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00203;src:url('chunks/assets/font_6eaf1e8b4e3442eb7cc29da5.woff2')format("woff");}.ff18_c00203{font-family:ff18_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00203;src:url('chunks/assets/font_c28f7be7dcbcd4372fc09b7f.woff2')format("woff");}.ff19_c00203{font-family:ff19_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00203;src:url('chunks/assets/font_89d23ccd820bc9c2bb9eb3ee.woff2')format("woff");}.ff1a_c00203{font-family:ff1a_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00203;src:url('chunks/assets/font_a1e9cbd7aa069d16cb3616f0.woff2')format("woff");}.ff1b_c00203{font-family:ff1b_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00203;src:url('chunks/assets/font_ccd38b417c68a8aefc29e777.woff2')format("woff");}.ff1c_c00203{font-family:ff1c_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00203;src:url('chunks/assets/font_39579217c374f8ba024d19e2.woff2')format("woff");}.ff1d_c00203{font-family:ff1d_c00203;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:ff1e_c00203;src:url('chunks/assets/font_dd6983ef1ca97f8aeb0abead.woff2')format("woff");}.ff1e_c00203{font-family:ff1e_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00203;src:url('chunks/assets/font_2c934216792c60fd8d540076.woff2')format("woff");}.ff1f_c00203{font-family:ff1f_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00203;src:url('chunks/assets/font_33b470fa097b4842c3d0d944.woff2')format("woff");}.ff20_c00203{font-family:ff20_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00203;src:url('chunks/assets/font_9e70a0fef9a1e414612353dd.woff2')format("woff");}.ff21_c00203{font-family:ff21_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00203;src:url('chunks/assets/font_2e312c8a7606def1454109d0.woff2')format("woff");}.ff22_c00203{font-family:ff22_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00203;src:url('chunks/assets/font_f1c5274d501726addc17e533.woff2')format("woff");}.ff23_c00203{font-family:ff23_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00203;src:url('chunks/assets/font_df9cd58d7d1152151a015427.woff2')format("woff");}.ff24_c00203{font-family:ff24_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00203;src:url('chunks/assets/font_539d98e7f86645c165181cad.woff2')format("woff");}.ff25_c00203{font-family:ff25_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00203;src:url('chunks/assets/font_b4ff306d42430d0c40e5d1fe.woff2')format("woff");}.ff26_c00203{font-family:ff26_c00203;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00203;src:url('chunks/assets/font_afdb0c2edddb7b20aa807c16.woff2')format("woff");}.ff27_c00203{font-family:ff27_c00203;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;}
.m0_c00203{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00203{vertical-align:0.000000px;}
.ls1_c00203{letter-spacing:0.000000px;}
.ls2_c00203{letter-spacing:0.021600px;}
.ls0_c00203{letter-spacing:0.072000px;}
.sc__c00203{text-shadow:none;}
.sc0_c00203{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00203{-webkit-text-stroke:0px transparent;}
.sc0_c00203{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00203{word-spacing:-0.072000px;}
.ws1_c00203{word-spacing:0.000000px;}
._2_c00203{width:1.396800px;}
._0_c00203{width:3.182400px;}
._1_c00203{width:5.176800px;}
._c_c00203{width:6.472800px;}
._4_c00203{width:7.632000px;}
._6_c00203{width:8.697600px;}
._b_c00203{width:10.893600px;}
._7_c00203{width:12.823200px;}
._9_c00203{width:14.781600px;}
._3_c00203{width:16.920000px;}
._a_c00203{width:20.757600px;}
._8_c00203{width:23.032800px;}
._5_c00203{width:24.048000px;}
.fc1_c00203{color:transparent;}
.fc0_c00203{color:rgb(0,0,0);}
.fs1_c00203{font-size:64.800000px;}
.fs0_c00203{font-size:72.000000px;}
.y0_c00203{bottom:0.000000px;}
.y5_c00203{bottom:5.040000px;}
.y1_c00203{bottom:12.735000px;}
.y3_c00203{bottom:45.045000px;}
.y4_c00203{bottom:52.740000px;}
.y21_c00203{bottom:110.565000px;}
.y20_c00203{bottom:146.565000px;}
.y1f_c00203{bottom:182.565000px;}
.y1e_c00203{bottom:218.565000px;}
.y1d_c00203{bottom:254.565000px;}
.y1c_c00203{bottom:290.565000px;}
.y1b_c00203{bottom:326.565000px;}
.y1a_c00203{bottom:362.565000px;}
.y19_c00203{bottom:398.565000px;}
.y18_c00203{bottom:434.565000px;}
.y17_c00203{bottom:470.565000px;}
.y16_c00203{bottom:506.565000px;}
.y15_c00203{bottom:542.565000px;}
.y14_c00203{bottom:578.565000px;}
.y13_c00203{bottom:614.565000px;}
.y12_c00203{bottom:650.565000px;}
.y11_c00203{bottom:686.565000px;}
.y10_c00203{bottom:722.565000px;}
.yf_c00203{bottom:758.565000px;}
.ye_c00203{bottom:794.565000px;}
.yd_c00203{bottom:830.565000px;}
.yc_c00203{bottom:866.565000px;}
.yb_c00203{bottom:902.565000px;}
.ya_c00203{bottom:938.565000px;}
.y9_c00203{bottom:974.565000px;}
.y8_c00203{bottom:1010.565000px;}
.y7_c00203{bottom:1046.565000px;}
.y6_c00203{bottom:1082.565000px;}
.y2_c00203{bottom:1165.365000px;}
.h4_c00203{height:20.880000px;}
.h3_c00203{height:70.664062px;}
.h5_c00203{height:74.004654px;}
.h6_c00203{height:74.953125px;}
.h2_c00203{height:1237.365000px;}
.h0_c00203{height:1262.835000px;}
.h1_c00203{height:1263.000000px;}
.w3_c00203{width:27.000000px;}
.w2_c00203{width:867.465000px;}
.w0_c00203{width:892.935000px;}
.w1_c00203{width:893.250000px;}
.x0_c00203{left:0.000000px;}
.x1_c00203{left:12.735000px;}
.x3_c00203{left:95.406300px;}
.x5_c00203{left:149.400150px;}
.x4_c00203{left:433.215000px;}
.x2_c00203{left:878.550300px;}
@media print{
.v0_c00203{vertical-align:0.000000pt;}
.ls1_c00203{letter-spacing:0.000000pt;}
.ls2_c00203{letter-spacing:0.019200pt;}
.ls0_c00203{letter-spacing:0.064000pt;}
.ws0_c00203{word-spacing:-0.064000pt;}
.ws1_c00203{word-spacing:0.000000pt;}
._2_c00203{width:1.241600pt;}
._0_c00203{width:2.828800pt;}
._1_c00203{width:4.601600pt;}
._c_c00203{width:5.753600pt;}
._4_c00203{width:6.784000pt;}
._6_c00203{width:7.731200pt;}
._b_c00203{width:9.683200pt;}
._7_c00203{width:11.398400pt;}
._9_c00203{width:13.139200pt;}
._3_c00203{width:15.040000pt;}
._a_c00203{width:18.451200pt;}
._8_c00203{width:20.473600pt;}
._5_c00203{width:21.376000pt;}
.fs1_c00203{font-size:57.600000pt;}
.fs0_c00203{font-size:64.000000pt;}
.y0_c00203{bottom:0.000000pt;}
.y5_c00203{bottom:4.480000pt;}
.y1_c00203{bottom:11.320000pt;}
.y3_c00203{bottom:40.040000pt;}
.y4_c00203{bottom:46.880000pt;}
.y21_c00203{bottom:98.280000pt;}
.y20_c00203{bottom:130.280000pt;}
.y1f_c00203{bottom:162.280000pt;}
.y1e_c00203{bottom:194.280000pt;}
.y1d_c00203{bottom:226.280000pt;}
.y1c_c00203{bottom:258.280000pt;}
.y1b_c00203{bottom:290.280000pt;}
.y1a_c00203{bottom:322.280000pt;}
.y19_c00203{bottom:354.280000pt;}
.y18_c00203{bottom:386.280000pt;}
.y17_c00203{bottom:418.280000pt;}
.y16_c00203{bottom:450.280000pt;}
.y15_c00203{bottom:482.280000pt;}
.y14_c00203{bottom:514.280000pt;}
.y13_c00203{bottom:546.280000pt;}
.y12_c00203{bottom:578.280000pt;}
.y11_c00203{bottom:610.280000pt;}
.y10_c00203{bottom:642.280000pt;}
.yf_c00203{bottom:674.280000pt;}
.ye_c00203{bottom:706.280000pt;}
.yd_c00203{bottom:738.280000pt;}
.yc_c00203{bottom:770.280000pt;}
.yb_c00203{bottom:802.280000pt;}
.ya_c00203{bottom:834.280000pt;}
.y9_c00203{bottom:866.280000pt;}
.y8_c00203{bottom:898.280000pt;}
.y7_c00203{bottom:930.280000pt;}
.y6_c00203{bottom:962.280000pt;}
.y2_c00203{bottom:1035.880000pt;}
.h4_c00203{height:18.560000pt;}
.h3_c00203{height:62.812500pt;}
.h5_c00203{height:65.781915pt;}
.h6_c00203{height:66.625000pt;}
.h2_c00203{height:1099.880000pt;}
.h0_c00203{height:1122.520000pt;}
.h1_c00203{height:1122.666667pt;}
.w3_c00203{width:24.000000pt;}
.w2_c00203{width:771.080000pt;}
.w0_c00203{width:793.720000pt;}
.w1_c00203{width:794.000000pt;}
.x0_c00203{left:0.000000pt;}
.x1_c00203{left:11.320000pt;}
.x3_c00203{left:84.805600pt;}
.x5_c00203{left:132.800133pt;}
.x4_c00203{left:385.080000pt;}
.x2_c00203{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00204{font-family:ff1_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00204;src:url('chunks/assets/font_39c4efe334cd7deb1b3eb688.woff2')format("woff");}.ff2_c00204{font-family:ff2_c00204;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00204;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00204{font-family:ff3_c00204;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00204;src:url('chunks/assets/font_896854722b95fe604e91f889.woff2')format("woff");}.ff4_c00204{font-family:ff4_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00204;src:url('chunks/assets/font_e96a04fb20e6dc87d116acd1.woff2')format("woff");}.ff5_c00204{font-family:ff5_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00204;src:url('chunks/assets/font_dd02f80fda6321fab39f2351.woff2')format("woff");}.ff6_c00204{font-family:ff6_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00204;src:url('chunks/assets/font_d9cc0600fc98616e88069da8.woff2')format("woff");}.ff7_c00204{font-family:ff7_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00204;src:url('chunks/assets/font_8e1b7c787a86592a47c39847.woff2')format("woff");}.ff8_c00204{font-family:ff8_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00204;src:url('chunks/assets/font_375414646de7048d98d58b77.woff2')format("woff");}.ff9_c00204{font-family:ff9_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00204;src:url('chunks/assets/font_d84265da405700f9f2c8b519.woff2')format("woff");}.ffa_c00204{font-family:ffa_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00204;src:url('chunks/assets/font_cf8d9acc4f314f3d885a6c2b.woff2')format("woff");}.ffb_c00204{font-family:ffb_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00204;src:url('chunks/assets/font_ec115adefc56f59dc174f310.woff2')format("woff");}.ffc_c00204{font-family:ffc_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00204;src:url('chunks/assets/font_bd78b154c9056a09d32f25ff.woff2')format("woff");}.ffd_c00204{font-family:ffd_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00204;src:url('chunks/assets/font_24ce450e4d8a2388bd99319d.woff2')format("woff");}.ffe_c00204{font-family:ffe_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00204;src:url('chunks/assets/font_49b4706a0d7b65213a9e5ce4.woff2')format("woff");}.fff_c00204{font-family:fff_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00204;src:url('chunks/assets/font_66b78ffdeeb215d4b7c847e2.woff2')format("woff");}.ff10_c00204{font-family:ff10_c00204;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00204;src:url('chunks/assets/font_c628f34332c5f83c915df12b.woff2')format("woff");}.ff11_c00204{font-family:ff11_c00204;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00204;src:url('chunks/assets/font_beee447fdaf11aae348618d9.woff2')format("woff");}.ff12_c00204{font-family:ff12_c00204;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00204;src:url('chunks/assets/font_d234c18265a95b42da679851.woff2')format("woff");}.ff13_c00204{font-family:ff13_c00204;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00204;src:url('chunks/assets/font_d4f720cfb22e0dfd0a25fc90.woff2')format("woff");}.ff14_c00204{font-family:ff14_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00204;src:url('chunks/assets/font_cc9e360e009d9efb85756aa9.woff2')format("woff");}.ff15_c00204{font-family:ff15_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00204;src:url('chunks/assets/font_d234c18265a95b42da679851.woff2')format("woff");}.ff16_c00204{font-family:ff16_c00204;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00204;src:url('chunks/assets/font_0dfa5f1180b478483a653e66.woff2')format("woff");}.ff17_c00204{font-family:ff17_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00204;src:url('chunks/assets/font_5a5e99e085721b8970fb191d.woff2')format("woff");}.ff18_c00204{font-family:ff18_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00204;src:url('chunks/assets/font_e74eccd30165afd99714f991.woff2')format("woff");}.ff19_c00204{font-family:ff19_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00204;src:url('chunks/assets/font_c280f14fde4c3dc012807b59.woff2')format("woff");}.ff1a_c00204{font-family:ff1a_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00204;src:url('chunks/assets/font_8d9be3793a440156bc0d9bb9.woff2')format("woff");}.ff1b_c00204{font-family:ff1b_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00204;src:url('chunks/assets/font_0f7ea6d0e7b0287135fa5596.woff2')format("woff");}.ff1c_c00204{font-family:ff1c_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00204;src:url('chunks/assets/font_aad9d2447356682c68247b22.woff2')format("woff");}.ff1d_c00204{font-family:ff1d_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00204;src:url('chunks/assets/font_d79d57ef9e21be831e71953f.woff2')format("woff");}.ff1e_c00204{font-family:ff1e_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00204;src:url('chunks/assets/font_d610e8713378e8b81cc1eb06.woff2')format("woff");}.ff1f_c00204{font-family:ff1f_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00204;src:url('chunks/assets/font_7257b35a6d9bb85d4bfc3f08.woff2')format("woff");}.ff20_c00204{font-family:ff20_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00204;src:url('chunks/assets/font_74e2f98ccbeec947d2681f22.woff2')format("woff");}.ff21_c00204{font-family:ff21_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00204;src:url('chunks/assets/font_b97e6d06c279d5d3a2127a6d.woff2')format("woff");}.ff22_c00204{font-family:ff22_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00204;src:url('chunks/assets/font_e685a7ebfb209641cfcf6057.woff2')format("woff");}.ff23_c00204{font-family:ff23_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00204;src:url('chunks/assets/font_62b01ba0ba682d1f341a9f3b.woff2')format("woff");}.ff24_c00204{font-family:ff24_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00204;src:url('chunks/assets/font_97fcbca1d71a0e7fa60eee99.woff2')format("woff");}.ff25_c00204{font-family:ff25_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00204;src:url('chunks/assets/font_32514b71d6eb6fc94a72d019.woff2')format("woff");}.ff26_c00204{font-family:ff26_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00204;src:url('chunks/assets/font_bf9f3e7b6d16329ab19c46ce.woff2')format("woff");}.ff27_c00204{font-family:ff27_c00204;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:ff28_c00204;src:url('chunks/assets/font_bc306f9a829d1e42903527bb.woff2')format("woff");}.ff28_c00204{font-family:ff28_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00204;src:url('chunks/assets/font_6329591fe931b681dceb1970.woff2')format("woff");}.ff29_c00204{font-family:ff29_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00204;src:url('chunks/assets/font_83da0103a632a5f5d66f8bfe.woff2')format("woff");}.ff2a_c00204{font-family:ff2a_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00204;src:url('chunks/assets/font_02b4f542c271faa6a1363aa7.woff2')format("woff");}.ff2b_c00204{font-family:ff2b_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00204;src:url('chunks/assets/font_9a3f293b3f5db3184256053c.woff2')format("woff");}.ff2c_c00204{font-family:ff2c_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00204;src:url('chunks/assets/font_0683c816dfb5e7844a677e1b.woff2')format("woff");}.ff2d_c00204{font-family:ff2d_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00204;src:url('chunks/assets/font_d8725157a1ec711988ed9755.woff2')format("woff");}.ff2e_c00204{font-family:ff2e_c00204;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00204;src:url('chunks/assets/font_3a258c92d85e56824d4c5b62.woff2')format("woff");}.ff2f_c00204{font-family:ff2f_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00204;src:url('chunks/assets/font_b613d222b151726a10080e52.woff2')format("woff");}.ff30_c00204{font-family:ff30_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00204;src:url('chunks/assets/font_26ac3c378fe60f271559243f.woff2')format("woff");}.ff31_c00204{font-family:ff31_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00204;src:url('chunks/assets/font_7464f4aa46796e312a83b04c.woff2')format("woff");}.ff32_c00204{font-family:ff32_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00204;src:url('chunks/assets/font_6ab2963dd65f804f2bfcef09.woff2')format("woff");}.ff33_c00204{font-family:ff33_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00204;src:url('chunks/assets/font_c1aa6e8e67e0079aaf20a80a.woff2')format("woff");}.ff34_c00204{font-family:ff34_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00204;src:url('chunks/assets/font_16b7b5b7eff10c20c2f26609.woff2')format("woff");}.ff35_c00204{font-family:ff35_c00204;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00204{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00204{vertical-align:0.000000px;}
.ls2_c00204{letter-spacing:0.000000px;}
.ls1_c00204{letter-spacing:0.144000px;}
.ls0_c00204{letter-spacing:2.448000px;}
.ls3_c00204{letter-spacing:16.754400px;}
.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:-18.000000px;}
.ws0_c00204{word-spacing:-0.072000px;}
.ws2_c00204{word-spacing:0.000000px;}
._6_c00204{margin-left:-16.660800px;}
._1_c00204{width:1.929600px;}
._4_c00204{width:2.966400px;}
._0_c00204{width:5.688000px;}
._3_c00204{width:7.545600px;}
._8_c00204{width:8.856000px;}
._7_c00204{width:10.173600px;}
._2_c00204{width:12.031200px;}
._9_c00204{width:13.716000px;}
._5_c00204{width:16.754400px;}
._a_c00204{width:198.000000px;}
.fc1_c00204{color:transparent;}
.fc0_c00204{color:rgb(0,0,0);}
.fs1_c00204{font-size:64.800000px;}
.fs0_c00204{font-size:72.000000px;}
.y0_c00204{bottom:0.000000px;}
.y5_c00204{bottom:5.040000px;}
.y1_c00204{bottom:12.735000px;}
.y3_c00204{bottom:45.045000px;}
.y4_c00204{bottom:52.740000px;}
.y20_c00204{bottom:146.565000px;}
.y1f_c00204{bottom:182.565000px;}
.y1e_c00204{bottom:218.565000px;}
.y1d_c00204{bottom:254.565000px;}
.y1c_c00204{bottom:290.565000px;}
.y1b_c00204{bottom:326.565000px;}
.y1a_c00204{bottom:362.565000px;}
.y19_c00204{bottom:398.565000px;}
.y18_c00204{bottom:434.565000px;}
.y17_c00204{bottom:470.565000px;}
.y16_c00204{bottom:506.565000px;}
.y15_c00204{bottom:542.565000px;}
.y14_c00204{bottom:578.565000px;}
.y13_c00204{bottom:614.565000px;}
.y12_c00204{bottom:650.565000px;}
.y11_c00204{bottom:686.565000px;}
.y10_c00204{bottom:722.565000px;}
.yf_c00204{bottom:758.565000px;}
.ye_c00204{bottom:794.565000px;}
.yd_c00204{bottom:830.565000px;}
.yc_c00204{bottom:866.565000px;}
.yb_c00204{bottom:902.565000px;}
.ya_c00204{bottom:938.565000px;}
.y9_c00204{bottom:974.565000px;}
.y8_c00204{bottom:1010.565000px;}
.y7_c00204{bottom:1046.565000px;}
.y6_c00204{bottom:1082.565000px;}
.y2_c00204{bottom:1165.365000px;}
.h4_c00204{height:20.880000px;}
.h3_c00204{height:70.664062px;}
.h6_c00204{height:71.824219px;}
.h7_c00204{height:72.562500px;}
.h5_c00204{height:74.004654px;}
.h2_c00204{height:1237.365000px;}
.h0_c00204{height:1262.835000px;}
.h1_c00204{height:1263.000000px;}
.w3_c00204{width:27.000000px;}
.w2_c00204{width:867.465000px;}
.w0_c00204{width:892.935000px;}
.w1_c00204{width:893.250000px;}
.x0_c00204{left:0.000000px;}
.x1_c00204{left:12.735000px;}
.x3_c00204{left:95.406300px;}
.x5_c00204{left:149.400150px;}
.x6_c00204{left:180.450150px;}
.x4_c00204{left:433.215000px;}
.x2_c00204{left:878.550300px;}
@media print{
.v0_c00204{vertical-align:0.000000pt;}
.ls2_c00204{letter-spacing:0.000000pt;}
.ls1_c00204{letter-spacing:0.128000pt;}
.ls0_c00204{letter-spacing:2.176000pt;}
.ls3_c00204{letter-spacing:14.892800pt;}
.ws1_c00204{word-spacing:-16.000000pt;}
.ws0_c00204{word-spacing:-0.064000pt;}
.ws2_c00204{word-spacing:0.000000pt;}
._6_c00204{margin-left:-14.809600pt;}
._1_c00204{width:1.715200pt;}
._4_c00204{width:2.636800pt;}
._0_c00204{width:5.056000pt;}
._3_c00204{width:6.707200pt;}
._8_c00204{width:7.872000pt;}
._7_c00204{width:9.043200pt;}
._2_c00204{width:10.694400pt;}
._9_c00204{width:12.192000pt;}
._5_c00204{width:14.892800pt;}
._a_c00204{width:176.000000pt;}
.fs1_c00204{font-size:57.600000pt;}
.fs0_c00204{font-size:64.000000pt;}
.y0_c00204{bottom:0.000000pt;}
.y5_c00204{bottom:4.480000pt;}
.y1_c00204{bottom:11.320000pt;}
.y3_c00204{bottom:40.040000pt;}
.y4_c00204{bottom:46.880000pt;}
.y20_c00204{bottom:130.280000pt;}
.y1f_c00204{bottom:162.280000pt;}
.y1e_c00204{bottom:194.280000pt;}
.y1d_c00204{bottom:226.280000pt;}
.y1c_c00204{bottom:258.280000pt;}
.y1b_c00204{bottom:290.280000pt;}
.y1a_c00204{bottom:322.280000pt;}
.y19_c00204{bottom:354.280000pt;}
.y18_c00204{bottom:386.280000pt;}
.y17_c00204{bottom:418.280000pt;}
.y16_c00204{bottom:450.280000pt;}
.y15_c00204{bottom:482.280000pt;}
.y14_c00204{bottom:514.280000pt;}
.y13_c00204{bottom:546.280000pt;}
.y12_c00204{bottom:578.280000pt;}
.y11_c00204{bottom:610.280000pt;}
.y10_c00204{bottom:642.280000pt;}
.yf_c00204{bottom:674.280000pt;}
.ye_c00204{bottom:706.280000pt;}
.yd_c00204{bottom:738.280000pt;}
.yc_c00204{bottom:770.280000pt;}
.yb_c00204{bottom:802.280000pt;}
.ya_c00204{bottom:834.280000pt;}
.y9_c00204{bottom:866.280000pt;}
.y8_c00204{bottom:898.280000pt;}
.y7_c00204{bottom:930.280000pt;}
.y6_c00204{bottom:962.280000pt;}
.y2_c00204{bottom:1035.880000pt;}
.h4_c00204{height:18.560000pt;}
.h3_c00204{height:62.812500pt;}
.h6_c00204{height:63.843750pt;}
.h7_c00204{height:64.500000pt;}
.h5_c00204{height:65.781915pt;}
.h2_c00204{height:1099.880000pt;}
.h0_c00204{height:1122.520000pt;}
.h1_c00204{height:1122.666667pt;}
.w3_c00204{width:24.000000pt;}
.w2_c00204{width:771.080000pt;}
.w0_c00204{width:793.720000pt;}
.w1_c00204{width:794.000000pt;}
.x0_c00204{left:0.000000pt;}
.x1_c00204{left:11.320000pt;}
.x3_c00204{left:84.805600pt;}
.x5_c00204{left:132.800133pt;}
.x6_c00204{left:160.400133pt;}
.x4_c00204{left:385.080000pt;}
.x2_c00204{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00205{font-family:ff1_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:ff2_c00205;src:url('chunks/assets/font_17bf24d9070ed615af64810d.woff2')format("woff");}.ff2_c00205{font-family:ff2_c00205;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00205;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00205{font-family:ff3_c00205;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00205;src:url('chunks/assets/font_438215b0201ecf17e5d5c9d7.woff2')format("woff");}.ff4_c00205{font-family:ff4_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:ff5_c00205;src:url('chunks/assets/font_81331ada1ffd9da351519b8f.woff2')format("woff");}.ff5_c00205{font-family:ff5_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:ff6_c00205;src:url('chunks/assets/font_be1fdfa0ab4fb1be4b25cabf.woff2')format("woff");}.ff6_c00205{font-family:ff6_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:ff7_c00205;src:url('chunks/assets/font_7ababaed03c3be3683fa6d81.woff2')format("woff");}.ff7_c00205{font-family:ff7_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:ff8_c00205;src:url('chunks/assets/font_66720757cbc5be5589788ce5.woff2')format("woff");}.ff8_c00205{font-family:ff8_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:ff9_c00205;src:url('chunks/assets/font_b194637887e0b3e741b3cdac.woff2')format("woff");}.ff9_c00205{font-family:ff9_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:ffa_c00205;src:url('chunks/assets/font_8258d7b12ddf33d8d9488e47.woff2')format("woff");}.ffa_c00205{font-family:ffa_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:ffb_c00205;src:url('chunks/assets/font_08f87acab6c75854b1b94511.woff2')format("woff");}.ffb_c00205{font-family:ffb_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:ffc_c00205;src:url('chunks/assets/font_167bd7c3b87fa0dff39064de.woff2')format("woff");}.ffc_c00205{font-family:ffc_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:ffd_c00205;src:url('chunks/assets/font_107e331f06200bc3ec6a7959.woff2')format("woff");}.ffd_c00205{font-family:ffd_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:ffe_c00205;src:url('chunks/assets/font_ac6e90933f90d6a9c9209142.woff2')format("woff");}.ffe_c00205{font-family:ffe_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:fff_c00205;src:url('chunks/assets/font_21760dbb6f16939cbea6e464.woff2')format("woff");}.fff_c00205{font-family:fff_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:ff10_c00205;src:url('chunks/assets/font_d890a1d5c355bba54918c92b.woff2')format("woff");}.ff10_c00205{font-family:ff10_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:ff11_c00205;src:url('chunks/assets/font_9ea815d7d1f9fdf334983c71.woff2')format("woff");}.ff11_c00205{font-family:ff11_c00205;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:ff12_c00205;src:url('chunks/assets/font_50322489d3299df88cb3bf34.woff2')format("woff");}.ff12_c00205{font-family:ff12_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:ff13_c00205;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff13_c00205{font-family:ff13_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:ff14_c00205;src:url('chunks/assets/font_c08c876352266780037f17e4.woff2')format("woff");}.ff14_c00205{font-family:ff14_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:ff15_c00205;src:url('chunks/assets/font_8450097d3dde03c041797518.woff2')format("woff");}.ff15_c00205{font-family:ff15_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:ff16_c00205;src:url('chunks/assets/font_b11456326443cf6386539863.woff2')format("woff");}.ff16_c00205{font-family:ff16_c00205;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:ff17_c00205;src:url('chunks/assets/font_70aaafad86bce882a9fc9f9d.woff2')format("woff");}.ff17_c00205{font-family:ff17_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:ff18_c00205;src:url('chunks/assets/font_37b91fdbabec6d9ca69609d3.woff2')format("woff");}.ff18_c00205{font-family:ff18_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:ff19_c00205;src:url('chunks/assets/font_564b62730d37183e74027786.woff2')format("woff");}.ff19_c00205{font-family:ff19_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:ff1a_c00205;src:url('chunks/assets/font_8e1f7ec5bb8b49eaf4eea47a.woff2')format("woff");}.ff1a_c00205{font-family:ff1a_c00205;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:ff1b_c00205;src:url('chunks/assets/font_a1d947a68e79e8d3ead664db.woff2')format("woff");}.ff1b_c00205{font-family:ff1b_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:ff1c_c00205;src:url('chunks/assets/font_022023a9510de7ec97a821dc.woff2')format("woff");}.ff1c_c00205{font-family:ff1c_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:ff1d_c00205;src:url('chunks/assets/font_22a3555ea21ea29e6e30b5b2.woff2')format("woff");}.ff1d_c00205{font-family:ff1d_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:ff1e_c00205;src:url('chunks/assets/font_8b1bce28c8d58769b5fcf08f.woff2')format("woff");}.ff1e_c00205{font-family:ff1e_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:ff1f_c00205;src:url('chunks/assets/font_15c9cd383baec396f83a72bf.woff2')format("woff");}.ff1f_c00205{font-family:ff1f_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:ff20_c00205;src:url('chunks/assets/font_cbd40016fe8c74f434b11831.woff2')format("woff");}.ff20_c00205{font-family:ff20_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:ff21_c00205;src:url('chunks/assets/font_e371a5cdef9689a5d2f4f971.woff2')format("woff");}.ff21_c00205{font-family:ff21_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:ff22_c00205;src:url('chunks/assets/font_5311d550933147ae05dd0972.woff2')format("woff");}.ff22_c00205{font-family:ff22_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:ff23_c00205;src:url('chunks/assets/font_b3b3fa2c177edda4ca5499a2.woff2')format("woff");}.ff23_c00205{font-family:ff23_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:ff24_c00205;src:url('chunks/assets/font_7291bd83406750a18d50171a.woff2')format("woff");}.ff24_c00205{font-family:ff24_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:ff25_c00205;src:url('chunks/assets/font_f92fbfda92db692e2808b425.woff2')format("woff");}.ff25_c00205{font-family:ff25_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:ff26_c00205;src:url('chunks/assets/font_6c0e0957b256b8819a3dd7a2.woff2')format("woff");}.ff26_c00205{font-family:ff26_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:ff27_c00205;src:url('chunks/assets/font_62d0b70f87b6cbc3f839ed76.woff2')format("woff");}.ff27_c00205{font-family:ff27_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:ff28_c00205;src:url('chunks/assets/font_8b03c7d42830653c51091845.woff2')format("woff");}.ff28_c00205{font-family:ff28_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:ff29_c00205;src:url('chunks/assets/font_270d22280a57d809352d1281.woff2')format("woff");}.ff29_c00205{font-family:ff29_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:ff2a_c00205;src:url('chunks/assets/font_19f1c7b506980aff4f02607f.woff2')format("woff");}.ff2a_c00205{font-family:ff2a_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:ff2b_c00205;src:url('chunks/assets/font_1fac19bf9670c5d946169622.woff2')format("woff");}.ff2b_c00205{font-family:ff2b_c00205;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00205;src:url('chunks/assets/font_79eeb28e86f18a96eff2929b.woff2')format("woff");}.ff2c_c00205{font-family:ff2c_c00205;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00205;src:url('chunks/assets/font_faec41ceb4e00fb9d27bc54d.woff2')format("woff");}.ff2d_c00205{font-family:ff2d_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:ff2e_c00205;src:url('chunks/assets/font_65298770b5c7950702705a89.woff2')format("woff");}.ff2e_c00205{font-family:ff2e_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:ff2f_c00205;src:url('chunks/assets/font_d1808671fb57e6e2c0a5cd03.woff2')format("woff");}.ff2f_c00205{font-family:ff2f_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:ff30_c00205;src:url('chunks/assets/font_f7e8631a2a978cbe97598508.woff2')format("woff");}.ff30_c00205{font-family:ff30_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:ff31_c00205;src:url('chunks/assets/font_73814912eb171ee0f01f7e42.woff2')format("woff");}.ff31_c00205{font-family:ff31_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:ff32_c00205;src:url('chunks/assets/font_74e529ddf0178a4dc1d5f8da.woff2')format("woff");}.ff32_c00205{font-family:ff32_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:ff33_c00205;src:url('chunks/assets/font_022b79e666dde60435fb720a.woff2')format("woff");}.ff33_c00205{font-family:ff33_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:ff34_c00205;src:url('chunks/assets/font_ccceb6261df55f8637f263e1.woff2')format("woff");}.ff34_c00205{font-family:ff34_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:ff35_c00205;src:url('chunks/assets/font_a1343685f6b2ef1f8d328a2d.woff2')format("woff");}.ff35_c00205{font-family:ff35_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:ff36_c00205;src:url('chunks/assets/font_367ef9b591d66908e947162d.woff2')format("woff");}.ff36_c00205{font-family:ff36_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:ff37_c00205;src:url('chunks/assets/font_edad9fcf12aec9be3a9e83f7.woff2')format("woff");}.ff37_c00205{font-family:ff37_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:ff38_c00205;src:url('chunks/assets/font_e8e5900a40084514484eaaf2.woff2')format("woff");}.ff38_c00205{font-family:ff38_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:ff39_c00205;src:url('chunks/assets/font_ea9560503deadbacb1dd4290.woff2')format("woff");}.ff39_c00205{font-family:ff39_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:ff3a_c00205;src:url('chunks/assets/font_b197e57dea9a74fd64d461f6.woff2')format("woff");}.ff3a_c00205{font-family:ff3a_c00205;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:ff3b_c00205;src:url('chunks/assets/font_03bb29b5dcef4d3cd862a335.woff2')format("woff");}.ff3b_c00205{font-family:ff3b_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:ff3c_c00205;src:url('chunks/assets/font_6455f0047b0168cf7abcd9d3.woff2')format("woff");}.ff3c_c00205{font-family:ff3c_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:ff3d_c00205;src:url('chunks/assets/font_2aa3fc47880c8fbe38b0136d.woff2')format("woff");}.ff3d_c00205{font-family:ff3d_c00205;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00205;src:url('chunks/assets/font_0c678c2214d50602f0c71bb9.woff2')format("woff");}.ff3e_c00205{font-family:ff3e_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;}
.m0_c00205{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00205{vertical-align:0.000000px;}
.ls6_c00205{letter-spacing:0.000000px;}
.ls4_c00205{letter-spacing:0.043200px;}
.ls0_c00205{letter-spacing:0.064800px;}
.ls3_c00205{letter-spacing:0.072000px;}
.ls2_c00205{letter-spacing:8.078400px;}
.ls5_c00205{letter-spacing:13.528800px;}
.ls1_c00205{letter-spacing:15.796800px;}
.sc__c00205{text-shadow:none;}
.sc0_c00205{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00205{-webkit-text-stroke:0px transparent;}
.sc0_c00205{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00205{word-spacing:-0.072000px;}
.ws1_c00205{word-spacing:0.000000px;}
._a_c00205{width:1.152000px;}
._1_c00205{width:2.246400px;}
._0_c00205{width:3.362400px;}
._8_c00205{width:4.536000px;}
._4_c00205{width:6.184800px;}
._2_c00205{width:7.610400px;}
._7_c00205{width:8.719200px;}
._f_c00205{width:13.190400px;}
._e_c00205{width:14.299200px;}
._6_c00205{width:15.861600px;}
._3_c00205{width:19.159200px;}
._d_c00205{width:20.196000px;}
._9_c00205{width:22.183200px;}
._c_c00205{width:28.994400px;}
._5_c00205{width:31.104000px;}
._b_c00205{width:37.461600px;}
.fc1_c00205{color:transparent;}
.fc0_c00205{color:rgb(0,0,0);}
.fs1_c00205{font-size:64.800000px;}
.fs0_c00205{font-size:72.000000px;}
.y0_c00205{bottom:0.000000px;}
.y5_c00205{bottom:5.040000px;}
.y1_c00205{bottom:12.735000px;}
.y3_c00205{bottom:45.045000px;}
.y4_c00205{bottom:52.740000px;}
.y21_c00205{bottom:110.565000px;}
.y20_c00205{bottom:146.565000px;}
.y1f_c00205{bottom:182.565000px;}
.y1e_c00205{bottom:218.565000px;}
.y1d_c00205{bottom:254.565000px;}
.y1c_c00205{bottom:290.565000px;}
.y1b_c00205{bottom:326.565000px;}
.y1a_c00205{bottom:362.565000px;}
.y19_c00205{bottom:398.565000px;}
.y18_c00205{bottom:434.565000px;}
.y17_c00205{bottom:470.565000px;}
.y16_c00205{bottom:506.565000px;}
.y15_c00205{bottom:542.565000px;}
.y14_c00205{bottom:578.565000px;}
.y13_c00205{bottom:614.565000px;}
.y12_c00205{bottom:650.565000px;}
.y11_c00205{bottom:686.565000px;}
.y10_c00205{bottom:722.565000px;}
.yf_c00205{bottom:758.565000px;}
.ye_c00205{bottom:794.565000px;}
.yd_c00205{bottom:830.565000px;}
.yc_c00205{bottom:866.565000px;}
.yb_c00205{bottom:902.565000px;}
.ya_c00205{bottom:938.565000px;}
.y9_c00205{bottom:974.565000px;}
.y8_c00205{bottom:1010.565000px;}
.y7_c00205{bottom:1046.565000px;}
.y6_c00205{bottom:1082.565000px;}
.y2_c00205{bottom:1165.365000px;}
.h4_c00205{height:20.880000px;}
.h6_c00205{height:70.628906px;}
.h3_c00205{height:70.664062px;}
.h7_c00205{height:71.824219px;}
.h5_c00205{height:74.004654px;}
.h2_c00205{height:1237.365000px;}
.h0_c00205{height:1262.835000px;}
.h1_c00205{height:1263.000000px;}
.w3_c00205{width:27.000000px;}
.w2_c00205{width:867.465000px;}
.w0_c00205{width:892.935000px;}
.w1_c00205{width:893.250000px;}
.x0_c00205{left:0.000000px;}
.x1_c00205{left:12.735000px;}
.x3_c00205{left:95.406300px;}
.x5_c00205{left:149.400150px;}
.x4_c00205{left:433.215000px;}
.x2_c00205{left:878.550300px;}
@media print{
.v0_c00205{vertical-align:0.000000pt;}
.ls6_c00205{letter-spacing:0.000000pt;}
.ls4_c00205{letter-spacing:0.038400pt;}
.ls0_c00205{letter-spacing:0.057600pt;}
.ls3_c00205{letter-spacing:0.064000pt;}
.ls2_c00205{letter-spacing:7.180800pt;}
.ls5_c00205{letter-spacing:12.025600pt;}
.ls1_c00205{letter-spacing:14.041600pt;}
.ws0_c00205{word-spacing:-0.064000pt;}
.ws1_c00205{word-spacing:0.000000pt;}
._a_c00205{width:1.024000pt;}
._1_c00205{width:1.996800pt;}
._0_c00205{width:2.988800pt;}
._8_c00205{width:4.032000pt;}
._4_c00205{width:5.497600pt;}
._2_c00205{width:6.764800pt;}
._7_c00205{width:7.750400pt;}
._f_c00205{width:11.724800pt;}
._e_c00205{width:12.710400pt;}
._6_c00205{width:14.099200pt;}
._3_c00205{width:17.030400pt;}
._d_c00205{width:17.952000pt;}
._9_c00205{width:19.718400pt;}
._c_c00205{width:25.772800pt;}
._5_c00205{width:27.648000pt;}
._b_c00205{width:33.299200pt;}
.fs1_c00205{font-size:57.600000pt;}
.fs0_c00205{font-size:64.000000pt;}
.y0_c00205{bottom:0.000000pt;}
.y5_c00205{bottom:4.480000pt;}
.y1_c00205{bottom:11.320000pt;}
.y3_c00205{bottom:40.040000pt;}
.y4_c00205{bottom:46.880000pt;}
.y21_c00205{bottom:98.280000pt;}
.y20_c00205{bottom:130.280000pt;}
.y1f_c00205{bottom:162.280000pt;}
.y1e_c00205{bottom:194.280000pt;}
.y1d_c00205{bottom:226.280000pt;}
.y1c_c00205{bottom:258.280000pt;}
.y1b_c00205{bottom:290.280000pt;}
.y1a_c00205{bottom:322.280000pt;}
.y19_c00205{bottom:354.280000pt;}
.y18_c00205{bottom:386.280000pt;}
.y17_c00205{bottom:418.280000pt;}
.y16_c00205{bottom:450.280000pt;}
.y15_c00205{bottom:482.280000pt;}
.y14_c00205{bottom:514.280000pt;}
.y13_c00205{bottom:546.280000pt;}
.y12_c00205{bottom:578.280000pt;}
.y11_c00205{bottom:610.280000pt;}
.y10_c00205{bottom:642.280000pt;}
.yf_c00205{bottom:674.280000pt;}
.ye_c00205{bottom:706.280000pt;}
.yd_c00205{bottom:738.280000pt;}
.yc_c00205{bottom:770.280000pt;}
.yb_c00205{bottom:802.280000pt;}
.ya_c00205{bottom:834.280000pt;}
.y9_c00205{bottom:866.280000pt;}
.y8_c00205{bottom:898.280000pt;}
.y7_c00205{bottom:930.280000pt;}
.y6_c00205{bottom:962.280000pt;}
.y2_c00205{bottom:1035.880000pt;}
.h4_c00205{height:18.560000pt;}
.h6_c00205{height:62.781250pt;}
.h3_c00205{height:62.812500pt;}
.h7_c00205{height:63.843750pt;}
.h5_c00205{height:65.781915pt;}
.h2_c00205{height:1099.880000pt;}
.h0_c00205{height:1122.520000pt;}
.h1_c00205{height:1122.666667pt;}
.w3_c00205{width:24.000000pt;}
.w2_c00205{width:771.080000pt;}
.w0_c00205{width:793.720000pt;}
.w1_c00205{width:794.000000pt;}
.x0_c00205{left:0.000000pt;}
.x1_c00205{left:11.320000pt;}
.x3_c00205{left:84.805600pt;}
.x5_c00205{left:132.800133pt;}
.x4_c00205{left:385.080000pt;}
.x2_c00205{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00206{font-family:ff1_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00206;src:url('chunks/assets/font_50bdd05ed11a33c9a5c771b7.woff2')format("woff");}.ff2_c00206{font-family:ff2_c00206;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00206;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00206{font-family:ff3_c00206;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00206;src:url('chunks/assets/font_c75c9406fed525e788266ab1.woff2')format("woff");}.ff4_c00206{font-family:ff4_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00206;src:url('chunks/assets/font_dd92492412b6e186461a0612.woff2')format("woff");}.ff5_c00206{font-family:ff5_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00206;src:url('chunks/assets/font_a7a04be0a0db9a7f7b9e4e92.woff2')format("woff");}.ff6_c00206{font-family:ff6_c00206;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00206;src:url('chunks/assets/font_ac102a99b7fbdcec59e535a6.woff2')format("woff");}.ff7_c00206{font-family:ff7_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00206;src:url('chunks/assets/font_39f43480d261ffb3a8b27b39.woff2')format("woff");}.ff8_c00206{font-family:ff8_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00206;src:url('chunks/assets/font_a7a04be0a0db9a7f7b9e4e92.woff2')format("woff");}.ff9_c00206{font-family:ff9_c00206;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00206;src:url('chunks/assets/font_4cfb563b04a4ee2d63aa7470.woff2')format("woff");}.ffa_c00206{font-family:ffa_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00206;src:url('chunks/assets/font_caa046ff75d82f71010f50a8.woff2')format("woff");}.ffb_c00206{font-family:ffb_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00206;src:url('chunks/assets/font_50833b2e06daa48543d3e1c0.woff2')format("woff");}.ffc_c00206{font-family:ffc_c00206;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:ffd_c00206;src:url('chunks/assets/font_5b2288e5d0b848100f6605bc.woff2')format("woff");}.ffd_c00206{font-family:ffd_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00206;src:url('chunks/assets/font_cd6e8dad74fbd55967b02d13.woff2')format("woff");}.ffe_c00206{font-family:ffe_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00206;src:url('chunks/assets/font_0c1ca89dc2b3a670953bd2d4.woff2')format("woff");}.fff_c00206{font-family:fff_c00206;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00206;src:url('chunks/assets/font_b8e360f7ec8c85009355ff0b.woff2')format("woff");}.ff10_c00206{font-family:ff10_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00206;src:url('chunks/assets/font_6a5e0fa266377d5623965497.woff2')format("woff");}.ff11_c00206{font-family:ff11_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00206;src:url('chunks/assets/font_0c1ca89dc2b3a670953bd2d4.woff2')format("woff");}.ff12_c00206{font-family:ff12_c00206;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00206;src:url('chunks/assets/font_10903fdb540648f781bc6d06.woff2')format("woff");}.ff13_c00206{font-family:ff13_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00206;src:url('chunks/assets/font_005bf25d7beb8e9079992342.woff2')format("woff");}.ff14_c00206{font-family:ff14_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00206;src:url('chunks/assets/font_b8ef6d455a66b916ea3f3d32.woff2')format("woff");}.ff15_c00206{font-family:ff15_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00206;src:url('chunks/assets/font_4bfc464871d26a12c81e55ae.woff2')format("woff");}.ff16_c00206{font-family:ff16_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00206;src:url('chunks/assets/font_a2bfe5b29069985d83fc2d83.woff2')format("woff");}.ff17_c00206{font-family:ff17_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00206;src:url('chunks/assets/font_6d4ab57525d4821fa279eaa2.woff2')format("woff");}.ff18_c00206{font-family:ff18_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00206;src:url('chunks/assets/font_1da3b2c653d2f5fa99586ed0.woff2')format("woff");}.ff19_c00206{font-family:ff19_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00206;src:url('chunks/assets/font_16a6a4447b2215f56b147b0e.woff2')format("woff");}.ff1a_c00206{font-family:ff1a_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00206;src:url('chunks/assets/font_cd062c0e7fb727c01e89ec9b.woff2')format("woff");}.ff1b_c00206{font-family:ff1b_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00206;src:url('chunks/assets/font_828bb190bde35100f0ae5939.woff2')format("woff");}.ff1c_c00206{font-family:ff1c_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00206;src:url('chunks/assets/font_3fccbad9bf6f8757258726d9.woff2')format("woff");}.ff1d_c00206{font-family:ff1d_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00206;src:url('chunks/assets/font_c36b96a24b5090982470ee63.woff2')format("woff");}.ff1e_c00206{font-family:ff1e_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00206;src:url('chunks/assets/font_33857792a66d8dd5505521fe.woff2')format("woff");}.ff1f_c00206{font-family:ff1f_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00206;src:url('chunks/assets/font_840ac9b1665b7fbb4c3568dc.woff2')format("woff");}.ff20_c00206{font-family:ff20_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00206;src:url('chunks/assets/font_2d23cd7108448c36ffeb0fc2.woff2')format("woff");}.ff21_c00206{font-family:ff21_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00206;src:url('chunks/assets/font_69d2c96177afa50a99236e2b.woff2')format("woff");}.ff22_c00206{font-family:ff22_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00206;src:url('chunks/assets/font_64e6da9d1af5b44cc5c35355.woff2')format("woff");}.ff23_c00206{font-family:ff23_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00206;src:url('chunks/assets/font_12b7a092e7655071d785dd81.woff2')format("woff");}.ff24_c00206{font-family:ff24_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00206;src:url('chunks/assets/font_9ca913d7590359ca88c4612b.woff2')format("woff");}.ff25_c00206{font-family:ff25_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00206;src:url('chunks/assets/font_f7fc4e6a96c1f7109b69ed64.woff2')format("woff");}.ff26_c00206{font-family:ff26_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00206;src:url('chunks/assets/font_0f9aeb116399a14f531463ec.woff2')format("woff");}.ff27_c00206{font-family:ff27_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00206;src:url('chunks/assets/font_e55b854185f73c8abc1c15ce.woff2')format("woff");}.ff28_c00206{font-family:ff28_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00206;src:url('chunks/assets/font_bfc9aa3dcaf28fcc9c5c6eb6.woff2')format("woff");}.ff29_c00206{font-family:ff29_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00206;src:url('chunks/assets/font_ff4839e15cb43d4673c69972.woff2')format("woff");}.ff2a_c00206{font-family:ff2a_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00206;src:url('chunks/assets/font_f98da24ef906475c95f0999c.woff2')format("woff");}.ff2b_c00206{font-family:ff2b_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00206;src:url('chunks/assets/font_14ca38c47ffe2242ae9791a4.woff2')format("woff");}.ff2c_c00206{font-family:ff2c_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00206;src:url('chunks/assets/font_0612a5878e578739048903d4.woff2')format("woff");}.ff2d_c00206{font-family:ff2d_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00206;src:url('chunks/assets/font_4ed11fc1d43a76a670674180.woff2')format("woff");}.ff2e_c00206{font-family:ff2e_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00206;src:url('chunks/assets/font_3f83fc228c2d0227e397eeb5.woff2')format("woff");}.ff2f_c00206{font-family:ff2f_c00206;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00206;src:url('chunks/assets/font_9b6c8c5456f6f9b9aa26ac75.woff2')format("woff");}.ff30_c00206{font-family:ff30_c00206;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00206;src:url('chunks/assets/font_d8e2be9c47515119c30eb48b.woff2')format("woff");}.ff31_c00206{font-family:ff31_c00206;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00206;src:url('chunks/assets/font_559345ea37c49f2e089db418.woff2')format("woff");}.ff32_c00206{font-family:ff32_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00206;src:url('chunks/assets/font_e1de569227a875158f724c72.woff2')format("woff");}.ff33_c00206{font-family:ff33_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00206;src:url('chunks/assets/font_6738d6070099d724349e83a1.woff2')format("woff");}.ff34_c00206{font-family:ff34_c00206;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00206{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00206{vertical-align:0.000000px;}
.ls5_c00206{letter-spacing:0.000000px;}
.ls4_c00206{letter-spacing:0.072000px;}
.ls1_c00206{letter-spacing:4.248000px;}
.ls0_c00206{letter-spacing:8.460000px;}
.ls3_c00206{letter-spacing:13.154400px;}
.ls2_c00206{letter-spacing:26.388000px;}
.sc__c00206{text-shadow:none;}
.sc0_c00206{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00206{-webkit-text-stroke:0px transparent;}
.sc0_c00206{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00206{word-spacing:-0.072000px;}
.ws1_c00206{word-spacing:0.000000px;}
._7_c00206{margin-left:-1.116000px;}
._9_c00206{width:1.094400px;}
._8_c00206{width:2.210400px;}
._1_c00206{width:3.564000px;}
._2_c00206{width:4.874400px;}
._3_c00206{width:5.911200px;}
._a_c00206{width:7.106400px;}
._0_c00206{width:8.611200px;}
._c_c00206{width:10.771200px;}
._5_c00206{width:13.262400px;}
._6_c00206{width:16.732800px;}
._b_c00206{width:21.038400px;}
._4_c00206{width:26.532000px;}
._d_c00206{width:28.576800px;}
.fc1_c00206{color:transparent;}
.fc0_c00206{color:rgb(0,0,0);}
.fs1_c00206{font-size:64.800000px;}
.fs0_c00206{font-size:72.000000px;}
.y0_c00206{bottom:0.000000px;}
.y5_c00206{bottom:5.040000px;}
.y1_c00206{bottom:12.735000px;}
.y3_c00206{bottom:45.045000px;}
.y4_c00206{bottom:52.740000px;}
.y21_c00206{bottom:110.565000px;}
.y20_c00206{bottom:146.565000px;}
.y1f_c00206{bottom:182.565000px;}
.y1e_c00206{bottom:218.565000px;}
.y1d_c00206{bottom:254.565000px;}
.y1c_c00206{bottom:290.565000px;}
.y1b_c00206{bottom:326.565000px;}
.y1a_c00206{bottom:362.565000px;}
.y19_c00206{bottom:398.565000px;}
.y18_c00206{bottom:434.565000px;}
.y17_c00206{bottom:470.565000px;}
.y16_c00206{bottom:506.565000px;}
.y15_c00206{bottom:542.565000px;}
.y14_c00206{bottom:578.565000px;}
.y13_c00206{bottom:614.565000px;}
.y12_c00206{bottom:650.565000px;}
.y11_c00206{bottom:686.565000px;}
.y10_c00206{bottom:722.565000px;}
.yf_c00206{bottom:758.565000px;}
.ye_c00206{bottom:794.565000px;}
.yd_c00206{bottom:830.565000px;}
.yc_c00206{bottom:866.565000px;}
.yb_c00206{bottom:902.565000px;}
.ya_c00206{bottom:938.565000px;}
.y9_c00206{bottom:974.565000px;}
.y8_c00206{bottom:1010.565000px;}
.y7_c00206{bottom:1046.565000px;}
.y6_c00206{bottom:1082.565000px;}
.y2_c00206{bottom:1165.365000px;}
.h4_c00206{height:20.880000px;}
.h3_c00206{height:70.664062px;}
.h6_c00206{height:71.824219px;}
.h5_c00206{height:74.004654px;}
.h2_c00206{height:1237.365000px;}
.h0_c00206{height:1262.835000px;}
.h1_c00206{height:1263.000000px;}
.w3_c00206{width:27.000000px;}
.w2_c00206{width:867.465000px;}
.w0_c00206{width:892.935000px;}
.w1_c00206{width:893.250000px;}
.x0_c00206{left:0.000000px;}
.x1_c00206{left:12.735000px;}
.x3_c00206{left:95.406300px;}
.x5_c00206{left:149.418150px;}
.x4_c00206{left:433.215000px;}
.x2_c00206{left:878.550300px;}
@media print{
.v0_c00206{vertical-align:0.000000pt;}
.ls5_c00206{letter-spacing:0.000000pt;}
.ls4_c00206{letter-spacing:0.064000pt;}
.ls1_c00206{letter-spacing:3.776000pt;}
.ls0_c00206{letter-spacing:7.520000pt;}
.ls3_c00206{letter-spacing:11.692800pt;}
.ls2_c00206{letter-spacing:23.456000pt;}
.ws0_c00206{word-spacing:-0.064000pt;}
.ws1_c00206{word-spacing:0.000000pt;}
._7_c00206{margin-left:-0.992000pt;}
._9_c00206{width:0.972800pt;}
._8_c00206{width:1.964800pt;}
._1_c00206{width:3.168000pt;}
._2_c00206{width:4.332800pt;}
._3_c00206{width:5.254400pt;}
._a_c00206{width:6.316800pt;}
._0_c00206{width:7.654400pt;}
._c_c00206{width:9.574400pt;}
._5_c00206{width:11.788800pt;}
._6_c00206{width:14.873600pt;}
._b_c00206{width:18.700800pt;}
._4_c00206{width:23.584000pt;}
._d_c00206{width:25.401600pt;}
.fs1_c00206{font-size:57.600000pt;}
.fs0_c00206{font-size:64.000000pt;}
.y0_c00206{bottom:0.000000pt;}
.y5_c00206{bottom:4.480000pt;}
.y1_c00206{bottom:11.320000pt;}
.y3_c00206{bottom:40.040000pt;}
.y4_c00206{bottom:46.880000pt;}
.y21_c00206{bottom:98.280000pt;}
.y20_c00206{bottom:130.280000pt;}
.y1f_c00206{bottom:162.280000pt;}
.y1e_c00206{bottom:194.280000pt;}
.y1d_c00206{bottom:226.280000pt;}
.y1c_c00206{bottom:258.280000pt;}
.y1b_c00206{bottom:290.280000pt;}
.y1a_c00206{bottom:322.280000pt;}
.y19_c00206{bottom:354.280000pt;}
.y18_c00206{bottom:386.280000pt;}
.y17_c00206{bottom:418.280000pt;}
.y16_c00206{bottom:450.280000pt;}
.y15_c00206{bottom:482.280000pt;}
.y14_c00206{bottom:514.280000pt;}
.y13_c00206{bottom:546.280000pt;}
.y12_c00206{bottom:578.280000pt;}
.y11_c00206{bottom:610.280000pt;}
.y10_c00206{bottom:642.280000pt;}
.yf_c00206{bottom:674.280000pt;}
.ye_c00206{bottom:706.280000pt;}
.yd_c00206{bottom:738.280000pt;}
.yc_c00206{bottom:770.280000pt;}
.yb_c00206{bottom:802.280000pt;}
.ya_c00206{bottom:834.280000pt;}
.y9_c00206{bottom:866.280000pt;}
.y8_c00206{bottom:898.280000pt;}
.y7_c00206{bottom:930.280000pt;}
.y6_c00206{bottom:962.280000pt;}
.y2_c00206{bottom:1035.880000pt;}
.h4_c00206{height:18.560000pt;}
.h3_c00206{height:62.812500pt;}
.h6_c00206{height:63.843750pt;}
.h5_c00206{height:65.781915pt;}
.h2_c00206{height:1099.880000pt;}
.h0_c00206{height:1122.520000pt;}
.h1_c00206{height:1122.666667pt;}
.w3_c00206{width:24.000000pt;}
.w2_c00206{width:771.080000pt;}
.w0_c00206{width:793.720000pt;}
.w1_c00206{width:794.000000pt;}
.x0_c00206{left:0.000000pt;}
.x1_c00206{left:11.320000pt;}
.x3_c00206{left:84.805600pt;}
.x5_c00206{left:132.816133pt;}
.x4_c00206{left:385.080000pt;}
.x2_c00206{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00207{font-family:ff1_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:ff2_c00207;src:url('chunks/assets/font_cffb073a4e65a3f0f287421f.woff2')format("woff");}.ff2_c00207{font-family:ff2_c00207;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00207;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00207{font-family:ff3_c00207;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00207;src:url('chunks/assets/font_40f500d9dd955abce8c77d3e.woff2')format("woff");}.ff4_c00207{font-family:ff4_c00207;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00207;src:url('chunks/assets/font_239b3441a8f14f6488c24039.woff2')format("woff");}.ff5_c00207{font-family:ff5_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:ff6_c00207;src:url('chunks/assets/font_93ea710d379743a2226111cd.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_dcbcfc69556aa750bf8fd929.woff2')format("woff");}.ff7_c00207{font-family:ff7_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:ff8_c00207;src:url('chunks/assets/font_48a1ef560d74b446b75cf961.woff2')format("woff");}.ff8_c00207{font-family:ff8_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:ff9_c00207;src:url('chunks/assets/font_4ce278ad0633aad6db5be77d.woff2')format("woff");}.ff9_c00207{font-family:ff9_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:ffa_c00207;src:url('chunks/assets/font_bf2153fabd92915d43dcee6d.woff2')format("woff");}.ffa_c00207{font-family:ffa_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:ffb_c00207;src:url('chunks/assets/font_0006b2a2b0f3a76a3d21643a.woff2')format("woff");}.ffb_c00207{font-family:ffb_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:ffc_c00207;src:url('chunks/assets/font_7ed7752f7a6d26ab4257900a.woff2')format("woff");}.ffc_c00207{font-family:ffc_c00207;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00207;src:url('chunks/assets/font_96d9638820d7c2bb0af86bed.woff2')format("woff");}.ffd_c00207{font-family:ffd_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:ffe_c00207;src:url('chunks/assets/font_539b8edc0de4373cc86a78ad.woff2')format("woff");}.ffe_c00207{font-family:ffe_c00207;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00207;src:url('chunks/assets/font_d75bd8e582c514a6a2ffc452.woff2')format("woff");}.fff_c00207{font-family:fff_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:ff10_c00207;src:url('chunks/assets/font_36d25155a26c4bbc8caf6f17.woff2')format("woff");}.ff10_c00207{font-family:ff10_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:ff11_c00207;src:url('chunks/assets/font_8596b40409ca30fac22fddce.woff2')format("woff");}.ff11_c00207{font-family:ff11_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:ff12_c00207;src:url('chunks/assets/font_391e01db78821ed5673293c8.woff2')format("woff");}.ff12_c00207{font-family:ff12_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:ff13_c00207;src:url('chunks/assets/font_22d4c55c97655d2c3d59b892.woff2')format("woff");}.ff13_c00207{font-family:ff13_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:ff14_c00207;src:url('chunks/assets/font_91986f3fe738d15097a95a82.woff2')format("woff");}.ff14_c00207{font-family:ff14_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:ff15_c00207;src:url('chunks/assets/font_2e97ccdf08c45c5321da8dc2.woff2')format("woff");}.ff15_c00207{font-family:ff15_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:ff16_c00207;src:url('chunks/assets/font_90dda577289615b22670b4fb.woff2')format("woff");}.ff16_c00207{font-family:ff16_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:ff17_c00207;src:url('chunks/assets/font_212836c9d8686ee6023ea81e.woff2')format("woff");}.ff17_c00207{font-family:ff17_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:ff18_c00207;src:url('chunks/assets/font_070bd93291adc336f7d0709e.woff2')format("woff");}.ff18_c00207{font-family:ff18_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:ff19_c00207;src:url('chunks/assets/font_19ab21c05d1f087aa4138619.woff2')format("woff");}.ff19_c00207{font-family:ff19_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:ff1a_c00207;src:url('chunks/assets/font_4d1c9a7286660a58eb6f3f54.woff2')format("woff");}.ff1a_c00207{font-family:ff1a_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:ff1b_c00207;src:url('chunks/assets/font_fb132fedc52622bd1399a53a.woff2')format("woff");}.ff1b_c00207{font-family:ff1b_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:ff1c_c00207;src:url('chunks/assets/font_40c6a1c47d753cfdf507c7ba.woff2')format("woff");}.ff1c_c00207{font-family:ff1c_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:ff1d_c00207;src:url('chunks/assets/font_0927fa840b35f6b3cf51c515.woff2')format("woff");}.ff1d_c00207{font-family:ff1d_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:ff1e_c00207;src:url('chunks/assets/font_be0c3d50607788f2d0f51de9.woff2')format("woff");}.ff1e_c00207{font-family:ff1e_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:ff1f_c00207;src:url('chunks/assets/font_7ceee4bb74f6a2c13101d1ec.woff2')format("woff");}.ff1f_c00207{font-family:ff1f_c00207;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00207;src:url('chunks/assets/font_b9d8ea7c920f11d053fefdcd.woff2')format("woff");}.ff20_c00207{font-family:ff20_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:ff21_c00207;src:url('chunks/assets/font_e6a217e1c45b79cd39715bf7.woff2')format("woff");}.ff21_c00207{font-family:ff21_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:ff22_c00207;src:url('chunks/assets/font_8ff90822a828562fad1e2cb5.woff2')format("woff");}.ff22_c00207{font-family:ff22_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:ff23_c00207;src:url('chunks/assets/font_3a47bf67458fda25d9a62a26.woff2')format("woff");}.ff23_c00207{font-family:ff23_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:ff24_c00207;src:url('chunks/assets/font_b0a10634865941d61ed8930f.woff2')format("woff");}.ff24_c00207{font-family:ff24_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:ff25_c00207;src:url('chunks/assets/font_afd1c40a691bcf01924ebda4.woff2')format("woff");}.ff25_c00207{font-family:ff25_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:ff26_c00207;src:url('chunks/assets/font_7f05d11e15511017961ee74f.woff2')format("woff");}.ff26_c00207{font-family:ff26_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:ff27_c00207;src:url('chunks/assets/font_7ad2090c534f68e7bc599e3e.woff2')format("woff");}.ff27_c00207{font-family:ff27_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:ff28_c00207;src:url('chunks/assets/font_e3e0825a9494f6b61c20b08d.woff2')format("woff");}.ff28_c00207{font-family:ff28_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:ff29_c00207;src:url('chunks/assets/font_19bb7e4e33ffea7ff3e32fd8.woff2')format("woff");}.ff29_c00207{font-family:ff29_c00207;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00207;src:url('chunks/assets/font_6158b40046ff8f688518c6a0.woff2')format("woff");}.ff2a_c00207{font-family:ff2a_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:ff2b_c00207;src:url('chunks/assets/font_e5cdb4776592c99f945c94e4.woff2')format("woff");}.ff2b_c00207{font-family:ff2b_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:ff2c_c00207;src:url('chunks/assets/font_6badb8978ecbdd7ba186d9f4.woff2')format("woff");}.ff2c_c00207{font-family:ff2c_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:ff2d_c00207;src:url('chunks/assets/font_c19edb8fa621a694a226b8ef.woff2')format("woff");}.ff2d_c00207{font-family:ff2d_c00207;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00207;src:url('chunks/assets/font_39790dc5826e0b6e27cb9254.woff2')format("woff");}.ff2e_c00207{font-family:ff2e_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:ff2f_c00207;src:url('chunks/assets/font_dd04db74a8e2eddbf24b2b1a.woff2')format("woff");}.ff2f_c00207{font-family:ff2f_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:ff30_c00207;src:url('chunks/assets/font_fa3b67d8dc8d064f8b888686.woff2')format("woff");}.ff30_c00207{font-family:ff30_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:ff31_c00207;src:url('chunks/assets/font_d5aacff77c20879133b0cd70.woff2')format("woff");}.ff31_c00207{font-family:ff31_c00207;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00207;src:url('chunks/assets/font_abc743e4111c6031cba57b31.woff2')format("woff");}.ff32_c00207{font-family:ff32_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:ff33_c00207;src:url('chunks/assets/font_57e470a36503d1e2447cc92d.woff2')format("woff");}.ff33_c00207{font-family:ff33_c00207;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00207;src:url('chunks/assets/font_e01d9a015effffdee2af562b.woff2')format("woff");}.ff34_c00207{font-family:ff34_c00207;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00207;src:url('chunks/assets/font_e78abb58bbb8c1cf1dc122d0.woff2')format("woff");}.ff35_c00207{font-family:ff35_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;}
.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;}
.ls8_c00207{letter-spacing:-0.446400px;}
.ls7_c00207{letter-spacing:0.000000px;}
.ls6_c00207{letter-spacing:0.014400px;}
.ls3_c00207{letter-spacing:0.064800px;}
.ls0_c00207{letter-spacing:0.093600px;}
.ls5_c00207{letter-spacing:5.112000px;}
.ls2_c00207{letter-spacing:6.098400px;}
.ls1_c00207{letter-spacing:6.156000px;}
.ls4_c00207{letter-spacing:6.192000px;}
.sc__c00207{text-shadow:none;}
.sc0_c00207{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00207{-webkit-text-stroke:0px transparent;}
.sc0_c00207{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00207{word-spacing:-0.072000px;}
.ws2_c00207{word-spacing:0.000000px;}
.ws1_c00207{word-spacing:0.374400px;}
._0_c00207{width:1.555200px;}
._5_c00207{width:2.779200px;}
._4_c00207{width:3.859200px;}
._1_c00207{width:5.565600px;}
._2_c00207{width:6.732000px;}
._8_c00207{width:10.375200px;}
._7_c00207{width:11.455200px;}
._6_c00207{width:12.556800px;}
._3_c00207{width:22.096800px;}
.fc1_c00207{color:transparent;}
.fc0_c00207{color:rgb(0,0,0);}
.fs1_c00207{font-size:64.800000px;}
.fs0_c00207{font-size:72.000000px;}
.y0_c00207{bottom:0.000000px;}
.y5_c00207{bottom:5.040000px;}
.y1_c00207{bottom:12.735000px;}
.y3_c00207{bottom:45.045000px;}
.y4_c00207{bottom:52.740000px;}
.y21_c00207{bottom:110.565000px;}
.y20_c00207{bottom:146.565000px;}
.y1f_c00207{bottom:182.565000px;}
.y1e_c00207{bottom:218.565000px;}
.y1d_c00207{bottom:254.565000px;}
.y1c_c00207{bottom:290.565000px;}
.y1b_c00207{bottom:326.565000px;}
.y1a_c00207{bottom:362.565000px;}
.y19_c00207{bottom:398.565000px;}
.y18_c00207{bottom:434.565000px;}
.y17_c00207{bottom:470.565000px;}
.y16_c00207{bottom:506.565000px;}
.y15_c00207{bottom:542.565000px;}
.y14_c00207{bottom:578.565000px;}
.y13_c00207{bottom:614.565000px;}
.y12_c00207{bottom:650.565000px;}
.y11_c00207{bottom:686.565000px;}
.y10_c00207{bottom:722.565000px;}
.yf_c00207{bottom:758.565000px;}
.ye_c00207{bottom:794.565000px;}
.yd_c00207{bottom:830.565000px;}
.yc_c00207{bottom:866.565000px;}
.yb_c00207{bottom:902.565000px;}
.ya_c00207{bottom:938.565000px;}
.y9_c00207{bottom:974.565000px;}
.y8_c00207{bottom:1010.565000px;}
.y7_c00207{bottom:1046.565000px;}
.y6_c00207{bottom:1082.565000px;}
.y2_c00207{bottom:1165.365000px;}
.h4_c00207{height:20.880000px;}
.h3_c00207{height:70.664062px;}
.h6_c00207{height:71.824219px;}
.h5_c00207{height:74.004654px;}
.h2_c00207{height:1237.365000px;}
.h0_c00207{height:1262.835000px;}
.h1_c00207{height:1263.000000px;}
.w3_c00207{width:27.000000px;}
.w2_c00207{width:867.465000px;}
.w0_c00207{width:892.935000px;}
.w1_c00207{width:893.250000px;}
.x0_c00207{left:0.000000px;}
.x1_c00207{left:12.735000px;}
.x3_c00207{left:95.406300px;}
.x5_c00207{left:149.400150px;}
.x4_c00207{left:433.215000px;}
.x2_c00207{left:878.550300px;}
@media print{
.v0_c00207{vertical-align:0.000000pt;}
.ls8_c00207{letter-spacing:-0.396800pt;}
.ls7_c00207{letter-spacing:0.000000pt;}
.ls6_c00207{letter-spacing:0.012800pt;}
.ls3_c00207{letter-spacing:0.057600pt;}
.ls0_c00207{letter-spacing:0.083200pt;}
.ls5_c00207{letter-spacing:4.544000pt;}
.ls2_c00207{letter-spacing:5.420800pt;}
.ls1_c00207{letter-spacing:5.472000pt;}
.ls4_c00207{letter-spacing:5.504000pt;}
.ws0_c00207{word-spacing:-0.064000pt;}
.ws2_c00207{word-spacing:0.000000pt;}
.ws1_c00207{word-spacing:0.332800pt;}
._0_c00207{width:1.382400pt;}
._5_c00207{width:2.470400pt;}
._4_c00207{width:3.430400pt;}
._1_c00207{width:4.947200pt;}
._2_c00207{width:5.984000pt;}
._8_c00207{width:9.222400pt;}
._7_c00207{width:10.182400pt;}
._6_c00207{width:11.161600pt;}
._3_c00207{width:19.641600pt;}
.fs1_c00207{font-size:57.600000pt;}
.fs0_c00207{font-size:64.000000pt;}
.y0_c00207{bottom:0.000000pt;}
.y5_c00207{bottom:4.480000pt;}
.y1_c00207{bottom:11.320000pt;}
.y3_c00207{bottom:40.040000pt;}
.y4_c00207{bottom:46.880000pt;}
.y21_c00207{bottom:98.280000pt;}
.y20_c00207{bottom:130.280000pt;}
.y1f_c00207{bottom:162.280000pt;}
.y1e_c00207{bottom:194.280000pt;}
.y1d_c00207{bottom:226.280000pt;}
.y1c_c00207{bottom:258.280000pt;}
.y1b_c00207{bottom:290.280000pt;}
.y1a_c00207{bottom:322.280000pt;}
.y19_c00207{bottom:354.280000pt;}
.y18_c00207{bottom:386.280000pt;}
.y17_c00207{bottom:418.280000pt;}
.y16_c00207{bottom:450.280000pt;}
.y15_c00207{bottom:482.280000pt;}
.y14_c00207{bottom:514.280000pt;}
.y13_c00207{bottom:546.280000pt;}
.y12_c00207{bottom:578.280000pt;}
.y11_c00207{bottom:610.280000pt;}
.y10_c00207{bottom:642.280000pt;}
.yf_c00207{bottom:674.280000pt;}
.ye_c00207{bottom:706.280000pt;}
.yd_c00207{bottom:738.280000pt;}
.yc_c00207{bottom:770.280000pt;}
.yb_c00207{bottom:802.280000pt;}
.ya_c00207{bottom:834.280000pt;}
.y9_c00207{bottom:866.280000pt;}
.y8_c00207{bottom:898.280000pt;}
.y7_c00207{bottom:930.280000pt;}
.y6_c00207{bottom:962.280000pt;}
.y2_c00207{bottom:1035.880000pt;}
.h4_c00207{height:18.560000pt;}
.h3_c00207{height:62.812500pt;}
.h6_c00207{height:63.843750pt;}
.h5_c00207{height:65.781915pt;}
.h2_c00207{height:1099.880000pt;}
.h0_c00207{height:1122.520000pt;}
.h1_c00207{height:1122.666667pt;}
.w3_c00207{width:24.000000pt;}
.w2_c00207{width:771.080000pt;}
.w0_c00207{width:793.720000pt;}
.w1_c00207{width:794.000000pt;}
.x0_c00207{left:0.000000pt;}
.x1_c00207{left:11.320000pt;}
.x3_c00207{left:84.805600pt;}
.x5_c00207{left:132.800133pt;}
.x4_c00207{left:385.080000pt;}
.x2_c00207{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6df1195c9c0489b9ae76e45b.woff2')format("woff");}.ff1_c00208{font-family:ff1_c00208;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00208;src:url('chunks/assets/font_b59a3e3bbad19ba766dba81c.woff2')format("woff");}.ff2_c00208{font-family:ff2_c00208;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00208;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00208{font-family:ff3_c00208;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00208;src:url('chunks/assets/font_9ac7612b26ff09f143662a2e.woff2')format("woff");}.ff4_c00208{font-family:ff4_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00208;src:url('chunks/assets/font_3fabb08a44733ff409e6c57c.woff2')format("woff");}.ff5_c00208{font-family:ff5_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00208;src:url('chunks/assets/font_c20e9ccc27e188eb0d784196.woff2')format("woff");}.ff6_c00208{font-family:ff6_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00208;src:url('chunks/assets/font_a6ef41d9ff8f430a884c028e.woff2')format("woff");}.ff7_c00208{font-family:ff7_c00208;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00208;src:url('chunks/assets/font_f8117fd58488e0d57214c2c2.woff2')format("woff");}.ff8_c00208{font-family:ff8_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:ff9_c00208;src:url('chunks/assets/font_5732479e94a81180e1d263cd.woff2')format("woff");}.ff9_c00208{font-family:ff9_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:ffa_c00208;src:url('chunks/assets/font_644af109b1df7516c6f6e132.woff2')format("woff");}.ffa_c00208{font-family:ffa_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:ffb_c00208;src:url('chunks/assets/font_4a9f85a02d9d57b668e51e1b.woff2')format("woff");}.ffb_c00208{font-family:ffb_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:ffc_c00208;src:url('chunks/assets/font_3f3bda150920ac0ac34d679e.woff2')format("woff");}.ffc_c00208{font-family:ffc_c00208;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00208;src:url('chunks/assets/font_68949536b62c70b4a3317b1f.woff2')format("woff");}.ffd_c00208{font-family:ffd_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00208;src:url('chunks/assets/font_bbeef746aab2a00e2001329a.woff2')format("woff");}.ffe_c00208{font-family:ffe_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00208;src:url('chunks/assets/font_532beadbb03967a0a3f452f7.woff2')format("woff");}.fff_c00208{font-family:fff_c00208;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:ff10_c00208;src:url('chunks/assets/font_c5d9c0dae9eb94fd0f1d8879.woff2')format("woff");}.ff10_c00208{font-family:ff10_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00208;src:url('chunks/assets/font_8510f77d2e487369754fbfe3.woff2')format("woff");}.ff11_c00208{font-family:ff11_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00208;src:url('chunks/assets/font_43193ba73212bf42bc12dabe.woff2')format("woff");}.ff12_c00208{font-family:ff12_c00208;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:ff13_c00208;src:url('chunks/assets/font_30611001639c45c0b6262437.woff2')format("woff");}.ff13_c00208{font-family:ff13_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00208;src:url('chunks/assets/font_f619540731d18c854d50b12f.woff2')format("woff");}.ff14_c00208{font-family:ff14_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00208;src:url('chunks/assets/font_0249ac7dc305a53b8c64093c.woff2')format("woff");}.ff15_c00208{font-family:ff15_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00208;src:url('chunks/assets/font_b8d061c2b86384b144c518e1.woff2')format("woff");}.ff16_c00208{font-family:ff16_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00208;src:url('chunks/assets/font_50b2e127ee1f254cf2d6328b.woff2')format("woff");}.ff17_c00208{font-family:ff17_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00208;src:url('chunks/assets/font_0ae396799280a6b13bcd371f.woff2')format("woff");}.ff18_c00208{font-family:ff18_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00208;src:url('chunks/assets/font_24d6c5e339df4b628043985a.woff2')format("woff");}.ff19_c00208{font-family:ff19_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:ff1a_c00208;src:url('chunks/assets/font_13d438601b535946a6d0f18f.woff2')format("woff");}.ff1a_c00208{font-family:ff1a_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00208;src:url('chunks/assets/font_70a30034bd80deeabf79ce9d.woff2')format("woff");}.ff1b_c00208{font-family:ff1b_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00208;src:url('chunks/assets/font_f6335047220c80aad50964ec.woff2')format("woff");}.ff1c_c00208{font-family:ff1c_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00208;src:url('chunks/assets/font_f2339f94e9d256a29faecf90.woff2')format("woff");}.ff1d_c00208{font-family:ff1d_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00208;src:url('chunks/assets/font_570dc031db3b975099b176f4.woff2')format("woff");}.ff1e_c00208{font-family:ff1e_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00208;src:url('chunks/assets/font_26b15af98e389b921d0261b1.woff2')format("woff");}.ff1f_c00208{font-family:ff1f_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00208;src:url('chunks/assets/font_046cb0e1a3d7462e00d28df4.woff2')format("woff");}.ff20_c00208{font-family:ff20_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00208;src:url('chunks/assets/font_5dec1521a874e1982a5063af.woff2')format("woff");}.ff21_c00208{font-family:ff21_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00208;src:url('chunks/assets/font_5ec16ebff94e79ba4a5a43df.woff2')format("woff");}.ff22_c00208{font-family:ff22_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00208;src:url('chunks/assets/font_67cde15a7243b77ff16ca860.woff2')format("woff");}.ff23_c00208{font-family:ff23_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00208;src:url('chunks/assets/font_188f5d59fba6ea68b88950d3.woff2')format("woff");}.ff24_c00208{font-family:ff24_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00208;src:url('chunks/assets/font_66b78ffdeeb215d4b7c847e2.woff2')format("woff");}.ff25_c00208{font-family:ff25_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:ff26_c00208;src:url('chunks/assets/font_7f3b06379fb75db252e1bd7c.woff2')format("woff");}.ff26_c00208{font-family:ff26_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:ff27_c00208;src:url('chunks/assets/font_b903995bf38100ca497b3e9a.woff2')format("woff");}.ff27_c00208{font-family:ff27_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:ff28_c00208;src:url('chunks/assets/font_9b38b9afbe7753980589585d.woff2')format("woff");}.ff28_c00208{font-family:ff28_c00208;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00208;src:url('chunks/assets/font_9b38b9afbe7753980589585d.woff2')format("woff");}.ff29_c00208{font-family:ff29_c00208;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00208;src:url('chunks/assets/font_26f2e21d117f9788700c4be9.woff2')format("woff");}.ff2a_c00208{font-family:ff2a_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00208;src:url('chunks/assets/font_2e24d713ad943efd803d15d1.woff2')format("woff");}.ff2b_c00208{font-family:ff2b_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00208;src:url('chunks/assets/font_4d88ea11c6b241835e3852a3.woff2')format("woff");}.ff2c_c00208{font-family:ff2c_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00208;src:url('chunks/assets/font_59771cb813cdbdef76af5518.woff2')format("woff");}.ff2d_c00208{font-family:ff2d_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00208;src:url('chunks/assets/font_c660b37dd9ea09f668881346.woff2')format("woff");}.ff2e_c00208{font-family:ff2e_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00208;src:url('chunks/assets/font_bfa63720f7c2ada6e4e59b0d.woff2')format("woff");}.ff2f_c00208{font-family:ff2f_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00208;src:url('chunks/assets/font_a59bcb6d48bd9f5cc6b102c3.woff2')format("woff");}.ff30_c00208{font-family:ff30_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00208;src:url('chunks/assets/font_c07ada111473e88d9129d2f2.woff2')format("woff");}.ff31_c00208{font-family:ff31_c00208;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00208{letter-spacing:0.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;}
}
.ws0_c00208{word-spacing:-0.072000px;}
.ws1_c00208{word-spacing:0.000000px;}
._0_c00208{width:1.389600px;}
._1_c00208{width:2.944800px;}
._6_c00208{width:4.269600px;}
._8_c00208{width:5.731200px;}
._a_c00208{width:8.323200px;}
._3_c00208{width:9.748800px;}
._2_c00208{width:11.865600px;}
._5_c00208{width:12.967200px;}
._9_c00208{width:14.652000px;}
._4_c00208{width:16.286400px;}
._7_c00208{width:22.305600px;}
.fc1_c00208{color:transparent;}
.fc0_c00208{color:rgb(0,0,0);}
.fs1_c00208{font-size:64.800000px;}
.fs0_c00208{font-size:72.000000px;}
.y0_c00208{bottom:0.000000px;}
.y5_c00208{bottom:5.040000px;}
.y1_c00208{bottom:12.735000px;}
.y3_c00208{bottom:45.045000px;}
.y4_c00208{bottom:52.740000px;}
.y21_c00208{bottom:110.565000px;}
.y20_c00208{bottom:146.565000px;}
.y1f_c00208{bottom:182.565000px;}
.y1e_c00208{bottom:218.565000px;}
.y1d_c00208{bottom:254.565000px;}
.y1c_c00208{bottom:290.565000px;}
.y1b_c00208{bottom:326.565000px;}
.y1a_c00208{bottom:362.565000px;}
.y19_c00208{bottom:398.565000px;}
.y18_c00208{bottom:434.565000px;}
.y17_c00208{bottom:470.565000px;}
.y16_c00208{bottom:506.565000px;}
.y15_c00208{bottom:542.565000px;}
.y14_c00208{bottom:578.565000px;}
.y13_c00208{bottom:614.565000px;}
.y12_c00208{bottom:650.565000px;}
.y11_c00208{bottom:686.565000px;}
.y10_c00208{bottom:722.565000px;}
.yf_c00208{bottom:758.565000px;}
.ye_c00208{bottom:794.565000px;}
.yd_c00208{bottom:830.565000px;}
.yc_c00208{bottom:866.565000px;}
.yb_c00208{bottom:902.565000px;}
.ya_c00208{bottom:938.565000px;}
.y9_c00208{bottom:974.565000px;}
.y8_c00208{bottom:1010.565000px;}
.y7_c00208{bottom:1046.565000px;}
.y6_c00208{bottom:1082.565000px;}
.y2_c00208{bottom:1165.365000px;}
.h4_c00208{height:20.880000px;}
.h5_c00208{height:70.664062px;}
.h6_c00208{height:71.824219px;}
.h3_c00208{height:74.004654px;}
.h2_c00208{height:1237.365000px;}
.h0_c00208{height:1262.835000px;}
.h1_c00208{height:1263.000000px;}
.w3_c00208{width:27.000000px;}
.w2_c00208{width:867.465000px;}
.w0_c00208{width:892.935000px;}
.w1_c00208{width:893.250000px;}
.x0_c00208{left:0.000000px;}
.x1_c00208{left:12.735000px;}
.x3_c00208{left:95.406300px;}
.x5_c00208{left:149.400150px;}
.x6_c00208{left:180.450150px;}
.x7_c00208{left:362.034150px;}
.x4_c00208{left:433.215000px;}
.x2_c00208{left:878.550300px;}
@media print{
.v0_c00208{vertical-align:0.000000pt;}
.ls0_c00208{letter-spacing:0.000000pt;}
.ws0_c00208{word-spacing:-0.064000pt;}
.ws1_c00208{word-spacing:0.000000pt;}
._0_c00208{width:1.235200pt;}
._1_c00208{width:2.617600pt;}
._6_c00208{width:3.795200pt;}
._8_c00208{width:5.094400pt;}
._a_c00208{width:7.398400pt;}
._3_c00208{width:8.665600pt;}
._2_c00208{width:10.547200pt;}
._5_c00208{width:11.526400pt;}
._9_c00208{width:13.024000pt;}
._4_c00208{width:14.476800pt;}
._7_c00208{width:19.827200pt;}
.fs1_c00208{font-size:57.600000pt;}
.fs0_c00208{font-size:64.000000pt;}
.y0_c00208{bottom:0.000000pt;}
.y5_c00208{bottom:4.480000pt;}
.y1_c00208{bottom:11.320000pt;}
.y3_c00208{bottom:40.040000pt;}
.y4_c00208{bottom:46.880000pt;}
.y21_c00208{bottom:98.280000pt;}
.y20_c00208{bottom:130.280000pt;}
.y1f_c00208{bottom:162.280000pt;}
.y1e_c00208{bottom:194.280000pt;}
.y1d_c00208{bottom:226.280000pt;}
.y1c_c00208{bottom:258.280000pt;}
.y1b_c00208{bottom:290.280000pt;}
.y1a_c00208{bottom:322.280000pt;}
.y19_c00208{bottom:354.280000pt;}
.y18_c00208{bottom:386.280000pt;}
.y17_c00208{bottom:418.280000pt;}
.y16_c00208{bottom:450.280000pt;}
.y15_c00208{bottom:482.280000pt;}
.y14_c00208{bottom:514.280000pt;}
.y13_c00208{bottom:546.280000pt;}
.y12_c00208{bottom:578.280000pt;}
.y11_c00208{bottom:610.280000pt;}
.y10_c00208{bottom:642.280000pt;}
.yf_c00208{bottom:674.280000pt;}
.ye_c00208{bottom:706.280000pt;}
.yd_c00208{bottom:738.280000pt;}
.yc_c00208{bottom:770.280000pt;}
.yb_c00208{bottom:802.280000pt;}
.ya_c00208{bottom:834.280000pt;}
.y9_c00208{bottom:866.280000pt;}
.y8_c00208{bottom:898.280000pt;}
.y7_c00208{bottom:930.280000pt;}
.y6_c00208{bottom:962.280000pt;}
.y2_c00208{bottom:1035.880000pt;}
.h4_c00208{height:18.560000pt;}
.h5_c00208{height:62.812500pt;}
.h6_c00208{height:63.843750pt;}
.h3_c00208{height:65.781915pt;}
.h2_c00208{height:1099.880000pt;}
.h0_c00208{height:1122.520000pt;}
.h1_c00208{height:1122.666667pt;}
.w3_c00208{width:24.000000pt;}
.w2_c00208{width:771.080000pt;}
.w0_c00208{width:793.720000pt;}
.w1_c00208{width:794.000000pt;}
.x0_c00208{left:0.000000pt;}
.x1_c00208{left:11.320000pt;}
.x3_c00208{left:84.805600pt;}
.x5_c00208{left:132.800133pt;}
.x6_c00208{left:160.400133pt;}
.x7_c00208{left:321.808133pt;}
.x4_c00208{left:385.080000pt;}
.x2_c00208{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00209{font-family:ff1_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:ff2_c00209;src:url('chunks/assets/font_f379da9c594e903570d010ae.woff2')format("woff");}.ff2_c00209{font-family:ff2_c00209;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00209;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00209{font-family:ff3_c00209;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00209;src:url('chunks/assets/font_deaba865fe8f47bfe2a3524d.woff2')format("woff");}.ff4_c00209{font-family:ff4_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:ff5_c00209;src:url('chunks/assets/font_c6c8f1c0628eac694054ec6e.woff2')format("woff");}.ff5_c00209{font-family:ff5_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:ff6_c00209;src:url('chunks/assets/font_cfae4b41fbdef6e0926673f6.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_f6ff1f5790c408c937a9087c.woff2')format("woff");}.ff7_c00209{font-family:ff7_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:ff8_c00209;src:url('chunks/assets/font_7739188b1c327cef8412229f.woff2')format("woff");}.ff8_c00209{font-family:ff8_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:ff9_c00209;src:url('chunks/assets/font_d467b3994ddde4637271d799.woff2')format("woff");}.ff9_c00209{font-family:ff9_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:ffa_c00209;src:url('chunks/assets/font_ae90cb28cb348b62b9017e59.woff2')format("woff");}.ffa_c00209{font-family:ffa_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:ffb_c00209;src:url('chunks/assets/font_641bb59b50d61705905498eb.woff2')format("woff");}.ffb_c00209{font-family:ffb_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:ffc_c00209;src:url('chunks/assets/font_dae984f0b8623b6d2715cb59.woff2')format("woff");}.ffc_c00209{font-family:ffc_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:ffd_c00209;src:url('chunks/assets/font_266663f6a4851fecc84b6a9a.woff2')format("woff");}.ffd_c00209{font-family:ffd_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:ffe_c00209;src:url('chunks/assets/font_4e2d4e69204d9b5c80bdfb9d.woff2')format("woff");}.ffe_c00209{font-family:ffe_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:fff_c00209;src:url('chunks/assets/font_fa565082274eee715ce68377.woff2')format("woff");}.fff_c00209{font-family:fff_c00209;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:ff10_c00209;src:url('chunks/assets/font_01186e3a683313c731ea85de.woff2')format("woff");}.ff10_c00209{font-family:ff10_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:ff11_c00209;src:url('chunks/assets/font_e6d451f7b65e3cbd7f9fee0f.woff2')format("woff");}.ff11_c00209{font-family:ff11_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:ff12_c00209;src:url('chunks/assets/font_6ed5b44264dc95e1fc738de6.woff2')format("woff");}.ff12_c00209{font-family:ff12_c00209;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:ff13_c00209;src:url('chunks/assets/font_620b69c9f910df90c7a56b5c.woff2')format("woff");}.ff13_c00209{font-family:ff13_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:ff14_c00209;src:url('chunks/assets/font_d8460f77d8c230c755b267f6.woff2')format("woff");}.ff14_c00209{font-family:ff14_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:ff15_c00209;src:url('chunks/assets/font_9fda172a5bfaf4b3e48117b3.woff2')format("woff");}.ff15_c00209{font-family:ff15_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:ff16_c00209;src:url('chunks/assets/font_068eb04243973e5f6a232092.woff2')format("woff");}.ff16_c00209{font-family:ff16_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:ff17_c00209;src:url('chunks/assets/font_70485f2e9ce5d910aa6da041.woff2')format("woff");}.ff17_c00209{font-family:ff17_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:ff18_c00209;src:url('chunks/assets/font_cb98b863fb355b1683fb0a7e.woff2')format("woff");}.ff18_c00209{font-family:ff18_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:ff19_c00209;src:url('chunks/assets/font_b7f97e4dfd17970e93549949.woff2')format("woff");}.ff19_c00209{font-family:ff19_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:ff1a_c00209;src:url('chunks/assets/font_731beb7586c0ff6be98c37c2.woff2')format("woff");}.ff1a_c00209{font-family:ff1a_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:ff1b_c00209;src:url('chunks/assets/font_da470c9a5e7ac6ce0d7d2fdb.woff2')format("woff");}.ff1b_c00209{font-family:ff1b_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:ff1c_c00209;src:url('chunks/assets/font_68bca56d791d05af1a0378c4.woff2')format("woff");}.ff1c_c00209{font-family:ff1c_c00209;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00209;src:url('chunks/assets/font_6cd31e8dcb37186c9a2a3d09.woff2')format("woff");}.ff1d_c00209{font-family:ff1d_c00209;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00209;src:url('chunks/assets/font_1f0c96b322c3e7ae42ab4091.woff2')format("woff");}.ff1e_c00209{font-family:ff1e_c00209;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:ff1f_c00209;src:url('chunks/assets/font_f80ffe3b700c70ef9be2629f.woff2')format("woff");}.ff1f_c00209{font-family:ff1f_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:ff20_c00209;src:url('chunks/assets/font_332ea28c86050da20ca322f2.woff2')format("woff");}.ff20_c00209{font-family:ff20_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:ff21_c00209;src:url('chunks/assets/font_1fae62f3df8537fd787ee985.woff2')format("woff");}.ff21_c00209{font-family:ff21_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:ff22_c00209;src:url('chunks/assets/font_61a383512cef19db524bec5c.woff2')format("woff");}.ff22_c00209{font-family:ff22_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:ff23_c00209;src:url('chunks/assets/font_dd5cdee3cade2ae4613f5f8e.woff2')format("woff");}.ff23_c00209{font-family:ff23_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:ff24_c00209;src:url('chunks/assets/font_5e2ce5ec8fa635a966e62783.woff2')format("woff");}.ff24_c00209{font-family:ff24_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:ff25_c00209;src:url('chunks/assets/font_57b27280a3863ffb9e160739.woff2')format("woff");}.ff25_c00209{font-family:ff25_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:ff26_c00209;src:url('chunks/assets/font_18720d87d5ef50585f102a24.woff2')format("woff");}.ff26_c00209{font-family:ff26_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:ff27_c00209;src:url('chunks/assets/font_720e49d46a1f79981c6526b8.woff2')format("woff");}.ff27_c00209{font-family:ff27_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:ff28_c00209;src:url('chunks/assets/font_c764f83dcb8197a8fec1b627.woff2')format("woff");}.ff28_c00209{font-family:ff28_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:ff29_c00209;src:url('chunks/assets/font_a65bf16a11b2ea9edcc3ecd0.woff2')format("woff");}.ff29_c00209{font-family:ff29_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:ff2a_c00209;src:url('chunks/assets/font_3e2c38af759e411f8b730965.woff2')format("woff");}.ff2a_c00209{font-family:ff2a_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:ff2b_c00209;src:url('chunks/assets/font_dd980b42fc4054ed1c5c4b21.woff2')format("woff");}.ff2b_c00209{font-family:ff2b_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:ff2c_c00209;src:url('chunks/assets/font_b459ba7371db433ad6625ae4.woff2')format("woff");}.ff2c_c00209{font-family:ff2c_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:ff2d_c00209;src:url('chunks/assets/font_c98f239cfd5bac48c186cfac.woff2')format("woff");}.ff2d_c00209{font-family:ff2d_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:ff2e_c00209;src:url('chunks/assets/font_332303da92c3b4bdad77215b.woff2')format("woff");}.ff2e_c00209{font-family:ff2e_c00209;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:ff2f_c00209;src:url('chunks/assets/font_b3a2b602a7d30dce006910e6.woff2')format("woff");}.ff2f_c00209{font-family:ff2f_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:ff30_c00209;src:url('chunks/assets/font_332303da92c3b4bdad77215b.woff2')format("woff");}.ff30_c00209{font-family:ff30_c00209;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00209{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00209{vertical-align:0.000000px;}
.ls1_c00209{letter-spacing:-0.014400px;}
.ls0_c00209{letter-spacing:0.000000px;}
.sc__c00209{text-shadow:none;}
.sc0_c00209{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00209{-webkit-text-stroke:0px transparent;}
.sc0_c00209{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00209{word-spacing:-0.072000px;}
.ws1_c00209{word-spacing:0.000000px;}
._5_c00209{width:1.080000px;}
._0_c00209{width:2.793600px;}
._2_c00209{width:3.830400px;}
._4_c00209{width:5.198400px;}
._6_c00209{width:6.544800px;}
._3_c00209{width:8.150400px;}
._8_c00209{width:9.921600px;}
._1_c00209{width:10.958400px;}
._9_c00209{width:12.744000px;}
._7_c00209{width:15.134400px;}
._a_c00209{width:16.761600px;}
.fc1_c00209{color:transparent;}
.fc0_c00209{color:rgb(0,0,0);}
.fs1_c00209{font-size:64.800000px;}
.fs0_c00209{font-size:72.000000px;}
.y0_c00209{bottom:0.000000px;}
.y5_c00209{bottom:5.040000px;}
.y1_c00209{bottom:12.735000px;}
.y3_c00209{bottom:45.045000px;}
.y4_c00209{bottom:52.740000px;}
.y21_c00209{bottom:110.565000px;}
.y20_c00209{bottom:146.565000px;}
.y1f_c00209{bottom:182.565000px;}
.y1e_c00209{bottom:218.565000px;}
.y1d_c00209{bottom:254.565000px;}
.y1c_c00209{bottom:290.565000px;}
.y1b_c00209{bottom:326.565000px;}
.y1a_c00209{bottom:362.565000px;}
.y19_c00209{bottom:398.565000px;}
.y18_c00209{bottom:434.565000px;}
.y17_c00209{bottom:470.565000px;}
.y16_c00209{bottom:506.565000px;}
.y15_c00209{bottom:542.565000px;}
.y14_c00209{bottom:578.565000px;}
.y13_c00209{bottom:614.565000px;}
.y12_c00209{bottom:650.565000px;}
.y11_c00209{bottom:686.565000px;}
.y10_c00209{bottom:722.565000px;}
.yf_c00209{bottom:758.565000px;}
.ye_c00209{bottom:794.565000px;}
.yd_c00209{bottom:830.565000px;}
.yc_c00209{bottom:866.565000px;}
.yb_c00209{bottom:902.565000px;}
.ya_c00209{bottom:938.565000px;}
.y9_c00209{bottom:974.565000px;}
.y8_c00209{bottom:1010.565000px;}
.y7_c00209{bottom:1046.565000px;}
.y6_c00209{bottom:1082.565000px;}
.y2_c00209{bottom:1165.365000px;}
.h4_c00209{height:20.880000px;}
.h6_c00209{height:70.628906px;}
.h3_c00209{height:70.664062px;}
.h5_c00209{height:74.004654px;}
.h2_c00209{height:1237.365000px;}
.h0_c00209{height:1262.835000px;}
.h1_c00209{height:1263.000000px;}
.w3_c00209{width:27.000000px;}
.w2_c00209{width:867.465000px;}
.w0_c00209{width:892.935000px;}
.w1_c00209{width:893.250000px;}
.x0_c00209{left:0.000000px;}
.x1_c00209{left:12.735000px;}
.x3_c00209{left:95.406300px;}
.x5_c00209{left:149.400150px;}
.x4_c00209{left:433.215000px;}
.x2_c00209{left:878.550300px;}
@media print{
.v0_c00209{vertical-align:0.000000pt;}
.ls1_c00209{letter-spacing:-0.012800pt;}
.ls0_c00209{letter-spacing:0.000000pt;}
.ws0_c00209{word-spacing:-0.064000pt;}
.ws1_c00209{word-spacing:0.000000pt;}
._5_c00209{width:0.960000pt;}
._0_c00209{width:2.483200pt;}
._2_c00209{width:3.404800pt;}
._4_c00209{width:4.620800pt;}
._6_c00209{width:5.817600pt;}
._3_c00209{width:7.244800pt;}
._8_c00209{width:8.819200pt;}
._1_c00209{width:9.740800pt;}
._9_c00209{width:11.328000pt;}
._7_c00209{width:13.452800pt;}
._a_c00209{width:14.899200pt;}
.fs1_c00209{font-size:57.600000pt;}
.fs0_c00209{font-size:64.000000pt;}
.y0_c00209{bottom:0.000000pt;}
.y5_c00209{bottom:4.480000pt;}
.y1_c00209{bottom:11.320000pt;}
.y3_c00209{bottom:40.040000pt;}
.y4_c00209{bottom:46.880000pt;}
.y21_c00209{bottom:98.280000pt;}
.y20_c00209{bottom:130.280000pt;}
.y1f_c00209{bottom:162.280000pt;}
.y1e_c00209{bottom:194.280000pt;}
.y1d_c00209{bottom:226.280000pt;}
.y1c_c00209{bottom:258.280000pt;}
.y1b_c00209{bottom:290.280000pt;}
.y1a_c00209{bottom:322.280000pt;}
.y19_c00209{bottom:354.280000pt;}
.y18_c00209{bottom:386.280000pt;}
.y17_c00209{bottom:418.280000pt;}
.y16_c00209{bottom:450.280000pt;}
.y15_c00209{bottom:482.280000pt;}
.y14_c00209{bottom:514.280000pt;}
.y13_c00209{bottom:546.280000pt;}
.y12_c00209{bottom:578.280000pt;}
.y11_c00209{bottom:610.280000pt;}
.y10_c00209{bottom:642.280000pt;}
.yf_c00209{bottom:674.280000pt;}
.ye_c00209{bottom:706.280000pt;}
.yd_c00209{bottom:738.280000pt;}
.yc_c00209{bottom:770.280000pt;}
.yb_c00209{bottom:802.280000pt;}
.ya_c00209{bottom:834.280000pt;}
.y9_c00209{bottom:866.280000pt;}
.y8_c00209{bottom:898.280000pt;}
.y7_c00209{bottom:930.280000pt;}
.y6_c00209{bottom:962.280000pt;}
.y2_c00209{bottom:1035.880000pt;}
.h4_c00209{height:18.560000pt;}
.h6_c00209{height:62.781250pt;}
.h3_c00209{height:62.812500pt;}
.h5_c00209{height:65.781915pt;}
.h2_c00209{height:1099.880000pt;}
.h0_c00209{height:1122.520000pt;}
.h1_c00209{height:1122.666667pt;}
.w3_c00209{width:24.000000pt;}
.w2_c00209{width:771.080000pt;}
.w0_c00209{width:793.720000pt;}
.w1_c00209{width:794.000000pt;}
.x0_c00209{left:0.000000pt;}
.x1_c00209{left:11.320000pt;}
.x3_c00209{left:84.805600pt;}
.x5_c00209{left:132.800133pt;}
.x4_c00209{left:385.080000pt;}
.x2_c00209{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2ac35f2f9e068867f22d9e8a.woff2')format("woff");}.ff1_c00210{font-family:ff1_c00210;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00210;src:url('chunks/assets/font_256db0c17e38cdc2b8ebd1f8.woff2')format("woff");}.ff2_c00210{font-family:ff2_c00210;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00210;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00210{font-family:ff3_c00210;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00210;src:url('chunks/assets/font_ef9527fa263a8a4e4bfec96d.woff2')format("woff");}.ff4_c00210{font-family:ff4_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:ff5_c00210;src:url('chunks/assets/font_0d4e1a943dcc2f74789ca681.woff2')format("woff");}.ff5_c00210{font-family:ff5_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:ff6_c00210;src:url('chunks/assets/font_8a74ad1b9045a552f8e50bef.woff2')format("woff");}.ff6_c00210{font-family:ff6_c00210;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00210;src:url('chunks/assets/font_b1bd594afa66d40a46af8a81.woff2')format("woff");}.ff7_c00210{font-family:ff7_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:ff8_c00210;src:url('chunks/assets/font_c7539b6106f90ae5857e63e6.woff2')format("woff");}.ff8_c00210{font-family:ff8_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:ff9_c00210;src:url('chunks/assets/font_9bbe2c760dddb783f9cd0721.woff2')format("woff");}.ff9_c00210{font-family:ff9_c00210;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_c00210;src:url('chunks/assets/font_8a74ad1b9045a552f8e50bef.woff2')format("woff");}.ffa_c00210{font-family:ffa_c00210;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00210;src:url('chunks/assets/font_900d5b3fce35a4d503839920.woff2')format("woff");}.ffb_c00210{font-family:ffb_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00210;src:url('chunks/assets/font_67d774b4925d8ae3fb2cb648.woff2')format("woff");}.ffc_c00210{font-family:ffc_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00210;src:url('chunks/assets/font_638408aa226b490bebbb347d.woff2')format("woff");}.ffd_c00210{font-family:ffd_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:ffe_c00210;src:url('chunks/assets/font_17efe8e0290c29d137c176e1.woff2')format("woff");}.ffe_c00210{font-family:ffe_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:fff_c00210;src:url('chunks/assets/font_91bf90d5ec2c98dfc2d07bed.woff2')format("woff");}.fff_c00210{font-family:fff_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:ff10_c00210;src:url('chunks/assets/font_c60690d9ebdbfb4a0aee49d4.woff2')format("woff");}.ff10_c00210{font-family:ff10_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:ff11_c00210;src:url('chunks/assets/font_9db0db2424913475f91a3100.woff2')format("woff");}.ff11_c00210{font-family:ff11_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:ff12_c00210;src:url('chunks/assets/font_f9875b940f0b53904afb7194.woff2')format("woff");}.ff12_c00210{font-family:ff12_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:ff13_c00210;src:url('chunks/assets/font_26eed90b4e9e4c3b20c7f206.woff2')format("woff");}.ff13_c00210{font-family:ff13_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:ff14_c00210;src:url('chunks/assets/font_4a98963576ac299c02001365.woff2')format("woff");}.ff14_c00210{font-family:ff14_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:ff15_c00210;src:url('chunks/assets/font_960571bda850245658a75822.woff2')format("woff");}.ff15_c00210{font-family:ff15_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:ff16_c00210;src:url('chunks/assets/font_7cb78f962b20461fc87da4d8.woff2')format("woff");}.ff16_c00210{font-family:ff16_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:ff17_c00210;src:url('chunks/assets/font_275b050a7e8bd9c6fa137339.woff2')format("woff");}.ff17_c00210{font-family:ff17_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:ff18_c00210;src:url('chunks/assets/font_2213abf5c1f1b106f498b9c1.woff2')format("woff");}.ff18_c00210{font-family:ff18_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:ff19_c00210;src:url('chunks/assets/font_9a9cbb11027b427b514cacf1.woff2')format("woff");}.ff19_c00210{font-family:ff19_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00210;src:url('chunks/assets/font_5a44d905752cb5be3efd9547.woff2')format("woff");}.ff1a_c00210{font-family:ff1a_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00210;src:url('chunks/assets/font_1edf39fb40d2cdcc45722df8.woff2')format("woff");}.ff1b_c00210{font-family:ff1b_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00210;src:url('chunks/assets/font_1ecf076fc6a42b943bf748d1.woff2')format("woff");}.ff1c_c00210{font-family:ff1c_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00210;src:url('chunks/assets/font_518a0733eba98aba1e2d18ad.woff2')format("woff");}.ff1d_c00210{font-family:ff1d_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00210;src:url('chunks/assets/font_7f88285314ef16e5e2f7a5c6.woff2')format("woff");}.ff1e_c00210{font-family:ff1e_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00210;src:url('chunks/assets/font_d9e012641168e660d826eb7f.woff2')format("woff");}.ff1f_c00210{font-family:ff1f_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00210;src:url('chunks/assets/font_fdecf2897a95dc3466b0d7fd.woff2')format("woff");}.ff20_c00210{font-family:ff20_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00210;src:url('chunks/assets/font_c5657af79d45970cf1d0fe79.woff2')format("woff");}.ff21_c00210{font-family:ff21_c00210;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:ff22_c00210;src:url('chunks/assets/font_e309de9b234df8a910239ccd.woff2')format("woff");}.ff22_c00210{font-family:ff22_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00210;src:url('chunks/assets/font_f8a4a31358e02f097e2bbf5d.woff2')format("woff");}.ff23_c00210{font-family:ff23_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00210;src:url('chunks/assets/font_2fe8ed81ff7b52808328a58d.woff2')format("woff");}.ff24_c00210{font-family:ff24_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00210;src:url('chunks/assets/font_acca0f530a2aa0dc8f45f0fa.woff2')format("woff");}.ff25_c00210{font-family:ff25_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00210;src:url('chunks/assets/font_bf6739e1e0aa656db031bdce.woff2')format("woff");}.ff26_c00210{font-family:ff26_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00210;src:url('chunks/assets/font_e50fd10b252c52c4ed9c108c.woff2')format("woff");}.ff27_c00210{font-family:ff27_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00210;src:url('chunks/assets/font_9584bc6a30b3f8c2b14b733e.woff2')format("woff");}.ff28_c00210{font-family:ff28_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00210;src:url('chunks/assets/font_e8830c3a6b8f88f2395d8436.woff2')format("woff");}.ff29_c00210{font-family:ff29_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00210;src:url('chunks/assets/font_816fd46dbae01aa84306ddad.woff2')format("woff");}.ff2a_c00210{font-family:ff2a_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00210;src:url('chunks/assets/font_0a36d8c70630a4db2d90abdc.woff2')format("woff");}.ff2b_c00210{font-family:ff2b_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00210;src:url('chunks/assets/font_505be97a993e05a0240cdb7a.woff2')format("woff");}.ff2c_c00210{font-family:ff2c_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00210;src:url('chunks/assets/font_254a83a775dc02be3bea7ebe.woff2')format("woff");}.ff2d_c00210{font-family:ff2d_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00210;src:url('chunks/assets/font_3f2ec923ba4fac1146023adb.woff2')format("woff");}.ff2e_c00210{font-family:ff2e_c00210;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:ff2f_c00210;src:url('chunks/assets/font_1da50a6ae19314c3c13d9a16.woff2')format("woff");}.ff2f_c00210{font-family:ff2f_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00210;src:url('chunks/assets/font_a5ddc2bab5f221378b5824b6.woff2')format("woff");}.ff30_c00210{font-family:ff30_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00210;src:url('chunks/assets/font_90b8b132d51a5f35f200700a.woff2')format("woff");}.ff31_c00210{font-family:ff31_c00210;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00210;src:url('chunks/assets/font_235d0e459e8df97ff290f52f.woff2')format("woff");}.ff32_c00210{font-family:ff32_c00210;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00210{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00210{vertical-align:0.000000px;}
.ls0_c00210{letter-spacing:0.000000px;}
.sc__c00210{text-shadow:none;}
.sc0_c00210{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00210{-webkit-text-stroke:0px transparent;}
.sc0_c00210{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00210{word-spacing:-0.072000px;}
.ws1_c00210{word-spacing:0.000000px;}
._a_c00210{margin-left:-1.008000px;}
._6_c00210{width:1.008000px;}
._7_c00210{width:2.750400px;}
._8_c00210{width:4.392000px;}
._3_c00210{width:5.860800px;}
._2_c00210{width:7.761600px;}
._4_c00210{width:9.144000px;}
._1_c00210{width:12.016800px;}
._9_c00210{width:13.550400px;}
._5_c00210{width:16.473600px;}
._0_c00210{width:20.829600px;}
.fc1_c00210{color:transparent;}
.fc0_c00210{color:rgb(0,0,0);}
.fs1_c00210{font-size:64.800000px;}
.fs0_c00210{font-size:72.000000px;}
.y0_c00210{bottom:0.000000px;}
.y5_c00210{bottom:5.040000px;}
.y1_c00210{bottom:12.735000px;}
.y3_c00210{bottom:45.045000px;}
.y4_c00210{bottom:52.740000px;}
.y21_c00210{bottom:110.565000px;}
.y20_c00210{bottom:146.565000px;}
.y1f_c00210{bottom:182.565000px;}
.y1e_c00210{bottom:218.565000px;}
.y1d_c00210{bottom:254.565000px;}
.y1c_c00210{bottom:290.565000px;}
.y1b_c00210{bottom:326.565000px;}
.y1a_c00210{bottom:362.565000px;}
.y19_c00210{bottom:398.565000px;}
.y18_c00210{bottom:434.565000px;}
.y17_c00210{bottom:470.565000px;}
.y16_c00210{bottom:506.565000px;}
.y15_c00210{bottom:542.565000px;}
.y14_c00210{bottom:578.565000px;}
.y13_c00210{bottom:614.565000px;}
.y12_c00210{bottom:650.565000px;}
.y11_c00210{bottom:686.565000px;}
.y10_c00210{bottom:722.565000px;}
.yf_c00210{bottom:758.565000px;}
.ye_c00210{bottom:794.565000px;}
.yd_c00210{bottom:830.565000px;}
.yc_c00210{bottom:866.565000px;}
.yb_c00210{bottom:902.565000px;}
.ya_c00210{bottom:938.565000px;}
.y9_c00210{bottom:974.565000px;}
.y8_c00210{bottom:1010.565000px;}
.y7_c00210{bottom:1046.565000px;}
.y6_c00210{bottom:1082.565000px;}
.y2_c00210{bottom:1165.365000px;}
.h4_c00210{height:20.880000px;}
.h6_c00210{height:70.628906px;}
.h7_c00210{height:70.664062px;}
.h5_c00210{height:71.824219px;}
.h3_c00210{height:74.004654px;}
.h2_c00210{height:1237.365000px;}
.h0_c00210{height:1262.835000px;}
.h1_c00210{height:1263.000000px;}
.w3_c00210{width:27.000000px;}
.w2_c00210{width:867.465000px;}
.w0_c00210{width:892.935000px;}
.w1_c00210{width:893.250000px;}
.x0_c00210{left:0.000000px;}
.x1_c00210{left:12.735000px;}
.x3_c00210{left:95.406300px;}
.x5_c00210{left:149.400150px;}
.x4_c00210{left:433.215000px;}
.x2_c00210{left:878.550300px;}
@media print{
.v0_c00210{vertical-align:0.000000pt;}
.ls0_c00210{letter-spacing:0.000000pt;}
.ws0_c00210{word-spacing:-0.064000pt;}
.ws1_c00210{word-spacing:0.000000pt;}
._a_c00210{margin-left:-0.896000pt;}
._6_c00210{width:0.896000pt;}
._7_c00210{width:2.444800pt;}
._8_c00210{width:3.904000pt;}
._3_c00210{width:5.209600pt;}
._2_c00210{width:6.899200pt;}
._4_c00210{width:8.128000pt;}
._1_c00210{width:10.681600pt;}
._9_c00210{width:12.044800pt;}
._5_c00210{width:14.643200pt;}
._0_c00210{width:18.515200pt;}
.fs1_c00210{font-size:57.600000pt;}
.fs0_c00210{font-size:64.000000pt;}
.y0_c00210{bottom:0.000000pt;}
.y5_c00210{bottom:4.480000pt;}
.y1_c00210{bottom:11.320000pt;}
.y3_c00210{bottom:40.040000pt;}
.y4_c00210{bottom:46.880000pt;}
.y21_c00210{bottom:98.280000pt;}
.y20_c00210{bottom:130.280000pt;}
.y1f_c00210{bottom:162.280000pt;}
.y1e_c00210{bottom:194.280000pt;}
.y1d_c00210{bottom:226.280000pt;}
.y1c_c00210{bottom:258.280000pt;}
.y1b_c00210{bottom:290.280000pt;}
.y1a_c00210{bottom:322.280000pt;}
.y19_c00210{bottom:354.280000pt;}
.y18_c00210{bottom:386.280000pt;}
.y17_c00210{bottom:418.280000pt;}
.y16_c00210{bottom:450.280000pt;}
.y15_c00210{bottom:482.280000pt;}
.y14_c00210{bottom:514.280000pt;}
.y13_c00210{bottom:546.280000pt;}
.y12_c00210{bottom:578.280000pt;}
.y11_c00210{bottom:610.280000pt;}
.y10_c00210{bottom:642.280000pt;}
.yf_c00210{bottom:674.280000pt;}
.ye_c00210{bottom:706.280000pt;}
.yd_c00210{bottom:738.280000pt;}
.yc_c00210{bottom:770.280000pt;}
.yb_c00210{bottom:802.280000pt;}
.ya_c00210{bottom:834.280000pt;}
.y9_c00210{bottom:866.280000pt;}
.y8_c00210{bottom:898.280000pt;}
.y7_c00210{bottom:930.280000pt;}
.y6_c00210{bottom:962.280000pt;}
.y2_c00210{bottom:1035.880000pt;}
.h4_c00210{height:18.560000pt;}
.h6_c00210{height:62.781250pt;}
.h7_c00210{height:62.812500pt;}
.h5_c00210{height:63.843750pt;}
.h3_c00210{height:65.781915pt;}
.h2_c00210{height:1099.880000pt;}
.h0_c00210{height:1122.520000pt;}
.h1_c00210{height:1122.666667pt;}
.w3_c00210{width:24.000000pt;}
.w2_c00210{width:771.080000pt;}
.w0_c00210{width:793.720000pt;}
.w1_c00210{width:794.000000pt;}
.x0_c00210{left:0.000000pt;}
.x1_c00210{left:11.320000pt;}
.x3_c00210{left:84.805600pt;}
.x5_c00210{left:132.800133pt;}
.x4_c00210{left:385.080000pt;}
.x2_c00210{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00211{font-family:ff1_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00211;src:url('chunks/assets/font_03e0311065742e93c818226b.woff2')format("woff");}.ff2_c00211{font-family:ff2_c00211;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00211;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00211{font-family:ff3_c00211;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00211;src:url('chunks/assets/font_07e62fee48b50311e4ceb4ff.woff2')format("woff");}.ff4_c00211{font-family:ff4_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00211;src:url('chunks/assets/font_bcab4ad0d8afdf5dcc7b978c.woff2')format("woff");}.ff5_c00211{font-family:ff5_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00211;src:url('chunks/assets/font_07147bbe5332df40d7e4e326.woff2')format("woff");}.ff6_c00211{font-family:ff6_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00211;src:url('chunks/assets/font_a2e89b672ba5cbdc890ce612.woff2')format("woff");}.ff7_c00211{font-family:ff7_c00211;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00211;src:url('chunks/assets/font_c82533bcdff341515fdd77b2.woff2')format("woff");}.ff8_c00211{font-family:ff8_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00211;src:url('chunks/assets/font_f46611b4e0137d344cefe0fd.woff2')format("woff");}.ff9_c00211{font-family:ff9_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00211;src:url('chunks/assets/font_692deeb67580c25fab660616.woff2')format("woff");}.ffa_c00211{font-family:ffa_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00211;src:url('chunks/assets/font_4b30b7b95e7ecbcafaf91adb.woff2')format("woff");}.ffb_c00211{font-family:ffb_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00211;src:url('chunks/assets/font_92c378ea7fe58ec0b13dce24.woff2')format("woff");}.ffc_c00211{font-family:ffc_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00211;src:url('chunks/assets/font_540541e676ce2ed5a9fcae12.woff2')format("woff");}.ffd_c00211{font-family:ffd_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00211;src:url('chunks/assets/font_a363ac9a95ce064e8fe2bd67.woff2')format("woff");}.ffe_c00211{font-family:ffe_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00211;src:url('chunks/assets/font_aa44b1e9bef5ad882a06ccae.woff2')format("woff");}.fff_c00211{font-family:fff_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00211;src:url('chunks/assets/font_8e34ce48d27451edad41f14f.woff2')format("woff");}.ff10_c00211{font-family:ff10_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00211;src:url('chunks/assets/font_6be67e880305ede062ba7e6b.woff2')format("woff");}.ff11_c00211{font-family:ff11_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00211;src:url('chunks/assets/font_c2f387b9db7c4b36524c7e1f.woff2')format("woff");}.ff12_c00211{font-family:ff12_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00211;src:url('chunks/assets/font_72ce5cd5fd9ea16df96e1064.woff2')format("woff");}.ff13_c00211{font-family:ff13_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00211;src:url('chunks/assets/font_5aef4fea0cbd500348606240.woff2')format("woff");}.ff14_c00211{font-family:ff14_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00211;src:url('chunks/assets/font_e61fe7a8821f3368d375c71c.woff2')format("woff");}.ff15_c00211{font-family:ff15_c00211;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:ff16_c00211;src:url('chunks/assets/font_8e6ef996788cc395c01376b9.woff2')format("woff");}.ff16_c00211{font-family:ff16_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00211;src:url('chunks/assets/font_ee4ed2329f0d677723b73f93.woff2')format("woff");}.ff17_c00211{font-family:ff17_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00211;src:url('chunks/assets/font_e61fe7a8821f3368d375c71c.woff2')format("woff");}.ff18_c00211{font-family:ff18_c00211;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:ff19_c00211;src:url('chunks/assets/font_3a0b4eba2255827655b50478.woff2')format("woff");}.ff19_c00211{font-family:ff19_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00211;src:url('chunks/assets/font_8fcd414030c4401f873ab740.woff2')format("woff");}.ff1a_c00211{font-family:ff1a_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00211;src:url('chunks/assets/font_e59eb0d43cf36db6efb5e068.woff2')format("woff");}.ff1b_c00211{font-family:ff1b_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00211;src:url('chunks/assets/font_c96c03f0e0ff4b800714ff21.woff2')format("woff");}.ff1c_c00211{font-family:ff1c_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00211;src:url('chunks/assets/font_9a9ff33b50518c2ada463111.woff2')format("woff");}.ff1d_c00211{font-family:ff1d_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00211;src:url('chunks/assets/font_aaca9d294def5d989c5557a3.woff2')format("woff");}.ff1e_c00211{font-family:ff1e_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00211;src:url('chunks/assets/font_e61fe7a8821f3368d375c71c.woff2')format("woff");}.ff1f_c00211{font-family:ff1f_c00211;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:ff20_c00211;src:url('chunks/assets/font_d11def3c79c664c9453570c2.woff2')format("woff");}.ff20_c00211{font-family:ff20_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00211;src:url('chunks/assets/font_e5028cf1e22cfcbb4f8b5ae1.woff2')format("woff");}.ff21_c00211{font-family:ff21_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00211;src:url('chunks/assets/font_038174b1597d79863db2b018.woff2')format("woff");}.ff22_c00211{font-family:ff22_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00211;src:url('chunks/assets/font_63454de38995fc144d7ba82b.woff2')format("woff");}.ff23_c00211{font-family:ff23_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00211;src:url('chunks/assets/font_ebdf980a1c243d831e9fa89d.woff2')format("woff");}.ff24_c00211{font-family:ff24_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00211;src:url('chunks/assets/font_0c468cc162bfc034573a37ab.woff2')format("woff");}.ff25_c00211{font-family:ff25_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00211;src:url('chunks/assets/font_620c771983a3aa8da30d8ef2.woff2')format("woff");}.ff26_c00211{font-family:ff26_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00211;src:url('chunks/assets/font_5ad0197f4e568a29251da4d5.woff2')format("woff");}.ff27_c00211{font-family:ff27_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00211;src:url('chunks/assets/font_c4b5521551c9de30100245a1.woff2')format("woff");}.ff28_c00211{font-family:ff28_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00211;src:url('chunks/assets/font_cb4621e4f518c8ab4b5f6b01.woff2')format("woff");}.ff29_c00211{font-family:ff29_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00211;src:url('chunks/assets/font_a92be8b27b4f112ad6a03658.woff2')format("woff");}.ff2a_c00211{font-family:ff2a_c00211;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:ff2b_c00211;src:url('chunks/assets/font_f28e22310bf86cfc9c4f668e.woff2')format("woff");}.ff2b_c00211{font-family:ff2b_c00211;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:ff2c_c00211;src:url('chunks/assets/font_761a5cc60506124b8ed80ad8.woff2')format("woff");}.ff2c_c00211{font-family:ff2c_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00211;src:url('chunks/assets/font_67babf9368cb48c6e8f84fbf.woff2')format("woff");}.ff2d_c00211{font-family:ff2d_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00211;src:url('chunks/assets/font_747dc7da15d27b68e1cb8016.woff2')format("woff");}.ff2e_c00211{font-family:ff2e_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00211;src:url('chunks/assets/font_15c8b00612b9f6a024836832.woff2')format("woff");}.ff2f_c00211{font-family:ff2f_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00211;src:url('chunks/assets/font_ebb6d52eb61a8ff951b30e09.woff2')format("woff");}.ff30_c00211{font-family:ff30_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00211;src:url('chunks/assets/font_73de058b0438087837922fa5.woff2')format("woff");}.ff31_c00211{font-family:ff31_c00211;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls5_c00211{letter-spacing:-0.014400px;}
.ls4_c00211{letter-spacing:0.000000px;}
.ls0_c00211{letter-spacing:0.072000px;}
.ls3_c00211{letter-spacing:2.541600px;}
.ls1_c00211{letter-spacing:8.201400px;}
.ls2_c00211{letter-spacing:20.932200px;}
.sc__c00211{text-shadow:none;}
.sc0_c00211{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00211{-webkit-text-stroke:0px transparent;}
.sc0_c00211{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00211{word-spacing:-18.000000px;}
.ws0_c00211{word-spacing:-0.072000px;}
.ws2_c00211{word-spacing:0.000000px;}
._4_c00211{width:1.008000px;}
._d_c00211{width:2.304000px;}
._3_c00211{width:5.752800px;}
._5_c00211{width:7.423200px;}
._7_c00211{width:8.661600px;}
._1_c00211{width:9.684000px;}
._c_c00211{width:11.116800px;}
._a_c00211{width:12.513600px;}
._6_c00211{width:14.724000px;}
._0_c00211{width:19.058400px;}
._b_c00211{width:20.682600px;}
._9_c00211{width:22.060800px;}
._2_c00211{width:23.544000px;}
._8_c00211{width:25.322400px;}
._e_c00211{width:29.304000px;}
.fc1_c00211{color:transparent;}
.fc0_c00211{color:rgb(0,0,0);}
.fs2_c00211{font-size:59.040000px;}
.fs1_c00211{font-size:64.800000px;}
.fs0_c00211{font-size:72.000000px;}
.y0_c00211{bottom:0.000000px;}
.y5_c00211{bottom:5.040000px;}
.y1_c00211{bottom:12.735000px;}
.y3_c00211{bottom:45.045000px;}
.y4_c00211{bottom:52.740000px;}
.y21_c00211{bottom:110.565000px;}
.y20_c00211{bottom:146.565000px;}
.y1f_c00211{bottom:182.565000px;}
.y1e_c00211{bottom:218.565000px;}
.y1d_c00211{bottom:254.565000px;}
.y1c_c00211{bottom:290.565000px;}
.y1b_c00211{bottom:326.565000px;}
.y1a_c00211{bottom:362.565000px;}
.y19_c00211{bottom:398.565000px;}
.y18_c00211{bottom:434.565000px;}
.y17_c00211{bottom:470.565000px;}
.y16_c00211{bottom:506.565000px;}
.y15_c00211{bottom:542.565000px;}
.y14_c00211{bottom:578.565000px;}
.y13_c00211{bottom:614.565000px;}
.y12_c00211{bottom:650.565000px;}
.y11_c00211{bottom:686.565000px;}
.y10_c00211{bottom:722.565000px;}
.yf_c00211{bottom:758.565000px;}
.ye_c00211{bottom:794.565000px;}
.yd_c00211{bottom:830.565000px;}
.yc_c00211{bottom:866.565000px;}
.yb_c00211{bottom:902.565000px;}
.ya_c00211{bottom:938.565000px;}
.y9_c00211{bottom:974.565000px;}
.y8_c00211{bottom:1010.565000px;}
.y7_c00211{bottom:1046.565000px;}
.y6_c00211{bottom:1082.565000px;}
.y2_c00211{bottom:1165.365000px;}
.h4_c00211{height:20.880000px;}
.h3_c00211{height:70.664062px;}
.h6_c00211{height:71.824219px;}
.h5_c00211{height:74.004654px;}
.h2_c00211{height:1237.365000px;}
.h0_c00211{height:1262.835000px;}
.h1_c00211{height:1263.000000px;}
.w3_c00211{width:27.000000px;}
.w2_c00211{width:867.465000px;}
.w0_c00211{width:892.935000px;}
.w1_c00211{width:893.250000px;}
.x0_c00211{left:0.000000px;}
.x1_c00211{left:12.735000px;}
.x3_c00211{left:95.406300px;}
.x6_c00211{left:149.391450px;}
.x5_c00211{left:222.975150px;}
.x4_c00211{left:433.215000px;}
.x2_c00211{left:878.550300px;}
@media print{
.v0_c00211{vertical-align:0.000000pt;}
.ls5_c00211{letter-spacing:-0.012800pt;}
.ls4_c00211{letter-spacing:0.000000pt;}
.ls0_c00211{letter-spacing:0.064000pt;}
.ls3_c00211{letter-spacing:2.259200pt;}
.ls1_c00211{letter-spacing:7.290133pt;}
.ls2_c00211{letter-spacing:18.606400pt;}
.ws1_c00211{word-spacing:-16.000000pt;}
.ws0_c00211{word-spacing:-0.064000pt;}
.ws2_c00211{word-spacing:0.000000pt;}
._4_c00211{width:0.896000pt;}
._d_c00211{width:2.048000pt;}
._3_c00211{width:5.113600pt;}
._5_c00211{width:6.598400pt;}
._7_c00211{width:7.699200pt;}
._1_c00211{width:8.608000pt;}
._c_c00211{width:9.881600pt;}
._a_c00211{width:11.123200pt;}
._6_c00211{width:13.088000pt;}
._0_c00211{width:16.940800pt;}
._b_c00211{width:18.384533pt;}
._9_c00211{width:19.609600pt;}
._2_c00211{width:20.928000pt;}
._8_c00211{width:22.508800pt;}
._e_c00211{width:26.048000pt;}
.fs2_c00211{font-size:52.480000pt;}
.fs1_c00211{font-size:57.600000pt;}
.fs0_c00211{font-size:64.000000pt;}
.y0_c00211{bottom:0.000000pt;}
.y5_c00211{bottom:4.480000pt;}
.y1_c00211{bottom:11.320000pt;}
.y3_c00211{bottom:40.040000pt;}
.y4_c00211{bottom:46.880000pt;}
.y21_c00211{bottom:98.280000pt;}
.y20_c00211{bottom:130.280000pt;}
.y1f_c00211{bottom:162.280000pt;}
.y1e_c00211{bottom:194.280000pt;}
.y1d_c00211{bottom:226.280000pt;}
.y1c_c00211{bottom:258.280000pt;}
.y1b_c00211{bottom:290.280000pt;}
.y1a_c00211{bottom:322.280000pt;}
.y19_c00211{bottom:354.280000pt;}
.y18_c00211{bottom:386.280000pt;}
.y17_c00211{bottom:418.280000pt;}
.y16_c00211{bottom:450.280000pt;}
.y15_c00211{bottom:482.280000pt;}
.y14_c00211{bottom:514.280000pt;}
.y13_c00211{bottom:546.280000pt;}
.y12_c00211{bottom:578.280000pt;}
.y11_c00211{bottom:610.280000pt;}
.y10_c00211{bottom:642.280000pt;}
.yf_c00211{bottom:674.280000pt;}
.ye_c00211{bottom:706.280000pt;}
.yd_c00211{bottom:738.280000pt;}
.yc_c00211{bottom:770.280000pt;}
.yb_c00211{bottom:802.280000pt;}
.ya_c00211{bottom:834.280000pt;}
.y9_c00211{bottom:866.280000pt;}
.y8_c00211{bottom:898.280000pt;}
.y7_c00211{bottom:930.280000pt;}
.y6_c00211{bottom:962.280000pt;}
.y2_c00211{bottom:1035.880000pt;}
.h4_c00211{height:18.560000pt;}
.h3_c00211{height:62.812500pt;}
.h6_c00211{height:63.843750pt;}
.h5_c00211{height:65.781915pt;}
.h2_c00211{height:1099.880000pt;}
.h0_c00211{height:1122.520000pt;}
.h1_c00211{height:1122.666667pt;}
.w3_c00211{width:24.000000pt;}
.w2_c00211{width:771.080000pt;}
.w0_c00211{width:793.720000pt;}
.w1_c00211{width:794.000000pt;}
.x0_c00211{left:0.000000pt;}
.x1_c00211{left:11.320000pt;}
.x3_c00211{left:84.805600pt;}
.x6_c00211{left:132.792400pt;}
.x5_c00211{left:198.200133pt;}
.x4_c00211{left:385.080000pt;}
.x2_c00211{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00212{font-family:ff1_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00212;src:url('chunks/assets/font_d13aa44d8db6407bb0a415cd.woff2')format("woff");}.ff2_c00212{font-family:ff2_c00212;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00212;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00212{font-family:ff3_c00212;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00212;src:url('chunks/assets/font_6c93444e5ab9aee52ec1b822.woff2')format("woff");}.ff4_c00212{font-family:ff4_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00212;src:url('chunks/assets/font_86001fcc4380995f10d955ec.woff2')format("woff");}.ff5_c00212{font-family:ff5_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00212;src:url('chunks/assets/font_be21cfe05ddc5c437732172a.woff2')format("woff");}.ff6_c00212{font-family:ff6_c00212;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00212;src:url('chunks/assets/font_a426a7102371bfd55cb88784.woff2')format("woff");}.ff7_c00212{font-family:ff7_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00212;src:url('chunks/assets/font_a496c34ea6f16bbbc55d4d5b.woff2')format("woff");}.ff8_c00212{font-family:ff8_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00212;src:url('chunks/assets/font_853020bb2f2bf7b04fd9c330.woff2')format("woff");}.ff9_c00212{font-family:ff9_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00212;src:url('chunks/assets/font_12168896e6cde0b64c7c66b6.woff2')format("woff");}.ffa_c00212{font-family:ffa_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00212;src:url('chunks/assets/font_2192f4943288060c65bb6173.woff2')format("woff");}.ffb_c00212{font-family:ffb_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00212;src:url('chunks/assets/font_94bd9ee881e37fad4250cdb6.woff2')format("woff");}.ffc_c00212{font-family:ffc_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00212;src:url('chunks/assets/font_195172590c1abdfcad796c21.woff2')format("woff");}.ffd_c00212{font-family:ffd_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00212;src:url('chunks/assets/font_be2bb7ec3f89a933384340b6.woff2')format("woff");}.ffe_c00212{font-family:ffe_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00212;src:url('chunks/assets/font_0cb3c47038f632c540dd307d.woff2')format("woff");}.fff_c00212{font-family:fff_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00212;src:url('chunks/assets/font_9c804c7a5cf43a1b572d8c37.woff2')format("woff");}.ff10_c00212{font-family:ff10_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00212;src:url('chunks/assets/font_4a6c5d9fc7717cf3df570a88.woff2')format("woff");}.ff11_c00212{font-family:ff11_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00212;src:url('chunks/assets/font_980b09d2df15f34522edf550.woff2')format("woff");}.ff12_c00212{font-family:ff12_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00212;src:url('chunks/assets/font_f3d5b7ea3991ca4b9a262a51.woff2')format("woff");}.ff13_c00212{font-family:ff13_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00212;src:url('chunks/assets/font_ca9436cfaec5c3252b62535f.woff2')format("woff");}.ff14_c00212{font-family:ff14_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00212;src:url('chunks/assets/font_f5c043a8f3bb7b7e712f822b.woff2')format("woff");}.ff15_c00212{font-family:ff15_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00212;src:url('chunks/assets/font_12465aeb2c26cd1a3553c131.woff2')format("woff");}.ff16_c00212{font-family:ff16_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00212;src:url('chunks/assets/font_6d84070945aa6cea5e8b43ee.woff2')format("woff");}.ff17_c00212{font-family:ff17_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00212;src:url('chunks/assets/font_e534a9dda6341b078d66d5e4.woff2')format("woff");}.ff18_c00212{font-family:ff18_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00212;src:url('chunks/assets/font_bb64be74be616de1e1d5ed1e.woff2')format("woff");}.ff19_c00212{font-family:ff19_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00212;src:url('chunks/assets/font_de2f387f56975b3e0b708065.woff2')format("woff");}.ff1a_c00212{font-family:ff1a_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00212;src:url('chunks/assets/font_69be55c5810d84bdbc06ce7c.woff2')format("woff");}.ff1b_c00212{font-family:ff1b_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00212;src:url('chunks/assets/font_3d83e9600789a6d1b7c0c489.woff2')format("woff");}.ff1c_c00212{font-family:ff1c_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00212;src:url('chunks/assets/font_94df5bdaef174cd36644a031.woff2')format("woff");}.ff1d_c00212{font-family:ff1d_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00212;src:url('chunks/assets/font_6f71bfb783159eb9a54741df.woff2')format("woff");}.ff1e_c00212{font-family:ff1e_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00212;src:url('chunks/assets/font_12e4b507a09b905fc3307395.woff2')format("woff");}.ff1f_c00212{font-family:ff1f_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00212;src:url('chunks/assets/font_80d758fe9aa423c7583e6dc4.woff2')format("woff");}.ff20_c00212{font-family:ff20_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00212;src:url('chunks/assets/font_ce8867ba962142ef3fbe5682.woff2')format("woff");}.ff21_c00212{font-family:ff21_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00212;src:url('chunks/assets/font_23a8331cd2f72fb2e93e7fd5.woff2')format("woff");}.ff22_c00212{font-family:ff22_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00212;src:url('chunks/assets/font_b4558ebc796a2fbd6a544af7.woff2')format("woff");}.ff23_c00212{font-family:ff23_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00212;src:url('chunks/assets/font_db9d88b1d0d23a730b5faef3.woff2')format("woff");}.ff24_c00212{font-family:ff24_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00212;src:url('chunks/assets/font_0ae40b1077891cadf0d51026.woff2')format("woff");}.ff25_c00212{font-family:ff25_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00212;src:url('chunks/assets/font_26f229f55521b6f6ab547fa4.woff2')format("woff");}.ff26_c00212{font-family:ff26_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00212;src:url('chunks/assets/font_54232e50f0be3aa8c684050a.woff2')format("woff");}.ff27_c00212{font-family:ff27_c00212;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00212;src:url('chunks/assets/font_9f3ba83c65de0f536e787ee0.woff2')format("woff");}.ff28_c00212{font-family:ff28_c00212;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00212;src:url('chunks/assets/font_7e113f2b12ec1fe58281c2d5.woff2')format("woff");}.ff29_c00212{font-family:ff29_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:ff2a_c00212;src:url('chunks/assets/font_cce408aacd3d55fc4b3a1304.woff2')format("woff");}.ff2a_c00212{font-family:ff2a_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:ff2b_c00212;src:url('chunks/assets/font_499585bfef03b35aae138b6f.woff2')format("woff");}.ff2b_c00212{font-family:ff2b_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:ff2c_c00212;src:url('chunks/assets/font_1c7d2916bf6807e436fdeb2e.woff2')format("woff");}.ff2c_c00212{font-family:ff2c_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:ff2d_c00212;src:url('chunks/assets/font_2fb7804658dd342c1603804e.woff2')format("woff");}.ff2d_c00212{font-family:ff2d_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;}
.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;}
.ls3_c00212{letter-spacing:-0.014400px;}
.ls2_c00212{letter-spacing:0.000000px;}
.ls1_c00212{letter-spacing:0.072000px;}
.ls0_c00212{letter-spacing:0.086400px;}
.sc__c00212{text-shadow:none;}
.sc0_c00212{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00212{-webkit-text-stroke:0px transparent;}
.sc0_c00212{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00212{word-spacing:-0.072000px;}
.ws1_c00212{word-spacing:0.000000px;}
._a_c00212{margin-left:-1.166400px;}
._2_c00212{width:1.123200px;}
._3_c00212{width:3.175200px;}
._7_c00212{width:5.047200px;}
._6_c00212{width:6.652800px;}
._4_c00212{width:7.848000px;}
._5_c00212{width:9.410400px;}
._1_c00212{width:11.217600px;}
._0_c00212{width:14.032800px;}
._9_c00212{width:22.896000px;}
._8_c00212{width:34.761600px;}
.fc1_c00212{color:transparent;}
.fc0_c00212{color:rgb(0,0,0);}
.fs1_c00212{font-size:64.800000px;}
.fs0_c00212{font-size:72.000000px;}
.y0_c00212{bottom:0.000000px;}
.y5_c00212{bottom:5.040000px;}
.y1_c00212{bottom:12.735000px;}
.y3_c00212{bottom:45.045000px;}
.y4_c00212{bottom:52.740000px;}
.y21_c00212{bottom:110.565000px;}
.y20_c00212{bottom:146.565000px;}
.y1f_c00212{bottom:182.565000px;}
.y1e_c00212{bottom:218.565000px;}
.y1d_c00212{bottom:254.565000px;}
.y1c_c00212{bottom:290.565000px;}
.y1b_c00212{bottom:326.565000px;}
.y1a_c00212{bottom:362.565000px;}
.y19_c00212{bottom:398.565000px;}
.y18_c00212{bottom:434.565000px;}
.y17_c00212{bottom:470.565000px;}
.y16_c00212{bottom:506.565000px;}
.y15_c00212{bottom:542.565000px;}
.y14_c00212{bottom:578.565000px;}
.y13_c00212{bottom:614.565000px;}
.y12_c00212{bottom:650.565000px;}
.y11_c00212{bottom:686.565000px;}
.y10_c00212{bottom:722.565000px;}
.yf_c00212{bottom:758.565000px;}
.ye_c00212{bottom:794.565000px;}
.yd_c00212{bottom:830.565000px;}
.yc_c00212{bottom:866.565000px;}
.yb_c00212{bottom:902.565000px;}
.ya_c00212{bottom:938.565000px;}
.y9_c00212{bottom:974.565000px;}
.y8_c00212{bottom:1010.565000px;}
.y7_c00212{bottom:1046.565000px;}
.y6_c00212{bottom:1082.565000px;}
.y2_c00212{bottom:1165.365000px;}
.h4_c00212{height:20.880000px;}
.h6_c00212{height:70.628906px;}
.h3_c00212{height:70.664062px;}
.h5_c00212{height:74.004654px;}
.h2_c00212{height:1237.365000px;}
.h0_c00212{height:1262.835000px;}
.h1_c00212{height:1263.000000px;}
.w3_c00212{width:27.000000px;}
.w2_c00212{width:867.465000px;}
.w0_c00212{width:892.935000px;}
.w1_c00212{width:893.250000px;}
.x0_c00212{left:0.000000px;}
.x1_c00212{left:12.735000px;}
.x3_c00212{left:95.406300px;}
.x5_c00212{left:149.400150px;}
.x4_c00212{left:433.215000px;}
.x2_c00212{left:878.550300px;}
@media print{
.v0_c00212{vertical-align:0.000000pt;}
.ls3_c00212{letter-spacing:-0.012800pt;}
.ls2_c00212{letter-spacing:0.000000pt;}
.ls1_c00212{letter-spacing:0.064000pt;}
.ls0_c00212{letter-spacing:0.076800pt;}
.ws0_c00212{word-spacing:-0.064000pt;}
.ws1_c00212{word-spacing:0.000000pt;}
._a_c00212{margin-left:-1.036800pt;}
._2_c00212{width:0.998400pt;}
._3_c00212{width:2.822400pt;}
._7_c00212{width:4.486400pt;}
._6_c00212{width:5.913600pt;}
._4_c00212{width:6.976000pt;}
._5_c00212{width:8.364800pt;}
._1_c00212{width:9.971200pt;}
._0_c00212{width:12.473600pt;}
._9_c00212{width:20.352000pt;}
._8_c00212{width:30.899200pt;}
.fs1_c00212{font-size:57.600000pt;}
.fs0_c00212{font-size:64.000000pt;}
.y0_c00212{bottom:0.000000pt;}
.y5_c00212{bottom:4.480000pt;}
.y1_c00212{bottom:11.320000pt;}
.y3_c00212{bottom:40.040000pt;}
.y4_c00212{bottom:46.880000pt;}
.y21_c00212{bottom:98.280000pt;}
.y20_c00212{bottom:130.280000pt;}
.y1f_c00212{bottom:162.280000pt;}
.y1e_c00212{bottom:194.280000pt;}
.y1d_c00212{bottom:226.280000pt;}
.y1c_c00212{bottom:258.280000pt;}
.y1b_c00212{bottom:290.280000pt;}
.y1a_c00212{bottom:322.280000pt;}
.y19_c00212{bottom:354.280000pt;}
.y18_c00212{bottom:386.280000pt;}
.y17_c00212{bottom:418.280000pt;}
.y16_c00212{bottom:450.280000pt;}
.y15_c00212{bottom:482.280000pt;}
.y14_c00212{bottom:514.280000pt;}
.y13_c00212{bottom:546.280000pt;}
.y12_c00212{bottom:578.280000pt;}
.y11_c00212{bottom:610.280000pt;}
.y10_c00212{bottom:642.280000pt;}
.yf_c00212{bottom:674.280000pt;}
.ye_c00212{bottom:706.280000pt;}
.yd_c00212{bottom:738.280000pt;}
.yc_c00212{bottom:770.280000pt;}
.yb_c00212{bottom:802.280000pt;}
.ya_c00212{bottom:834.280000pt;}
.y9_c00212{bottom:866.280000pt;}
.y8_c00212{bottom:898.280000pt;}
.y7_c00212{bottom:930.280000pt;}
.y6_c00212{bottom:962.280000pt;}
.y2_c00212{bottom:1035.880000pt;}
.h4_c00212{height:18.560000pt;}
.h6_c00212{height:62.781250pt;}
.h3_c00212{height:62.812500pt;}
.h5_c00212{height:65.781915pt;}
.h2_c00212{height:1099.880000pt;}
.h0_c00212{height:1122.520000pt;}
.h1_c00212{height:1122.666667pt;}
.w3_c00212{width:24.000000pt;}
.w2_c00212{width:771.080000pt;}
.w0_c00212{width:793.720000pt;}
.w1_c00212{width:794.000000pt;}
.x0_c00212{left:0.000000pt;}
.x1_c00212{left:11.320000pt;}
.x3_c00212{left:84.805600pt;}
.x5_c00212{left:132.800133pt;}
.x4_c00212{left:385.080000pt;}
.x2_c00212{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00213{font-family:ff1_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00213;src:url('chunks/assets/font_0ac4f57297f4179361727778.woff2')format("woff");}.ff2_c00213{font-family:ff2_c00213;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00213;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00213{font-family:ff3_c00213;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00213;src:url('chunks/assets/font_3f6cb2f63c0afc04d69ceb32.woff2')format("woff");}.ff4_c00213{font-family:ff4_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:ff5_c00213;src:url('chunks/assets/font_d375fe582acfb6a9e1b250d9.woff2')format("woff");}.ff5_c00213{font-family:ff5_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:ff6_c00213;src:url('chunks/assets/font_f993c72a55621778f133c8ae.woff2')format("woff");}.ff6_c00213{font-family:ff6_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:ff7_c00213;src:url('chunks/assets/font_5d6790b9040576f16463cd51.woff2')format("woff");}.ff7_c00213{font-family:ff7_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:ff8_c00213;src:url('chunks/assets/font_dd1fe7ca64259dec8a4b22f3.woff2')format("woff");}.ff8_c00213{font-family:ff8_c00213;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00213;src:url('chunks/assets/font_86c1fe685841981bf6470c55.woff2')format("woff");}.ff9_c00213{font-family:ff9_c00213;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_c00213;src:url('chunks/assets/font_868e2a420fd0f74eff544686.woff2')format("woff");}.ffa_c00213{font-family:ffa_c00213;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00213;src:url('chunks/assets/font_ffc5d493e653504eba569f3c.woff2')format("woff");}.ffb_c00213{font-family:ffb_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00213;src:url('chunks/assets/font_a0fe088dd9d30318e438ab73.woff2')format("woff");}.ffc_c00213{font-family:ffc_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00213;src:url('chunks/assets/font_8c228cce04a094086c13be34.woff2')format("woff");}.ffd_c00213{font-family:ffd_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00213;src:url('chunks/assets/font_84f61d785105c1d3a05003f2.woff2')format("woff");}.ffe_c00213{font-family:ffe_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00213;src:url('chunks/assets/font_21d5a0baf9fdedb8b5f1bf27.woff2')format("woff");}.fff_c00213{font-family:fff_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00213;src:url('chunks/assets/font_14b126a2dd35fed498fb81f5.woff2')format("woff");}.ff10_c00213{font-family:ff10_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00213;src:url('chunks/assets/font_b5c1ab430e0a959f0ff96152.woff2')format("woff");}.ff11_c00213{font-family:ff11_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00213;src:url('chunks/assets/font_8c829f276f7933ffd58f0ff7.woff2')format("woff");}.ff12_c00213{font-family:ff12_c00213;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:ff13_c00213;src:url('chunks/assets/font_5d23084e1d3ed25c955fb645.woff2')format("woff");}.ff13_c00213{font-family:ff13_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00213;src:url('chunks/assets/font_79942eab93544cf5259741dc.woff2')format("woff");}.ff14_c00213{font-family:ff14_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00213;src:url('chunks/assets/font_5aaff4c143cd03005b6d267e.woff2')format("woff");}.ff15_c00213{font-family:ff15_c00213;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:ff16_c00213;src:url('chunks/assets/font_89a4b41d152d84407857c458.woff2')format("woff");}.ff16_c00213{font-family:ff16_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00213;src:url('chunks/assets/font_044ec6d7e5b878be62aaca63.woff2')format("woff");}.ff17_c00213{font-family:ff17_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00213;src:url('chunks/assets/font_dd4f1d8e37fd784f54f92b22.woff2')format("woff");}.ff18_c00213{font-family:ff18_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00213;src:url('chunks/assets/font_5b6dd91eb50947291bdc1171.woff2')format("woff");}.ff19_c00213{font-family:ff19_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00213;src:url('chunks/assets/font_cdd37a9ff99d0a0b48647f3b.woff2')format("woff");}.ff1a_c00213{font-family:ff1a_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00213;src:url('chunks/assets/font_6d316012b301f3ac319ee7ce.woff2')format("woff");}.ff1b_c00213{font-family:ff1b_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00213;src:url('chunks/assets/font_262257660ae340c55a6b3aca.woff2')format("woff");}.ff1c_c00213{font-family:ff1c_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00213;src:url('chunks/assets/font_aaae53287141cec6bfb9d0aa.woff2')format("woff");}.ff1d_c00213{font-family:ff1d_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00213;src:url('chunks/assets/font_f7a8bfadcb40141e2a23ab90.woff2')format("woff");}.ff1e_c00213{font-family:ff1e_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00213;src:url('chunks/assets/font_e79809544dec885b7d6336d1.woff2')format("woff");}.ff1f_c00213{font-family:ff1f_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00213;src:url('chunks/assets/font_02f0b7013b002193bbdc17a9.woff2')format("woff");}.ff20_c00213{font-family:ff20_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00213;src:url('chunks/assets/font_bf6a868f7ec1ed34c2ac3844.woff2')format("woff");}.ff21_c00213{font-family:ff21_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00213;src:url('chunks/assets/font_483be29042d243c77b054320.woff2')format("woff");}.ff22_c00213{font-family:ff22_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00213;src:url('chunks/assets/font_de58e64b34037c16ec1c4012.woff2')format("woff");}.ff23_c00213{font-family:ff23_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00213;src:url('chunks/assets/font_be358ade9f7504e0f70fe2ba.woff2')format("woff");}.ff24_c00213{font-family:ff24_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00213;src:url('chunks/assets/font_60be05f03077ab0f9152abd0.woff2')format("woff");}.ff25_c00213{font-family:ff25_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00213;src:url('chunks/assets/font_73c4bd17874cc9814f78435b.woff2')format("woff");}.ff26_c00213{font-family:ff26_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00213;src:url('chunks/assets/font_9f1f0316e820101881bed6ca.woff2')format("woff");}.ff27_c00213{font-family:ff27_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00213;src:url('chunks/assets/font_fae41c35582f736985219512.woff2')format("woff");}.ff28_c00213{font-family:ff28_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00213;src:url('chunks/assets/font_7b744aa7a9c39bf3a271f905.woff2')format("woff");}.ff29_c00213{font-family:ff29_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00213;src:url('chunks/assets/font_c4e75db6a8baea8b8fab36d8.woff2')format("woff");}.ff2a_c00213{font-family:ff2a_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00213;src:url('chunks/assets/font_4dce896941ea71d301e7bbf4.woff2')format("woff");}.ff2b_c00213{font-family:ff2b_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00213;src:url('chunks/assets/font_a8be68c850ee677fa85fecc6.woff2')format("woff");}.ff2c_c00213{font-family:ff2c_c00213;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:ff2d_c00213;src:url('chunks/assets/font_68cfc529d8f1537b6a4b87d7.woff2')format("woff");}.ff2d_c00213{font-family:ff2d_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00213;src:url('chunks/assets/font_aa9f0ee8610dc9ece999ceb2.woff2')format("woff");}.ff2e_c00213{font-family:ff2e_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00213;src:url('chunks/assets/font_33022eab32f99a3297874d1b.woff2')format("woff");}.ff2f_c00213{font-family:ff2f_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00213;src:url('chunks/assets/font_d467b3994ddde4637271d799.woff2')format("woff");}.ff30_c00213{font-family:ff30_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00213;src:url('chunks/assets/font_e326fe88966e6c2c57f95039.woff2')format("woff");}.ff31_c00213{font-family:ff31_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00213;src:url('chunks/assets/font_14a9d042d788bc28f1481dc4.woff2')format("woff");}.ff32_c00213{font-family:ff32_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00213;src:url('chunks/assets/font_7f05d11e15511017961ee74f.woff2')format("woff");}.ff33_c00213{font-family:ff33_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00213;src:url('chunks/assets/font_0b6b0292cb4bc5d5009352a0.woff2')format("woff");}.ff34_c00213{font-family:ff34_c00213;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00213{letter-spacing:-0.014400px;}
.ls3_c00213{letter-spacing:0.000000px;}
.ls2_c00213{letter-spacing:0.072000px;}
.ls0_c00213{letter-spacing:4.320000px;}
.ls1_c00213{letter-spacing:6.660000px;}
.sc__c00213{text-shadow:none;}
.sc0_c00213{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00213{-webkit-text-stroke:0px transparent;}
.sc0_c00213{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00213{word-spacing:-0.072000px;}
.ws1_c00213{word-spacing:0.000000px;}
._1_c00213{width:1.216800px;}
._3_c00213{width:2.376000px;}
._5_c00213{width:3.477600px;}
._4_c00213{width:4.744800px;}
._0_c00213{width:6.012000px;}
._a_c00213{width:7.804800px;}
._9_c00213{width:9.849600px;}
._8_c00213{width:11.692800px;}
._2_c00213{width:13.492800px;}
._7_c00213{width:16.459200px;}
._b_c00213{width:19.296000px;}
._c_c00213{width:22.075200px;}
._6_c00213{width:27.914400px;}
.fc1_c00213{color:transparent;}
.fc0_c00213{color:rgb(0,0,0);}
.fs1_c00213{font-size:64.800000px;}
.fs0_c00213{font-size:72.000000px;}
.y0_c00213{bottom:0.000000px;}
.y5_c00213{bottom:5.040000px;}
.y1_c00213{bottom:12.735000px;}
.y3_c00213{bottom:45.045000px;}
.y4_c00213{bottom:52.740000px;}
.y21_c00213{bottom:110.565000px;}
.y20_c00213{bottom:146.565000px;}
.y1f_c00213{bottom:182.565000px;}
.y1e_c00213{bottom:218.565000px;}
.y1d_c00213{bottom:254.565000px;}
.y1c_c00213{bottom:290.565000px;}
.y1b_c00213{bottom:326.565000px;}
.y1a_c00213{bottom:362.565000px;}
.y19_c00213{bottom:398.565000px;}
.y18_c00213{bottom:434.565000px;}
.y17_c00213{bottom:470.565000px;}
.y16_c00213{bottom:506.565000px;}
.y15_c00213{bottom:542.565000px;}
.y14_c00213{bottom:578.565000px;}
.y13_c00213{bottom:614.565000px;}
.y12_c00213{bottom:650.565000px;}
.y11_c00213{bottom:686.565000px;}
.y10_c00213{bottom:722.565000px;}
.yf_c00213{bottom:758.565000px;}
.ye_c00213{bottom:794.565000px;}
.yd_c00213{bottom:830.565000px;}
.yc_c00213{bottom:866.565000px;}
.yb_c00213{bottom:902.565000px;}
.ya_c00213{bottom:938.565000px;}
.y9_c00213{bottom:974.565000px;}
.y8_c00213{bottom:1010.565000px;}
.y7_c00213{bottom:1046.565000px;}
.y6_c00213{bottom:1082.565000px;}
.y2_c00213{bottom:1165.365000px;}
.h4_c00213{height:20.880000px;}
.h6_c00213{height:70.628906px;}
.h3_c00213{height:70.664062px;}
.h5_c00213{height:74.004654px;}
.h7_c00213{height:74.953125px;}
.h2_c00213{height:1237.365000px;}
.h0_c00213{height:1262.835000px;}
.h1_c00213{height:1263.000000px;}
.w3_c00213{width:27.000000px;}
.w2_c00213{width:867.465000px;}
.w0_c00213{width:892.935000px;}
.w1_c00213{width:893.250000px;}
.x0_c00213{left:0.000000px;}
.x1_c00213{left:12.735000px;}
.x3_c00213{left:95.406300px;}
.x5_c00213{left:149.400150px;}
.x4_c00213{left:433.215000px;}
.x2_c00213{left:878.550300px;}
@media print{
.v0_c00213{vertical-align:0.000000pt;}
.ls4_c00213{letter-spacing:-0.012800pt;}
.ls3_c00213{letter-spacing:0.000000pt;}
.ls2_c00213{letter-spacing:0.064000pt;}
.ls0_c00213{letter-spacing:3.840000pt;}
.ls1_c00213{letter-spacing:5.920000pt;}
.ws0_c00213{word-spacing:-0.064000pt;}
.ws1_c00213{word-spacing:0.000000pt;}
._1_c00213{width:1.081600pt;}
._3_c00213{width:2.112000pt;}
._5_c00213{width:3.091200pt;}
._4_c00213{width:4.217600pt;}
._0_c00213{width:5.344000pt;}
._a_c00213{width:6.937600pt;}
._9_c00213{width:8.755200pt;}
._8_c00213{width:10.393600pt;}
._2_c00213{width:11.993600pt;}
._7_c00213{width:14.630400pt;}
._b_c00213{width:17.152000pt;}
._c_c00213{width:19.622400pt;}
._6_c00213{width:24.812800pt;}
.fs1_c00213{font-size:57.600000pt;}
.fs0_c00213{font-size:64.000000pt;}
.y0_c00213{bottom:0.000000pt;}
.y5_c00213{bottom:4.480000pt;}
.y1_c00213{bottom:11.320000pt;}
.y3_c00213{bottom:40.040000pt;}
.y4_c00213{bottom:46.880000pt;}
.y21_c00213{bottom:98.280000pt;}
.y20_c00213{bottom:130.280000pt;}
.y1f_c00213{bottom:162.280000pt;}
.y1e_c00213{bottom:194.280000pt;}
.y1d_c00213{bottom:226.280000pt;}
.y1c_c00213{bottom:258.280000pt;}
.y1b_c00213{bottom:290.280000pt;}
.y1a_c00213{bottom:322.280000pt;}
.y19_c00213{bottom:354.280000pt;}
.y18_c00213{bottom:386.280000pt;}
.y17_c00213{bottom:418.280000pt;}
.y16_c00213{bottom:450.280000pt;}
.y15_c00213{bottom:482.280000pt;}
.y14_c00213{bottom:514.280000pt;}
.y13_c00213{bottom:546.280000pt;}
.y12_c00213{bottom:578.280000pt;}
.y11_c00213{bottom:610.280000pt;}
.y10_c00213{bottom:642.280000pt;}
.yf_c00213{bottom:674.280000pt;}
.ye_c00213{bottom:706.280000pt;}
.yd_c00213{bottom:738.280000pt;}
.yc_c00213{bottom:770.280000pt;}
.yb_c00213{bottom:802.280000pt;}
.ya_c00213{bottom:834.280000pt;}
.y9_c00213{bottom:866.280000pt;}
.y8_c00213{bottom:898.280000pt;}
.y7_c00213{bottom:930.280000pt;}
.y6_c00213{bottom:962.280000pt;}
.y2_c00213{bottom:1035.880000pt;}
.h4_c00213{height:18.560000pt;}
.h6_c00213{height:62.781250pt;}
.h3_c00213{height:62.812500pt;}
.h5_c00213{height:65.781915pt;}
.h7_c00213{height:66.625000pt;}
.h2_c00213{height:1099.880000pt;}
.h0_c00213{height:1122.520000pt;}
.h1_c00213{height:1122.666667pt;}
.w3_c00213{width:24.000000pt;}
.w2_c00213{width:771.080000pt;}
.w0_c00213{width:793.720000pt;}
.w1_c00213{width:794.000000pt;}
.x0_c00213{left:0.000000pt;}
.x1_c00213{left:11.320000pt;}
.x3_c00213{left:84.805600pt;}
.x5_c00213{left:132.800133pt;}
.x4_c00213{left:385.080000pt;}
.x2_c00213{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00214{font-family:ff1_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00214;src:url('chunks/assets/font_b6cca177134173dfe94a642d.woff2')format("woff");}.ff2_c00214{font-family:ff2_c00214;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00214;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00214{font-family:ff3_c00214;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00214;src:url('chunks/assets/font_b0561291cba8e645ffee8acc.woff2')format("woff");}.ff4_c00214{font-family:ff4_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00214;src:url('chunks/assets/font_a4c0ced227a81f20c428d4db.woff2')format("woff");}.ff5_c00214{font-family:ff5_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00214;src:url('chunks/assets/font_be77b8f8f5d38b833a6e2fe6.woff2')format("woff");}.ff6_c00214{font-family:ff6_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00214;src:url('chunks/assets/font_a8aacd41e996f2676bf1b181.woff2')format("woff");}.ff7_c00214{font-family:ff7_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00214;src:url('chunks/assets/font_730667eba7f9f82d909e8a47.woff2')format("woff");}.ff8_c00214{font-family:ff8_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00214;src:url('chunks/assets/font_6162988ad23fc8436c96c325.woff2')format("woff");}.ff9_c00214{font-family:ff9_c00214;line-height:1.284180;font-style:normal;font-weight: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_c00214;src:url('chunks/assets/font_4589767a456dd73f3b7fb4f9.woff2')format("woff");}.ffa_c00214{font-family:ffa_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00214;src:url('chunks/assets/font_de97b14dcc03f4a8c60075b3.woff2')format("woff");}.ffb_c00214{font-family:ffb_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00214;src:url('chunks/assets/font_05255d6b278441c3cfd3cb17.woff2')format("woff");}.ffc_c00214{font-family:ffc_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00214;src:url('chunks/assets/font_98f6838795b14143564182a4.woff2')format("woff");}.ffd_c00214{font-family:ffd_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00214;src:url('chunks/assets/font_acb00c4a468b3796ac70651d.woff2')format("woff");}.ffe_c00214{font-family:ffe_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00214;src:url('chunks/assets/font_10e7cdd8aeea3d6bbdef6d68.woff2')format("woff");}.fff_c00214{font-family:fff_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00214;src:url('chunks/assets/font_4d480d4e9554185efdb53d68.woff2')format("woff");}.ff10_c00214{font-family:ff10_c00214;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:ff11_c00214;src:url('chunks/assets/font_0cd453f6f24c058e6b06a585.woff2')format("woff");}.ff11_c00214{font-family:ff11_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00214;src:url('chunks/assets/font_23911319732f94cdea3205b6.woff2')format("woff");}.ff12_c00214{font-family:ff12_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00214;src:url('chunks/assets/font_e97103d8b38d5516d6d519df.woff2')format("woff");}.ff13_c00214{font-family:ff13_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00214;src:url('chunks/assets/font_f87bd25506cf2e043bf9a640.woff2')format("woff");}.ff14_c00214{font-family:ff14_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00214;src:url('chunks/assets/font_3b163e09051082e50ec91e21.woff2')format("woff");}.ff15_c00214{font-family:ff15_c00214;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00214;src:url('chunks/assets/font_a4f60df625b041deb08a4ad8.woff2')format("woff");}.ff16_c00214{font-family:ff16_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00214;src:url('chunks/assets/font_1b481a33d94d4fa445dc6acd.woff2')format("woff");}.ff17_c00214{font-family:ff17_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00214;src:url('chunks/assets/font_edad9fcf12aec9be3a9e83f7.woff2')format("woff");}.ff18_c00214{font-family:ff18_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00214;src:url('chunks/assets/font_365b40fcddb5b07eb7a0cafc.woff2')format("woff");}.ff19_c00214{font-family:ff19_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00214;src:url('chunks/assets/font_ba6deb9458308b7719131747.woff2')format("woff");}.ff1a_c00214{font-family:ff1a_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00214;src:url('chunks/assets/font_e02d5db563a568d983a300a5.woff2')format("woff");}.ff1b_c00214{font-family:ff1b_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00214;src:url('chunks/assets/font_4a6fc03d9dcbb185ba89b4dc.woff2')format("woff");}.ff1c_c00214{font-family:ff1c_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00214;src:url('chunks/assets/font_4803a97953ecda8df7cff987.woff2')format("woff");}.ff1d_c00214{font-family:ff1d_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00214;src:url('chunks/assets/font_c55240b543a464bc1b120d0b.woff2')format("woff");}.ff1e_c00214{font-family:ff1e_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00214;src:url('chunks/assets/font_ab85532fa24fa42954695f25.woff2')format("woff");}.ff1f_c00214{font-family:ff1f_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00214;src:url('chunks/assets/font_addb5672d2d453707c47eb65.woff2')format("woff");}.ff20_c00214{font-family:ff20_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00214;src:url('chunks/assets/font_b35fd61d6698422700d1e80b.woff2')format("woff");}.ff21_c00214{font-family:ff21_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00214;src:url('chunks/assets/font_c3c350ab18985bbce16732d9.woff2')format("woff");}.ff22_c00214{font-family:ff22_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00214;src:url('chunks/assets/font_54ae71ad66f19638deff2b24.woff2')format("woff");}.ff23_c00214{font-family:ff23_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00214;src:url('chunks/assets/font_fd09edd7676f60b8446b02b2.woff2')format("woff");}.ff24_c00214{font-family:ff24_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00214;src:url('chunks/assets/font_4da09e1e2a617bc17bfc8ca6.woff2')format("woff");}.ff25_c00214{font-family:ff25_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00214;src:url('chunks/assets/font_9d8aed62a8a2da6f26a967a3.woff2')format("woff");}.ff26_c00214{font-family:ff26_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00214;src:url('chunks/assets/font_b3692ea8d14c297c1efad342.woff2')format("woff");}.ff27_c00214{font-family:ff27_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00214;src:url('chunks/assets/font_7d30ab8d9dcc3c62d38a8334.woff2')format("woff");}.ff28_c00214{font-family:ff28_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00214;src:url('chunks/assets/font_1dcc5059c18ed7bb29f04a1b.woff2')format("woff");}.ff29_c00214{font-family:ff29_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00214;src:url('chunks/assets/font_a59aa5829ef1d16adaba77fb.woff2')format("woff");}.ff2a_c00214{font-family:ff2a_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00214;src:url('chunks/assets/font_dcac3ffcc7ad46aaca3d043c.woff2')format("woff");}.ff2b_c00214{font-family:ff2b_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00214;src:url('chunks/assets/font_a03bcfca1e9c8bb456419863.woff2')format("woff");}.ff2c_c00214{font-family:ff2c_c00214;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00214{letter-spacing:0.000000px;}
.ls0_c00214{letter-spacing:0.057600px;}
.ls1_c00214{letter-spacing:0.072000px;}
.sc__c00214{text-shadow:none;}
.sc0_c00214{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00214{-webkit-text-stroke:0px transparent;}
.sc0_c00214{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00214{word-spacing:-0.072000px;}
.ws1_c00214{word-spacing:0.000000px;}
._0_c00214{width:1.036800px;}
._5_c00214{width:2.232000px;}
._8_c00214{width:4.644000px;}
._4_c00214{width:6.645600px;}
._6_c00214{width:7.790400px;}
._a_c00214{width:8.834400px;}
._3_c00214{width:9.885600px;}
._7_c00214{width:11.498400px;}
._c_c00214{width:12.578400px;}
._9_c00214{width:14.673600px;}
._d_c00214{width:16.776000px;}
._1_c00214{width:19.584000px;}
._b_c00214{width:21.506400px;}
._2_c00214{width:23.162400px;}
.fc1_c00214{color:transparent;}
.fc0_c00214{color:rgb(0,0,0);}
.fs1_c00214{font-size:64.800000px;}
.fs0_c00214{font-size:72.000000px;}
.y0_c00214{bottom:0.000000px;}
.y5_c00214{bottom:5.040000px;}
.y1_c00214{bottom:12.735000px;}
.y3_c00214{bottom:45.045000px;}
.y4_c00214{bottom:52.740000px;}
.y21_c00214{bottom:110.565000px;}
.y20_c00214{bottom:146.565000px;}
.y1f_c00214{bottom:182.565000px;}
.y1e_c00214{bottom:218.565000px;}
.y1d_c00214{bottom:254.565000px;}
.y1c_c00214{bottom:290.565000px;}
.y1b_c00214{bottom:326.565000px;}
.y1a_c00214{bottom:362.565000px;}
.y19_c00214{bottom:398.565000px;}
.y18_c00214{bottom:434.565000px;}
.y17_c00214{bottom:470.565000px;}
.y16_c00214{bottom:506.565000px;}
.y15_c00214{bottom:542.565000px;}
.y14_c00214{bottom:578.565000px;}
.y13_c00214{bottom:614.565000px;}
.y12_c00214{bottom:650.565000px;}
.y11_c00214{bottom:686.565000px;}
.y10_c00214{bottom:722.565000px;}
.yf_c00214{bottom:758.565000px;}
.ye_c00214{bottom:794.565000px;}
.yd_c00214{bottom:830.565000px;}
.yc_c00214{bottom:866.565000px;}
.yb_c00214{bottom:902.565000px;}
.ya_c00214{bottom:938.565000px;}
.y9_c00214{bottom:974.565000px;}
.y8_c00214{bottom:1010.565000px;}
.y7_c00214{bottom:1046.565000px;}
.y6_c00214{bottom:1082.565000px;}
.y2_c00214{bottom:1165.365000px;}
.h4_c00214{height:20.880000px;}
.h3_c00214{height:70.664062px;}
.h5_c00214{height:74.004654px;}
.h2_c00214{height:1237.365000px;}
.h0_c00214{height:1262.835000px;}
.h1_c00214{height:1263.000000px;}
.w3_c00214{width:27.000000px;}
.w2_c00214{width:867.465000px;}
.w0_c00214{width:892.935000px;}
.w1_c00214{width:893.250000px;}
.x0_c00214{left:0.000000px;}
.x1_c00214{left:12.735000px;}
.x3_c00214{left:95.406300px;}
.x5_c00214{left:149.400150px;}
.x4_c00214{left:433.215000px;}
.x2_c00214{left:878.550300px;}
@media print{
.v0_c00214{vertical-align:0.000000pt;}
.ls2_c00214{letter-spacing:0.000000pt;}
.ls0_c00214{letter-spacing:0.051200pt;}
.ls1_c00214{letter-spacing:0.064000pt;}
.ws0_c00214{word-spacing:-0.064000pt;}
.ws1_c00214{word-spacing:0.000000pt;}
._0_c00214{width:0.921600pt;}
._5_c00214{width:1.984000pt;}
._8_c00214{width:4.128000pt;}
._4_c00214{width:5.907200pt;}
._6_c00214{width:6.924800pt;}
._a_c00214{width:7.852800pt;}
._3_c00214{width:8.787200pt;}
._7_c00214{width:10.220800pt;}
._c_c00214{width:11.180800pt;}
._9_c00214{width:13.043200pt;}
._d_c00214{width:14.912000pt;}
._1_c00214{width:17.408000pt;}
._b_c00214{width:19.116800pt;}
._2_c00214{width:20.588800pt;}
.fs1_c00214{font-size:57.600000pt;}
.fs0_c00214{font-size:64.000000pt;}
.y0_c00214{bottom:0.000000pt;}
.y5_c00214{bottom:4.480000pt;}
.y1_c00214{bottom:11.320000pt;}
.y3_c00214{bottom:40.040000pt;}
.y4_c00214{bottom:46.880000pt;}
.y21_c00214{bottom:98.280000pt;}
.y20_c00214{bottom:130.280000pt;}
.y1f_c00214{bottom:162.280000pt;}
.y1e_c00214{bottom:194.280000pt;}
.y1d_c00214{bottom:226.280000pt;}
.y1c_c00214{bottom:258.280000pt;}
.y1b_c00214{bottom:290.280000pt;}
.y1a_c00214{bottom:322.280000pt;}
.y19_c00214{bottom:354.280000pt;}
.y18_c00214{bottom:386.280000pt;}
.y17_c00214{bottom:418.280000pt;}
.y16_c00214{bottom:450.280000pt;}
.y15_c00214{bottom:482.280000pt;}
.y14_c00214{bottom:514.280000pt;}
.y13_c00214{bottom:546.280000pt;}
.y12_c00214{bottom:578.280000pt;}
.y11_c00214{bottom:610.280000pt;}
.y10_c00214{bottom:642.280000pt;}
.yf_c00214{bottom:674.280000pt;}
.ye_c00214{bottom:706.280000pt;}
.yd_c00214{bottom:738.280000pt;}
.yc_c00214{bottom:770.280000pt;}
.yb_c00214{bottom:802.280000pt;}
.ya_c00214{bottom:834.280000pt;}
.y9_c00214{bottom:866.280000pt;}
.y8_c00214{bottom:898.280000pt;}
.y7_c00214{bottom:930.280000pt;}
.y6_c00214{bottom:962.280000pt;}
.y2_c00214{bottom:1035.880000pt;}
.h4_c00214{height:18.560000pt;}
.h3_c00214{height:62.812500pt;}
.h5_c00214{height:65.781915pt;}
.h2_c00214{height:1099.880000pt;}
.h0_c00214{height:1122.520000pt;}
.h1_c00214{height:1122.666667pt;}
.w3_c00214{width:24.000000pt;}
.w2_c00214{width:771.080000pt;}
.w0_c00214{width:793.720000pt;}
.w1_c00214{width:794.000000pt;}
.x0_c00214{left:0.000000pt;}
.x1_c00214{left:11.320000pt;}
.x3_c00214{left:84.805600pt;}
.x5_c00214{left:132.800133pt;}
.x4_c00214{left:385.080000pt;}
.x2_c00214{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00215{font-family:ff1_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00215;src:url('chunks/assets/font_8053a9e3c66e6b14395e960f.woff2')format("woff");}.ff2_c00215{font-family:ff2_c00215;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00215;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00215{font-family:ff3_c00215;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00215;src:url('chunks/assets/font_4bb243adedaa55327adbfccd.woff2')format("woff");}.ff4_c00215{font-family:ff4_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00215;src:url('chunks/assets/font_5daa690ab5e228570794db28.woff2')format("woff");}.ff5_c00215{font-family:ff5_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00215;src:url('chunks/assets/font_ed74af8a4803c849034fa6fd.woff2')format("woff");}.ff6_c00215{font-family:ff6_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00215;src:url('chunks/assets/font_63e6897283da3080c86b250c.woff2')format("woff");}.ff7_c00215{font-family:ff7_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00215;src:url('chunks/assets/font_a1bc7900d61a4fa542dc63e2.woff2')format("woff");}.ff8_c00215{font-family:ff8_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00215;src:url('chunks/assets/font_fdf6ae38e84d0b632fe87247.woff2')format("woff");}.ff9_c00215{font-family:ff9_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00215;src:url('chunks/assets/font_5c4f732b823de34062ec31a8.woff2')format("woff");}.ffa_c00215{font-family:ffa_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00215;src:url('chunks/assets/font_354af356b2afd04e6fa5005b.woff2')format("woff");}.ffb_c00215{font-family:ffb_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00215;src:url('chunks/assets/font_7ad37dc90d60c9abef19e678.woff2')format("woff");}.ffc_c00215{font-family:ffc_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00215;src:url('chunks/assets/font_44dabd6e3a39d0c234def457.woff2')format("woff");}.ffd_c00215{font-family:ffd_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00215;src:url('chunks/assets/font_61072584a12abf7fbd9b337d.woff2')format("woff");}.ffe_c00215{font-family:ffe_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00215;src:url('chunks/assets/font_e026cbe634643dfd949a9963.woff2')format("woff");}.fff_c00215{font-family:fff_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00215;src:url('chunks/assets/font_1d2c2aac05d5ecbdc9016fc9.woff2')format("woff");}.ff10_c00215{font-family:ff10_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00215;src:url('chunks/assets/font_6d0a842fbe9e485deeab7f0a.woff2')format("woff");}.ff11_c00215{font-family:ff11_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00215;src:url('chunks/assets/font_e6a5dfb64ebbf5d9cd4232d0.woff2')format("woff");}.ff12_c00215{font-family:ff12_c00215;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00215;src:url('chunks/assets/font_07e62fee48b50311e4ceb4ff.woff2')format("woff");}.ff13_c00215{font-family:ff13_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00215;src:url('chunks/assets/font_52887d12ef86f82fa80af869.woff2')format("woff");}.ff14_c00215{font-family:ff14_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00215;src:url('chunks/assets/font_b8053282fba8001ad5faa7ae.woff2')format("woff");}.ff15_c00215{font-family:ff15_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00215;src:url('chunks/assets/font_1e443f4c5bc3b72751479ca9.woff2')format("woff");}.ff16_c00215{font-family:ff16_c00215;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:ff17_c00215;src:url('chunks/assets/font_8e6783208ccd33d168798d9a.woff2')format("woff");}.ff17_c00215{font-family:ff17_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00215;src:url('chunks/assets/font_46521caf4c0b76fd1e63758a.woff2')format("woff");}.ff18_c00215{font-family:ff18_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00215;src:url('chunks/assets/font_8e43045e4cdb67c25a5db81c.woff2')format("woff");}.ff19_c00215{font-family:ff19_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00215;src:url('chunks/assets/font_cc46e5a40b8397abe8c1b99e.woff2')format("woff");}.ff1a_c00215{font-family:ff1a_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00215;src:url('chunks/assets/font_a535a7b152348e868b00735f.woff2')format("woff");}.ff1b_c00215{font-family:ff1b_c00215;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:ff1c_c00215;src:url('chunks/assets/font_da601134f37bde621603b2ed.woff2')format("woff");}.ff1c_c00215{font-family:ff1c_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00215;src:url('chunks/assets/font_2dba85814b21d0c9fee5de21.woff2')format("woff");}.ff1d_c00215{font-family:ff1d_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00215;src:url('chunks/assets/font_339528c578a2f82b53b15d7d.woff2')format("woff");}.ff1e_c00215{font-family:ff1e_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00215;src:url('chunks/assets/font_48677388075e6aefaa402696.woff2')format("woff");}.ff1f_c00215{font-family:ff1f_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00215;src:url('chunks/assets/font_ecc92ccd496f71f7acace1b3.woff2')format("woff");}.ff20_c00215{font-family:ff20_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00215;src:url('chunks/assets/font_704c66f363afa78b4cd3a90e.woff2')format("woff");}.ff21_c00215{font-family:ff21_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00215;src:url('chunks/assets/font_3d1fafd2fce5c6b64996e067.woff2')format("woff");}.ff22_c00215{font-family:ff22_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00215;src:url('chunks/assets/font_4760484949db5da5c5218185.woff2')format("woff");}.ff23_c00215{font-family:ff23_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00215;src:url('chunks/assets/font_d68c7fc5ae4a97dc4bd44301.woff2')format("woff");}.ff24_c00215{font-family:ff24_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00215;src:url('chunks/assets/font_3ab9b84d97543cea91280f36.woff2')format("woff");}.ff25_c00215{font-family:ff25_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00215;src:url('chunks/assets/font_87b0c411d1b4a3d555230842.woff2')format("woff");}.ff26_c00215{font-family:ff26_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00215;src:url('chunks/assets/font_133263503bce7cf167ac56fe.woff2')format("woff");}.ff27_c00215{font-family:ff27_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00215;src:url('chunks/assets/font_d8fd51177cbd3591a5b93fbb.woff2')format("woff");}.ff28_c00215{font-family:ff28_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00215;src:url('chunks/assets/font_5837f4ec70ac2f1e7fb2e43d.woff2')format("woff");}.ff29_c00215{font-family:ff29_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00215;src:url('chunks/assets/font_d7df7f9fd02a12d14145431a.woff2')format("woff");}.ff2a_c00215{font-family:ff2a_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00215;src:url('chunks/assets/font_9c5eb6293839149bc06216bc.woff2')format("woff");}.ff2b_c00215{font-family:ff2b_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00215;src:url('chunks/assets/font_a7a19641a27768777a913657.woff2')format("woff");}.ff2c_c00215{font-family:ff2c_c00215;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00215;src:url('chunks/assets/font_efcc8bbc1607ddb7739cc332.woff2')format("woff");}.ff2d_c00215{font-family:ff2d_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00215;src:url('chunks/assets/font_7098dc87de1df8534aed65b8.woff2')format("woff");}.ff2e_c00215{font-family:ff2e_c00215;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:ff2f_c00215;src:url('chunks/assets/font_40fb4d3ae0180e4137196ea8.woff2')format("woff");}.ff2f_c00215{font-family:ff2f_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00215;src:url('chunks/assets/font_9e8106b237d9d51afdde263f.woff2')format("woff");}.ff30_c00215{font-family:ff30_c00215;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00215;src:url('chunks/assets/font_d6ae1af2842be9fff458c3b6.woff2')format("woff");}.ff31_c00215{font-family:ff31_c00215;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00215{letter-spacing:0.000000px;}
.ls0_c00215{letter-spacing:0.072000px;}
.sc__c00215{text-shadow:none;}
.sc0_c00215{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00215{-webkit-text-stroke:0px transparent;}
.sc0_c00215{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00215{word-spacing:-0.072000px;}
.ws1_c00215{word-spacing:0.000000px;}
._1_c00215{width:1.432800px;}
._2_c00215{width:2.793600px;}
._c_c00215{width:3.859200px;}
._9_c00215{width:4.960800px;}
._8_c00215{width:12.564000px;}
._a_c00215{width:13.730400px;}
._3_c00215{width:15.746400px;}
._b_c00215{width:16.999200px;}
._4_c00215{width:19.044000px;}
._6_c00215{width:26.085600px;}
._5_c00215{width:27.100800px;}
._7_c00215{width:28.123200px;}
._0_c00215{width:30.715200px;}
.fc1_c00215{color:transparent;}
.fc0_c00215{color:rgb(0,0,0);}
.fs1_c00215{font-size:64.800000px;}
.fs0_c00215{font-size:72.000000px;}
.y0_c00215{bottom:0.000000px;}
.y5_c00215{bottom:5.040000px;}
.y1_c00215{bottom:12.735000px;}
.y3_c00215{bottom:45.045000px;}
.y4_c00215{bottom:52.740000px;}
.y21_c00215{bottom:110.565000px;}
.y20_c00215{bottom:146.565000px;}
.y1f_c00215{bottom:182.565000px;}
.y1e_c00215{bottom:218.565000px;}
.y1d_c00215{bottom:254.565000px;}
.y1c_c00215{bottom:290.565000px;}
.y1b_c00215{bottom:326.565000px;}
.y1a_c00215{bottom:362.565000px;}
.y19_c00215{bottom:398.565000px;}
.y18_c00215{bottom:434.565000px;}
.y17_c00215{bottom:470.565000px;}
.y16_c00215{bottom:506.565000px;}
.y15_c00215{bottom:542.565000px;}
.y14_c00215{bottom:578.565000px;}
.y13_c00215{bottom:614.565000px;}
.y12_c00215{bottom:650.565000px;}
.y11_c00215{bottom:686.565000px;}
.y10_c00215{bottom:722.565000px;}
.yf_c00215{bottom:758.565000px;}
.ye_c00215{bottom:794.565000px;}
.yd_c00215{bottom:830.565000px;}
.yc_c00215{bottom:866.565000px;}
.yb_c00215{bottom:902.565000px;}
.ya_c00215{bottom:938.565000px;}
.y9_c00215{bottom:974.565000px;}
.y8_c00215{bottom:1010.565000px;}
.y7_c00215{bottom:1046.565000px;}
.y6_c00215{bottom:1082.565000px;}
.y2_c00215{bottom:1165.365000px;}
.h4_c00215{height:20.880000px;}
.h7_c00215{height:70.628906px;}
.h3_c00215{height:70.664062px;}
.h6_c00215{height:71.824219px;}
.h5_c00215{height:74.004654px;}
.h2_c00215{height:1237.365000px;}
.h0_c00215{height:1262.835000px;}
.h1_c00215{height:1263.000000px;}
.w3_c00215{width:27.000000px;}
.w2_c00215{width:867.465000px;}
.w0_c00215{width:892.935000px;}
.w1_c00215{width:893.250000px;}
.x0_c00215{left:0.000000px;}
.x1_c00215{left:12.735000px;}
.x3_c00215{left:95.406300px;}
.x5_c00215{left:149.400150px;}
.x6_c00215{left:222.984150px;}
.x4_c00215{left:433.215000px;}
.x2_c00215{left:878.550300px;}
@media print{
.v0_c00215{vertical-align:0.000000pt;}
.ls1_c00215{letter-spacing:0.000000pt;}
.ls0_c00215{letter-spacing:0.064000pt;}
.ws0_c00215{word-spacing:-0.064000pt;}
.ws1_c00215{word-spacing:0.000000pt;}
._1_c00215{width:1.273600pt;}
._2_c00215{width:2.483200pt;}
._c_c00215{width:3.430400pt;}
._9_c00215{width:4.409600pt;}
._8_c00215{width:11.168000pt;}
._a_c00215{width:12.204800pt;}
._3_c00215{width:13.996800pt;}
._b_c00215{width:15.110400pt;}
._4_c00215{width:16.928000pt;}
._6_c00215{width:23.187200pt;}
._5_c00215{width:24.089600pt;}
._7_c00215{width:24.998400pt;}
._0_c00215{width:27.302400pt;}
.fs1_c00215{font-size:57.600000pt;}
.fs0_c00215{font-size:64.000000pt;}
.y0_c00215{bottom:0.000000pt;}
.y5_c00215{bottom:4.480000pt;}
.y1_c00215{bottom:11.320000pt;}
.y3_c00215{bottom:40.040000pt;}
.y4_c00215{bottom:46.880000pt;}
.y21_c00215{bottom:98.280000pt;}
.y20_c00215{bottom:130.280000pt;}
.y1f_c00215{bottom:162.280000pt;}
.y1e_c00215{bottom:194.280000pt;}
.y1d_c00215{bottom:226.280000pt;}
.y1c_c00215{bottom:258.280000pt;}
.y1b_c00215{bottom:290.280000pt;}
.y1a_c00215{bottom:322.280000pt;}
.y19_c00215{bottom:354.280000pt;}
.y18_c00215{bottom:386.280000pt;}
.y17_c00215{bottom:418.280000pt;}
.y16_c00215{bottom:450.280000pt;}
.y15_c00215{bottom:482.280000pt;}
.y14_c00215{bottom:514.280000pt;}
.y13_c00215{bottom:546.280000pt;}
.y12_c00215{bottom:578.280000pt;}
.y11_c00215{bottom:610.280000pt;}
.y10_c00215{bottom:642.280000pt;}
.yf_c00215{bottom:674.280000pt;}
.ye_c00215{bottom:706.280000pt;}
.yd_c00215{bottom:738.280000pt;}
.yc_c00215{bottom:770.280000pt;}
.yb_c00215{bottom:802.280000pt;}
.ya_c00215{bottom:834.280000pt;}
.y9_c00215{bottom:866.280000pt;}
.y8_c00215{bottom:898.280000pt;}
.y7_c00215{bottom:930.280000pt;}
.y6_c00215{bottom:962.280000pt;}
.y2_c00215{bottom:1035.880000pt;}
.h4_c00215{height:18.560000pt;}
.h7_c00215{height:62.781250pt;}
.h3_c00215{height:62.812500pt;}
.h6_c00215{height:63.843750pt;}
.h5_c00215{height:65.781915pt;}
.h2_c00215{height:1099.880000pt;}
.h0_c00215{height:1122.520000pt;}
.h1_c00215{height:1122.666667pt;}
.w3_c00215{width:24.000000pt;}
.w2_c00215{width:771.080000pt;}
.w0_c00215{width:793.720000pt;}
.w1_c00215{width:794.000000pt;}
.x0_c00215{left:0.000000pt;}
.x1_c00215{left:11.320000pt;}
.x3_c00215{left:84.805600pt;}
.x5_c00215{left:132.800133pt;}
.x6_c00215{left:198.208133pt;}
.x4_c00215{left:385.080000pt;}
.x2_c00215{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00216{font-family:ff1_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00216;src:url('chunks/assets/font_be832b79b27d62c3c207662c.woff2')format("woff");}.ff2_c00216{font-family:ff2_c00216;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00216;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00216{font-family:ff3_c00216;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00216;src:url('chunks/assets/font_cee239f715ae838b18b5aed6.woff2')format("woff");}.ff4_c00216{font-family:ff4_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00216;src:url('chunks/assets/font_9e8106b237d9d51afdde263f.woff2')format("woff");}.ff5_c00216{font-family:ff5_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:ff6_c00216;src:url('chunks/assets/font_6790d0ca1c298ef493f238af.woff2')format("woff");}.ff6_c00216{font-family:ff6_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00216;src:url('chunks/assets/font_f6ab01dbb2e1cd402bafcea9.woff2')format("woff");}.ff7_c00216{font-family:ff7_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00216;src:url('chunks/assets/font_bc7a99b686ad69073a6f7eef.woff2')format("woff");}.ff8_c00216{font-family:ff8_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00216;src:url('chunks/assets/font_24fe995a5ee49abdcbfd00b5.woff2')format("woff");}.ff9_c00216{font-family:ff9_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00216;src:url('chunks/assets/font_b4bdb660fd03d6566b26e12c.woff2')format("woff");}.ffa_c00216{font-family:ffa_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00216;src:url('chunks/assets/font_8ac222f481eafc1d7ef6cb80.woff2')format("woff");}.ffb_c00216{font-family:ffb_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00216;src:url('chunks/assets/font_905d967fe2559ec7ea5a1cfc.woff2')format("woff");}.ffc_c00216{font-family:ffc_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00216;src:url('chunks/assets/font_f1773dd2d03b74d9b7ae94a4.woff2')format("woff");}.ffd_c00216{font-family:ffd_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00216;src:url('chunks/assets/font_d42849ecf4af82678f6022dd.woff2')format("woff");}.ffe_c00216{font-family:ffe_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00216;src:url('chunks/assets/font_fd639fba917d42ca6b0d6651.woff2')format("woff");}.fff_c00216{font-family:fff_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00216;src:url('chunks/assets/font_d09a81cc42358fba96135a5a.woff2')format("woff");}.ff10_c00216{font-family:ff10_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00216;src:url('chunks/assets/font_3f97102bb8e2987d12f0a4df.woff2')format("woff");}.ff11_c00216{font-family:ff11_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00216;src:url('chunks/assets/font_04e9a9926dbf419ea3554f7a.woff2')format("woff");}.ff12_c00216{font-family:ff12_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00216;src:url('chunks/assets/font_19bdf5400050319681a3e7b9.woff2')format("woff");}.ff13_c00216{font-family:ff13_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00216;src:url('chunks/assets/font_b6903060d66e31e7c92d15d3.woff2')format("woff");}.ff14_c00216{font-family:ff14_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00216;src:url('chunks/assets/font_97d0eae8fee06770370ee83d.woff2')format("woff");}.ff15_c00216{font-family:ff15_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00216;src:url('chunks/assets/font_95930efbf1663c5e32654289.woff2')format("woff");}.ff16_c00216{font-family:ff16_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00216;src:url('chunks/assets/font_695d7f7f234e210411393144.woff2')format("woff");}.ff17_c00216{font-family:ff17_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00216;src:url('chunks/assets/font_d3786059ab0427a0b121fd44.woff2')format("woff");}.ff18_c00216{font-family:ff18_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00216;src:url('chunks/assets/font_abf87e77e75085a101917f03.woff2')format("woff");}.ff19_c00216{font-family:ff19_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00216;src:url('chunks/assets/font_f36a8834e0d07489e4bbd390.woff2')format("woff");}.ff1a_c00216{font-family:ff1a_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00216;src:url('chunks/assets/font_915c2732cd699f6e096d8b8f.woff2')format("woff");}.ff1b_c00216{font-family:ff1b_c00216;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:ff1c_c00216;src:url('chunks/assets/font_92be69b996b61accba4bc4b3.woff2')format("woff");}.ff1c_c00216{font-family:ff1c_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00216;src:url('chunks/assets/font_892cde852dbba6bb6517a9d3.woff2')format("woff");}.ff1d_c00216{font-family:ff1d_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00216;src:url('chunks/assets/font_7884f479eb88c1d19653aa5d.woff2')format("woff");}.ff1e_c00216{font-family:ff1e_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00216;src:url('chunks/assets/font_a2f1f537dd0f9cf48568be00.woff2')format("woff");}.ff1f_c00216{font-family:ff1f_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00216;src:url('chunks/assets/font_7336551790c4b6f30bb5edbf.woff2')format("woff");}.ff20_c00216{font-family:ff20_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00216;src:url('chunks/assets/font_575088c6b93fad2d3a07ce30.woff2')format("woff");}.ff21_c00216{font-family:ff21_c00216;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00216;src:url('chunks/assets/font_4a80394c8103a252076c4342.woff2')format("woff");}.ff22_c00216{font-family:ff22_c00216;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00216;src:url('chunks/assets/font_813f1efcb9442ecfc9ad2ffe.woff2')format("woff");}.ff23_c00216{font-family:ff23_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:ff24_c00216;src:url('chunks/assets/font_e9bf7ab6b36d591538e40d87.woff2')format("woff");}.ff24_c00216{font-family:ff24_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:ff25_c00216;src:url('chunks/assets/font_e36a465d8b086711db4fdbf3.woff2')format("woff");}.ff25_c00216{font-family:ff25_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:ff26_c00216;src:url('chunks/assets/font_aa8d91ee5f8f0f03c3326877.woff2')format("woff");}.ff26_c00216{font-family:ff26_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:ff27_c00216;src:url('chunks/assets/font_b6480c247ba3ab745652f125.woff2')format("woff");}.ff27_c00216{font-family:ff27_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:ff28_c00216;src:url('chunks/assets/font_069c883b07b89e8317c9c257.woff2')format("woff");}.ff28_c00216{font-family:ff28_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:ff29_c00216;src:url('chunks/assets/font_56d9d3f3c0d930ead76a78f1.woff2')format("woff");}.ff29_c00216{font-family:ff29_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:ff2a_c00216;src:url('chunks/assets/font_7dcddd215d226a2a51b1f280.woff2')format("woff");}.ff2a_c00216{font-family:ff2a_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:ff2b_c00216;src:url('chunks/assets/font_9f85b8cd7017c3e93933e082.woff2')format("woff");}.ff2b_c00216{font-family:ff2b_c00216;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00216;src:url('chunks/assets/font_3dadcd12a6498a41406571a8.woff2')format("woff");}.ff2c_c00216{font-family:ff2c_c00216;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00216;src:url('chunks/assets/font_db2b8b418e2d70a03a8dded2.woff2')format("woff");}.ff2d_c00216{font-family:ff2d_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00216;src:url('chunks/assets/font_c7f806750f9f530cc9a7579e.woff2')format("woff");}.ff2e_c00216{font-family:ff2e_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00216;src:url('chunks/assets/font_1f9f460ead6af36a53f2b3bb.woff2')format("woff");}.ff2f_c00216{font-family:ff2f_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00216;src:url('chunks/assets/font_e81b0fdb73208734f4e3c949.woff2')format("woff");}.ff30_c00216{font-family:ff30_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00216;src:url('chunks/assets/font_49bad66085645cc7b202f5f1.woff2')format("woff");}.ff31_c00216{font-family:ff31_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00216;src:url('chunks/assets/font_aa9bceb9207950cc4a23bc16.woff2')format("woff");}.ff32_c00216{font-family:ff32_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00216;src:url('chunks/assets/font_66f9222fb40756efd0103a54.woff2')format("woff");}.ff33_c00216{font-family:ff33_c00216;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:ff34_c00216;src:url('chunks/assets/font_a510f128891e650b21e8c0ab.woff2')format("woff");}.ff34_c00216{font-family:ff34_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00216;src:url('chunks/assets/font_04c6b9909660d4dba2eda37c.woff2')format("woff");}.ff35_c00216{font-family:ff35_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00216;src:url('chunks/assets/font_ae37d0a6dc02935f584a2d89.woff2')format("woff");}.ff36_c00216{font-family:ff36_c00216;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:ff37_c00216;src:url('chunks/assets/font_7efea99a9546bf41b46c978f.woff2')format("woff");}.ff37_c00216{font-family:ff37_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00216;src:url('chunks/assets/font_86d947afc913d52d6d6a21dd.woff2')format("woff");}.ff38_c00216{font-family:ff38_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00216;src:url('chunks/assets/font_cda6d7adab344f0f8502c64a.woff2')format("woff");}.ff39_c00216{font-family:ff39_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00216;src:url('chunks/assets/font_706ef92b0a5b3de38196b9e2.woff2')format("woff");}.ff3a_c00216{font-family:ff3a_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00216;src:url('chunks/assets/font_46beb827833cb366dafa2011.woff2')format("woff");}.ff3b_c00216{font-family:ff3b_c00216;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.014400px;}
.ls1_c00216{letter-spacing:0.000000px;}
.ls0_c00216{letter-spacing:0.072000px;}
.ls3_c00216{letter-spacing:0.590400px;}
.sc__c00216{text-shadow:none;}
.sc0_c00216{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00216{-webkit-text-stroke:0px transparent;}
.sc0_c00216{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00216{word-spacing:-0.072000px;}
.ws1_c00216{word-spacing:0.000000px;}
._2_c00216{width:1.468800px;}
._0_c00216{width:3.456000px;}
._5_c00216{width:6.328800px;}
._9_c00216{width:7.682400px;}
._3_c00216{width:8.719200px;}
._4_c00216{width:9.972000px;}
._1_c00216{width:11.397600px;}
._6_c00216{width:12.636000px;}
._a_c00216{width:14.040000px;}
._8_c00216{width:30.405600px;}
._7_c00216{width:32.472000px;}
.fc1_c00216{color:transparent;}
.fc0_c00216{color:rgb(0,0,0);}
.fs1_c00216{font-size:64.800000px;}
.fs0_c00216{font-size:72.000000px;}
.y0_c00216{bottom:0.000000px;}
.y5_c00216{bottom:5.040000px;}
.y1_c00216{bottom:12.735000px;}
.y3_c00216{bottom:45.045000px;}
.y4_c00216{bottom:52.740000px;}
.y21_c00216{bottom:110.565000px;}
.y20_c00216{bottom:146.565000px;}
.y1f_c00216{bottom:182.565000px;}
.y1e_c00216{bottom:218.565000px;}
.y1d_c00216{bottom:254.565000px;}
.y1c_c00216{bottom:290.565000px;}
.y1b_c00216{bottom:326.565000px;}
.y1a_c00216{bottom:362.565000px;}
.y19_c00216{bottom:398.565000px;}
.y18_c00216{bottom:434.565000px;}
.y17_c00216{bottom:470.565000px;}
.y16_c00216{bottom:506.565000px;}
.y15_c00216{bottom:542.565000px;}
.y14_c00216{bottom:578.565000px;}
.y13_c00216{bottom:614.565000px;}
.y12_c00216{bottom:650.565000px;}
.y11_c00216{bottom:686.565000px;}
.y10_c00216{bottom:722.565000px;}
.yf_c00216{bottom:758.565000px;}
.ye_c00216{bottom:794.565000px;}
.yd_c00216{bottom:830.565000px;}
.yc_c00216{bottom:866.565000px;}
.yb_c00216{bottom:902.565000px;}
.ya_c00216{bottom:938.565000px;}
.y9_c00216{bottom:974.565000px;}
.y8_c00216{bottom:1010.565000px;}
.y7_c00216{bottom:1046.565000px;}
.y6_c00216{bottom:1082.565000px;}
.y2_c00216{bottom:1165.365000px;}
.h4_c00216{height:20.880000px;}
.h7_c00216{height:70.628906px;}
.h3_c00216{height:70.664062px;}
.h6_c00216{height:71.824219px;}
.h5_c00216{height:74.004654px;}
.h2_c00216{height:1237.365000px;}
.h0_c00216{height:1262.835000px;}
.h1_c00216{height:1263.000000px;}
.w3_c00216{width:27.000000px;}
.w2_c00216{width:867.465000px;}
.w0_c00216{width:892.935000px;}
.w1_c00216{width:893.250000px;}
.x0_c00216{left:0.000000px;}
.x1_c00216{left:12.735000px;}
.x3_c00216{left:95.406300px;}
.x5_c00216{left:149.400150px;}
.x4_c00216{left:433.215000px;}
.x2_c00216{left:878.550300px;}
@media print{
.v0_c00216{vertical-align:0.000000pt;}
.ls2_c00216{letter-spacing:-0.012800pt;}
.ls1_c00216{letter-spacing:0.000000pt;}
.ls0_c00216{letter-spacing:0.064000pt;}
.ls3_c00216{letter-spacing:0.524800pt;}
.ws0_c00216{word-spacing:-0.064000pt;}
.ws1_c00216{word-spacing:0.000000pt;}
._2_c00216{width:1.305600pt;}
._0_c00216{width:3.072000pt;}
._5_c00216{width:5.625600pt;}
._9_c00216{width:6.828800pt;}
._3_c00216{width:7.750400pt;}
._4_c00216{width:8.864000pt;}
._1_c00216{width:10.131200pt;}
._6_c00216{width:11.232000pt;}
._a_c00216{width:12.480000pt;}
._8_c00216{width:27.027200pt;}
._7_c00216{width:28.864000pt;}
.fs1_c00216{font-size:57.600000pt;}
.fs0_c00216{font-size:64.000000pt;}
.y0_c00216{bottom:0.000000pt;}
.y5_c00216{bottom:4.480000pt;}
.y1_c00216{bottom:11.320000pt;}
.y3_c00216{bottom:40.040000pt;}
.y4_c00216{bottom:46.880000pt;}
.y21_c00216{bottom:98.280000pt;}
.y20_c00216{bottom:130.280000pt;}
.y1f_c00216{bottom:162.280000pt;}
.y1e_c00216{bottom:194.280000pt;}
.y1d_c00216{bottom:226.280000pt;}
.y1c_c00216{bottom:258.280000pt;}
.y1b_c00216{bottom:290.280000pt;}
.y1a_c00216{bottom:322.280000pt;}
.y19_c00216{bottom:354.280000pt;}
.y18_c00216{bottom:386.280000pt;}
.y17_c00216{bottom:418.280000pt;}
.y16_c00216{bottom:450.280000pt;}
.y15_c00216{bottom:482.280000pt;}
.y14_c00216{bottom:514.280000pt;}
.y13_c00216{bottom:546.280000pt;}
.y12_c00216{bottom:578.280000pt;}
.y11_c00216{bottom:610.280000pt;}
.y10_c00216{bottom:642.280000pt;}
.yf_c00216{bottom:674.280000pt;}
.ye_c00216{bottom:706.280000pt;}
.yd_c00216{bottom:738.280000pt;}
.yc_c00216{bottom:770.280000pt;}
.yb_c00216{bottom:802.280000pt;}
.ya_c00216{bottom:834.280000pt;}
.y9_c00216{bottom:866.280000pt;}
.y8_c00216{bottom:898.280000pt;}
.y7_c00216{bottom:930.280000pt;}
.y6_c00216{bottom:962.280000pt;}
.y2_c00216{bottom:1035.880000pt;}
.h4_c00216{height:18.560000pt;}
.h7_c00216{height:62.781250pt;}
.h3_c00216{height:62.812500pt;}
.h6_c00216{height:63.843750pt;}
.h5_c00216{height:65.781915pt;}
.h2_c00216{height:1099.880000pt;}
.h0_c00216{height:1122.520000pt;}
.h1_c00216{height:1122.666667pt;}
.w3_c00216{width:24.000000pt;}
.w2_c00216{width:771.080000pt;}
.w0_c00216{width:793.720000pt;}
.w1_c00216{width:794.000000pt;}
.x0_c00216{left:0.000000pt;}
.x1_c00216{left:11.320000pt;}
.x3_c00216{left:84.805600pt;}
.x5_c00216{left:132.800133pt;}
.x4_c00216{left:385.080000pt;}
.x2_c00216{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00217{font-family:ff1_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00217;src:url('chunks/assets/font_1cac7f3ac61921417a577abf.woff2')format("woff");}.ff2_c00217{font-family:ff2_c00217;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00217;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00217{font-family:ff3_c00217;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00217;src:url('chunks/assets/font_7fcd4e6cb609f400103ce74f.woff2')format("woff");}.ff4_c00217{font-family:ff4_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00217;src:url('chunks/assets/font_3231efb04dffdbafc4bbdaf6.woff2')format("woff");}.ff5_c00217{font-family:ff5_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00217;src:url('chunks/assets/font_fd1d816895dccbfa6517a47f.woff2')format("woff");}.ff6_c00217{font-family:ff6_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00217;src:url('chunks/assets/font_4cc468871465d39a4c9f89e4.woff2')format("woff");}.ff7_c00217{font-family:ff7_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00217;src:url('chunks/assets/font_df59919296d7f8bb14a88e47.woff2')format("woff");}.ff8_c00217{font-family:ff8_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00217;src:url('chunks/assets/font_a88f19f6085748d58b7a1126.woff2')format("woff");}.ff9_c00217{font-family:ff9_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00217;src:url('chunks/assets/font_bee82bf282c9ebbc48a5ed28.woff2')format("woff");}.ffa_c00217{font-family:ffa_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00217;src:url('chunks/assets/font_f6c9919069f7bf92284d6ea6.woff2')format("woff");}.ffb_c00217{font-family:ffb_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00217;src:url('chunks/assets/font_b89faeca0695ed80dd9990b6.woff2')format("woff");}.ffc_c00217{font-family:ffc_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00217;src:url('chunks/assets/font_a2d08ee5e9100799883c3405.woff2')format("woff");}.ffd_c00217{font-family:ffd_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00217;src:url('chunks/assets/font_971dcef3750bdf0d33242415.woff2')format("woff");}.ffe_c00217{font-family:ffe_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00217;src:url('chunks/assets/font_e391bfff41078af0cc80dfcd.woff2')format("woff");}.fff_c00217{font-family:fff_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00217;src:url('chunks/assets/font_6b79ff1143c53a763e5d671e.woff2')format("woff");}.ff10_c00217{font-family:ff10_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00217;src:url('chunks/assets/font_dc2fd0e8f7847e86c97438b4.woff2')format("woff");}.ff11_c00217{font-family:ff11_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00217;src:url('chunks/assets/font_d6dc4b7c0cd986bb355187ba.woff2')format("woff");}.ff12_c00217{font-family:ff12_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00217;src:url('chunks/assets/font_7d1eb18e22829899e5a2af3a.woff2')format("woff");}.ff13_c00217{font-family:ff13_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00217;src:url('chunks/assets/font_f84b0332c7cdb73246f9db8b.woff2')format("woff");}.ff14_c00217{font-family:ff14_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00217;src:url('chunks/assets/font_3c48d5e0f28ecb06c7a2ef73.woff2')format("woff");}.ff15_c00217{font-family:ff15_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00217;src:url('chunks/assets/font_fa274e7132d51d68ab193717.woff2')format("woff");}.ff16_c00217{font-family:ff16_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00217;src:url('chunks/assets/font_b52f8eb201ab4793e605df0e.woff2')format("woff");}.ff17_c00217{font-family:ff17_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00217;src:url('chunks/assets/font_e6cf9483d5da448bea66f67c.woff2')format("woff");}.ff18_c00217{font-family:ff18_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00217;src:url('chunks/assets/font_780561a11edd2f05926ec3f7.woff2')format("woff");}.ff19_c00217{font-family:ff19_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00217;src:url('chunks/assets/font_f381355a25204676377c0c20.woff2')format("woff");}.ff1a_c00217{font-family:ff1a_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00217;src:url('chunks/assets/font_8bb69f3e2e5e922ec0e10263.woff2')format("woff");}.ff1b_c00217{font-family:ff1b_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00217;src:url('chunks/assets/font_5881ef76647d3c47b1177d64.woff2')format("woff");}.ff1c_c00217{font-family:ff1c_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00217;src:url('chunks/assets/font_7cc1a8a62367b4f3b4c66793.woff2')format("woff");}.ff1d_c00217{font-family:ff1d_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00217;src:url('chunks/assets/font_be3ad44b99f6b40ec6544a37.woff2')format("woff");}.ff1e_c00217{font-family:ff1e_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00217;src:url('chunks/assets/font_2462a00a2b48becbc6a6f6bd.woff2')format("woff");}.ff1f_c00217{font-family:ff1f_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00217;src:url('chunks/assets/font_42ab38690d7f3742476a5728.woff2')format("woff");}.ff20_c00217{font-family:ff20_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00217;src:url('chunks/assets/font_7b2124b7f104e909fc289bc0.woff2')format("woff");}.ff21_c00217{font-family:ff21_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00217;src:url('chunks/assets/font_eb24046cc7990f75c268c7c6.woff2')format("woff");}.ff22_c00217{font-family:ff22_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00217;src:url('chunks/assets/font_49cc68a5ce03ce089f8cdd29.woff2')format("woff");}.ff23_c00217{font-family:ff23_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00217;src:url('chunks/assets/font_559547ee5aba08bf30ac3ff0.woff2')format("woff");}.ff24_c00217{font-family:ff24_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00217;src:url('chunks/assets/font_53b9775675e5446cc2eefebc.woff2')format("woff");}.ff25_c00217{font-family:ff25_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00217;src:url('chunks/assets/font_041b945cd22ced8822373fa6.woff2')format("woff");}.ff26_c00217{font-family:ff26_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00217;src:url('chunks/assets/font_05940ffdbe606531fee7fc30.woff2')format("woff");}.ff27_c00217{font-family:ff27_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00217;src:url('chunks/assets/font_17cbe67cb2b194827e2d98f5.woff2')format("woff");}.ff28_c00217{font-family:ff28_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00217;src:url('chunks/assets/font_4ba4945a3439fbaf6088f5c3.woff2')format("woff");}.ff29_c00217{font-family:ff29_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00217;src:url('chunks/assets/font_08777bce3e64def996895db2.woff2')format("woff");}.ff2a_c00217{font-family:ff2a_c00217;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00217{letter-spacing:0.000000px;}
.ls1_c00217{letter-spacing:0.072000px;}
.ls0_c00217{letter-spacing:0.115200px;}
.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;}
}
.ws0_c00217{word-spacing:-0.072000px;}
.ws1_c00217{word-spacing:0.000000px;}
._7_c00217{margin-left:-1.310400px;}
._4_c00217{width:1.166400px;}
._5_c00217{width:2.620800px;}
._b_c00217{width:4.233600px;}
._3_c00217{width:5.364000px;}
._0_c00217{width:6.688800px;}
._e_c00217{width:8.042400px;}
._2_c00217{width:9.316800px;}
._c_c00217{width:10.886400px;}
._6_c00217{width:12.636000px;}
._d_c00217{width:15.746400px;}
._8_c00217{width:16.999200px;}
._1_c00217{width:20.224800px;}
._9_c00217{width:21.268800px;}
._a_c00217{width:22.622400px;}
.fc1_c00217{color:transparent;}
.fc0_c00217{color:rgb(0,0,0);}
.fs1_c00217{font-size:64.800000px;}
.fs0_c00217{font-size:72.000000px;}
.y0_c00217{bottom:0.000000px;}
.y5_c00217{bottom:5.040000px;}
.y1_c00217{bottom:12.735000px;}
.y3_c00217{bottom:45.045000px;}
.y4_c00217{bottom:52.740000px;}
.y21_c00217{bottom:110.565000px;}
.y20_c00217{bottom:146.565000px;}
.y1f_c00217{bottom:182.565000px;}
.y1e_c00217{bottom:218.565000px;}
.y1d_c00217{bottom:254.565000px;}
.y1c_c00217{bottom:290.565000px;}
.y1b_c00217{bottom:326.565000px;}
.y1a_c00217{bottom:362.565000px;}
.y19_c00217{bottom:398.565000px;}
.y18_c00217{bottom:434.565000px;}
.y17_c00217{bottom:470.565000px;}
.y16_c00217{bottom:506.565000px;}
.y15_c00217{bottom:542.565000px;}
.y14_c00217{bottom:578.565000px;}
.y13_c00217{bottom:614.565000px;}
.y12_c00217{bottom:650.565000px;}
.y11_c00217{bottom:686.565000px;}
.y10_c00217{bottom:722.565000px;}
.yf_c00217{bottom:758.565000px;}
.ye_c00217{bottom:794.565000px;}
.yd_c00217{bottom:830.565000px;}
.yc_c00217{bottom:866.565000px;}
.yb_c00217{bottom:902.565000px;}
.ya_c00217{bottom:938.565000px;}
.y9_c00217{bottom:974.565000px;}
.y8_c00217{bottom:1010.565000px;}
.y7_c00217{bottom:1046.565000px;}
.y6_c00217{bottom:1082.565000px;}
.y2_c00217{bottom:1165.365000px;}
.h4_c00217{height:20.880000px;}
.h3_c00217{height:70.664062px;}
.h5_c00217{height:74.004654px;}
.h2_c00217{height:1237.365000px;}
.h0_c00217{height:1262.835000px;}
.h1_c00217{height:1263.000000px;}
.w3_c00217{width:27.000000px;}
.w2_c00217{width:867.465000px;}
.w0_c00217{width:892.935000px;}
.w1_c00217{width:893.250000px;}
.x0_c00217{left:0.000000px;}
.x1_c00217{left:12.735000px;}
.x3_c00217{left:95.406300px;}
.x5_c00217{left:149.400150px;}
.x4_c00217{left:433.215000px;}
.x2_c00217{left:878.550300px;}
@media print{
.v0_c00217{vertical-align:0.000000pt;}
.ls2_c00217{letter-spacing:0.000000pt;}
.ls1_c00217{letter-spacing:0.064000pt;}
.ls0_c00217{letter-spacing:0.102400pt;}
.ws0_c00217{word-spacing:-0.064000pt;}
.ws1_c00217{word-spacing:0.000000pt;}
._7_c00217{margin-left:-1.164800pt;}
._4_c00217{width:1.036800pt;}
._5_c00217{width:2.329600pt;}
._b_c00217{width:3.763200pt;}
._3_c00217{width:4.768000pt;}
._0_c00217{width:5.945600pt;}
._e_c00217{width:7.148800pt;}
._2_c00217{width:8.281600pt;}
._c_c00217{width:9.676800pt;}
._6_c00217{width:11.232000pt;}
._d_c00217{width:13.996800pt;}
._8_c00217{width:15.110400pt;}
._1_c00217{width:17.977600pt;}
._9_c00217{width:18.905600pt;}
._a_c00217{width:20.108800pt;}
.fs1_c00217{font-size:57.600000pt;}
.fs0_c00217{font-size:64.000000pt;}
.y0_c00217{bottom:0.000000pt;}
.y5_c00217{bottom:4.480000pt;}
.y1_c00217{bottom:11.320000pt;}
.y3_c00217{bottom:40.040000pt;}
.y4_c00217{bottom:46.880000pt;}
.y21_c00217{bottom:98.280000pt;}
.y20_c00217{bottom:130.280000pt;}
.y1f_c00217{bottom:162.280000pt;}
.y1e_c00217{bottom:194.280000pt;}
.y1d_c00217{bottom:226.280000pt;}
.y1c_c00217{bottom:258.280000pt;}
.y1b_c00217{bottom:290.280000pt;}
.y1a_c00217{bottom:322.280000pt;}
.y19_c00217{bottom:354.280000pt;}
.y18_c00217{bottom:386.280000pt;}
.y17_c00217{bottom:418.280000pt;}
.y16_c00217{bottom:450.280000pt;}
.y15_c00217{bottom:482.280000pt;}
.y14_c00217{bottom:514.280000pt;}
.y13_c00217{bottom:546.280000pt;}
.y12_c00217{bottom:578.280000pt;}
.y11_c00217{bottom:610.280000pt;}
.y10_c00217{bottom:642.280000pt;}
.yf_c00217{bottom:674.280000pt;}
.ye_c00217{bottom:706.280000pt;}
.yd_c00217{bottom:738.280000pt;}
.yc_c00217{bottom:770.280000pt;}
.yb_c00217{bottom:802.280000pt;}
.ya_c00217{bottom:834.280000pt;}
.y9_c00217{bottom:866.280000pt;}
.y8_c00217{bottom:898.280000pt;}
.y7_c00217{bottom:930.280000pt;}
.y6_c00217{bottom:962.280000pt;}
.y2_c00217{bottom:1035.880000pt;}
.h4_c00217{height:18.560000pt;}
.h3_c00217{height:62.812500pt;}
.h5_c00217{height:65.781915pt;}
.h2_c00217{height:1099.880000pt;}
.h0_c00217{height:1122.520000pt;}
.h1_c00217{height:1122.666667pt;}
.w3_c00217{width:24.000000pt;}
.w2_c00217{width:771.080000pt;}
.w0_c00217{width:793.720000pt;}
.w1_c00217{width:794.000000pt;}
.x0_c00217{left:0.000000pt;}
.x1_c00217{left:11.320000pt;}
.x3_c00217{left:84.805600pt;}
.x5_c00217{left:132.800133pt;}
.x4_c00217{left:385.080000pt;}
.x2_c00217{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00218{font-family:ff1_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:ff2_c00218;src:url('chunks/assets/font_ec5ad8f42fca1278d3e77707.woff2')format("woff");}.ff2_c00218{font-family:ff2_c00218;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00218;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00218{font-family:ff3_c00218;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00218;src:url('chunks/assets/font_eb84438da3366996f17aaef7.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_29d355b23c1175effb872f0b.woff2')format("woff");}.ff5_c00218{font-family:ff5_c00218;line-height:1.284180;font-style:normal;font-weight:normal;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_ddd5335a8ea155917b8439df.woff2')format("woff");}.ff6_c00218{font-family:ff6_c00218;line-height:1.284180;font-style:normal;font-weight:normal;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_9a72be42ff4fb0184ea3c281.woff2')format("woff");}.ff7_c00218{font-family:ff7_c00218;line-height:1.284180;font-style:normal;font-weight:normal;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_8c75dcd4157010ed83c0b0c2.woff2')format("woff");}.ff8_c00218{font-family:ff8_c00218;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00218;src:url('chunks/assets/font_bb13e4130880bca06eb1c2de.woff2')format("woff");}.ff9_c00218{font-family:ff9_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:ffa_c00218;src:url('chunks/assets/font_450f69727c970678fa001fb7.woff2')format("woff");}.ffa_c00218{font-family:ffa_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:ffb_c00218;src:url('chunks/assets/font_2913f2dfd675ee2d7e5ac7ee.woff2')format("woff");}.ffb_c00218{font-family:ffb_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:ffc_c00218;src:url('chunks/assets/font_8f6ed30048c313774393b5fe.woff2')format("woff");}.ffc_c00218{font-family:ffc_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:ffd_c00218;src:url('chunks/assets/font_e3fb02399c93cf147043a0e3.woff2')format("woff");}.ffd_c00218{font-family:ffd_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:ffe_c00218;src:url('chunks/assets/font_2d5ffdb34a7d0f9388787bb6.woff2')format("woff");}.ffe_c00218{font-family:ffe_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:fff_c00218;src:url('chunks/assets/font_9a3638c32ca5025b0c28bf4a.woff2')format("woff");}.fff_c00218{font-family:fff_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:ff10_c00218;src:url('chunks/assets/font_b2a171ff869f8c5740319e5c.woff2')format("woff");}.ff10_c00218{font-family:ff10_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:ff11_c00218;src:url('chunks/assets/font_5b42af872787c58afdc407d0.woff2')format("woff");}.ff11_c00218{font-family:ff11_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:ff12_c00218;src:url('chunks/assets/font_8fe6440a814d57e65cf7099c.woff2')format("woff");}.ff12_c00218{font-family:ff12_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:ff13_c00218;src:url('chunks/assets/font_dcfdea4903841db04fdff42b.woff2')format("woff");}.ff13_c00218{font-family:ff13_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:ff14_c00218;src:url('chunks/assets/font_9e3624b325589c2cf365adb8.woff2')format("woff");}.ff14_c00218{font-family:ff14_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:ff15_c00218;src:url('chunks/assets/font_d5b1913bdcb1b54880db9de0.woff2')format("woff");}.ff15_c00218{font-family:ff15_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:ff16_c00218;src:url('chunks/assets/font_fe68d840f6df0c40face3976.woff2')format("woff");}.ff16_c00218{font-family:ff16_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:ff17_c00218;src:url('chunks/assets/font_c1371ffdd94857d77569550a.woff2')format("woff");}.ff17_c00218{font-family:ff17_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:ff18_c00218;src:url('chunks/assets/font_97cd9a0e4a0fa28262e571ec.woff2')format("woff");}.ff18_c00218{font-family:ff18_c00218;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:ff19_c00218;src:url('chunks/assets/font_3b01e8b1a6cecd00633b3cba.woff2')format("woff");}.ff19_c00218{font-family:ff19_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:ff1a_c00218;src:url('chunks/assets/font_3ac9d8e2a235c16423a425f5.woff2')format("woff");}.ff1a_c00218{font-family:ff1a_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:ff1b_c00218;src:url('chunks/assets/font_cc5b70d5c034ac2fac19cf3a.woff2')format("woff");}.ff1b_c00218{font-family:ff1b_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:ff1c_c00218;src:url('chunks/assets/font_8abbf7c9d9b16d49239cfe23.woff2')format("woff");}.ff1c_c00218{font-family:ff1c_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:ff1d_c00218;src:url('chunks/assets/font_476a9a7dca4905c5d0d28337.woff2')format("woff");}.ff1d_c00218{font-family:ff1d_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:ff1e_c00218;src:url('chunks/assets/font_1258451bc9a3943374b7bdb8.woff2')format("woff");}.ff1e_c00218{font-family:ff1e_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:ff1f_c00218;src:url('chunks/assets/font_0005114040740e14371565f5.woff2')format("woff");}.ff1f_c00218{font-family:ff1f_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:ff20_c00218;src:url('chunks/assets/font_ed7e2dbc784088c61f8c50d8.woff2')format("woff");}.ff20_c00218{font-family:ff20_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:ff21_c00218;src:url('chunks/assets/font_23c5b88fbba77c130480a9e9.woff2')format("woff");}.ff21_c00218{font-family:ff21_c00218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00218;src:url('chunks/assets/font_a4011cc968836f1fc6a4bd3a.woff2')format("woff");}.ff22_c00218{font-family:ff22_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:ff23_c00218;src:url('chunks/assets/font_5a0e42a466b01cd7b6d8f56d.woff2')format("woff");}.ff23_c00218{font-family:ff23_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:ff24_c00218;src:url('chunks/assets/font_23c5b88fbba77c130480a9e9.woff2')format("woff");}.ff24_c00218{font-family:ff24_c00218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00218;src:url('chunks/assets/font_2640c069aab4867fcfeecefa.woff2')format("woff");}.ff25_c00218{font-family:ff25_c00218;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:ff26_c00218;src:url('chunks/assets/font_11cf59d7601afbb36b7dcbdd.woff2')format("woff");}.ff26_c00218{font-family:ff26_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:ff27_c00218;src:url('chunks/assets/font_2640c069aab4867fcfeecefa.woff2')format("woff");}.ff27_c00218{font-family:ff27_c00218;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:ff28_c00218;src:url('chunks/assets/font_71d64d0832451d54f30c1f42.woff2')format("woff");}.ff28_c00218{font-family:ff28_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:ff29_c00218;src:url('chunks/assets/font_122d45eb577e2590dc16e115.woff2')format("woff");}.ff29_c00218{font-family:ff29_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:ff2a_c00218;src:url('chunks/assets/font_b8ae0e569b0f217783c9acfa.woff2')format("woff");}.ff2a_c00218{font-family:ff2a_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:ff2b_c00218;src:url('chunks/assets/font_23c5b88fbba77c130480a9e9.woff2')format("woff");}.ff2b_c00218{font-family:ff2b_c00218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00218;src:url('chunks/assets/font_1daade5db6c0ca1f5e29cbfc.woff2')format("woff");}.ff2c_c00218{font-family:ff2c_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:ff2d_c00218;src:url('chunks/assets/font_9e8106b237d9d51afdde263f.woff2')format("woff");}.ff2d_c00218{font-family:ff2d_c00218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00218;src:url('chunks/assets/font_20457756d1972d9f982341d6.woff2')format("woff");}.ff2e_c00218{font-family:ff2e_c00218;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:ff2f_c00218;src:url('chunks/assets/font_53e598093525f92033b70c0a.woff2')format("woff");}.ff2f_c00218{font-family:ff2f_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:ff30_c00218;src:url('chunks/assets/font_23c5b88fbba77c130480a9e9.woff2')format("woff");}.ff30_c00218{font-family:ff30_c00218;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00218;src:url('chunks/assets/font_2a2a551ef6ffdec9ab17cfa4.woff2')format("woff");}.ff31_c00218{font-family:ff31_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:ff32_c00218;src:url('chunks/assets/font_09ccf01e9600fe86b3c2df9c.woff2')format("woff");}.ff32_c00218{font-family:ff32_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:ff33_c00218;src:url('chunks/assets/font_98964d6df51b0c82a7600745.woff2')format("woff");}.ff33_c00218{font-family:ff33_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;}
.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;}
.ls2_c00218{letter-spacing:0.000000px;}
.ls1_c00218{letter-spacing:11.736000px;}
.ls0_c00218{letter-spacing:12.528000px;}
.sc__c00218{text-shadow:none;}
.sc0_c00218{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00218{-webkit-text-stroke:0px transparent;}
.sc0_c00218{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00218{word-spacing:-0.072000px;}
.ws1_c00218{word-spacing:0.000000px;}
._1_c00218{width:1.180800px;}
._0_c00218{width:2.664000px;}
._2_c00218{width:4.348800px;}
._4_c00218{width:6.040800px;}
._5_c00218{width:9.921600px;}
._6_c00218{width:11.692800px;}
._3_c00218{width:12.700800px;}
._7_c00218{width:15.170400px;}
._9_c00218{width:16.963200px;}
._8_c00218{width:27.554400px;}
.fc1_c00218{color:transparent;}
.fc0_c00218{color:rgb(0,0,0);}
.fs1_c00218{font-size:64.800000px;}
.fs0_c00218{font-size:72.000000px;}
.y0_c00218{bottom:0.000000px;}
.y5_c00218{bottom:5.040000px;}
.y1_c00218{bottom:12.735000px;}
.y3_c00218{bottom:45.045000px;}
.y4_c00218{bottom:52.740000px;}
.y21_c00218{bottom:110.565000px;}
.y20_c00218{bottom:146.565000px;}
.y1f_c00218{bottom:182.565000px;}
.y1e_c00218{bottom:218.565000px;}
.y1d_c00218{bottom:254.565000px;}
.y1c_c00218{bottom:290.565000px;}
.y1b_c00218{bottom:326.565000px;}
.y1a_c00218{bottom:362.565000px;}
.y19_c00218{bottom:398.565000px;}
.y18_c00218{bottom:434.565000px;}
.y17_c00218{bottom:470.565000px;}
.y16_c00218{bottom:506.565000px;}
.y15_c00218{bottom:542.565000px;}
.y14_c00218{bottom:578.565000px;}
.y13_c00218{bottom:614.565000px;}
.y12_c00218{bottom:650.565000px;}
.y11_c00218{bottom:686.565000px;}
.y10_c00218{bottom:722.565000px;}
.yf_c00218{bottom:758.565000px;}
.ye_c00218{bottom:794.565000px;}
.yd_c00218{bottom:830.565000px;}
.yc_c00218{bottom:866.565000px;}
.yb_c00218{bottom:902.565000px;}
.ya_c00218{bottom:938.565000px;}
.y9_c00218{bottom:974.565000px;}
.y8_c00218{bottom:1010.565000px;}
.y7_c00218{bottom:1046.565000px;}
.y6_c00218{bottom:1082.565000px;}
.y2_c00218{bottom:1165.365000px;}
.h4_c00218{height:20.880000px;}
.h6_c00218{height:70.628906px;}
.h3_c00218{height:70.664062px;}
.h7_c00218{height:71.824219px;}
.h5_c00218{height:74.004654px;}
.h2_c00218{height:1237.365000px;}
.h0_c00218{height:1262.835000px;}
.h1_c00218{height:1263.000000px;}
.w3_c00218{width:27.000000px;}
.w2_c00218{width:867.465000px;}
.w0_c00218{width:892.935000px;}
.w1_c00218{width:893.250000px;}
.x0_c00218{left:0.000000px;}
.x1_c00218{left:12.735000px;}
.x3_c00218{left:95.406300px;}
.x5_c00218{left:149.400150px;}
.x4_c00218{left:433.215000px;}
.x2_c00218{left:878.550300px;}
@media print{
.v0_c00218{vertical-align:0.000000pt;}
.ls2_c00218{letter-spacing:0.000000pt;}
.ls1_c00218{letter-spacing:10.432000pt;}
.ls0_c00218{letter-spacing:11.136000pt;}
.ws0_c00218{word-spacing:-0.064000pt;}
.ws1_c00218{word-spacing:0.000000pt;}
._1_c00218{width:1.049600pt;}
._0_c00218{width:2.368000pt;}
._2_c00218{width:3.865600pt;}
._4_c00218{width:5.369600pt;}
._5_c00218{width:8.819200pt;}
._6_c00218{width:10.393600pt;}
._3_c00218{width:11.289600pt;}
._7_c00218{width:13.484800pt;}
._9_c00218{width:15.078400pt;}
._8_c00218{width:24.492800pt;}
.fs1_c00218{font-size:57.600000pt;}
.fs0_c00218{font-size:64.000000pt;}
.y0_c00218{bottom:0.000000pt;}
.y5_c00218{bottom:4.480000pt;}
.y1_c00218{bottom:11.320000pt;}
.y3_c00218{bottom:40.040000pt;}
.y4_c00218{bottom:46.880000pt;}
.y21_c00218{bottom:98.280000pt;}
.y20_c00218{bottom:130.280000pt;}
.y1f_c00218{bottom:162.280000pt;}
.y1e_c00218{bottom:194.280000pt;}
.y1d_c00218{bottom:226.280000pt;}
.y1c_c00218{bottom:258.280000pt;}
.y1b_c00218{bottom:290.280000pt;}
.y1a_c00218{bottom:322.280000pt;}
.y19_c00218{bottom:354.280000pt;}
.y18_c00218{bottom:386.280000pt;}
.y17_c00218{bottom:418.280000pt;}
.y16_c00218{bottom:450.280000pt;}
.y15_c00218{bottom:482.280000pt;}
.y14_c00218{bottom:514.280000pt;}
.y13_c00218{bottom:546.280000pt;}
.y12_c00218{bottom:578.280000pt;}
.y11_c00218{bottom:610.280000pt;}
.y10_c00218{bottom:642.280000pt;}
.yf_c00218{bottom:674.280000pt;}
.ye_c00218{bottom:706.280000pt;}
.yd_c00218{bottom:738.280000pt;}
.yc_c00218{bottom:770.280000pt;}
.yb_c00218{bottom:802.280000pt;}
.ya_c00218{bottom:834.280000pt;}
.y9_c00218{bottom:866.280000pt;}
.y8_c00218{bottom:898.280000pt;}
.y7_c00218{bottom:930.280000pt;}
.y6_c00218{bottom:962.280000pt;}
.y2_c00218{bottom:1035.880000pt;}
.h4_c00218{height:18.560000pt;}
.h6_c00218{height:62.781250pt;}
.h3_c00218{height:62.812500pt;}
.h7_c00218{height:63.843750pt;}
.h5_c00218{height:65.781915pt;}
.h2_c00218{height:1099.880000pt;}
.h0_c00218{height:1122.520000pt;}
.h1_c00218{height:1122.666667pt;}
.w3_c00218{width:24.000000pt;}
.w2_c00218{width:771.080000pt;}
.w0_c00218{width:793.720000pt;}
.w1_c00218{width:794.000000pt;}
.x0_c00218{left:0.000000pt;}
.x1_c00218{left:11.320000pt;}
.x3_c00218{left:84.805600pt;}
.x5_c00218{left:132.800133pt;}
.x4_c00218{left:385.080000pt;}
.x2_c00218{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00219{font-family:ff1_c00219;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00219;src:url('chunks/assets/font_633611609675ee731bddbf23.woff2')format("woff");}.ff2_c00219{font-family:ff2_c00219;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00219;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00219{font-family:ff3_c00219;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00219;src:url('chunks/assets/font_f08f1d3c7da3cc18e18a8e8a.woff2')format("woff");}.ff4_c00219{font-family:ff4_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:ff5_c00219;src:url('chunks/assets/font_9e8106b237d9d51afdde263f.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_9b047ccfb8ea4ec8dc889f89.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_23c5b88fbba77c130480a9e9.woff2')format("woff");}.ff7_c00219{font-family:ff7_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:ff8_c00219;src:url('chunks/assets/font_265bc0be588df351cce0a594.woff2')format("woff");}.ff8_c00219{font-family:ff8_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:ff9_c00219;src:url('chunks/assets/font_70d7d4b395892562ef87c559.woff2')format("woff");}.ff9_c00219{font-family:ff9_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:ffa_c00219;src:url('chunks/assets/font_530d3940974c000cf49a9140.woff2')format("woff");}.ffa_c00219{font-family:ffa_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:ffb_c00219;src:url('chunks/assets/font_23c5b88fbba77c130480a9e9.woff2')format("woff");}.ffb_c00219{font-family:ffb_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:ffc_c00219;src:url('chunks/assets/font_563d6c841ba973dbce246c4b.woff2')format("woff");}.ffc_c00219{font-family:ffc_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:ffd_c00219;src:url('chunks/assets/font_9e8106b237d9d51afdde263f.woff2')format("woff");}.ffd_c00219{font-family:ffd_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:ffe_c00219;src:url('chunks/assets/font_c72bcb593918229cbdd8e1fd.woff2')format("woff");}.ffe_c00219{font-family:ffe_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:fff_c00219;src:url('chunks/assets/font_4a75e55e1067d69b4a721d83.woff2')format("woff");}.fff_c00219{font-family:fff_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:ff10_c00219;src:url('chunks/assets/font_16fa0b43701a3fe4b692eef7.woff2')format("woff");}.ff10_c00219{font-family:ff10_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:ff11_c00219;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff11_c00219{font-family:ff11_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:ff12_c00219;src:url('chunks/assets/font_cb8fdb322463402e69139a13.woff2')format("woff");}.ff12_c00219{font-family:ff12_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:ff13_c00219;src:url('chunks/assets/font_c1374f1eb12a097dfa5572f7.woff2')format("woff");}.ff13_c00219{font-family:ff13_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:ff14_c00219;src:url('chunks/assets/font_e4a18c6e4ee5557df93aeed3.woff2')format("woff");}.ff14_c00219{font-family:ff14_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:ff15_c00219;src:url('chunks/assets/font_9e915825ea898793adebe03f.woff2')format("woff");}.ff15_c00219{font-family:ff15_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:ff16_c00219;src:url('chunks/assets/font_f3834db059ac23d8a2dc14c5.woff2')format("woff");}.ff16_c00219{font-family:ff16_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:ff17_c00219;src:url('chunks/assets/font_678a5e310bbe68515a0cc218.woff2')format("woff");}.ff17_c00219{font-family:ff17_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:ff18_c00219;src:url('chunks/assets/font_d2c14e563e1479455b184010.woff2')format("woff");}.ff18_c00219{font-family:ff18_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:ff19_c00219;src:url('chunks/assets/font_f1eede628fe9ee322bdf48ec.woff2')format("woff");}.ff19_c00219{font-family:ff19_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:ff1a_c00219;src:url('chunks/assets/font_7a6fbb5297c0b4543cfaa99e.woff2')format("woff");}.ff1a_c00219{font-family:ff1a_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:ff1b_c00219;src:url('chunks/assets/font_cff43113265049fcf0903175.woff2')format("woff");}.ff1b_c00219{font-family:ff1b_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:ff1c_c00219;src:url('chunks/assets/font_3f594ddb26085fd69bfa5b1c.woff2')format("woff");}.ff1c_c00219{font-family:ff1c_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:ff1d_c00219;src:url('chunks/assets/font_049dc275c28bf9056ad648f8.woff2')format("woff");}.ff1d_c00219{font-family:ff1d_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:ff1e_c00219;src:url('chunks/assets/font_cbc65057749628b854696acb.woff2')format("woff");}.ff1e_c00219{font-family:ff1e_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:ff1f_c00219;src:url('chunks/assets/font_9f2f206cd4515ca2bbe0736d.woff2')format("woff");}.ff1f_c00219{font-family:ff1f_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:ff20_c00219;src:url('chunks/assets/font_aaf79b0790914092d93ec4f9.woff2')format("woff");}.ff20_c00219{font-family:ff20_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:ff21_c00219;src:url('chunks/assets/font_9e8106b237d9d51afdde263f.woff2')format("woff");}.ff21_c00219{font-family:ff21_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:ff22_c00219;src:url('chunks/assets/font_fd9438453ea729812ff5b5ee.woff2')format("woff");}.ff22_c00219{font-family:ff22_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:ff23_c00219;src:url('chunks/assets/font_23c5b88fbba77c130480a9e9.woff2')format("woff");}.ff23_c00219{font-family:ff23_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:ff24_c00219;src:url('chunks/assets/font_959902619d0811cc00d97bb0.woff2')format("woff");}.ff24_c00219{font-family:ff24_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:ff25_c00219;src:url('chunks/assets/font_2b6fa2412aafd1c3d1f634b0.woff2')format("woff");}.ff25_c00219{font-family:ff25_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:ff26_c00219;src:url('chunks/assets/font_aff30589982421c6dde64bc6.woff2')format("woff");}.ff26_c00219{font-family:ff26_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:ff27_c00219;src:url('chunks/assets/font_8bd6b5aad27297f61b22f600.woff2')format("woff");}.ff27_c00219{font-family:ff27_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:ff28_c00219;src:url('chunks/assets/font_6e5ec68e59acde59e9b9ff6b.woff2')format("woff");}.ff28_c00219{font-family:ff28_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:ff29_c00219;src:url('chunks/assets/font_23c5b88fbba77c130480a9e9.woff2')format("woff");}.ff29_c00219{font-family:ff29_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:ff2a_c00219;src:url('chunks/assets/font_a25dd21d2f2ad0cd5f8fcfea.woff2')format("woff");}.ff2a_c00219{font-family:ff2a_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:ff2b_c00219;src:url('chunks/assets/font_07811b421841abc8e8257e4f.woff2')format("woff");}.ff2b_c00219{font-family:ff2b_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:ff2c_c00219;src:url('chunks/assets/font_80852849202a0331fafc72d9.woff2')format("woff");}.ff2c_c00219{font-family:ff2c_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:ff2d_c00219;src:url('chunks/assets/font_c19c00969010dcb6f319b890.woff2')format("woff");}.ff2d_c00219{font-family:ff2d_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:ff2e_c00219;src:url('chunks/assets/font_680716cd6210066b6656f297.woff2')format("woff");}.ff2e_c00219{font-family:ff2e_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:ff2f_c00219;src:url('chunks/assets/font_7c4ed09ba1dd0ad77aae473b.woff2')format("woff");}.ff2f_c00219{font-family:ff2f_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:ff30_c00219;src:url('chunks/assets/font_448246ff908cb0ce34660acb.woff2')format("woff");}.ff30_c00219{font-family:ff30_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:ff31_c00219;src:url('chunks/assets/font_f0717bf8789063618e0c6888.woff2')format("woff");}.ff31_c00219{font-family:ff31_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:ff32_c00219;src:url('chunks/assets/font_503a6480b4d23081fa9de872.woff2')format("woff");}.ff32_c00219{font-family:ff32_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:ff33_c00219;src:url('chunks/assets/font_c328f13b35ed731b7c99fb4e.woff2')format("woff");}.ff33_c00219{font-family:ff33_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:ff34_c00219;src:url('chunks/assets/font_eace94a08dd7c8d23474b9d4.woff2')format("woff");}.ff34_c00219{font-family:ff34_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:ff35_c00219;src:url('chunks/assets/font_efed98879162f80ddda4cf79.woff2')format("woff");}.ff35_c00219{font-family:ff35_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:ff36_c00219;src:url('chunks/assets/font_fb1ca553be11a78fb841e3c1.woff2')format("woff");}.ff36_c00219{font-family:ff36_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:ff37_c00219;src:url('chunks/assets/font_435c10ed8b0d54456edf4180.woff2')format("woff");}.ff37_c00219{font-family:ff37_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;}
.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;}
.ls3_c00219{letter-spacing:-0.014400px;}
.ls2_c00219{letter-spacing:0.000000px;}
.ls0_c00219{letter-spacing:0.007200px;}
.ls1_c00219{letter-spacing:0.072000px;}
.ls4_c00219{letter-spacing:5.745600px;}
.sc__c00219{text-shadow:none;}
.sc0_c00219{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00219{-webkit-text-stroke:0px transparent;}
.sc0_c00219{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00219{word-spacing:-0.072000px;}
.ws1_c00219{word-spacing:0.000000px;}
._c_c00219{margin-left:-5.594400px;}
._0_c00219{width:1.728000px;}
._1_c00219{width:2.822400px;}
._7_c00219{width:4.327200px;}
._8_c00219{width:5.421600px;}
._b_c00219{width:6.717600px;}
._2_c00219{width:8.013600px;}
._6_c00219{width:10.620000px;}
._5_c00219{width:12.362400px;}
._9_c00219{width:13.456800px;}
._e_c00219{width:14.954400px;}
._d_c00219{width:16.401600px;}
._a_c00219{width:19.332000px;}
._3_c00219{width:22.348800px;}
._4_c00219{width:28.692000px;}
.fc1_c00219{color:transparent;}
.fc0_c00219{color:rgb(0,0,0);}
.fs1_c00219{font-size:64.800000px;}
.fs0_c00219{font-size:72.000000px;}
.y0_c00219{bottom:0.000000px;}
.y5_c00219{bottom:5.040000px;}
.y1_c00219{bottom:12.735000px;}
.y3_c00219{bottom:45.045000px;}
.y4_c00219{bottom:52.740000px;}
.y21_c00219{bottom:110.565000px;}
.y20_c00219{bottom:146.565000px;}
.y1f_c00219{bottom:182.565000px;}
.y1e_c00219{bottom:218.565000px;}
.y1d_c00219{bottom:254.565000px;}
.y1c_c00219{bottom:290.565000px;}
.y1b_c00219{bottom:326.565000px;}
.y1a_c00219{bottom:362.565000px;}
.y19_c00219{bottom:398.565000px;}
.y18_c00219{bottom:434.565000px;}
.y17_c00219{bottom:470.565000px;}
.y16_c00219{bottom:506.565000px;}
.y15_c00219{bottom:542.565000px;}
.y14_c00219{bottom:578.565000px;}
.y13_c00219{bottom:614.565000px;}
.y12_c00219{bottom:650.565000px;}
.y11_c00219{bottom:686.565000px;}
.y10_c00219{bottom:722.565000px;}
.yf_c00219{bottom:758.565000px;}
.ye_c00219{bottom:794.565000px;}
.yd_c00219{bottom:830.565000px;}
.yc_c00219{bottom:866.565000px;}
.yb_c00219{bottom:902.565000px;}
.ya_c00219{bottom:938.565000px;}
.y9_c00219{bottom:974.565000px;}
.y8_c00219{bottom:1010.565000px;}
.y7_c00219{bottom:1046.565000px;}
.y6_c00219{bottom:1082.565000px;}
.y2_c00219{bottom:1165.365000px;}
.h4_c00219{height:20.880000px;}
.h6_c00219{height:70.628906px;}
.h3_c00219{height:70.664062px;}
.h5_c00219{height:74.004654px;}
.h2_c00219{height:1237.365000px;}
.h0_c00219{height:1262.835000px;}
.h1_c00219{height:1263.000000px;}
.w3_c00219{width:27.000000px;}
.w2_c00219{width:867.465000px;}
.w0_c00219{width:892.935000px;}
.w1_c00219{width:893.250000px;}
.x0_c00219{left:0.000000px;}
.x1_c00219{left:12.735000px;}
.x3_c00219{left:95.406300px;}
.x5_c00219{left:149.400150px;}
.x4_c00219{left:433.215000px;}
.x2_c00219{left:878.550300px;}
@media print{
.v0_c00219{vertical-align:0.000000pt;}
.ls3_c00219{letter-spacing:-0.012800pt;}
.ls2_c00219{letter-spacing:0.000000pt;}
.ls0_c00219{letter-spacing:0.006400pt;}
.ls1_c00219{letter-spacing:0.064000pt;}
.ls4_c00219{letter-spacing:5.107200pt;}
.ws0_c00219{word-spacing:-0.064000pt;}
.ws1_c00219{word-spacing:0.000000pt;}
._c_c00219{margin-left:-4.972800pt;}
._0_c00219{width:1.536000pt;}
._1_c00219{width:2.508800pt;}
._7_c00219{width:3.846400pt;}
._8_c00219{width:4.819200pt;}
._b_c00219{width:5.971200pt;}
._2_c00219{width:7.123200pt;}
._6_c00219{width:9.440000pt;}
._5_c00219{width:10.988800pt;}
._9_c00219{width:11.961600pt;}
._e_c00219{width:13.292800pt;}
._d_c00219{width:14.579200pt;}
._a_c00219{width:17.184000pt;}
._3_c00219{width:19.865600pt;}
._4_c00219{width:25.504000pt;}
.fs1_c00219{font-size:57.600000pt;}
.fs0_c00219{font-size:64.000000pt;}
.y0_c00219{bottom:0.000000pt;}
.y5_c00219{bottom:4.480000pt;}
.y1_c00219{bottom:11.320000pt;}
.y3_c00219{bottom:40.040000pt;}
.y4_c00219{bottom:46.880000pt;}
.y21_c00219{bottom:98.280000pt;}
.y20_c00219{bottom:130.280000pt;}
.y1f_c00219{bottom:162.280000pt;}
.y1e_c00219{bottom:194.280000pt;}
.y1d_c00219{bottom:226.280000pt;}
.y1c_c00219{bottom:258.280000pt;}
.y1b_c00219{bottom:290.280000pt;}
.y1a_c00219{bottom:322.280000pt;}
.y19_c00219{bottom:354.280000pt;}
.y18_c00219{bottom:386.280000pt;}
.y17_c00219{bottom:418.280000pt;}
.y16_c00219{bottom:450.280000pt;}
.y15_c00219{bottom:482.280000pt;}
.y14_c00219{bottom:514.280000pt;}
.y13_c00219{bottom:546.280000pt;}
.y12_c00219{bottom:578.280000pt;}
.y11_c00219{bottom:610.280000pt;}
.y10_c00219{bottom:642.280000pt;}
.yf_c00219{bottom:674.280000pt;}
.ye_c00219{bottom:706.280000pt;}
.yd_c00219{bottom:738.280000pt;}
.yc_c00219{bottom:770.280000pt;}
.yb_c00219{bottom:802.280000pt;}
.ya_c00219{bottom:834.280000pt;}
.y9_c00219{bottom:866.280000pt;}
.y8_c00219{bottom:898.280000pt;}
.y7_c00219{bottom:930.280000pt;}
.y6_c00219{bottom:962.280000pt;}
.y2_c00219{bottom:1035.880000pt;}
.h4_c00219{height:18.560000pt;}
.h6_c00219{height:62.781250pt;}
.h3_c00219{height:62.812500pt;}
.h5_c00219{height:65.781915pt;}
.h2_c00219{height:1099.880000pt;}
.h0_c00219{height:1122.520000pt;}
.h1_c00219{height:1122.666667pt;}
.w3_c00219{width:24.000000pt;}
.w2_c00219{width:771.080000pt;}
.w0_c00219{width:793.720000pt;}
.w1_c00219{width:794.000000pt;}
.x0_c00219{left:0.000000pt;}
.x1_c00219{left:11.320000pt;}
.x3_c00219{left:84.805600pt;}
.x5_c00219{left:132.800133pt;}
.x4_c00219{left:385.080000pt;}
.x2_c00219{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ed8a8c965f3267c9e7c6d4a2.woff2')format("woff");}.ff1_c00220{font-family:ff1_c00220;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00220;src:url('chunks/assets/font_2810c6745466d0e36f8ecf00.woff2')format("woff");}.ff2_c00220{font-family:ff2_c00220;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00220;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00220{font-family:ff3_c00220;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00220;src:url('chunks/assets/font_2efd5f50e33846f8f6bb0315.woff2')format("woff");}.ff4_c00220{font-family:ff4_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00220;src:url('chunks/assets/font_414ce4e0b5d55c615ddf50ca.woff2')format("woff");}.ff5_c00220{font-family:ff5_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00220;src:url('chunks/assets/font_34867ed7b361ea79ba3889c0.woff2')format("woff");}.ff6_c00220{font-family:ff6_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00220;src:url('chunks/assets/font_800272366097c9ba2500d7c3.woff2')format("woff");}.ff7_c00220{font-family:ff7_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00220;src:url('chunks/assets/font_0385722d591b00cdcf02a6fb.woff2')format("woff");}.ff8_c00220{font-family:ff8_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:ff9_c00220;src:url('chunks/assets/font_b37017ea98c46a08207fc9fb.woff2')format("woff");}.ff9_c00220{font-family:ff9_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:ffa_c00220;src:url('chunks/assets/font_6d7063dc920f50dda2df846e.woff2')format("woff");}.ffa_c00220{font-family:ffa_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:ffb_c00220;src:url('chunks/assets/font_8c73d70a9434f20dd65542c9.woff2')format("woff");}.ffb_c00220{font-family:ffb_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:ffc_c00220;src:url('chunks/assets/font_65ecf63685ed7a01f2ea9bef.woff2')format("woff");}.ffc_c00220{font-family:ffc_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:ffd_c00220;src:url('chunks/assets/font_755fa5dc869860121a49c91c.woff2')format("woff");}.ffd_c00220{font-family:ffd_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00220;src:url('chunks/assets/font_4bfa15658570aff65579e002.woff2')format("woff");}.ffe_c00220{font-family:ffe_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00220;src:url('chunks/assets/font_1db34f8aa402d14764b7835b.woff2')format("woff");}.fff_c00220{font-family:fff_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00220;src:url('chunks/assets/font_8b9794288b8282d7e44b7073.woff2')format("woff");}.ff10_c00220{font-family:ff10_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00220;src:url('chunks/assets/font_cb1fb1d250812931b592a8c8.woff2')format("woff");}.ff11_c00220{font-family:ff11_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00220;src:url('chunks/assets/font_24fd763f4031162bebfeb581.woff2')format("woff");}.ff12_c00220{font-family:ff12_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00220;src:url('chunks/assets/font_41ec7848536321811ace979c.woff2')format("woff");}.ff13_c00220{font-family:ff13_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00220;src:url('chunks/assets/font_b360eea79b34c7f79e9758c3.woff2')format("woff");}.ff14_c00220{font-family:ff14_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00220;src:url('chunks/assets/font_23c5b88fbba77c130480a9e9.woff2')format("woff");}.ff15_c00220{font-family:ff15_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:ff16_c00220;src:url('chunks/assets/font_f58fa72007728ed46299ac66.woff2')format("woff");}.ff16_c00220{font-family:ff16_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00220;src:url('chunks/assets/font_9e8106b237d9d51afdde263f.woff2')format("woff");}.ff17_c00220{font-family:ff17_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:ff18_c00220;src:url('chunks/assets/font_9e1984a791225018cdaec558.woff2')format("woff");}.ff18_c00220{font-family:ff18_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00220;src:url('chunks/assets/font_ae9566ad401f87a07948b335.woff2')format("woff");}.ff19_c00220{font-family:ff19_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00220;src:url('chunks/assets/font_7e7a1ebf3dbd191d3707492a.woff2')format("woff");}.ff1a_c00220{font-family:ff1a_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00220;src:url('chunks/assets/font_95788c95f2b730b0293dec48.woff2')format("woff");}.ff1b_c00220{font-family:ff1b_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00220;src:url('chunks/assets/font_0ef567c6e869050d19676f39.woff2')format("woff");}.ff1c_c00220{font-family:ff1c_c00220;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:ff1d_c00220;src:url('chunks/assets/font_359f93d943eb6d6817230754.woff2')format("woff");}.ff1d_c00220{font-family:ff1d_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00220;src:url('chunks/assets/font_1cd286928ac40a072c1b370b.woff2')format("woff");}.ff1e_c00220{font-family:ff1e_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00220;src:url('chunks/assets/font_32d1c84e60e31dafc68de9bc.woff2')format("woff");}.ff1f_c00220{font-family:ff1f_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00220;src:url('chunks/assets/font_107cf9cd222185a574bd0c25.woff2')format("woff");}.ff20_c00220{font-family:ff20_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:ff21_c00220;src:url('chunks/assets/font_c649a870ca357e76b9856f2a.woff2')format("woff");}.ff21_c00220{font-family:ff21_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00220;src:url('chunks/assets/font_74082f1d32d2c31d24f4441c.woff2')format("woff");}.ff22_c00220{font-family:ff22_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00220;src:url('chunks/assets/font_49a101d9e47e7fc3252e0836.woff2')format("woff");}.ff23_c00220{font-family:ff23_c00220;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:ff24_c00220;src:url('chunks/assets/font_5398f4fe24766e0613091e20.woff2')format("woff");}.ff24_c00220{font-family:ff24_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:ff25_c00220;src:url('chunks/assets/font_17ae6dceac990584465efbc7.woff2')format("woff");}.ff25_c00220{font-family:ff25_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:ff26_c00220;src:url('chunks/assets/font_9bf03f3c4937f658acf19d12.woff2')format("woff");}.ff26_c00220{font-family:ff26_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:ff27_c00220;src:url('chunks/assets/font_4831461d77ae29de792a4ce0.woff2')format("woff");}.ff27_c00220{font-family:ff27_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:ff28_c00220;src:url('chunks/assets/font_756e86ddff841bd8f6c29009.woff2')format("woff");}.ff28_c00220{font-family:ff28_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:ff29_c00220;src:url('chunks/assets/font_cce408aacd3d55fc4b3a1304.woff2')format("woff");}.ff29_c00220{font-family:ff29_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:ff2a_c00220;src:url('chunks/assets/font_6fbd3372d3c6d0f9ae5cc19f.woff2')format("woff");}.ff2a_c00220{font-family:ff2a_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:ff2b_c00220;src:url('chunks/assets/font_b6e2eb0e38a2549bf14e0d35.woff2')format("woff");}.ff2b_c00220{font-family:ff2b_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:ff2c_c00220;src:url('chunks/assets/font_6d1dfa529819aaaba7ee12d3.woff2')format("woff");}.ff2c_c00220{font-family:ff2c_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:ff2d_c00220;src:url('chunks/assets/font_ab25b6b92adc7fec99d9e948.woff2')format("woff");}.ff2d_c00220{font-family:ff2d_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00220;src:url('chunks/assets/font_6785fcdd1df6d88a69e4ee96.woff2')format("woff");}.ff2e_c00220{font-family:ff2e_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00220;src:url('chunks/assets/font_82ccbde2038131391e883eaf.woff2')format("woff");}.ff2f_c00220{font-family:ff2f_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00220;src:url('chunks/assets/font_e89afba44cb440da3f54d90a.woff2')format("woff");}.ff30_c00220{font-family:ff30_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00220;src:url('chunks/assets/font_5ec763c6ea34c5d8d1c7b9b7.woff2')format("woff");}.ff31_c00220{font-family:ff31_c00220;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:ff32_c00220;src:url('chunks/assets/font_e988a6ffa1ced55e98d7609e.woff2')format("woff");}.ff32_c00220{font-family:ff32_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00220;src:url('chunks/assets/font_615e01f876b06007aa25fdf1.woff2')format("woff");}.ff33_c00220{font-family:ff33_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00220;src:url('chunks/assets/font_fe34ba33d28654693c86d961.woff2')format("woff");}.ff34_c00220{font-family:ff34_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00220;src:url('chunks/assets/font_1eeb7683b1c111ba6b8c2849.woff2')format("woff");}.ff35_c00220{font-family:ff35_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00220;src:url('chunks/assets/font_86f354edbbe91a2bb9b11c6a.woff2')format("woff");}.ff36_c00220{font-family:ff36_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00220;src:url('chunks/assets/font_9e70a0fef9a1e414612353dd.woff2')format("woff");}.ff37_c00220{font-family:ff37_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00220;src:url('chunks/assets/font_e9200597bb96dec7ba66a76f.woff2')format("woff");}.ff38_c00220{font-family:ff38_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00220;src:url('chunks/assets/font_3fd822ca8f499d2d821f8ea6.woff2')format("woff");}.ff39_c00220{font-family:ff39_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00220;src:url('chunks/assets/font_045afe5efa777c098dbf9dcf.woff2')format("woff");}.ff3a_c00220{font-family:ff3a_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00220;src:url('chunks/assets/font_fd46d3a20178c78190c1f354.woff2')format("woff");}.ff3b_c00220{font-family:ff3b_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00220;src:url('chunks/assets/font_045afe5efa777c098dbf9dcf.woff2')format("woff");}.ff3c_c00220{font-family:ff3c_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00220;src:url('chunks/assets/font_4d0a8fa9c25a67f9524cbc12.woff2')format("woff");}.ff3d_c00220{font-family:ff3d_c00220;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00220;src:url('chunks/assets/font_045afe5efa777c098dbf9dcf.woff2')format("woff");}.ff3e_c00220{font-family:ff3e_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00220;src:url('chunks/assets/font_ca71b48d4024fee57912cb70.woff2')format("woff");}.ff3f_c00220{font-family:ff3f_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00220;src:url('chunks/assets/font_9512d1f28e43f0ff0570fc3e.woff2')format("woff");}.ff40_c00220{font-family:ff40_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:ff41_c00220;src:url('chunks/assets/font_1b36b97fa89b824ad0c66b88.woff2')format("woff");}.ff41_c00220{font-family:ff41_c00220;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00220;src:url('chunks/assets/font_3246e8dbca76c1b5e48c2cca.woff2')format("woff");}.ff42_c00220{font-family:ff42_c00220;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00220{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00220{vertical-align:0.000000px;}
.ls4_c00220{letter-spacing:0.000000px;}
.ls5_c00220{letter-spacing:0.014400px;}
.ls0_c00220{letter-spacing:0.633600px;}
.ls6_c00220{letter-spacing:4.521600px;}
.ls1_c00220{letter-spacing:13.233600px;}
.ls3_c00220{letter-spacing:13.276800px;}
.ls2_c00220{letter-spacing:13.320000px;}
.sc__c00220{text-shadow:none;}
.sc0_c00220{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00220{-webkit-text-stroke:0px transparent;}
.sc0_c00220{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00220{word-spacing:-0.072000px;}
.ws1_c00220{word-spacing:0.000000px;}
._8_c00220{margin-left:-3.672000px;}
._4_c00220{width:1.620000px;}
._2_c00220{width:2.800800px;}
._7_c00220{width:3.888000px;}
._5_c00220{width:5.306400px;}
._a_c00220{width:6.732000px;}
._1_c00220{width:7.855200px;}
._9_c00220{width:9.928800px;}
._6_c00220{width:10.929600px;}
._0_c00220{width:12.636000px;}
._c_c00220{width:14.047200px;}
._3_c00220{width:16.833600px;}
._b_c00220{width:19.166400px;}
.fc1_c00220{color:transparent;}
.fc0_c00220{color:rgb(0,0,0);}
.fs1_c00220{font-size:64.800000px;}
.fs0_c00220{font-size:72.000000px;}
.y0_c00220{bottom:0.000000px;}
.y5_c00220{bottom:5.040000px;}
.y1_c00220{bottom:12.735000px;}
.y3_c00220{bottom:45.045000px;}
.y4_c00220{bottom:52.740000px;}
.y21_c00220{bottom:110.565000px;}
.y20_c00220{bottom:146.565000px;}
.y1f_c00220{bottom:182.565000px;}
.y1e_c00220{bottom:218.565000px;}
.y1d_c00220{bottom:254.565000px;}
.y1c_c00220{bottom:290.565000px;}
.y1b_c00220{bottom:326.565000px;}
.y1a_c00220{bottom:362.565000px;}
.y19_c00220{bottom:398.565000px;}
.y18_c00220{bottom:434.565000px;}
.y17_c00220{bottom:470.565000px;}
.y16_c00220{bottom:506.565000px;}
.y15_c00220{bottom:542.565000px;}
.y14_c00220{bottom:578.565000px;}
.y13_c00220{bottom:614.565000px;}
.y12_c00220{bottom:650.565000px;}
.y11_c00220{bottom:686.565000px;}
.y10_c00220{bottom:722.565000px;}
.yf_c00220{bottom:758.565000px;}
.ye_c00220{bottom:794.565000px;}
.yd_c00220{bottom:830.565000px;}
.yc_c00220{bottom:866.565000px;}
.yb_c00220{bottom:902.565000px;}
.ya_c00220{bottom:938.565000px;}
.y9_c00220{bottom:974.565000px;}
.y8_c00220{bottom:1010.565000px;}
.y7_c00220{bottom:1046.565000px;}
.y6_c00220{bottom:1082.565000px;}
.y2_c00220{bottom:1165.365000px;}
.h4_c00220{height:20.880000px;}
.h6_c00220{height:70.628906px;}
.h5_c00220{height:70.664062px;}
.h7_c00220{height:71.824219px;}
.h3_c00220{height:74.004654px;}
.h2_c00220{height:1237.365000px;}
.h0_c00220{height:1262.835000px;}
.h1_c00220{height:1263.000000px;}
.w3_c00220{width:27.000000px;}
.w2_c00220{width:867.465000px;}
.w0_c00220{width:892.935000px;}
.w1_c00220{width:893.250000px;}
.x0_c00220{left:0.000000px;}
.x1_c00220{left:12.735000px;}
.x3_c00220{left:95.406300px;}
.x5_c00220{left:149.400150px;}
.x6_c00220{left:223.002150px;}
.x4_c00220{left:433.215000px;}
.x2_c00220{left:878.550300px;}
@media print{
.v0_c00220{vertical-align:0.000000pt;}
.ls4_c00220{letter-spacing:0.000000pt;}
.ls5_c00220{letter-spacing:0.012800pt;}
.ls0_c00220{letter-spacing:0.563200pt;}
.ls6_c00220{letter-spacing:4.019200pt;}
.ls1_c00220{letter-spacing:11.763200pt;}
.ls3_c00220{letter-spacing:11.801600pt;}
.ls2_c00220{letter-spacing:11.840000pt;}
.ws0_c00220{word-spacing:-0.064000pt;}
.ws1_c00220{word-spacing:0.000000pt;}
._8_c00220{margin-left:-3.264000pt;}
._4_c00220{width:1.440000pt;}
._2_c00220{width:2.489600pt;}
._7_c00220{width:3.456000pt;}
._5_c00220{width:4.716800pt;}
._a_c00220{width:5.984000pt;}
._1_c00220{width:6.982400pt;}
._9_c00220{width:8.825600pt;}
._6_c00220{width:9.715200pt;}
._0_c00220{width:11.232000pt;}
._c_c00220{width:12.486400pt;}
._3_c00220{width:14.963200pt;}
._b_c00220{width:17.036800pt;}
.fs1_c00220{font-size:57.600000pt;}
.fs0_c00220{font-size:64.000000pt;}
.y0_c00220{bottom:0.000000pt;}
.y5_c00220{bottom:4.480000pt;}
.y1_c00220{bottom:11.320000pt;}
.y3_c00220{bottom:40.040000pt;}
.y4_c00220{bottom:46.880000pt;}
.y21_c00220{bottom:98.280000pt;}
.y20_c00220{bottom:130.280000pt;}
.y1f_c00220{bottom:162.280000pt;}
.y1e_c00220{bottom:194.280000pt;}
.y1d_c00220{bottom:226.280000pt;}
.y1c_c00220{bottom:258.280000pt;}
.y1b_c00220{bottom:290.280000pt;}
.y1a_c00220{bottom:322.280000pt;}
.y19_c00220{bottom:354.280000pt;}
.y18_c00220{bottom:386.280000pt;}
.y17_c00220{bottom:418.280000pt;}
.y16_c00220{bottom:450.280000pt;}
.y15_c00220{bottom:482.280000pt;}
.y14_c00220{bottom:514.280000pt;}
.y13_c00220{bottom:546.280000pt;}
.y12_c00220{bottom:578.280000pt;}
.y11_c00220{bottom:610.280000pt;}
.y10_c00220{bottom:642.280000pt;}
.yf_c00220{bottom:674.280000pt;}
.ye_c00220{bottom:706.280000pt;}
.yd_c00220{bottom:738.280000pt;}
.yc_c00220{bottom:770.280000pt;}
.yb_c00220{bottom:802.280000pt;}
.ya_c00220{bottom:834.280000pt;}
.y9_c00220{bottom:866.280000pt;}
.y8_c00220{bottom:898.280000pt;}
.y7_c00220{bottom:930.280000pt;}
.y6_c00220{bottom:962.280000pt;}
.y2_c00220{bottom:1035.880000pt;}
.h4_c00220{height:18.560000pt;}
.h6_c00220{height:62.781250pt;}
.h5_c00220{height:62.812500pt;}
.h7_c00220{height:63.843750pt;}
.h3_c00220{height:65.781915pt;}
.h2_c00220{height:1099.880000pt;}
.h0_c00220{height:1122.520000pt;}
.h1_c00220{height:1122.666667pt;}
.w3_c00220{width:24.000000pt;}
.w2_c00220{width:771.080000pt;}
.w0_c00220{width:793.720000pt;}
.w1_c00220{width:794.000000pt;}
.x0_c00220{left:0.000000pt;}
.x1_c00220{left:11.320000pt;}
.x3_c00220{left:84.805600pt;}
.x5_c00220{left:132.800133pt;}
.x6_c00220{left:198.224133pt;}
.x4_c00220{left:385.080000pt;}
.x2_c00220{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00221{font-family:ff1_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00221;src:url('chunks/assets/font_1a8d8d448b9b02aa06a5e0ec.woff2')format("woff");}.ff2_c00221{font-family:ff2_c00221;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00221;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00221{font-family:ff3_c00221;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00221;src:url('chunks/assets/font_986120c469dba31f6779e150.woff2')format("woff");}.ff4_c00221{font-family:ff4_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00221;src:url('chunks/assets/font_8945ef2642efdc8078dfc076.woff2')format("woff");}.ff5_c00221{font-family:ff5_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00221;src:url('chunks/assets/font_f85a475f42fefb9976dec589.woff2')format("woff");}.ff6_c00221{font-family:ff6_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00221;src:url('chunks/assets/font_0da85ac5abbb968b4860bbee.woff2')format("woff");}.ff7_c00221{font-family:ff7_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00221;src:url('chunks/assets/font_738f6607fe1f63808e2e1ea4.woff2')format("woff");}.ff8_c00221{font-family:ff8_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00221;src:url('chunks/assets/font_3cb78814b8ad3427550bc989.woff2')format("woff");}.ff9_c00221{font-family:ff9_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00221;src:url('chunks/assets/font_3132cf57f097966405f8246b.woff2')format("woff");}.ffa_c00221{font-family:ffa_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00221;src:url('chunks/assets/font_b72a9aac3a04ac85290ffd97.woff2')format("woff");}.ffb_c00221{font-family:ffb_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00221;src:url('chunks/assets/font_93293c5d6af641c3cf9056dc.woff2')format("woff");}.ffc_c00221{font-family:ffc_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00221;src:url('chunks/assets/font_5f0414f69cfded177b9bf3bc.woff2')format("woff");}.ffd_c00221{font-family:ffd_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00221;src:url('chunks/assets/font_34eb8ebd4e8755e42b77b316.woff2')format("woff");}.ffe_c00221{font-family:ffe_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00221;src:url('chunks/assets/font_3f6796d0c69e3c48b286c4c0.woff2')format("woff");}.fff_c00221{font-family:fff_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00221;src:url('chunks/assets/font_6399f7865b90c9c8c87d85b1.woff2')format("woff");}.ff10_c00221{font-family:ff10_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00221;src:url('chunks/assets/font_301c0b900cbf3de5dc654751.woff2')format("woff");}.ff11_c00221{font-family:ff11_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00221;src:url('chunks/assets/font_dcc188d273cd009c77307de6.woff2')format("woff");}.ff12_c00221{font-family:ff12_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00221;src:url('chunks/assets/font_e0bfa55a952e2e2e34a91ed0.woff2')format("woff");}.ff13_c00221{font-family:ff13_c00221;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:ff14_c00221;src:url('chunks/assets/font_5381d3f3ac537db3967f7e43.woff2')format("woff");}.ff14_c00221{font-family:ff14_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00221;src:url('chunks/assets/font_249b3cf1bba058f9cbaff1da.woff2')format("woff");}.ff15_c00221{font-family:ff15_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00221;src:url('chunks/assets/font_180d1e2441338a9eac8b9a17.woff2')format("woff");}.ff16_c00221{font-family:ff16_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00221;src:url('chunks/assets/font_78241816c8e2d4d3fd77e0f1.woff2')format("woff");}.ff17_c00221{font-family:ff17_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00221;src:url('chunks/assets/font_34b62e295ecef2e27c07899f.woff2')format("woff");}.ff18_c00221{font-family:ff18_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00221;src:url('chunks/assets/font_4f136cdd203081718e0cbf85.woff2')format("woff");}.ff19_c00221{font-family:ff19_c00221;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:ff1a_c00221;src:url('chunks/assets/font_c7aa5dbe1011f1b8e204d5e0.woff2')format("woff");}.ff1a_c00221{font-family:ff1a_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:ff1b_c00221;src:url('chunks/assets/font_252fd024648fde73a4c33f17.woff2')format("woff");}.ff1b_c00221{font-family:ff1b_c00221;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00221;src:url('chunks/assets/font_07161579334d73c3c4cbfd74.woff2')format("woff");}.ff1c_c00221{font-family:ff1c_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:ff1d_c00221;src:url('chunks/assets/font_252fd024648fde73a4c33f17.woff2')format("woff");}.ff1d_c00221{font-family:ff1d_c00221;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00221;src:url('chunks/assets/font_3fddd091390420a6d717fc65.woff2')format("woff");}.ff1e_c00221{font-family:ff1e_c00221;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00221;src:url('chunks/assets/font_a0ef0ae74024668564724de4.woff2')format("woff");}.ff1f_c00221{font-family:ff1f_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:ff20_c00221;src:url('chunks/assets/font_4b396e23a53dd377c5c9d81d.woff2')format("woff");}.ff20_c00221{font-family:ff20_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:ff21_c00221;src:url('chunks/assets/font_bda90a8300cdcfe759d56011.woff2')format("woff");}.ff21_c00221{font-family:ff21_c00221;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00221;src:url('chunks/assets/font_252fd024648fde73a4c33f17.woff2')format("woff");}.ff22_c00221{font-family:ff22_c00221;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00221;src:url('chunks/assets/font_a4a2f63bbd22ed01651840ca.woff2')format("woff");}.ff23_c00221{font-family:ff23_c00221;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:ff24_c00221;src:url('chunks/assets/font_1814fa56040a321f41df476c.woff2')format("woff");}.ff24_c00221{font-family:ff24_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00221;src:url('chunks/assets/font_d4ba5ee4f45c4de71d7755fd.woff2')format("woff");}.ff25_c00221{font-family:ff25_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00221;src:url('chunks/assets/font_e4c468afeb5f6f7668d8c914.woff2')format("woff");}.ff26_c00221{font-family:ff26_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00221;src:url('chunks/assets/font_1ba1bbedb16111d2293a6715.woff2')format("woff");}.ff27_c00221{font-family:ff27_c00221;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:ff28_c00221;src:url('chunks/assets/font_322cf5ac6b4fc870ee296fad.woff2')format("woff");}.ff28_c00221{font-family:ff28_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:ff29_c00221;src:url('chunks/assets/font_06988f83b823bc31c5d91521.woff2')format("woff");}.ff29_c00221{font-family:ff29_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:ff2a_c00221;src:url('chunks/assets/font_6ab084b05974e1c78a54d5b0.woff2')format("woff");}.ff2a_c00221{font-family:ff2a_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:ff2b_c00221;src:url('chunks/assets/font_b4002e7294f5754c304eaaf9.woff2')format("woff");}.ff2b_c00221{font-family:ff2b_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:ff2c_c00221;src:url('chunks/assets/font_f8877b34578936bd541ddf90.woff2')format("woff");}.ff2c_c00221{font-family:ff2c_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:ff2d_c00221;src:url('chunks/assets/font_f36709847548d36e67c7c6da.woff2')format("woff");}.ff2d_c00221{font-family:ff2d_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:ff2e_c00221;src:url('chunks/assets/font_3dd8e6c26eaf574dc20658e7.woff2')format("woff");}.ff2e_c00221{font-family:ff2e_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:ff2f_c00221;src:url('chunks/assets/font_146a5a0beac3679025b89a1d.woff2')format("woff");}.ff2f_c00221{font-family:ff2f_c00221;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00221;src:url('chunks/assets/font_2113f51ab170864ab5278610.woff2')format("woff");}.ff30_c00221{font-family:ff30_c00221;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00221;src:url('chunks/assets/font_41e7d5e287b800a37f1b0b3c.woff2')format("woff");}.ff31_c00221{font-family:ff31_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00221;src:url('chunks/assets/font_7559972dea52f140ff6575e5.woff2')format("woff");}.ff32_c00221{font-family:ff32_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00221;src:url('chunks/assets/font_e8644b3b8d18ccd3ea26aad8.woff2')format("woff");}.ff33_c00221{font-family:ff33_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00221;src:url('chunks/assets/font_857d6916fda2e5f690f2f8f5.woff2')format("woff");}.ff34_c00221{font-family:ff34_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:ff35_c00221;src:url('chunks/assets/font_311178a9ffecae58dece1489.woff2')format("woff");}.ff35_c00221{font-family:ff35_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:ff36_c00221;src:url('chunks/assets/font_468ed495e27abb6a26cce088.woff2')format("woff");}.ff36_c00221{font-family:ff36_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00221;src:url('chunks/assets/font_128f05fdc4675b5ab8d62b61.woff2')format("woff");}.ff37_c00221{font-family:ff37_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00221;src:url('chunks/assets/font_7a875c7a8175b9030e6ca4aa.woff2')format("woff");}.ff38_c00221{font-family:ff38_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00221;src:url('chunks/assets/font_34259eb8807a3ed891d233e7.woff2')format("woff");}.ff39_c00221{font-family:ff39_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00221;src:url('chunks/assets/font_8ad939a0fb592c57356b4181.woff2')format("woff");}.ff3a_c00221{font-family:ff3a_c00221;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00221{letter-spacing:-0.014400px;}
.ls2_c00221{letter-spacing:0.000000px;}
.ls0_c00221{letter-spacing:0.072000px;}
.ls1_c00221{letter-spacing:28.864800px;}
.sc__c00221{text-shadow:none;}
.sc0_c00221{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00221{-webkit-text-stroke:0px transparent;}
.sc0_c00221{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00221{word-spacing:-0.072000px;}
.ws1_c00221{word-spacing:0.000000px;}
._2_c00221{width:1.195200px;}
._1_c00221{width:2.649600px;}
._0_c00221{width:3.931200px;}
._7_c00221{width:5.335200px;}
._4_c00221{width:6.415200px;}
._5_c00221{width:7.797600px;}
._d_c00221{width:8.920800px;}
._e_c00221{width:9.943200px;}
._6_c00221{width:11.628000px;}
._3_c00221{width:13.240800px;}
._8_c00221{width:14.464800px;}
._b_c00221{width:16.588800px;}
._c_c00221{width:19.908000px;}
._a_c00221{width:21.182400px;}
._9_c00221{width:28.922400px;}
.fc1_c00221{color:transparent;}
.fc0_c00221{color:rgb(0,0,0);}
.fs1_c00221{font-size:64.800000px;}
.fs0_c00221{font-size:72.000000px;}
.y0_c00221{bottom:0.000000px;}
.y5_c00221{bottom:5.040000px;}
.y1_c00221{bottom:12.735000px;}
.y3_c00221{bottom:45.045000px;}
.y4_c00221{bottom:52.740000px;}
.y21_c00221{bottom:110.565000px;}
.y20_c00221{bottom:146.565000px;}
.y1f_c00221{bottom:182.565000px;}
.y1e_c00221{bottom:218.565000px;}
.y1d_c00221{bottom:254.565000px;}
.y1c_c00221{bottom:290.565000px;}
.y1b_c00221{bottom:326.565000px;}
.y1a_c00221{bottom:362.565000px;}
.y19_c00221{bottom:398.565000px;}
.y18_c00221{bottom:434.565000px;}
.y17_c00221{bottom:470.565000px;}
.y16_c00221{bottom:506.565000px;}
.y15_c00221{bottom:542.565000px;}
.y14_c00221{bottom:578.565000px;}
.y13_c00221{bottom:614.565000px;}
.y12_c00221{bottom:650.565000px;}
.y11_c00221{bottom:686.565000px;}
.y10_c00221{bottom:722.565000px;}
.yf_c00221{bottom:758.565000px;}
.ye_c00221{bottom:794.565000px;}
.yd_c00221{bottom:830.565000px;}
.yc_c00221{bottom:866.565000px;}
.yb_c00221{bottom:902.565000px;}
.ya_c00221{bottom:938.565000px;}
.y9_c00221{bottom:974.565000px;}
.y8_c00221{bottom:1010.565000px;}
.y7_c00221{bottom:1046.565000px;}
.y6_c00221{bottom:1082.565000px;}
.y2_c00221{bottom:1165.365000px;}
.h4_c00221{height:20.880000px;}
.h7_c00221{height:70.628906px;}
.h3_c00221{height:70.664062px;}
.h6_c00221{height:71.824219px;}
.h5_c00221{height:74.004654px;}
.h2_c00221{height:1237.365000px;}
.h0_c00221{height:1262.835000px;}
.h1_c00221{height:1263.000000px;}
.w3_c00221{width:27.000000px;}
.w2_c00221{width:867.465000px;}
.w0_c00221{width:892.935000px;}
.w1_c00221{width:893.250000px;}
.x0_c00221{left:0.000000px;}
.x1_c00221{left:12.735000px;}
.x3_c00221{left:95.406300px;}
.x5_c00221{left:149.400150px;}
.x4_c00221{left:433.215000px;}
.x2_c00221{left:878.550300px;}
@media print{
.v0_c00221{vertical-align:0.000000pt;}
.ls3_c00221{letter-spacing:-0.012800pt;}
.ls2_c00221{letter-spacing:0.000000pt;}
.ls0_c00221{letter-spacing:0.064000pt;}
.ls1_c00221{letter-spacing:25.657600pt;}
.ws0_c00221{word-spacing:-0.064000pt;}
.ws1_c00221{word-spacing:0.000000pt;}
._2_c00221{width:1.062400pt;}
._1_c00221{width:2.355200pt;}
._0_c00221{width:3.494400pt;}
._7_c00221{width:4.742400pt;}
._4_c00221{width:5.702400pt;}
._5_c00221{width:6.931200pt;}
._d_c00221{width:7.929600pt;}
._e_c00221{width:8.838400pt;}
._6_c00221{width:10.336000pt;}
._3_c00221{width:11.769600pt;}
._8_c00221{width:12.857600pt;}
._b_c00221{width:14.745600pt;}
._c_c00221{width:17.696000pt;}
._a_c00221{width:18.828800pt;}
._9_c00221{width:25.708800pt;}
.fs1_c00221{font-size:57.600000pt;}
.fs0_c00221{font-size:64.000000pt;}
.y0_c00221{bottom:0.000000pt;}
.y5_c00221{bottom:4.480000pt;}
.y1_c00221{bottom:11.320000pt;}
.y3_c00221{bottom:40.040000pt;}
.y4_c00221{bottom:46.880000pt;}
.y21_c00221{bottom:98.280000pt;}
.y20_c00221{bottom:130.280000pt;}
.y1f_c00221{bottom:162.280000pt;}
.y1e_c00221{bottom:194.280000pt;}
.y1d_c00221{bottom:226.280000pt;}
.y1c_c00221{bottom:258.280000pt;}
.y1b_c00221{bottom:290.280000pt;}
.y1a_c00221{bottom:322.280000pt;}
.y19_c00221{bottom:354.280000pt;}
.y18_c00221{bottom:386.280000pt;}
.y17_c00221{bottom:418.280000pt;}
.y16_c00221{bottom:450.280000pt;}
.y15_c00221{bottom:482.280000pt;}
.y14_c00221{bottom:514.280000pt;}
.y13_c00221{bottom:546.280000pt;}
.y12_c00221{bottom:578.280000pt;}
.y11_c00221{bottom:610.280000pt;}
.y10_c00221{bottom:642.280000pt;}
.yf_c00221{bottom:674.280000pt;}
.ye_c00221{bottom:706.280000pt;}
.yd_c00221{bottom:738.280000pt;}
.yc_c00221{bottom:770.280000pt;}
.yb_c00221{bottom:802.280000pt;}
.ya_c00221{bottom:834.280000pt;}
.y9_c00221{bottom:866.280000pt;}
.y8_c00221{bottom:898.280000pt;}
.y7_c00221{bottom:930.280000pt;}
.y6_c00221{bottom:962.280000pt;}
.y2_c00221{bottom:1035.880000pt;}
.h4_c00221{height:18.560000pt;}
.h7_c00221{height:62.781250pt;}
.h3_c00221{height:62.812500pt;}
.h6_c00221{height:63.843750pt;}
.h5_c00221{height:65.781915pt;}
.h2_c00221{height:1099.880000pt;}
.h0_c00221{height:1122.520000pt;}
.h1_c00221{height:1122.666667pt;}
.w3_c00221{width:24.000000pt;}
.w2_c00221{width:771.080000pt;}
.w0_c00221{width:793.720000pt;}
.w1_c00221{width:794.000000pt;}
.x0_c00221{left:0.000000pt;}
.x1_c00221{left:11.320000pt;}
.x3_c00221{left:84.805600pt;}
.x5_c00221{left:132.800133pt;}
.x4_c00221{left:385.080000pt;}
.x2_c00221{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ebb0575086688f43d9e08b88.woff2')format("woff");}.ff1_c00222{font-family:ff1_c00222;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00222;src:url('chunks/assets/font_8870082a48dfa18c2c393afa.woff2')format("woff");}.ff2_c00222{font-family:ff2_c00222;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00222;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00222{font-family:ff3_c00222;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00222;src:url('chunks/assets/font_05b3a5c58b30e591086f0ef7.woff2')format("woff");}.ff4_c00222{font-family:ff4_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00222;src:url('chunks/assets/font_25ec1aa353598d44ffd96ba7.woff2')format("woff");}.ff5_c00222{font-family:ff5_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00222;src:url('chunks/assets/font_c4fddf8aada5760d1e9d25c3.woff2')format("woff");}.ff6_c00222{font-family:ff6_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00222;src:url('chunks/assets/font_de76a5797aafc8855f74560c.woff2')format("woff");}.ff7_c00222{font-family:ff7_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00222;src:url('chunks/assets/font_0102709d9f858b40c0597935.woff2')format("woff");}.ff8_c00222{font-family:ff8_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00222;src:url('chunks/assets/font_b10695f76beff69aae4ea239.woff2')format("woff");}.ff9_c00222{font-family:ff9_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00222;src:url('chunks/assets/font_6d2b43985735ddb5f412ce7b.woff2')format("woff");}.ffa_c00222{font-family:ffa_c00222;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00222;src:url('chunks/assets/font_014d897f9dbbdf452f06ed79.woff2')format("woff");}.ffb_c00222{font-family:ffb_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00222;src:url('chunks/assets/font_98693a99cf1c9ec9c3a46c77.woff2')format("woff");}.ffc_c00222{font-family:ffc_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00222;src:url('chunks/assets/font_872f35cd9506eb92a3c28ab1.woff2')format("woff");}.ffd_c00222{font-family:ffd_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00222;src:url('chunks/assets/font_6f58851f4bf84184825b3681.woff2')format("woff");}.ffe_c00222{font-family:ffe_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00222;src:url('chunks/assets/font_37e9f6497480664a5d51bd99.woff2')format("woff");}.fff_c00222{font-family:fff_c00222;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00222;src:url('chunks/assets/font_cc42c9e5cfaa37e24795f8f9.woff2')format("woff");}.ff10_c00222{font-family:ff10_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00222;src:url('chunks/assets/font_cdac325798187dca4b718844.woff2')format("woff");}.ff11_c00222{font-family:ff11_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00222;src:url('chunks/assets/font_6210dafc110ae94faf92b550.woff2')format("woff");}.ff12_c00222{font-family:ff12_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00222;src:url('chunks/assets/font_ecdc9b183089b23bacaf5633.woff2')format("woff");}.ff13_c00222{font-family:ff13_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00222;src:url('chunks/assets/font_b7e2bfb35bd1e73da4384d68.woff2')format("woff");}.ff14_c00222{font-family:ff14_c00222;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00222;src:url('chunks/assets/font_b7e2bfb35bd1e73da4384d68.woff2')format("woff");}.ff15_c00222{font-family:ff15_c00222;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00222;src:url('chunks/assets/font_90734c8edc0788c6aed68acd.woff2')format("woff");}.ff16_c00222{font-family:ff16_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00222;src:url('chunks/assets/font_9504fdf2ddafa89212dedb68.woff2')format("woff");}.ff17_c00222{font-family:ff17_c00222;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00222;src:url('chunks/assets/font_337998e8c0ee9760cc2bb0da.woff2')format("woff");}.ff18_c00222{font-family:ff18_c00222;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00222;src:url('chunks/assets/font_3e910a8113577882db2cf3e4.woff2')format("woff");}.ff19_c00222{font-family:ff19_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00222;src:url('chunks/assets/font_412cebc34527d19a8a778e5c.woff2')format("woff");}.ff1a_c00222{font-family:ff1a_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00222;src:url('chunks/assets/font_8a0e78fc8314aaf9f80db746.woff2')format("woff");}.ff1b_c00222{font-family:ff1b_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00222;src:url('chunks/assets/font_9e2a75ba3ecfe8f85a02099f.woff2')format("woff");}.ff1c_c00222{font-family:ff1c_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00222;src:url('chunks/assets/font_a4c0c74db5fe576a5a9092cc.woff2')format("woff");}.ff1d_c00222{font-family:ff1d_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00222;src:url('chunks/assets/font_d773054e5409704dacee6688.woff2')format("woff");}.ff1e_c00222{font-family:ff1e_c00222;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00222;src:url('chunks/assets/font_e1b0d7c9d2b6b7f51c111319.woff2')format("woff");}.ff1f_c00222{font-family:ff1f_c00222;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00222;src:url('chunks/assets/font_609acde4615c6413f805726d.woff2')format("woff");}.ff20_c00222{font-family:ff20_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00222;src:url('chunks/assets/font_f98360db2ebc51a596616ce5.woff2')format("woff");}.ff21_c00222{font-family:ff21_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00222;src:url('chunks/assets/font_493ae924026849eb28b5acf7.woff2')format("woff");}.ff22_c00222{font-family:ff22_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00222;src:url('chunks/assets/font_8f9c9fab127856f7e8c127c3.woff2')format("woff");}.ff23_c00222{font-family:ff23_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00222;src:url('chunks/assets/font_bc2d596483d00bfe60c5da1c.woff2')format("woff");}.ff24_c00222{font-family:ff24_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00222;src:url('chunks/assets/font_5a80b0de6cd897bc2123b876.woff2')format("woff");}.ff25_c00222{font-family:ff25_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00222;src:url('chunks/assets/font_dba916f095d85a977c4c261a.woff2')format("woff");}.ff26_c00222{font-family:ff26_c00222;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:ff27_c00222;src:url('chunks/assets/font_cd6471233b85cd3ad3d92bf2.woff2')format("woff");}.ff27_c00222{font-family:ff27_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00222;src:url('chunks/assets/font_e20c5e5d678207c4375298c5.woff2')format("woff");}.ff28_c00222{font-family:ff28_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00222;src:url('chunks/assets/font_a8ca00b5860b7902a34ce2c4.woff2')format("woff");}.ff29_c00222{font-family:ff29_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00222;src:url('chunks/assets/font_16a1150631a1d3e6af38a0de.woff2')format("woff");}.ff2a_c00222{font-family:ff2a_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00222;src:url('chunks/assets/font_387fad29901d212c17ea946e.woff2')format("woff");}.ff2b_c00222{font-family:ff2b_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00222;src:url('chunks/assets/font_1cb967d01cdff2ff28a11b93.woff2')format("woff");}.ff2c_c00222{font-family:ff2c_c00222;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00222;src:url('chunks/assets/font_d36cb6efebd7b4cebb1d6e6c.woff2')format("woff");}.ff2d_c00222{font-family:ff2d_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00222;src:url('chunks/assets/font_2471ab429bbbfc85ff21fbab.woff2')format("woff");}.ff2e_c00222{font-family:ff2e_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00222;src:url('chunks/assets/font_9370c30e1c142f4f6ccf3981.woff2')format("woff");}.ff2f_c00222{font-family:ff2f_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00222;src:url('chunks/assets/font_868c7bde10a6e41501c5cdfd.woff2')format("woff");}.ff30_c00222{font-family:ff30_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00222;src:url('chunks/assets/font_f6701b74432ee9c050f72fed.woff2')format("woff");}.ff31_c00222{font-family:ff31_c00222;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00222{letter-spacing:-0.014400px;}
.ls0_c00222{letter-spacing:0.000000px;}
.sc__c00222{text-shadow:none;}
.sc0_c00222{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00222{-webkit-text-stroke:0px transparent;}
.sc0_c00222{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00222{word-spacing:-0.072000px;}
.ws1_c00222{word-spacing:0.000000px;}
._3_c00222{width:1.152000px;}
._9_c00222{width:2.152800px;}
._0_c00222{width:4.428000px;}
._1_c00222{width:5.889600px;}
._4_c00222{width:7.192800px;}
._5_c00222{width:8.676000px;}
._2_c00222{width:9.885600px;}
._6_c00222{width:10.980000px;}
._7_c00222{width:12.160800px;}
._8_c00222{width:13.183200px;}
._a_c00222{width:16.185600px;}
.fc1_c00222{color:transparent;}
.fc0_c00222{color:rgb(0,0,0);}
.fs1_c00222{font-size:64.800000px;}
.fs0_c00222{font-size:72.000000px;}
.y0_c00222{bottom:0.000000px;}
.y5_c00222{bottom:5.040000px;}
.y1_c00222{bottom:12.735000px;}
.y3_c00222{bottom:45.045000px;}
.y4_c00222{bottom:52.740000px;}
.y20_c00222{bottom:146.565000px;}
.y1f_c00222{bottom:182.565000px;}
.y1e_c00222{bottom:218.565000px;}
.y1d_c00222{bottom:254.565000px;}
.y1c_c00222{bottom:290.565000px;}
.y1b_c00222{bottom:326.565000px;}
.y1a_c00222{bottom:362.565000px;}
.y19_c00222{bottom:398.565000px;}
.y18_c00222{bottom:434.565000px;}
.y17_c00222{bottom:470.565000px;}
.y16_c00222{bottom:506.565000px;}
.y15_c00222{bottom:542.565000px;}
.y14_c00222{bottom:578.565000px;}
.y13_c00222{bottom:614.565000px;}
.y12_c00222{bottom:650.565000px;}
.y11_c00222{bottom:686.565000px;}
.y10_c00222{bottom:722.565000px;}
.yf_c00222{bottom:758.565000px;}
.ye_c00222{bottom:794.565000px;}
.yd_c00222{bottom:830.565000px;}
.yc_c00222{bottom:866.565000px;}
.yb_c00222{bottom:902.565000px;}
.ya_c00222{bottom:938.565000px;}
.y9_c00222{bottom:974.565000px;}
.y8_c00222{bottom:1010.565000px;}
.y7_c00222{bottom:1046.565000px;}
.y6_c00222{bottom:1082.565000px;}
.y2_c00222{bottom:1165.365000px;}
.h4_c00222{height:20.880000px;}
.h6_c00222{height:70.628906px;}
.h5_c00222{height:70.664062px;}
.h7_c00222{height:71.824219px;}
.h3_c00222{height:74.004654px;}
.h2_c00222{height:1237.365000px;}
.h0_c00222{height:1262.835000px;}
.h1_c00222{height:1263.000000px;}
.w3_c00222{width:27.000000px;}
.w2_c00222{width:867.465000px;}
.w0_c00222{width:892.935000px;}
.w1_c00222{width:893.250000px;}
.x0_c00222{left:0.000000px;}
.x1_c00222{left:12.735000px;}
.x3_c00222{left:95.406300px;}
.x5_c00222{left:149.400150px;}
.x4_c00222{left:433.215000px;}
.x2_c00222{left:878.550300px;}
@media print{
.v0_c00222{vertical-align:0.000000pt;}
.ls1_c00222{letter-spacing:-0.012800pt;}
.ls0_c00222{letter-spacing:0.000000pt;}
.ws0_c00222{word-spacing:-0.064000pt;}
.ws1_c00222{word-spacing:0.000000pt;}
._3_c00222{width:1.024000pt;}
._9_c00222{width:1.913600pt;}
._0_c00222{width:3.936000pt;}
._1_c00222{width:5.235200pt;}
._4_c00222{width:6.393600pt;}
._5_c00222{width:7.712000pt;}
._2_c00222{width:8.787200pt;}
._6_c00222{width:9.760000pt;}
._7_c00222{width:10.809600pt;}
._8_c00222{width:11.718400pt;}
._a_c00222{width:14.387200pt;}
.fs1_c00222{font-size:57.600000pt;}
.fs0_c00222{font-size:64.000000pt;}
.y0_c00222{bottom:0.000000pt;}
.y5_c00222{bottom:4.480000pt;}
.y1_c00222{bottom:11.320000pt;}
.y3_c00222{bottom:40.040000pt;}
.y4_c00222{bottom:46.880000pt;}
.y20_c00222{bottom:130.280000pt;}
.y1f_c00222{bottom:162.280000pt;}
.y1e_c00222{bottom:194.280000pt;}
.y1d_c00222{bottom:226.280000pt;}
.y1c_c00222{bottom:258.280000pt;}
.y1b_c00222{bottom:290.280000pt;}
.y1a_c00222{bottom:322.280000pt;}
.y19_c00222{bottom:354.280000pt;}
.y18_c00222{bottom:386.280000pt;}
.y17_c00222{bottom:418.280000pt;}
.y16_c00222{bottom:450.280000pt;}
.y15_c00222{bottom:482.280000pt;}
.y14_c00222{bottom:514.280000pt;}
.y13_c00222{bottom:546.280000pt;}
.y12_c00222{bottom:578.280000pt;}
.y11_c00222{bottom:610.280000pt;}
.y10_c00222{bottom:642.280000pt;}
.yf_c00222{bottom:674.280000pt;}
.ye_c00222{bottom:706.280000pt;}
.yd_c00222{bottom:738.280000pt;}
.yc_c00222{bottom:770.280000pt;}
.yb_c00222{bottom:802.280000pt;}
.ya_c00222{bottom:834.280000pt;}
.y9_c00222{bottom:866.280000pt;}
.y8_c00222{bottom:898.280000pt;}
.y7_c00222{bottom:930.280000pt;}
.y6_c00222{bottom:962.280000pt;}
.y2_c00222{bottom:1035.880000pt;}
.h4_c00222{height:18.560000pt;}
.h6_c00222{height:62.781250pt;}
.h5_c00222{height:62.812500pt;}
.h7_c00222{height:63.843750pt;}
.h3_c00222{height:65.781915pt;}
.h2_c00222{height:1099.880000pt;}
.h0_c00222{height:1122.520000pt;}
.h1_c00222{height:1122.666667pt;}
.w3_c00222{width:24.000000pt;}
.w2_c00222{width:771.080000pt;}
.w0_c00222{width:793.720000pt;}
.w1_c00222{width:794.000000pt;}
.x0_c00222{left:0.000000pt;}
.x1_c00222{left:11.320000pt;}
.x3_c00222{left:84.805600pt;}
.x5_c00222{left:132.800133pt;}
.x4_c00222{left:385.080000pt;}
.x2_c00222{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f12b81ce22e46cd75c434f86.woff2')format("woff");}.ff1_c00223{font-family:ff1_c00223;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00223;src:url('chunks/assets/font_48516eb8339e8393526c6712.woff2')format("woff");}.ff2_c00223{font-family:ff2_c00223;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00223;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00223{font-family:ff3_c00223;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00223;src:url('chunks/assets/font_690b355e94f8b011560e989d.woff2')format("woff");}.ff4_c00223{font-family:ff4_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00223;src:url('chunks/assets/font_23263652a80c5b0bacb0242a.woff2')format("woff");}.ff5_c00223{font-family:ff5_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00223;src:url('chunks/assets/font_fd091d13b8e98e912065e2de.woff2')format("woff");}.ff6_c00223{font-family:ff6_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00223;src:url('chunks/assets/font_eaf456ed0a22dddc868c0b57.woff2')format("woff");}.ff7_c00223{font-family:ff7_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00223;src:url('chunks/assets/font_183d894f9b3ec8f6d042c7aa.woff2')format("woff");}.ff8_c00223{font-family:ff8_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00223;src:url('chunks/assets/font_99fa4ba35af93c6735e00bf9.woff2')format("woff");}.ff9_c00223{font-family:ff9_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00223;src:url('chunks/assets/font_abaea19b69226eda380383cc.woff2')format("woff");}.ffa_c00223{font-family:ffa_c00223;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00223;src:url('chunks/assets/font_5222b761d317f1d4927dee58.woff2')format("woff");}.ffb_c00223{font-family:ffb_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00223;src:url('chunks/assets/font_696b797b149bff74f798ce7a.woff2')format("woff");}.ffc_c00223{font-family:ffc_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00223;src:url('chunks/assets/font_fc6675043d244d1ff61ad04a.woff2')format("woff");}.ffd_c00223{font-family:ffd_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00223;src:url('chunks/assets/font_4b16502f2218a75fc2e42ee9.woff2')format("woff");}.ffe_c00223{font-family:ffe_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00223;src:url('chunks/assets/font_e01173606b20ca4da9c0b3fe.woff2')format("woff");}.fff_c00223{font-family:fff_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00223;src:url('chunks/assets/font_249c308ebee5eb072795c6d8.woff2')format("woff");}.ff10_c00223{font-family:ff10_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00223;src:url('chunks/assets/font_f8886eb19ca3a87f2f0f281d.woff2')format("woff");}.ff11_c00223{font-family:ff11_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00223;src:url('chunks/assets/font_eb412fc70330bc6e268dd6df.woff2')format("woff");}.ff12_c00223{font-family:ff12_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00223;src:url('chunks/assets/font_e3e7369fb8eb605521d2b694.woff2')format("woff");}.ff13_c00223{font-family:ff13_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00223;src:url('chunks/assets/font_cc88df5f6221894ac46f4fd6.woff2')format("woff");}.ff14_c00223{font-family:ff14_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00223;src:url('chunks/assets/font_df80dd043d3620be0b00f308.woff2')format("woff");}.ff15_c00223{font-family:ff15_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00223;src:url('chunks/assets/font_de249b0e12ed6aeab855195f.woff2')format("woff");}.ff16_c00223{font-family:ff16_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00223;src:url('chunks/assets/font_336fbdbc0bfd59e9d7a2088f.woff2')format("woff");}.ff17_c00223{font-family:ff17_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00223;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff18_c00223{font-family:ff18_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00223;src:url('chunks/assets/font_8265055bd9e523174122d94e.woff2')format("woff");}.ff19_c00223{font-family:ff19_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00223;src:url('chunks/assets/font_91be362d2e963ca641da65df.woff2')format("woff");}.ff1a_c00223{font-family:ff1a_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00223;src:url('chunks/assets/font_819c5140a85ab4cf7ae99dbe.woff2')format("woff");}.ff1b_c00223{font-family:ff1b_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00223;src:url('chunks/assets/font_77dae07f0b91414e138be600.woff2')format("woff");}.ff1c_c00223{font-family:ff1c_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00223;src:url('chunks/assets/font_04f446d596d79c4893013c03.woff2')format("woff");}.ff1d_c00223{font-family:ff1d_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00223;src:url('chunks/assets/font_d0decdd5dc0aa12f3d60629a.woff2')format("woff");}.ff1e_c00223{font-family:ff1e_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00223;src:url('chunks/assets/font_fd16f6af5f699ca43d1fec1a.woff2')format("woff");}.ff1f_c00223{font-family:ff1f_c00223;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00223;src:url('chunks/assets/font_86f3bacd919bfe82475a6277.woff2')format("woff");}.ff20_c00223{font-family:ff20_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00223;src:url('chunks/assets/font_33f6505ecf1887a1b1fdf394.woff2')format("woff");}.ff21_c00223{font-family:ff21_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00223;src:url('chunks/assets/font_e82b44ee0e878ec3c060c932.woff2')format("woff");}.ff22_c00223{font-family:ff22_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00223;src:url('chunks/assets/font_231c7b40411a2781f87316e7.woff2')format("woff");}.ff23_c00223{font-family:ff23_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00223;src:url('chunks/assets/font_653b846c72f23454bf308c1f.woff2')format("woff");}.ff24_c00223{font-family:ff24_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00223;src:url('chunks/assets/font_53490d234bc7e245c95adc45.woff2')format("woff");}.ff25_c00223{font-family:ff25_c00223;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:ff26_c00223;src:url('chunks/assets/font_3d62ce4b8439cee86b62fe2c.woff2')format("woff");}.ff26_c00223{font-family:ff26_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00223;src:url('chunks/assets/font_96f22978a06150e59153929b.woff2')format("woff");}.ff27_c00223{font-family:ff27_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00223;src:url('chunks/assets/font_0385722d591b00cdcf02a6fb.woff2')format("woff");}.ff28_c00223{font-family:ff28_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00223;src:url('chunks/assets/font_3eb9248c17916cb79471ef2f.woff2')format("woff");}.ff29_c00223{font-family:ff29_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00223;src:url('chunks/assets/font_4444b8e54fc1d7747b5924d4.woff2')format("woff");}.ff2a_c00223{font-family:ff2a_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00223;src:url('chunks/assets/font_935b29453cfb0288754124c7.woff2')format("woff");}.ff2b_c00223{font-family:ff2b_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00223;src:url('chunks/assets/font_119601d8dba868b79645274f.woff2')format("woff");}.ff2c_c00223{font-family:ff2c_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00223;src:url('chunks/assets/font_06a83fbff3e65f52841d9069.woff2')format("woff");}.ff2d_c00223{font-family:ff2d_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00223;src:url('chunks/assets/font_58f724701a283d4e87cecaf8.woff2')format("woff");}.ff2e_c00223{font-family:ff2e_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00223;src:url('chunks/assets/font_2c76c8db50067576c6ca6218.woff2')format("woff");}.ff2f_c00223{font-family:ff2f_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00223;src:url('chunks/assets/font_1d2f0fa5e00704aa33650cc6.woff2')format("woff");}.ff30_c00223{font-family:ff30_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00223;src:url('chunks/assets/font_59b5a8b5838942a0b5ba8d50.woff2')format("woff");}.ff31_c00223{font-family:ff31_c00223;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00223;src:url('chunks/assets/font_137521a304c356c4e5ce875e.woff2')format("woff");}.ff32_c00223{font-family:ff32_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00223;src:url('chunks/assets/font_7b4418446f76312f471520fe.woff2')format("woff");}.ff33_c00223{font-family:ff33_c00223;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00223;src:url('chunks/assets/font_a5345aa293bc97c63ff2f945.woff2')format("woff");}.ff34_c00223{font-family:ff34_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00223;src:url('chunks/assets/font_e0c4ebbc370248f181831580.woff2')format("woff");}.ff35_c00223{font-family:ff35_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00223;src:url('chunks/assets/font_b99915bcc33a094cc0c4581d.woff2')format("woff");}.ff36_c00223{font-family:ff36_c00223;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00223;src:url('chunks/assets/font_b481720fd9883b487a0acac3.woff2')format("woff");}.ff37_c00223{font-family:ff37_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00223;src:url('chunks/assets/font_743351bfeac4f1a312448865.woff2')format("woff");}.ff38_c00223{font-family:ff38_c00223;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00223;src:url('chunks/assets/font_ac4262d43f40f222fd75864b.woff2')format("woff");}.ff39_c00223{font-family:ff39_c00223;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00223;src:url('chunks/assets/font_17b1819b47b29553c0233598.woff2')format("woff");}.ff3a_c00223{font-family:ff3a_c00223;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls1_c00223{letter-spacing:0.000000px;}
.ls0_c00223{letter-spacing:22.053600px;}
.sc__c00223{text-shadow:none;}
.sc0_c00223{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00223{-webkit-text-stroke:0px transparent;}
.sc0_c00223{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00223{word-spacing:-0.072000px;}
.ws1_c00223{word-spacing:0.000000px;}
._6_c00223{width:1.137600px;}
._4_c00223{width:2.174400px;}
._1_c00223{width:4.773600px;}
._0_c00223{width:6.415200px;}
._b_c00223{width:9.244800px;}
._8_c00223{width:10.476000px;}
._9_c00223{width:12.571200px;}
._5_c00223{width:14.364000px;}
._2_c00223{width:15.458400px;}
._3_c00223{width:19.036800px;}
._7_c00223{width:21.009600px;}
._a_c00223{width:22.176000px;}
.fc2_c00223{color:transparent;}
.fc1_c00223{color:rgb(255,0,0);}
.fc0_c00223{color:rgb(0,0,0);}
.fs1_c00223{font-size:64.800000px;}
.fs0_c00223{font-size:72.000000px;}
.y0_c00223{bottom:0.000000px;}
.y5_c00223{bottom:5.040000px;}
.y1_c00223{bottom:12.735000px;}
.y3_c00223{bottom:45.045000px;}
.y4_c00223{bottom:52.740000px;}
.y21_c00223{bottom:110.565000px;}
.y20_c00223{bottom:146.565000px;}
.y1f_c00223{bottom:182.565000px;}
.y1e_c00223{bottom:218.565000px;}
.y1d_c00223{bottom:254.565000px;}
.y1c_c00223{bottom:290.565000px;}
.y1b_c00223{bottom:326.565000px;}
.y1a_c00223{bottom:362.565000px;}
.y19_c00223{bottom:398.565000px;}
.y18_c00223{bottom:434.565000px;}
.y17_c00223{bottom:470.565000px;}
.y16_c00223{bottom:506.565000px;}
.y15_c00223{bottom:542.565000px;}
.y14_c00223{bottom:578.565000px;}
.y13_c00223{bottom:614.565000px;}
.y12_c00223{bottom:650.565000px;}
.y11_c00223{bottom:686.565000px;}
.y10_c00223{bottom:722.565000px;}
.yf_c00223{bottom:758.565000px;}
.ye_c00223{bottom:794.565000px;}
.yd_c00223{bottom:830.565000px;}
.yc_c00223{bottom:866.565000px;}
.yb_c00223{bottom:902.565000px;}
.ya_c00223{bottom:938.565000px;}
.y9_c00223{bottom:974.565000px;}
.y8_c00223{bottom:1010.565000px;}
.y7_c00223{bottom:1046.565000px;}
.y6_c00223{bottom:1082.565000px;}
.y2_c00223{bottom:1165.365000px;}
.h4_c00223{height:20.880000px;}
.h6_c00223{height:70.628906px;}
.h5_c00223{height:70.664062px;}
.h7_c00223{height:71.824219px;}
.h3_c00223{height:74.004654px;}
.h2_c00223{height:1237.365000px;}
.h0_c00223{height:1262.835000px;}
.h1_c00223{height:1263.000000px;}
.w3_c00223{width:27.000000px;}
.w2_c00223{width:867.465000px;}
.w0_c00223{width:892.935000px;}
.w1_c00223{width:893.250000px;}
.x0_c00223{left:0.000000px;}
.x1_c00223{left:12.735000px;}
.x3_c00223{left:95.406300px;}
.x5_c00223{left:149.400150px;}
.x6_c00223{left:222.966150px;}
.x4_c00223{left:433.215000px;}
.x2_c00223{left:878.550300px;}
@media print{
.v0_c00223{vertical-align:0.000000pt;}
.ls1_c00223{letter-spacing:0.000000pt;}
.ls0_c00223{letter-spacing:19.603200pt;}
.ws0_c00223{word-spacing:-0.064000pt;}
.ws1_c00223{word-spacing:0.000000pt;}
._6_c00223{width:1.011200pt;}
._4_c00223{width:1.932800pt;}
._1_c00223{width:4.243200pt;}
._0_c00223{width:5.702400pt;}
._b_c00223{width:8.217600pt;}
._8_c00223{width:9.312000pt;}
._9_c00223{width:11.174400pt;}
._5_c00223{width:12.768000pt;}
._2_c00223{width:13.740800pt;}
._3_c00223{width:16.921600pt;}
._7_c00223{width:18.675200pt;}
._a_c00223{width:19.712000pt;}
.fs1_c00223{font-size:57.600000pt;}
.fs0_c00223{font-size:64.000000pt;}
.y0_c00223{bottom:0.000000pt;}
.y5_c00223{bottom:4.480000pt;}
.y1_c00223{bottom:11.320000pt;}
.y3_c00223{bottom:40.040000pt;}
.y4_c00223{bottom:46.880000pt;}
.y21_c00223{bottom:98.280000pt;}
.y20_c00223{bottom:130.280000pt;}
.y1f_c00223{bottom:162.280000pt;}
.y1e_c00223{bottom:194.280000pt;}
.y1d_c00223{bottom:226.280000pt;}
.y1c_c00223{bottom:258.280000pt;}
.y1b_c00223{bottom:290.280000pt;}
.y1a_c00223{bottom:322.280000pt;}
.y19_c00223{bottom:354.280000pt;}
.y18_c00223{bottom:386.280000pt;}
.y17_c00223{bottom:418.280000pt;}
.y16_c00223{bottom:450.280000pt;}
.y15_c00223{bottom:482.280000pt;}
.y14_c00223{bottom:514.280000pt;}
.y13_c00223{bottom:546.280000pt;}
.y12_c00223{bottom:578.280000pt;}
.y11_c00223{bottom:610.280000pt;}
.y10_c00223{bottom:642.280000pt;}
.yf_c00223{bottom:674.280000pt;}
.ye_c00223{bottom:706.280000pt;}
.yd_c00223{bottom:738.280000pt;}
.yc_c00223{bottom:770.280000pt;}
.yb_c00223{bottom:802.280000pt;}
.ya_c00223{bottom:834.280000pt;}
.y9_c00223{bottom:866.280000pt;}
.y8_c00223{bottom:898.280000pt;}
.y7_c00223{bottom:930.280000pt;}
.y6_c00223{bottom:962.280000pt;}
.y2_c00223{bottom:1035.880000pt;}
.h4_c00223{height:18.560000pt;}
.h6_c00223{height:62.781250pt;}
.h5_c00223{height:62.812500pt;}
.h7_c00223{height:63.843750pt;}
.h3_c00223{height:65.781915pt;}
.h2_c00223{height:1099.880000pt;}
.h0_c00223{height:1122.520000pt;}
.h1_c00223{height:1122.666667pt;}
.w3_c00223{width:24.000000pt;}
.w2_c00223{width:771.080000pt;}
.w0_c00223{width:793.720000pt;}
.w1_c00223{width:794.000000pt;}
.x0_c00223{left:0.000000pt;}
.x1_c00223{left:11.320000pt;}
.x3_c00223{left:84.805600pt;}
.x5_c00223{left:132.800133pt;}
.x6_c00223{left:198.192133pt;}
.x4_c00223{left:385.080000pt;}
.x2_c00223{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00224{font-family:ff1_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00224;src:url('chunks/assets/font_7e8c913d10767b91bbd72b8d.woff2')format("woff");}.ff2_c00224{font-family:ff2_c00224;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00224;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00224{font-family:ff3_c00224;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00224;src:url('chunks/assets/font_6645f3acb49dee01f1f0ceda.woff2')format("woff");}.ff4_c00224{font-family:ff4_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00224;src:url('chunks/assets/font_0e767facbd6ab75a607e1dfe.woff2')format("woff");}.ff5_c00224{font-family:ff5_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00224;src:url('chunks/assets/font_478a42a73db96da4590a33d4.woff2')format("woff");}.ff6_c00224{font-family:ff6_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00224;src:url('chunks/assets/font_87c38b6d1a226a533cd3a74c.woff2')format("woff");}.ff7_c00224{font-family:ff7_c00224;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00224;src:url('chunks/assets/font_72c6eb232f59c50282abcc7c.woff2')format("woff");}.ff8_c00224{font-family:ff8_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00224;src:url('chunks/assets/font_780692d8feccb4d0003ad69d.woff2')format("woff");}.ff9_c00224{font-family:ff9_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00224;src:url('chunks/assets/font_da0006a591d0ed13bcf073ff.woff2')format("woff");}.ffa_c00224{font-family:ffa_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00224;src:url('chunks/assets/font_c3a48e030eb874d275b7e863.woff2')format("woff");}.ffb_c00224{font-family:ffb_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00224;src:url('chunks/assets/font_e7723ca6efbe236b4125148c.woff2')format("woff");}.ffc_c00224{font-family:ffc_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00224;src:url('chunks/assets/font_c5ae817cbbe140535d8dc4dd.woff2')format("woff");}.ffd_c00224{font-family:ffd_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00224;src:url('chunks/assets/font_ceea9ab4e3df2eecd36d30da.woff2')format("woff");}.ffe_c00224{font-family:ffe_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00224;src:url('chunks/assets/font_f44653fa5dac4222ce038232.woff2')format("woff");}.fff_c00224{font-family:fff_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00224;src:url('chunks/assets/font_7e068f473731901e66a5e8f7.woff2')format("woff");}.ff10_c00224{font-family:ff10_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00224;src:url('chunks/assets/font_1d711d3cde3f9a57348b8767.woff2')format("woff");}.ff11_c00224{font-family:ff11_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00224;src:url('chunks/assets/font_2b73e89776b17713d5db5e62.woff2')format("woff");}.ff12_c00224{font-family:ff12_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00224;src:url('chunks/assets/font_33633bce1a653452d7e494a7.woff2')format("woff");}.ff13_c00224{font-family:ff13_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00224;src:url('chunks/assets/font_6f878338d619911a00d89a95.woff2')format("woff");}.ff14_c00224{font-family:ff14_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00224;src:url('chunks/assets/font_2dd62109dd079cb81f79ae09.woff2')format("woff");}.ff15_c00224{font-family:ff15_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00224;src:url('chunks/assets/font_07e62fee48b50311e4ceb4ff.woff2')format("woff");}.ff16_c00224{font-family:ff16_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00224;src:url('chunks/assets/font_a94b366b6dbf1c98b8d69505.woff2')format("woff");}.ff17_c00224{font-family:ff17_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00224;src:url('chunks/assets/font_1cce0fcd1bceee1319c6c9bb.woff2')format("woff");}.ff18_c00224{font-family:ff18_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00224;src:url('chunks/assets/font_836c58e6d1e86c5c0e60bab9.woff2')format("woff");}.ff19_c00224{font-family:ff19_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00224;src:url('chunks/assets/font_a3fe958082e2adc1174a716a.woff2')format("woff");}.ff1a_c00224{font-family:ff1a_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00224;src:url('chunks/assets/font_cb15f27b5f5ffbeaefd4182c.woff2')format("woff");}.ff1b_c00224{font-family:ff1b_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00224;src:url('chunks/assets/font_3f32f2d6223046c58d609a12.woff2')format("woff");}.ff1c_c00224{font-family:ff1c_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00224;src:url('chunks/assets/font_a746d4901b1a2bba74fe8f61.woff2')format("woff");}.ff1d_c00224{font-family:ff1d_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00224;src:url('chunks/assets/font_7500fcd3326f5b08b5b84144.woff2')format("woff");}.ff1e_c00224{font-family:ff1e_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00224;src:url('chunks/assets/font_7112879c2677d3dc2e5330ec.woff2')format("woff");}.ff1f_c00224{font-family:ff1f_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00224;src:url('chunks/assets/font_e4d59fdc0e35dd45ca177c15.woff2')format("woff");}.ff20_c00224{font-family:ff20_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00224;src:url('chunks/assets/font_0a4150f3d766606bcd1c8c8e.woff2')format("woff");}.ff21_c00224{font-family:ff21_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00224;src:url('chunks/assets/font_39accb1a871f58ba9e60e279.woff2')format("woff");}.ff22_c00224{font-family:ff22_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00224;src:url('chunks/assets/font_30d4302c6ad0b6e08fa01fee.woff2')format("woff");}.ff23_c00224{font-family:ff23_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00224;src:url('chunks/assets/font_48c83a7939a96c55f5a844e1.woff2')format("woff");}.ff24_c00224{font-family:ff24_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00224;src:url('chunks/assets/font_030329a86f6e54b8e0f92ade.woff2')format("woff");}.ff25_c00224{font-family:ff25_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00224;src:url('chunks/assets/font_fcb008fef8a850350ae40787.woff2')format("woff");}.ff26_c00224{font-family:ff26_c00224;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:ff27_c00224;src:url('chunks/assets/font_2d5c4326cc37d5203a7e6757.woff2')format("woff");}.ff27_c00224{font-family:ff27_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00224;src:url('chunks/assets/font_1e65827d6fb2d2f65f8ee374.woff2')format("woff");}.ff28_c00224{font-family:ff28_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00224;src:url('chunks/assets/font_6587b5e9866c18f86d5514c6.woff2')format("woff");}.ff29_c00224{font-family:ff29_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00224;src:url('chunks/assets/font_abe187782deae2ebc5c941f9.woff2')format("woff");}.ff2a_c00224{font-family:ff2a_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00224;src:url('chunks/assets/font_8fe2c8c9c4c00fd733510a4e.woff2')format("woff");}.ff2b_c00224{font-family:ff2b_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00224;src:url('chunks/assets/font_7ccb08ca5871fac05ce387ff.woff2')format("woff");}.ff2c_c00224{font-family:ff2c_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00224;src:url('chunks/assets/font_912566d749800f0f76a9227c.woff2')format("woff");}.ff2d_c00224{font-family:ff2d_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00224;src:url('chunks/assets/font_2dc5a1dbaccc2f3bac1ab2eb.woff2')format("woff");}.ff2e_c00224{font-family:ff2e_c00224;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00224{letter-spacing:0.000000px;}
.ls0_c00224{letter-spacing:0.072000px;}
.sc__c00224{text-shadow:none;}
.sc0_c00224{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00224{-webkit-text-stroke:0px transparent;}
.sc0_c00224{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00224{word-spacing:-0.072000px;}
.ws1_c00224{word-spacing:0.000000px;}
._2_c00224{width:1.238400px;}
._b_c00224{width:2.419200px;}
._6_c00224{width:4.212000px;}
._4_c00224{width:5.781600px;}
._1_c00224{width:7.250400px;}
._5_c00224{width:8.884800px;}
._7_c00224{width:10.382400px;}
._8_c00224{width:12.204000px;}
._0_c00224{width:13.744800px;}
._3_c00224{width:16.956000px;}
._a_c00224{width:19.569600px;}
._9_c00224{width:26.049600px;}
.fc1_c00224{color:transparent;}
.fc0_c00224{color:rgb(0,0,0);}
.fs1_c00224{font-size:64.800000px;}
.fs0_c00224{font-size:72.000000px;}
.y0_c00224{bottom:0.000000px;}
.y5_c00224{bottom:5.040000px;}
.y1_c00224{bottom:12.735000px;}
.y3_c00224{bottom:45.045000px;}
.y4_c00224{bottom:52.740000px;}
.y21_c00224{bottom:110.565000px;}
.y20_c00224{bottom:146.565000px;}
.y1f_c00224{bottom:182.565000px;}
.y1e_c00224{bottom:218.565000px;}
.y1d_c00224{bottom:254.565000px;}
.y1c_c00224{bottom:290.565000px;}
.y1b_c00224{bottom:326.565000px;}
.y1a_c00224{bottom:362.565000px;}
.y19_c00224{bottom:398.565000px;}
.y18_c00224{bottom:434.565000px;}
.y17_c00224{bottom:470.565000px;}
.y16_c00224{bottom:506.565000px;}
.y15_c00224{bottom:542.565000px;}
.y14_c00224{bottom:578.565000px;}
.y13_c00224{bottom:614.565000px;}
.y12_c00224{bottom:650.565000px;}
.y11_c00224{bottom:686.565000px;}
.y10_c00224{bottom:722.565000px;}
.yf_c00224{bottom:758.565000px;}
.ye_c00224{bottom:794.565000px;}
.yd_c00224{bottom:830.565000px;}
.yc_c00224{bottom:866.565000px;}
.yb_c00224{bottom:902.565000px;}
.ya_c00224{bottom:938.565000px;}
.y9_c00224{bottom:974.565000px;}
.y8_c00224{bottom:1010.565000px;}
.y7_c00224{bottom:1046.565000px;}
.y6_c00224{bottom:1082.565000px;}
.y2_c00224{bottom:1165.365000px;}
.h4_c00224{height:20.880000px;}
.h3_c00224{height:70.664062px;}
.h6_c00224{height:71.824219px;}
.h5_c00224{height:74.004654px;}
.h2_c00224{height:1237.365000px;}
.h0_c00224{height:1262.835000px;}
.h1_c00224{height:1263.000000px;}
.w3_c00224{width:27.000000px;}
.w2_c00224{width:867.465000px;}
.w0_c00224{width:892.935000px;}
.w1_c00224{width:893.250000px;}
.x0_c00224{left:0.000000px;}
.x1_c00224{left:12.735000px;}
.x3_c00224{left:95.406300px;}
.x5_c00224{left:149.400150px;}
.x6_c00224{left:222.984150px;}
.x4_c00224{left:433.215000px;}
.x2_c00224{left:878.550300px;}
@media print{
.v0_c00224{vertical-align:0.000000pt;}
.ls1_c00224{letter-spacing:0.000000pt;}
.ls0_c00224{letter-spacing:0.064000pt;}
.ws0_c00224{word-spacing:-0.064000pt;}
.ws1_c00224{word-spacing:0.000000pt;}
._2_c00224{width:1.100800pt;}
._b_c00224{width:2.150400pt;}
._6_c00224{width:3.744000pt;}
._4_c00224{width:5.139200pt;}
._1_c00224{width:6.444800pt;}
._5_c00224{width:7.897600pt;}
._7_c00224{width:9.228800pt;}
._8_c00224{width:10.848000pt;}
._0_c00224{width:12.217600pt;}
._3_c00224{width:15.072000pt;}
._a_c00224{width:17.395200pt;}
._9_c00224{width:23.155200pt;}
.fs1_c00224{font-size:57.600000pt;}
.fs0_c00224{font-size:64.000000pt;}
.y0_c00224{bottom:0.000000pt;}
.y5_c00224{bottom:4.480000pt;}
.y1_c00224{bottom:11.320000pt;}
.y3_c00224{bottom:40.040000pt;}
.y4_c00224{bottom:46.880000pt;}
.y21_c00224{bottom:98.280000pt;}
.y20_c00224{bottom:130.280000pt;}
.y1f_c00224{bottom:162.280000pt;}
.y1e_c00224{bottom:194.280000pt;}
.y1d_c00224{bottom:226.280000pt;}
.y1c_c00224{bottom:258.280000pt;}
.y1b_c00224{bottom:290.280000pt;}
.y1a_c00224{bottom:322.280000pt;}
.y19_c00224{bottom:354.280000pt;}
.y18_c00224{bottom:386.280000pt;}
.y17_c00224{bottom:418.280000pt;}
.y16_c00224{bottom:450.280000pt;}
.y15_c00224{bottom:482.280000pt;}
.y14_c00224{bottom:514.280000pt;}
.y13_c00224{bottom:546.280000pt;}
.y12_c00224{bottom:578.280000pt;}
.y11_c00224{bottom:610.280000pt;}
.y10_c00224{bottom:642.280000pt;}
.yf_c00224{bottom:674.280000pt;}
.ye_c00224{bottom:706.280000pt;}
.yd_c00224{bottom:738.280000pt;}
.yc_c00224{bottom:770.280000pt;}
.yb_c00224{bottom:802.280000pt;}
.ya_c00224{bottom:834.280000pt;}
.y9_c00224{bottom:866.280000pt;}
.y8_c00224{bottom:898.280000pt;}
.y7_c00224{bottom:930.280000pt;}
.y6_c00224{bottom:962.280000pt;}
.y2_c00224{bottom:1035.880000pt;}
.h4_c00224{height:18.560000pt;}
.h3_c00224{height:62.812500pt;}
.h6_c00224{height:63.843750pt;}
.h5_c00224{height:65.781915pt;}
.h2_c00224{height:1099.880000pt;}
.h0_c00224{height:1122.520000pt;}
.h1_c00224{height:1122.666667pt;}
.w3_c00224{width:24.000000pt;}
.w2_c00224{width:771.080000pt;}
.w0_c00224{width:793.720000pt;}
.w1_c00224{width:794.000000pt;}
.x0_c00224{left:0.000000pt;}
.x1_c00224{left:11.320000pt;}
.x3_c00224{left:84.805600pt;}
.x5_c00224{left:132.800133pt;}
.x6_c00224{left:198.208133pt;}
.x4_c00224{left:385.080000pt;}
.x2_c00224{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00225{font-family:ff1_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00225;src:url('chunks/assets/font_cc734b407167d985f9ffcae2.woff2')format("woff");}.ff2_c00225{font-family:ff2_c00225;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00225;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00225{font-family:ff3_c00225;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00225;src:url('chunks/assets/font_e148c51e6635fc73af7beb01.woff2')format("woff");}.ff4_c00225{font-family:ff4_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00225;src:url('chunks/assets/font_b2e095d4d39a092a781818f4.woff2')format("woff");}.ff5_c00225{font-family:ff5_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00225;src:url('chunks/assets/font_37169912d8048647c94dbfea.woff2')format("woff");}.ff6_c00225{font-family:ff6_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00225;src:url('chunks/assets/font_3bd66742020615002040cae7.woff2')format("woff");}.ff7_c00225{font-family:ff7_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00225;src:url('chunks/assets/font_fed6f3471b50c6dcf0629c39.woff2')format("woff");}.ff8_c00225{font-family:ff8_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00225;src:url('chunks/assets/font_910798825299d662c7335603.woff2')format("woff");}.ff9_c00225{font-family:ff9_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00225;src:url('chunks/assets/font_d504abcb50381987637a29f4.woff2')format("woff");}.ffa_c00225{font-family:ffa_c00225;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00225;src:url('chunks/assets/font_c01176e313cb713eba14efca.woff2')format("woff");}.ffb_c00225{font-family:ffb_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00225;src:url('chunks/assets/font_75ab6df7febb8b8719d6169d.woff2')format("woff");}.ffc_c00225{font-family:ffc_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00225;src:url('chunks/assets/font_324481b088cb37968a6c2234.woff2')format("woff");}.ffd_c00225{font-family:ffd_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00225;src:url('chunks/assets/font_5e0a2370d73480a36fe357be.woff2')format("woff");}.ffe_c00225{font-family:ffe_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00225;src:url('chunks/assets/font_53ab52761f489641471122dd.woff2')format("woff");}.fff_c00225{font-family:fff_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00225;src:url('chunks/assets/font_3febeceab6b59853aaf5fdf7.woff2')format("woff");}.ff10_c00225{font-family:ff10_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00225;src:url('chunks/assets/font_227e9b7f1822260aebdd151e.woff2')format("woff");}.ff11_c00225{font-family:ff11_c00225;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:ff12_c00225;src:url('chunks/assets/font_c33c54a68803ee655b12b7ee.woff2')format("woff");}.ff12_c00225{font-family:ff12_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00225;src:url('chunks/assets/font_66e28fc99c1ccb122f372ef1.woff2')format("woff");}.ff13_c00225{font-family:ff13_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00225;src:url('chunks/assets/font_58960884bb457ae91d673e78.woff2')format("woff");}.ff14_c00225{font-family:ff14_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00225;src:url('chunks/assets/font_07ca12d822e9427c44ba2214.woff2')format("woff");}.ff15_c00225{font-family:ff15_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00225;src:url('chunks/assets/font_4138008155ea7d924e7a5d31.woff2')format("woff");}.ff16_c00225{font-family:ff16_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00225;src:url('chunks/assets/font_0d1f100653683dc0ff78c86b.woff2')format("woff");}.ff17_c00225{font-family:ff17_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00225;src:url('chunks/assets/font_fb2b96a836efaf94f19b5dca.woff2')format("woff");}.ff18_c00225{font-family:ff18_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00225;src:url('chunks/assets/font_eb29c289ce4c114480aa174f.woff2')format("woff");}.ff19_c00225{font-family:ff19_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00225;src:url('chunks/assets/font_6cfa6972bd193a78773ae992.woff2')format("woff");}.ff1a_c00225{font-family:ff1a_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00225;src:url('chunks/assets/font_c5a9a04c019ff4b53af855d4.woff2')format("woff");}.ff1b_c00225{font-family:ff1b_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00225;src:url('chunks/assets/font_e9cff95714f153589c35d5f4.woff2')format("woff");}.ff1c_c00225{font-family:ff1c_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00225;src:url('chunks/assets/font_565190ed04b474cc490054de.woff2')format("woff");}.ff1d_c00225{font-family:ff1d_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00225;src:url('chunks/assets/font_5d3bd317a538d7277627d3ac.woff2')format("woff");}.ff1e_c00225{font-family:ff1e_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00225;src:url('chunks/assets/font_e97c07b107f3d91a2d1de22f.woff2')format("woff");}.ff1f_c00225{font-family:ff1f_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00225;src:url('chunks/assets/font_cb15f27b5f5ffbeaefd4182c.woff2')format("woff");}.ff20_c00225{font-family:ff20_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00225;src:url('chunks/assets/font_ed4a6e6296f331d8c7f1c967.woff2')format("woff");}.ff21_c00225{font-family:ff21_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:ff22_c00225;src:url('chunks/assets/font_2f78107acd17c9d746512b04.woff2')format("woff");}.ff22_c00225{font-family:ff22_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:ff23_c00225;src:url('chunks/assets/font_b62309de9594b81c412eb0f2.woff2')format("woff");}.ff23_c00225{font-family:ff23_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00225;src:url('chunks/assets/font_ebe6d0f8833096899cb3c6ba.woff2')format("woff");}.ff24_c00225{font-family:ff24_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00225;src:url('chunks/assets/font_41fb680ae791166ff906ffd5.woff2')format("woff");}.ff25_c00225{font-family:ff25_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00225;src:url('chunks/assets/font_3a4ae27071acadc35ced3d60.woff2')format("woff");}.ff26_c00225{font-family:ff26_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00225;src:url('chunks/assets/font_e9c53ca39746e9bbea3972a9.woff2')format("woff");}.ff27_c00225{font-family:ff27_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00225;src:url('chunks/assets/font_583968875a2d93a541833fb3.woff2')format("woff");}.ff28_c00225{font-family:ff28_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00225;src:url('chunks/assets/font_d487f83f22249cf0edac2516.woff2')format("woff");}.ff29_c00225{font-family:ff29_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00225;src:url('chunks/assets/font_96d29745f176a1afbf234c96.woff2')format("woff");}.ff2a_c00225{font-family:ff2a_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00225;src:url('chunks/assets/font_05af4186100276a2dfc92c4d.woff2')format("woff");}.ff2b_c00225{font-family:ff2b_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00225;src:url('chunks/assets/font_a0c006e32b9a2d46e5df77c9.woff2')format("woff");}.ff2c_c00225{font-family:ff2c_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00225;src:url('chunks/assets/font_e25407eb9864983d9e858b59.woff2')format("woff");}.ff2d_c00225{font-family:ff2d_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00225;src:url('chunks/assets/font_d1a7a950bb6d9ac037f7ea5e.woff2')format("woff");}.ff2e_c00225{font-family:ff2e_c00225;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00225{letter-spacing:0.000000px;}
.ls0_c00225{letter-spacing:0.072000px;}
.ls2_c00225{letter-spacing:6.652800px;}
.sc__c00225{text-shadow:none;}
.sc0_c00225{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00225{-webkit-text-stroke:0px transparent;}
.sc0_c00225{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00225{word-spacing:-0.072000px;}
.ws1_c00225{word-spacing:0.000000px;}
._c_c00225{margin-left:-7.560000px;}
._b_c00225{margin-left:-6.264000px;}
._1_c00225{width:1.029600px;}
._a_c00225{width:2.325600px;}
._d_c00225{width:3.384000px;}
._e_c00225{width:4.514400px;}
._3_c00225{width:5.716800px;}
._9_c00225{width:6.724800px;}
._4_c00225{width:7.754400px;}
._8_c00225{width:8.877600px;}
._2_c00225{width:9.878400px;}
._5_c00225{width:11.260800px;}
._6_c00225{width:13.327200px;}
._7_c00225{width:14.421600px;}
._0_c00225{width:19.663200px;}
._f_c00225{width:37.857600px;}
.fc1_c00225{color:transparent;}
.fc0_c00225{color:rgb(0,0,0);}
.fs1_c00225{font-size:64.800000px;}
.fs0_c00225{font-size:72.000000px;}
.y0_c00225{bottom:0.000000px;}
.y5_c00225{bottom:5.040000px;}
.y1_c00225{bottom:12.735000px;}
.y3_c00225{bottom:45.045000px;}
.y4_c00225{bottom:52.740000px;}
.y21_c00225{bottom:110.565000px;}
.y20_c00225{bottom:146.565000px;}
.y1f_c00225{bottom:182.565000px;}
.y1e_c00225{bottom:218.565000px;}
.y1d_c00225{bottom:254.565000px;}
.y1c_c00225{bottom:290.565000px;}
.y1b_c00225{bottom:326.565000px;}
.y1a_c00225{bottom:362.565000px;}
.y19_c00225{bottom:398.565000px;}
.y18_c00225{bottom:434.565000px;}
.y17_c00225{bottom:470.565000px;}
.y16_c00225{bottom:506.565000px;}
.y15_c00225{bottom:542.565000px;}
.y14_c00225{bottom:578.565000px;}
.y13_c00225{bottom:614.565000px;}
.y12_c00225{bottom:650.565000px;}
.y11_c00225{bottom:686.565000px;}
.y10_c00225{bottom:722.565000px;}
.yf_c00225{bottom:758.565000px;}
.ye_c00225{bottom:794.565000px;}
.yd_c00225{bottom:830.565000px;}
.yc_c00225{bottom:866.565000px;}
.yb_c00225{bottom:902.565000px;}
.ya_c00225{bottom:938.565000px;}
.y9_c00225{bottom:974.565000px;}
.y8_c00225{bottom:1010.565000px;}
.y7_c00225{bottom:1046.565000px;}
.y6_c00225{bottom:1082.565000px;}
.y2_c00225{bottom:1165.365000px;}
.h4_c00225{height:20.880000px;}
.h3_c00225{height:70.664062px;}
.h5_c00225{height:74.004654px;}
.h2_c00225{height:1237.365000px;}
.h0_c00225{height:1262.835000px;}
.h1_c00225{height:1263.000000px;}
.w3_c00225{width:27.000000px;}
.w2_c00225{width:867.465000px;}
.w0_c00225{width:892.935000px;}
.w1_c00225{width:893.250000px;}
.x0_c00225{left:0.000000px;}
.x1_c00225{left:12.735000px;}
.x3_c00225{left:95.406300px;}
.x5_c00225{left:149.400150px;}
.x4_c00225{left:433.215000px;}
.x2_c00225{left:878.550300px;}
@media print{
.v0_c00225{vertical-align:0.000000pt;}
.ls1_c00225{letter-spacing:0.000000pt;}
.ls0_c00225{letter-spacing:0.064000pt;}
.ls2_c00225{letter-spacing:5.913600pt;}
.ws0_c00225{word-spacing:-0.064000pt;}
.ws1_c00225{word-spacing:0.000000pt;}
._c_c00225{margin-left:-6.720000pt;}
._b_c00225{margin-left:-5.568000pt;}
._1_c00225{width:0.915200pt;}
._a_c00225{width:2.067200pt;}
._d_c00225{width:3.008000pt;}
._e_c00225{width:4.012800pt;}
._3_c00225{width:5.081600pt;}
._9_c00225{width:5.977600pt;}
._4_c00225{width:6.892800pt;}
._8_c00225{width:7.891200pt;}
._2_c00225{width:8.780800pt;}
._5_c00225{width:10.009600pt;}
._6_c00225{width:11.846400pt;}
._7_c00225{width:12.819200pt;}
._0_c00225{width:17.478400pt;}
._f_c00225{width:33.651200pt;}
.fs1_c00225{font-size:57.600000pt;}
.fs0_c00225{font-size:64.000000pt;}
.y0_c00225{bottom:0.000000pt;}
.y5_c00225{bottom:4.480000pt;}
.y1_c00225{bottom:11.320000pt;}
.y3_c00225{bottom:40.040000pt;}
.y4_c00225{bottom:46.880000pt;}
.y21_c00225{bottom:98.280000pt;}
.y20_c00225{bottom:130.280000pt;}
.y1f_c00225{bottom:162.280000pt;}
.y1e_c00225{bottom:194.280000pt;}
.y1d_c00225{bottom:226.280000pt;}
.y1c_c00225{bottom:258.280000pt;}
.y1b_c00225{bottom:290.280000pt;}
.y1a_c00225{bottom:322.280000pt;}
.y19_c00225{bottom:354.280000pt;}
.y18_c00225{bottom:386.280000pt;}
.y17_c00225{bottom:418.280000pt;}
.y16_c00225{bottom:450.280000pt;}
.y15_c00225{bottom:482.280000pt;}
.y14_c00225{bottom:514.280000pt;}
.y13_c00225{bottom:546.280000pt;}
.y12_c00225{bottom:578.280000pt;}
.y11_c00225{bottom:610.280000pt;}
.y10_c00225{bottom:642.280000pt;}
.yf_c00225{bottom:674.280000pt;}
.ye_c00225{bottom:706.280000pt;}
.yd_c00225{bottom:738.280000pt;}
.yc_c00225{bottom:770.280000pt;}
.yb_c00225{bottom:802.280000pt;}
.ya_c00225{bottom:834.280000pt;}
.y9_c00225{bottom:866.280000pt;}
.y8_c00225{bottom:898.280000pt;}
.y7_c00225{bottom:930.280000pt;}
.y6_c00225{bottom:962.280000pt;}
.y2_c00225{bottom:1035.880000pt;}
.h4_c00225{height:18.560000pt;}
.h3_c00225{height:62.812500pt;}
.h5_c00225{height:65.781915pt;}
.h2_c00225{height:1099.880000pt;}
.h0_c00225{height:1122.520000pt;}
.h1_c00225{height:1122.666667pt;}
.w3_c00225{width:24.000000pt;}
.w2_c00225{width:771.080000pt;}
.w0_c00225{width:793.720000pt;}
.w1_c00225{width:794.000000pt;}
.x0_c00225{left:0.000000pt;}
.x1_c00225{left:11.320000pt;}
.x3_c00225{left:84.805600pt;}
.x5_c00225{left:132.800133pt;}
.x4_c00225{left:385.080000pt;}
.x2_c00225{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00226{font-family:ff1_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:ff2_c00226;src:url('chunks/assets/font_cb88b940f15bb0fd2eb52194.woff2')format("woff");}.ff2_c00226{font-family:ff2_c00226;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00226;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00226{font-family:ff3_c00226;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00226;src:url('chunks/assets/font_1d6966c8977e4ec7c9cfe176.woff2')format("woff");}.ff4_c00226{font-family:ff4_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:ff5_c00226;src:url('chunks/assets/font_ee5be307b731510c26bbfe97.woff2')format("woff");}.ff5_c00226{font-family:ff5_c00226;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00226;src:url('chunks/assets/font_884a49e755ee969f0875739a.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_37f38fc87994cfa6496dd288.woff2')format("woff");}.ff7_c00226{font-family:ff7_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:ff8_c00226;src:url('chunks/assets/font_f4addbdf8e11153a99f9b2bc.woff2')format("woff");}.ff8_c00226{font-family:ff8_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:ff9_c00226;src:url('chunks/assets/font_5a59a6ace61d36c401aafb93.woff2')format("woff");}.ff9_c00226{font-family:ff9_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:ffa_c00226;src:url('chunks/assets/font_9370c30e1c142f4f6ccf3981.woff2')format("woff");}.ffa_c00226{font-family:ffa_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:ffb_c00226;src:url('chunks/assets/font_7fd2ac384714eef7f6d20c4f.woff2')format("woff");}.ffb_c00226{font-family:ffb_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:ffc_c00226;src:url('chunks/assets/font_0b7c754c7a4de7ae1ff737cf.woff2')format("woff");}.ffc_c00226{font-family:ffc_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:ffd_c00226;src:url('chunks/assets/font_85ac12e36706e3b46915f07a.woff2')format("woff");}.ffd_c00226{font-family:ffd_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:ffe_c00226;src:url('chunks/assets/font_06c063d6b31341962fe666bb.woff2')format("woff");}.ffe_c00226{font-family:ffe_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:fff_c00226;src:url('chunks/assets/font_55f1a95743486a999d821119.woff2')format("woff");}.fff_c00226{font-family:fff_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:ff10_c00226;src:url('chunks/assets/font_d9d9116e04401a1f1645c56f.woff2')format("woff");}.ff10_c00226{font-family:ff10_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:ff11_c00226;src:url('chunks/assets/font_832cb866992c482aacb3d8fe.woff2')format("woff");}.ff11_c00226{font-family:ff11_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:ff12_c00226;src:url('chunks/assets/font_032ba36a95fe03cd6fec1619.woff2')format("woff");}.ff12_c00226{font-family:ff12_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:ff13_c00226;src:url('chunks/assets/font_2506bd89468c16b659e62672.woff2')format("woff");}.ff13_c00226{font-family:ff13_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:ff14_c00226;src:url('chunks/assets/font_97a63f429e88c131ed125b2f.woff2')format("woff");}.ff14_c00226{font-family:ff14_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:ff15_c00226;src:url('chunks/assets/font_c9e74796c1d983b9042729e3.woff2')format("woff");}.ff15_c00226{font-family:ff15_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:ff16_c00226;src:url('chunks/assets/font_3859f2e83d224a5b9af31734.woff2')format("woff");}.ff16_c00226{font-family:ff16_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:ff17_c00226;src:url('chunks/assets/font_d1952b05985db18fd8e36170.woff2')format("woff");}.ff17_c00226{font-family:ff17_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:ff18_c00226;src:url('chunks/assets/font_3ad5c06e1898610cb20f55e6.woff2')format("woff");}.ff18_c00226{font-family:ff18_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:ff19_c00226;src:url('chunks/assets/font_a6755aa38ae57fb197a534e4.woff2')format("woff");}.ff19_c00226{font-family:ff19_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:ff1a_c00226;src:url('chunks/assets/font_c4c3d751b85ec35df184f844.woff2')format("woff");}.ff1a_c00226{font-family:ff1a_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:ff1b_c00226;src:url('chunks/assets/font_c89c834863044a8b39e5c239.woff2')format("woff");}.ff1b_c00226{font-family:ff1b_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:ff1c_c00226;src:url('chunks/assets/font_479aa13e2607a65db0553bb9.woff2')format("woff");}.ff1c_c00226{font-family:ff1c_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:ff1d_c00226;src:url('chunks/assets/font_a45b9e0f79bd734d53182d90.woff2')format("woff");}.ff1d_c00226{font-family:ff1d_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:ff1e_c00226;src:url('chunks/assets/font_35323a3226245e5167bd9a59.woff2')format("woff");}.ff1e_c00226{font-family:ff1e_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:ff1f_c00226;src:url('chunks/assets/font_853fa5ffe230cdd6d98b5aab.woff2')format("woff");}.ff1f_c00226{font-family:ff1f_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:ff20_c00226;src:url('chunks/assets/font_34b02e9b0ab1d6fac59db87a.woff2')format("woff");}.ff20_c00226{font-family:ff20_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:ff21_c00226;src:url('chunks/assets/font_2cfab9addcff3bbf82ec1e67.woff2')format("woff");}.ff21_c00226{font-family:ff21_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:ff22_c00226;src:url('chunks/assets/font_922ae2c6f2e43d1a8e8cf675.woff2')format("woff");}.ff22_c00226{font-family:ff22_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:ff23_c00226;src:url('chunks/assets/font_81ac2e3640379dfe9d334a43.woff2')format("woff");}.ff23_c00226{font-family:ff23_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:ff24_c00226;src:url('chunks/assets/font_3165a6e1d7931bc1006e0b1f.woff2')format("woff");}.ff24_c00226{font-family:ff24_c00226;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00226;src:url('chunks/assets/font_63acaa4caa62c5167e658659.woff2')format("woff");}.ff25_c00226{font-family:ff25_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:ff26_c00226;src:url('chunks/assets/font_f6d30f4ea6355c7b9384b12d.woff2')format("woff");}.ff26_c00226{font-family:ff26_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:ff27_c00226;src:url('chunks/assets/font_26e900821e6d370ae15c6bfd.woff2')format("woff");}.ff27_c00226{font-family:ff27_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:ff28_c00226;src:url('chunks/assets/font_dc580e39abe726396a67b480.woff2')format("woff");}.ff28_c00226{font-family:ff28_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:ff29_c00226;src:url('chunks/assets/font_adf863e6ff7919702683bebb.woff2')format("woff");}.ff29_c00226{font-family:ff29_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;}
.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;}
.ls1_c00226{letter-spacing:0.000000px;}
.ls2_c00226{letter-spacing:0.036000px;}
.ls0_c00226{letter-spacing:0.072000px;}
.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;}
}
.ws0_c00226{word-spacing:-0.072000px;}
.ws1_c00226{word-spacing:0.000000px;}
._2_c00226{width:1.238400px;}
._8_c00226{width:2.700000px;}
._6_c00226{width:4.276800px;}
._0_c00226{width:6.775200px;}
._1_c00226{width:8.085600px;}
._a_c00226{width:10.051200px;}
._7_c00226{width:12.340800px;}
._5_c00226{width:13.420800px;}
._b_c00226{width:19.058400px;}
._9_c00226{width:20.224800px;}
._c_c00226{width:21.254400px;}
._d_c00226{width:27.648000px;}
._3_c00226{width:31.471200px;}
._4_c00226{width:38.484000px;}
.fc1_c00226{color:transparent;}
.fc0_c00226{color:rgb(0,0,0);}
.fs1_c00226{font-size:64.800000px;}
.fs0_c00226{font-size:72.000000px;}
.y0_c00226{bottom:0.000000px;}
.y5_c00226{bottom:5.040000px;}
.y1_c00226{bottom:12.735000px;}
.y3_c00226{bottom:45.045000px;}
.y4_c00226{bottom:52.740000px;}
.y21_c00226{bottom:110.565000px;}
.y20_c00226{bottom:146.565000px;}
.y1f_c00226{bottom:182.565000px;}
.y1e_c00226{bottom:218.565000px;}
.y1d_c00226{bottom:254.565000px;}
.y1c_c00226{bottom:290.565000px;}
.y1b_c00226{bottom:326.565000px;}
.y1a_c00226{bottom:362.565000px;}
.y19_c00226{bottom:398.565000px;}
.y18_c00226{bottom:434.565000px;}
.y17_c00226{bottom:470.565000px;}
.y16_c00226{bottom:506.565000px;}
.y15_c00226{bottom:542.565000px;}
.y14_c00226{bottom:578.565000px;}
.y13_c00226{bottom:614.565000px;}
.y12_c00226{bottom:650.565000px;}
.y11_c00226{bottom:686.565000px;}
.y10_c00226{bottom:722.565000px;}
.yf_c00226{bottom:758.565000px;}
.ye_c00226{bottom:794.565000px;}
.yd_c00226{bottom:830.565000px;}
.yc_c00226{bottom:866.565000px;}
.yb_c00226{bottom:902.565000px;}
.ya_c00226{bottom:938.565000px;}
.y9_c00226{bottom:974.565000px;}
.y8_c00226{bottom:1010.565000px;}
.y7_c00226{bottom:1046.565000px;}
.y6_c00226{bottom:1082.565000px;}
.y2_c00226{bottom:1165.365000px;}
.h4_c00226{height:20.880000px;}
.h3_c00226{height:70.664062px;}
.h6_c00226{height:72.562500px;}
.h5_c00226{height:74.004654px;}
.h2_c00226{height:1237.365000px;}
.h0_c00226{height:1262.835000px;}
.h1_c00226{height:1263.000000px;}
.w3_c00226{width:27.000000px;}
.w2_c00226{width:867.465000px;}
.w0_c00226{width:892.935000px;}
.w1_c00226{width:893.250000px;}
.x0_c00226{left:0.000000px;}
.x1_c00226{left:12.735000px;}
.x3_c00226{left:95.406300px;}
.x5_c00226{left:149.400150px;}
.x4_c00226{left:433.215000px;}
.x2_c00226{left:878.550300px;}
@media print{
.v0_c00226{vertical-align:0.000000pt;}
.ls1_c00226{letter-spacing:0.000000pt;}
.ls2_c00226{letter-spacing:0.032000pt;}
.ls0_c00226{letter-spacing:0.064000pt;}
.ws0_c00226{word-spacing:-0.064000pt;}
.ws1_c00226{word-spacing:0.000000pt;}
._2_c00226{width:1.100800pt;}
._8_c00226{width:2.400000pt;}
._6_c00226{width:3.801600pt;}
._0_c00226{width:6.022400pt;}
._1_c00226{width:7.187200pt;}
._a_c00226{width:8.934400pt;}
._7_c00226{width:10.969600pt;}
._5_c00226{width:11.929600pt;}
._b_c00226{width:16.940800pt;}
._9_c00226{width:17.977600pt;}
._c_c00226{width:18.892800pt;}
._d_c00226{width:24.576000pt;}
._3_c00226{width:27.974400pt;}
._4_c00226{width:34.208000pt;}
.fs1_c00226{font-size:57.600000pt;}
.fs0_c00226{font-size:64.000000pt;}
.y0_c00226{bottom:0.000000pt;}
.y5_c00226{bottom:4.480000pt;}
.y1_c00226{bottom:11.320000pt;}
.y3_c00226{bottom:40.040000pt;}
.y4_c00226{bottom:46.880000pt;}
.y21_c00226{bottom:98.280000pt;}
.y20_c00226{bottom:130.280000pt;}
.y1f_c00226{bottom:162.280000pt;}
.y1e_c00226{bottom:194.280000pt;}
.y1d_c00226{bottom:226.280000pt;}
.y1c_c00226{bottom:258.280000pt;}
.y1b_c00226{bottom:290.280000pt;}
.y1a_c00226{bottom:322.280000pt;}
.y19_c00226{bottom:354.280000pt;}
.y18_c00226{bottom:386.280000pt;}
.y17_c00226{bottom:418.280000pt;}
.y16_c00226{bottom:450.280000pt;}
.y15_c00226{bottom:482.280000pt;}
.y14_c00226{bottom:514.280000pt;}
.y13_c00226{bottom:546.280000pt;}
.y12_c00226{bottom:578.280000pt;}
.y11_c00226{bottom:610.280000pt;}
.y10_c00226{bottom:642.280000pt;}
.yf_c00226{bottom:674.280000pt;}
.ye_c00226{bottom:706.280000pt;}
.yd_c00226{bottom:738.280000pt;}
.yc_c00226{bottom:770.280000pt;}
.yb_c00226{bottom:802.280000pt;}
.ya_c00226{bottom:834.280000pt;}
.y9_c00226{bottom:866.280000pt;}
.y8_c00226{bottom:898.280000pt;}
.y7_c00226{bottom:930.280000pt;}
.y6_c00226{bottom:962.280000pt;}
.y2_c00226{bottom:1035.880000pt;}
.h4_c00226{height:18.560000pt;}
.h3_c00226{height:62.812500pt;}
.h6_c00226{height:64.500000pt;}
.h5_c00226{height:65.781915pt;}
.h2_c00226{height:1099.880000pt;}
.h0_c00226{height:1122.520000pt;}
.h1_c00226{height:1122.666667pt;}
.w3_c00226{width:24.000000pt;}
.w2_c00226{width:771.080000pt;}
.w0_c00226{width:793.720000pt;}
.w1_c00226{width:794.000000pt;}
.x0_c00226{left:0.000000pt;}
.x1_c00226{left:11.320000pt;}
.x3_c00226{left:84.805600pt;}
.x5_c00226{left:132.800133pt;}
.x4_c00226{left:385.080000pt;}
.x2_c00226{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00227{font-family:ff1_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00227;src:url('chunks/assets/font_07535e02d92c96f2ff4451b5.woff2')format("woff");}.ff2_c00227{font-family:ff2_c00227;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00227;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00227{font-family:ff3_c00227;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00227;src:url('chunks/assets/font_d4dd7d9389f92a1dd68f1857.woff2')format("woff");}.ff4_c00227{font-family:ff4_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00227;src:url('chunks/assets/font_d51a95aa39c14b86a76cfe27.woff2')format("woff");}.ff5_c00227{font-family:ff5_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00227;src:url('chunks/assets/font_18cec3d81560ac272de58c88.woff2')format("woff");}.ff6_c00227{font-family:ff6_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:ff7_c00227;src:url('chunks/assets/font_7f171f071f84acaa096654a0.woff2')format("woff");}.ff7_c00227{font-family:ff7_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00227;src:url('chunks/assets/font_a77aeb9fba96ad3d06084f33.woff2')format("woff");}.ff8_c00227{font-family:ff8_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00227;src:url('chunks/assets/font_81582dc3a57ca27f4605590b.woff2')format("woff");}.ff9_c00227{font-family:ff9_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00227;src:url('chunks/assets/font_ce21ef2b5952aa8ff705d40d.woff2')format("woff");}.ffa_c00227{font-family:ffa_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00227;src:url('chunks/assets/font_2e80ad35e643ce9022d97da0.woff2')format("woff");}.ffb_c00227{font-family:ffb_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00227;src:url('chunks/assets/font_de39ad47a202ddf3b5068b90.woff2')format("woff");}.ffc_c00227{font-family:ffc_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00227;src:url('chunks/assets/font_b9212f6d7ce3981ecdf66750.woff2')format("woff");}.ffd_c00227{font-family:ffd_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00227;src:url('chunks/assets/font_a84b4b107af734f15720cba3.woff2')format("woff");}.ffe_c00227{font-family:ffe_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00227;src:url('chunks/assets/font_d49a4a1a91a4ab6c0f95b939.woff2')format("woff");}.fff_c00227{font-family:fff_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00227;src:url('chunks/assets/font_da7edee3e3cef4a4eeecd574.woff2')format("woff");}.ff10_c00227{font-family:ff10_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00227;src:url('chunks/assets/font_31fb8808a7fbc6e7c6f6c674.woff2')format("woff");}.ff11_c00227{font-family:ff11_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00227;src:url('chunks/assets/font_0569213c56bea128d620b7a4.woff2')format("woff");}.ff12_c00227{font-family:ff12_c00227;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:ff13_c00227;src:url('chunks/assets/font_c4f8b29a2d6cf0ef76eeca61.woff2')format("woff");}.ff13_c00227{font-family:ff13_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00227;src:url('chunks/assets/font_a3e4624aff39e885a9b568ac.woff2')format("woff");}.ff14_c00227{font-family:ff14_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00227;src:url('chunks/assets/font_2f0efda45f1cf5cc3b2928d6.woff2')format("woff");}.ff15_c00227{font-family:ff15_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00227;src:url('chunks/assets/font_7d77affb0fd7cb5e2f98126a.woff2')format("woff");}.ff16_c00227{font-family:ff16_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00227;src:url('chunks/assets/font_f3d6c593b90ae3a8bd31568d.woff2')format("woff");}.ff17_c00227{font-family:ff17_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00227;src:url('chunks/assets/font_678cf63c0687155f9e3b57cc.woff2')format("woff");}.ff18_c00227{font-family:ff18_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00227;src:url('chunks/assets/font_cb9e0454dc4cffa8d59b5ac7.woff2')format("woff");}.ff19_c00227{font-family:ff19_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00227;src:url('chunks/assets/font_60742e5024cb989e3771c303.woff2')format("woff");}.ff1a_c00227{font-family:ff1a_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00227;src:url('chunks/assets/font_8d661bf08c2f07b264ce8012.woff2')format("woff");}.ff1b_c00227{font-family:ff1b_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00227;src:url('chunks/assets/font_140dcf779b06c531975838c4.woff2')format("woff");}.ff1c_c00227{font-family:ff1c_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00227;src:url('chunks/assets/font_73e4ebcc7fb3bb2033993c13.woff2')format("woff");}.ff1d_c00227{font-family:ff1d_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00227;src:url('chunks/assets/font_59b722debd1a30f7156fe1e3.woff2')format("woff");}.ff1e_c00227{font-family:ff1e_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00227;src:url('chunks/assets/font_45aa0e5d3694de035d68dd17.woff2')format("woff");}.ff1f_c00227{font-family:ff1f_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00227;src:url('chunks/assets/font_14291ae1a610bd422e7c0aa1.woff2')format("woff");}.ff20_c00227{font-family:ff20_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00227;src:url('chunks/assets/font_18cec3d81560ac272de58c88.woff2')format("woff");}.ff21_c00227{font-family:ff21_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:ff22_c00227;src:url('chunks/assets/font_d22026b97d4ee8785f3f524e.woff2')format("woff");}.ff22_c00227{font-family:ff22_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00227;src:url('chunks/assets/font_e2805721d6f99b3e679a096b.woff2')format("woff");}.ff23_c00227{font-family:ff23_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00227;src:url('chunks/assets/font_18cec3d81560ac272de58c88.woff2')format("woff");}.ff24_c00227{font-family:ff24_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:ff25_c00227;src:url('chunks/assets/font_932173e77b12b4bd78e11a70.woff2')format("woff");}.ff25_c00227{font-family:ff25_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00227;src:url('chunks/assets/font_4426f0ecdb313c095d0704b0.woff2')format("woff");}.ff26_c00227{font-family:ff26_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00227;src:url('chunks/assets/font_bf47a068484338fdf8445252.woff2')format("woff");}.ff27_c00227{font-family:ff27_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00227;src:url('chunks/assets/font_15a9e82b1ea177aa9b3f3d6d.woff2')format("woff");}.ff28_c00227{font-family:ff28_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00227;src:url('chunks/assets/font_0b6244c09c993f69eddaf26d.woff2')format("woff");}.ff29_c00227{font-family:ff29_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00227;src:url('chunks/assets/font_fd43fa33eb9ca9df7836c071.woff2')format("woff");}.ff2a_c00227{font-family:ff2a_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00227;src:url('chunks/assets/font_5f1ad3aefe2739d1e39ddc48.woff2')format("woff");}.ff2b_c00227{font-family:ff2b_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00227;src:url('chunks/assets/font_18cec3d81560ac272de58c88.woff2')format("woff");}.ff2c_c00227{font-family:ff2c_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:ff2d_c00227;src:url('chunks/assets/font_14b126a2dd35fed498fb81f5.woff2')format("woff");}.ff2d_c00227{font-family:ff2d_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00227;src:url('chunks/assets/font_804745166705e478b1ed8d95.woff2')format("woff");}.ff2e_c00227{font-family:ff2e_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00227;src:url('chunks/assets/font_7121a65b81c9698cf7446f3b.woff2')format("woff");}.ff2f_c00227{font-family:ff2f_c00227;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00227;src:url('chunks/assets/font_052d40e1cde715507c05edbf.woff2')format("woff");}.ff30_c00227{font-family:ff30_c00227;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00227{letter-spacing:0.000000px;}
.ls1_c00227{letter-spacing:0.446400px;}
.sc__c00227{text-shadow:none;}
.sc0_c00227{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00227{-webkit-text-stroke:0px transparent;}
.sc0_c00227{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00227{word-spacing:-0.072000px;}
.ws1_c00227{word-spacing:0.000000px;}
._9_c00227{margin-left:-1.029600px;}
._7_c00227{width:1.900800px;}
._2_c00227{width:3.276000px;}
._5_c00227{width:4.298400px;}
._a_c00227{width:5.421600px;}
._3_c00227{width:6.703200px;}
._6_c00227{width:8.892000px;}
._0_c00227{width:11.354400px;}
._8_c00227{width:16.884000px;}
._4_c00227{width:20.613600px;}
._1_c00227{width:46.036800px;}
.fc1_c00227{color:transparent;}
.fc0_c00227{color:rgb(0,0,0);}
.fs1_c00227{font-size:64.800000px;}
.fs0_c00227{font-size:72.000000px;}
.y0_c00227{bottom:0.000000px;}
.y5_c00227{bottom:5.040000px;}
.y1_c00227{bottom:12.735000px;}
.y3_c00227{bottom:45.045000px;}
.y4_c00227{bottom:52.740000px;}
.y20_c00227{bottom:146.565000px;}
.y1f_c00227{bottom:182.565000px;}
.y1e_c00227{bottom:218.565000px;}
.y1d_c00227{bottom:254.565000px;}
.y1c_c00227{bottom:290.565000px;}
.y1b_c00227{bottom:326.565000px;}
.y1a_c00227{bottom:362.565000px;}
.y19_c00227{bottom:398.565000px;}
.y18_c00227{bottom:434.565000px;}
.y17_c00227{bottom:470.565000px;}
.y16_c00227{bottom:506.565000px;}
.y15_c00227{bottom:542.565000px;}
.y14_c00227{bottom:578.565000px;}
.y13_c00227{bottom:614.565000px;}
.y12_c00227{bottom:650.565000px;}
.y11_c00227{bottom:686.565000px;}
.y10_c00227{bottom:722.565000px;}
.yf_c00227{bottom:758.565000px;}
.ye_c00227{bottom:794.565000px;}
.yd_c00227{bottom:830.565000px;}
.yc_c00227{bottom:866.565000px;}
.yb_c00227{bottom:902.565000px;}
.ya_c00227{bottom:938.565000px;}
.y9_c00227{bottom:974.565000px;}
.y8_c00227{bottom:1010.565000px;}
.y7_c00227{bottom:1046.565000px;}
.y6_c00227{bottom:1082.565000px;}
.y2_c00227{bottom:1165.365000px;}
.h4_c00227{height:20.880000px;}
.h3_c00227{height:70.664062px;}
.h5_c00227{height:74.004654px;}
.h2_c00227{height:1237.365000px;}
.h0_c00227{height:1262.835000px;}
.h1_c00227{height:1263.000000px;}
.w3_c00227{width:27.000000px;}
.w2_c00227{width:867.465000px;}
.w0_c00227{width:892.935000px;}
.w1_c00227{width:893.250000px;}
.x0_c00227{left:0.000000px;}
.x1_c00227{left:12.735000px;}
.x3_c00227{left:95.406300px;}
.x5_c00227{left:149.400150px;}
.x4_c00227{left:433.215000px;}
.x2_c00227{left:878.550300px;}
@media print{
.v0_c00227{vertical-align:0.000000pt;}
.ls0_c00227{letter-spacing:0.000000pt;}
.ls1_c00227{letter-spacing:0.396800pt;}
.ws0_c00227{word-spacing:-0.064000pt;}
.ws1_c00227{word-spacing:0.000000pt;}
._9_c00227{margin-left:-0.915200pt;}
._7_c00227{width:1.689600pt;}
._2_c00227{width:2.912000pt;}
._5_c00227{width:3.820800pt;}
._a_c00227{width:4.819200pt;}
._3_c00227{width:5.958400pt;}
._6_c00227{width:7.904000pt;}
._0_c00227{width:10.092800pt;}
._8_c00227{width:15.008000pt;}
._4_c00227{width:18.323200pt;}
._1_c00227{width:40.921600pt;}
.fs1_c00227{font-size:57.600000pt;}
.fs0_c00227{font-size:64.000000pt;}
.y0_c00227{bottom:0.000000pt;}
.y5_c00227{bottom:4.480000pt;}
.y1_c00227{bottom:11.320000pt;}
.y3_c00227{bottom:40.040000pt;}
.y4_c00227{bottom:46.880000pt;}
.y20_c00227{bottom:130.280000pt;}
.y1f_c00227{bottom:162.280000pt;}
.y1e_c00227{bottom:194.280000pt;}
.y1d_c00227{bottom:226.280000pt;}
.y1c_c00227{bottom:258.280000pt;}
.y1b_c00227{bottom:290.280000pt;}
.y1a_c00227{bottom:322.280000pt;}
.y19_c00227{bottom:354.280000pt;}
.y18_c00227{bottom:386.280000pt;}
.y17_c00227{bottom:418.280000pt;}
.y16_c00227{bottom:450.280000pt;}
.y15_c00227{bottom:482.280000pt;}
.y14_c00227{bottom:514.280000pt;}
.y13_c00227{bottom:546.280000pt;}
.y12_c00227{bottom:578.280000pt;}
.y11_c00227{bottom:610.280000pt;}
.y10_c00227{bottom:642.280000pt;}
.yf_c00227{bottom:674.280000pt;}
.ye_c00227{bottom:706.280000pt;}
.yd_c00227{bottom:738.280000pt;}
.yc_c00227{bottom:770.280000pt;}
.yb_c00227{bottom:802.280000pt;}
.ya_c00227{bottom:834.280000pt;}
.y9_c00227{bottom:866.280000pt;}
.y8_c00227{bottom:898.280000pt;}
.y7_c00227{bottom:930.280000pt;}
.y6_c00227{bottom:962.280000pt;}
.y2_c00227{bottom:1035.880000pt;}
.h4_c00227{height:18.560000pt;}
.h3_c00227{height:62.812500pt;}
.h5_c00227{height:65.781915pt;}
.h2_c00227{height:1099.880000pt;}
.h0_c00227{height:1122.520000pt;}
.h1_c00227{height:1122.666667pt;}
.w3_c00227{width:24.000000pt;}
.w2_c00227{width:771.080000pt;}
.w0_c00227{width:793.720000pt;}
.w1_c00227{width:794.000000pt;}
.x0_c00227{left:0.000000pt;}
.x1_c00227{left:11.320000pt;}
.x3_c00227{left:84.805600pt;}
.x5_c00227{left:132.800133pt;}
.x4_c00227{left:385.080000pt;}
.x2_c00227{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00228{font-family:ff1_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00228;src:url('chunks/assets/font_7e0d9a5062a9912bdb62213a.woff2')format("woff");}.ff2_c00228{font-family:ff2_c00228;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00228;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00228{font-family:ff3_c00228;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00228;src:url('chunks/assets/font_1e15867ba50e1d6d742ac199.woff2')format("woff");}.ff4_c00228{font-family:ff4_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00228;src:url('chunks/assets/font_1013a56dcc10bc4e1c57bf3d.woff2')format("woff");}.ff5_c00228{font-family:ff5_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00228;src:url('chunks/assets/font_9e2e3ba0dfd9dfaef1dba73e.woff2')format("woff");}.ff6_c00228{font-family:ff6_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00228;src:url('chunks/assets/font_c60abf18eeb3e6a920488499.woff2')format("woff");}.ff7_c00228{font-family:ff7_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00228;src:url('chunks/assets/font_1cf9a78c747122b9f4a68ba5.woff2')format("woff");}.ff8_c00228{font-family:ff8_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00228;src:url('chunks/assets/font_3624f2533c255300cac9eb09.woff2')format("woff");}.ff9_c00228{font-family:ff9_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00228;src:url('chunks/assets/font_c115425c6b10230d263d19e5.woff2')format("woff");}.ffa_c00228{font-family:ffa_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00228;src:url('chunks/assets/font_3e330e4793a9c03fbedcf940.woff2')format("woff");}.ffb_c00228{font-family:ffb_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00228;src:url('chunks/assets/font_6e11b6226cfd8fd2763534c2.woff2')format("woff");}.ffc_c00228{font-family:ffc_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00228;src:url('chunks/assets/font_5c03adfba31d62ac2a059511.woff2')format("woff");}.ffd_c00228{font-family:ffd_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00228;src:url('chunks/assets/font_ad46a4ed61baa2ffa98e5d49.woff2')format("woff");}.ffe_c00228{font-family:ffe_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00228;src:url('chunks/assets/font_360f172ed8bad4e19e1eceed.woff2')format("woff");}.fff_c00228{font-family:fff_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00228;src:url('chunks/assets/font_33a02bee087ce8c5eb10a487.woff2')format("woff");}.ff10_c00228{font-family:ff10_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00228;src:url('chunks/assets/font_4f0411f0c283a4ce60ba6fc0.woff2')format("woff");}.ff11_c00228{font-family:ff11_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00228;src:url('chunks/assets/font_723cc7c68661da2c1078d259.woff2')format("woff");}.ff12_c00228{font-family:ff12_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00228;src:url('chunks/assets/font_9aadcab35150ecf67a736a84.woff2')format("woff");}.ff13_c00228{font-family:ff13_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00228;src:url('chunks/assets/font_f1753e79f66abaa8c50663ee.woff2')format("woff");}.ff14_c00228{font-family:ff14_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00228;src:url('chunks/assets/font_a99ece5dd0739c10344c3dba.woff2')format("woff");}.ff15_c00228{font-family:ff15_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00228;src:url('chunks/assets/font_18cec3d81560ac272de58c88.woff2')format("woff");}.ff16_c00228{font-family:ff16_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00228;src:url('chunks/assets/font_824fc1607d0b103f9205f38d.woff2')format("woff");}.ff17_c00228{font-family:ff17_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00228;src:url('chunks/assets/font_93a36edede07ae007b45b020.woff2')format("woff");}.ff18_c00228{font-family:ff18_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00228;src:url('chunks/assets/font_7f4e807d844ab9aff40c0cf7.woff2')format("woff");}.ff19_c00228{font-family:ff19_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00228;src:url('chunks/assets/font_8303d183a9dcf8d6ba1d86b4.woff2')format("woff");}.ff1a_c00228{font-family:ff1a_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00228;src:url('chunks/assets/font_a0a94b8f44a150e2f2bba31f.woff2')format("woff");}.ff1b_c00228{font-family:ff1b_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00228;src:url('chunks/assets/font_d49cfda80b4723db644b629e.woff2')format("woff");}.ff1c_c00228{font-family:ff1c_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00228;src:url('chunks/assets/font_93d0d41813be70b5bc5a8b68.woff2')format("woff");}.ff1d_c00228{font-family:ff1d_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00228;src:url('chunks/assets/font_48bf94b8e3a2a61faafb7d14.woff2')format("woff");}.ff1e_c00228{font-family:ff1e_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00228;src:url('chunks/assets/font_9ebaddaf4735bfa2bb4d3d89.woff2')format("woff");}.ff1f_c00228{font-family:ff1f_c00228;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:ff20_c00228;src:url('chunks/assets/font_176e5e8010725b8b1cd4b32f.woff2')format("woff");}.ff20_c00228{font-family:ff20_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00228;src:url('chunks/assets/font_fe86e79ef183bb2ee8c16e94.woff2')format("woff");}.ff21_c00228{font-family:ff21_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00228;src:url('chunks/assets/font_0d64d7517486f375b366ecb1.woff2')format("woff");}.ff22_c00228{font-family:ff22_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00228;src:url('chunks/assets/font_a8451cef8b025f4a68eea27f.woff2')format("woff");}.ff23_c00228{font-family:ff23_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00228;src:url('chunks/assets/font_af8881271569398d6c2b5509.woff2')format("woff");}.ff24_c00228{font-family:ff24_c00228;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00228;src:url('chunks/assets/font_3598bd824ef543f5586251b7.woff2')format("woff");}.ff25_c00228{font-family:ff25_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00228;src:url('chunks/assets/font_1585ff813c46d34287f16658.woff2')format("woff");}.ff26_c00228{font-family:ff26_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00228;src:url('chunks/assets/font_6ee599846b04373a05031c28.woff2')format("woff");}.ff27_c00228{font-family:ff27_c00228;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00228;src:url('chunks/assets/font_0bc45114edfa40c9410d9c3b.woff2')format("woff");}.ff28_c00228{font-family:ff28_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00228;src:url('chunks/assets/font_45e6c1457c1c3e8adfbfe7f0.woff2')format("woff");}.ff29_c00228{font-family:ff29_c00228;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00228;src:url('chunks/assets/font_2713d5e23a7e7e4a33821d76.woff2')format("woff");}.ff2a_c00228{font-family:ff2a_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00228;src:url('chunks/assets/font_ae51a0e9bb108e12f2e77f17.woff2')format("woff");}.ff2b_c00228{font-family:ff2b_c00228;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:ff2c_c00228;src:url('chunks/assets/font_416b682260caa724bdc0b0df.woff2')format("woff");}.ff2c_c00228{font-family:ff2c_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00228;src:url('chunks/assets/font_83937a2f0398b7172db96a88.woff2')format("woff");}.ff2d_c00228{font-family:ff2d_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00228;src:url('chunks/assets/font_341a4ae3bf7767a3a667cabc.woff2')format("woff");}.ff2e_c00228{font-family:ff2e_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00228;src:url('chunks/assets/font_aba9312c63e74ebe5e5bd626.woff2')format("woff");}.ff2f_c00228{font-family:ff2f_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00228;src:url('chunks/assets/font_cbec18ddc6564a17c249351f.woff2')format("woff");}.ff30_c00228{font-family:ff30_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00228;src:url('chunks/assets/font_67cd9c3947595f3dd0d11ef0.woff2')format("woff");}.ff31_c00228{font-family:ff31_c00228;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:ff32_c00228;src:url('chunks/assets/font_0af997edf9c54235e8f6880f.woff2')format("woff");}.ff32_c00228{font-family:ff32_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00228;src:url('chunks/assets/font_35323a3226245e5167bd9a59.woff2')format("woff");}.ff33_c00228{font-family:ff33_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00228;src:url('chunks/assets/font_5623353cb493a83e97c644de.woff2')format("woff");}.ff34_c00228{font-family:ff34_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00228;src:url('chunks/assets/font_52cbdcb5132aab233be307f8.woff2')format("woff");}.ff35_c00228{font-family:ff35_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00228;src:url('chunks/assets/font_bce4a4690201305dcef98485.woff2')format("woff");}.ff36_c00228{font-family:ff36_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00228;src:url('chunks/assets/font_5f0979b296cea7b48c9b9323.woff2')format("woff");}.ff37_c00228{font-family:ff37_c00228;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00228;src:url('chunks/assets/font_bb79a5fd3db17a50341038fa.woff2')format("woff");}.ff38_c00228{font-family:ff38_c00228;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00228;src:url('chunks/assets/font_3918e07a54e255ebb570b8e5.woff2')format("woff");}.ff39_c00228{font-family:ff39_c00228;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls2_c00228{letter-spacing:-0.014400px;}
.ls1_c00228{letter-spacing:0.000000px;}
.ls0_c00228{letter-spacing:0.072000px;}
.sc__c00228{text-shadow:none;}
.sc0_c00228{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00228{-webkit-text-stroke:0px transparent;}
.sc0_c00228{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00228{word-spacing:-0.072000px;}
.ws1_c00228{word-spacing:0.000000px;}
._3_c00228{width:1.526400px;}
._4_c00228{width:2.584800px;}
._1_c00228{width:4.024800px;}
._8_c00228{width:5.500800px;}
._5_c00228{width:6.638400px;}
._0_c00228{width:7.696800px;}
._6_c00228{width:8.920800px;}
._a_c00228{width:10.123200px;}
._7_c00228{width:12.031200px;}
._2_c00228{width:14.839200px;}
._b_c00228{width:16.207200px;}
._9_c00228{width:19.915200px;}
.fc1_c00228{color:transparent;}
.fc0_c00228{color:rgb(0,0,0);}
.fs1_c00228{font-size:64.800000px;}
.fs0_c00228{font-size:72.000000px;}
.y0_c00228{bottom:0.000000px;}
.y5_c00228{bottom:5.040000px;}
.y1_c00228{bottom:12.735000px;}
.y3_c00228{bottom:45.045000px;}
.y4_c00228{bottom:52.740000px;}
.y20_c00228{bottom:146.565000px;}
.y1f_c00228{bottom:182.565000px;}
.y1e_c00228{bottom:218.565000px;}
.y1d_c00228{bottom:254.565000px;}
.y1c_c00228{bottom:290.565000px;}
.y1b_c00228{bottom:326.565000px;}
.y1a_c00228{bottom:362.565000px;}
.y19_c00228{bottom:398.565000px;}
.y18_c00228{bottom:434.565000px;}
.y17_c00228{bottom:470.565000px;}
.y16_c00228{bottom:506.565000px;}
.y15_c00228{bottom:542.565000px;}
.y14_c00228{bottom:578.565000px;}
.y13_c00228{bottom:614.565000px;}
.y12_c00228{bottom:650.565000px;}
.y11_c00228{bottom:686.565000px;}
.y10_c00228{bottom:722.565000px;}
.yf_c00228{bottom:758.565000px;}
.ye_c00228{bottom:794.565000px;}
.yd_c00228{bottom:830.565000px;}
.yc_c00228{bottom:866.565000px;}
.yb_c00228{bottom:902.565000px;}
.ya_c00228{bottom:938.565000px;}
.y9_c00228{bottom:974.565000px;}
.y8_c00228{bottom:1010.565000px;}
.y7_c00228{bottom:1046.565000px;}
.y6_c00228{bottom:1082.565000px;}
.y2_c00228{bottom:1165.365000px;}
.h4_c00228{height:20.880000px;}
.h3_c00228{height:70.664062px;}
.h6_c00228{height:71.824219px;}
.h5_c00228{height:74.004654px;}
.h2_c00228{height:1237.365000px;}
.h0_c00228{height:1262.835000px;}
.h1_c00228{height:1263.000000px;}
.w3_c00228{width:27.000000px;}
.w2_c00228{width:867.465000px;}
.w0_c00228{width:892.935000px;}
.w1_c00228{width:893.250000px;}
.x0_c00228{left:0.000000px;}
.x1_c00228{left:12.735000px;}
.x3_c00228{left:95.406300px;}
.x5_c00228{left:149.400150px;}
.x4_c00228{left:433.215000px;}
.x2_c00228{left:878.550300px;}
@media print{
.v0_c00228{vertical-align:0.000000pt;}
.ls2_c00228{letter-spacing:-0.012800pt;}
.ls1_c00228{letter-spacing:0.000000pt;}
.ls0_c00228{letter-spacing:0.064000pt;}
.ws0_c00228{word-spacing:-0.064000pt;}
.ws1_c00228{word-spacing:0.000000pt;}
._3_c00228{width:1.356800pt;}
._4_c00228{width:2.297600pt;}
._1_c00228{width:3.577600pt;}
._8_c00228{width:4.889600pt;}
._5_c00228{width:5.900800pt;}
._0_c00228{width:6.841600pt;}
._6_c00228{width:7.929600pt;}
._a_c00228{width:8.998400pt;}
._7_c00228{width:10.694400pt;}
._2_c00228{width:13.190400pt;}
._b_c00228{width:14.406400pt;}
._9_c00228{width:17.702400pt;}
.fs1_c00228{font-size:57.600000pt;}
.fs0_c00228{font-size:64.000000pt;}
.y0_c00228{bottom:0.000000pt;}
.y5_c00228{bottom:4.480000pt;}
.y1_c00228{bottom:11.320000pt;}
.y3_c00228{bottom:40.040000pt;}
.y4_c00228{bottom:46.880000pt;}
.y20_c00228{bottom:130.280000pt;}
.y1f_c00228{bottom:162.280000pt;}
.y1e_c00228{bottom:194.280000pt;}
.y1d_c00228{bottom:226.280000pt;}
.y1c_c00228{bottom:258.280000pt;}
.y1b_c00228{bottom:290.280000pt;}
.y1a_c00228{bottom:322.280000pt;}
.y19_c00228{bottom:354.280000pt;}
.y18_c00228{bottom:386.280000pt;}
.y17_c00228{bottom:418.280000pt;}
.y16_c00228{bottom:450.280000pt;}
.y15_c00228{bottom:482.280000pt;}
.y14_c00228{bottom:514.280000pt;}
.y13_c00228{bottom:546.280000pt;}
.y12_c00228{bottom:578.280000pt;}
.y11_c00228{bottom:610.280000pt;}
.y10_c00228{bottom:642.280000pt;}
.yf_c00228{bottom:674.280000pt;}
.ye_c00228{bottom:706.280000pt;}
.yd_c00228{bottom:738.280000pt;}
.yc_c00228{bottom:770.280000pt;}
.yb_c00228{bottom:802.280000pt;}
.ya_c00228{bottom:834.280000pt;}
.y9_c00228{bottom:866.280000pt;}
.y8_c00228{bottom:898.280000pt;}
.y7_c00228{bottom:930.280000pt;}
.y6_c00228{bottom:962.280000pt;}
.y2_c00228{bottom:1035.880000pt;}
.h4_c00228{height:18.560000pt;}
.h3_c00228{height:62.812500pt;}
.h6_c00228{height:63.843750pt;}
.h5_c00228{height:65.781915pt;}
.h2_c00228{height:1099.880000pt;}
.h0_c00228{height:1122.520000pt;}
.h1_c00228{height:1122.666667pt;}
.w3_c00228{width:24.000000pt;}
.w2_c00228{width:771.080000pt;}
.w0_c00228{width:793.720000pt;}
.w1_c00228{width:794.000000pt;}
.x0_c00228{left:0.000000pt;}
.x1_c00228{left:11.320000pt;}
.x3_c00228{left:84.805600pt;}
.x5_c00228{left:132.800133pt;}
.x4_c00228{left:385.080000pt;}
.x2_c00228{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00229{font-family:ff1_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00229;src:url('chunks/assets/font_e2bed1d7e0aaece7d4f0b1d7.woff2')format("woff");}.ff2_c00229{font-family:ff2_c00229;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00229;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00229{font-family:ff3_c00229;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00229;src:url('chunks/assets/font_1c66bbc91294697a4a0c6428.woff2')format("woff");}.ff4_c00229{font-family:ff4_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00229;src:url('chunks/assets/font_11cfcf46efbcd08e23722154.woff2')format("woff");}.ff5_c00229{font-family:ff5_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00229;src:url('chunks/assets/font_9d0d5003cb1799589edbf27c.woff2')format("woff");}.ff6_c00229{font-family:ff6_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00229;src:url('chunks/assets/font_545b3b6f4ea4db44c6ad3c22.woff2')format("woff");}.ff7_c00229{font-family:ff7_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00229;src:url('chunks/assets/font_b4797c88e2b6cd66cabf471a.woff2')format("woff");}.ff8_c00229{font-family:ff8_c00229;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00229;src:url('chunks/assets/font_2530cb974efad81feccec512.woff2')format("woff");}.ff9_c00229{font-family:ff9_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00229;src:url('chunks/assets/font_c04f841e678c19aacf6f32fb.woff2')format("woff");}.ffa_c00229{font-family:ffa_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00229;src:url('chunks/assets/font_385fe76eece30ae5b6992741.woff2')format("woff");}.ffb_c00229{font-family:ffb_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00229;src:url('chunks/assets/font_e8fd3230042f38f99d765444.woff2')format("woff");}.ffc_c00229{font-family:ffc_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00229;src:url('chunks/assets/font_c3a3e1fb325f00d64caf4213.woff2')format("woff");}.ffd_c00229{font-family:ffd_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00229;src:url('chunks/assets/font_03a0c5a6e12b8dcabc55cab4.woff2')format("woff");}.ffe_c00229{font-family:ffe_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00229;src:url('chunks/assets/font_853020bb2f2bf7b04fd9c330.woff2')format("woff");}.fff_c00229{font-family:fff_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00229;src:url('chunks/assets/font_de9474f03bd1fc210e4889c0.woff2')format("woff");}.ff10_c00229{font-family:ff10_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00229;src:url('chunks/assets/font_ce4a75bb5464be4b236cb2c3.woff2')format("woff");}.ff11_c00229{font-family:ff11_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00229;src:url('chunks/assets/font_87ebf5d4dbfae4535b544a08.woff2')format("woff");}.ff12_c00229{font-family:ff12_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00229;src:url('chunks/assets/font_f7e9a32eddb05098f0b68b84.woff2')format("woff");}.ff13_c00229{font-family:ff13_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00229;src:url('chunks/assets/font_c8d81486ab9e0400c4b3009f.woff2')format("woff");}.ff14_c00229{font-family:ff14_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00229;src:url('chunks/assets/font_d00a785d38dcefa4fb4ee487.woff2')format("woff");}.ff15_c00229{font-family:ff15_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00229;src:url('chunks/assets/font_8d3a47bcfcd1bdbb5c467c03.woff2')format("woff");}.ff16_c00229{font-family:ff16_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00229;src:url('chunks/assets/font_5c7f7e220564eb7522f3d3fc.woff2')format("woff");}.ff17_c00229{font-family:ff17_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00229;src:url('chunks/assets/font_5ca44c529b826b5939fb6fa2.woff2')format("woff");}.ff18_c00229{font-family:ff18_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00229;src:url('chunks/assets/font_b7896a666112827d22a54109.woff2')format("woff");}.ff19_c00229{font-family:ff19_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00229;src:url('chunks/assets/font_c5d1e6166a8f4ae1f73ec1bd.woff2')format("woff");}.ff1a_c00229{font-family:ff1a_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00229;src:url('chunks/assets/font_fe5433a111caa614df283492.woff2')format("woff");}.ff1b_c00229{font-family:ff1b_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00229;src:url('chunks/assets/font_2bc2b0a2ca31e0198b3d4b78.woff2')format("woff");}.ff1c_c00229{font-family:ff1c_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00229;src:url('chunks/assets/font_c058aceb9f95c8b7eb0dbdf0.woff2')format("woff");}.ff1d_c00229{font-family:ff1d_c00229;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:ff1e_c00229;src:url('chunks/assets/font_d0c9c624891fe0ae17ea380e.woff2')format("woff");}.ff1e_c00229{font-family:ff1e_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00229;src:url('chunks/assets/font_db9c6a642e9085197102ef4e.woff2')format("woff");}.ff1f_c00229{font-family:ff1f_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00229;src:url('chunks/assets/font_18cec3d81560ac272de58c88.woff2')format("woff");}.ff20_c00229{font-family:ff20_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:ff21_c00229;src:url('chunks/assets/font_6939e71915e02d322ae67727.woff2')format("woff");}.ff21_c00229{font-family:ff21_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00229;src:url('chunks/assets/font_a099fdcbac13cb6265e9235a.woff2')format("woff");}.ff22_c00229{font-family:ff22_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00229;src:url('chunks/assets/font_e306997541d467da384bc66d.woff2')format("woff");}.ff23_c00229{font-family:ff23_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00229;src:url('chunks/assets/font_1902af9fd8b77b904d41224a.woff2')format("woff");}.ff24_c00229{font-family:ff24_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00229;src:url('chunks/assets/font_b95066bcc78c3bd50dfaf4df.woff2')format("woff");}.ff25_c00229{font-family:ff25_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00229;src:url('chunks/assets/font_89861e492cbfe29d071ee6c6.woff2')format("woff");}.ff26_c00229{font-family:ff26_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00229;src:url('chunks/assets/font_d9d3a2c88a38af854e43d745.woff2')format("woff");}.ff27_c00229{font-family:ff27_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00229;src:url('chunks/assets/font_2d9b4d1cb661ca31eaea75e5.woff2')format("woff");}.ff28_c00229{font-family:ff28_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00229;src:url('chunks/assets/font_cc1b9ad9e081a13db3f2628f.woff2')format("woff");}.ff29_c00229{font-family:ff29_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00229;src:url('chunks/assets/font_994db50f4bfda445643898be.woff2')format("woff");}.ff2a_c00229{font-family:ff2a_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00229;src:url('chunks/assets/font_fab2396f7754b4382ec56f70.woff2')format("woff");}.ff2b_c00229{font-family:ff2b_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00229;src:url('chunks/assets/font_9a264c98071f1802f8871f6c.woff2')format("woff");}.ff2c_c00229{font-family:ff2c_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00229;src:url('chunks/assets/font_f3251002e449d14ffc3b697c.woff2')format("woff");}.ff2d_c00229{font-family:ff2d_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00229;src:url('chunks/assets/font_a67bf5194ed2b7091d788f3d.woff2')format("woff");}.ff2e_c00229{font-family:ff2e_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00229;src:url('chunks/assets/font_2e46ed1e60870e6c46af5e73.woff2')format("woff");}.ff2f_c00229{font-family:ff2f_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00229;src:url('chunks/assets/font_5671f1b1297cd5f0692fca17.woff2')format("woff");}.ff30_c00229{font-family:ff30_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00229;src:url('chunks/assets/font_ecd7a36a3977e5eb1b8097f0.woff2')format("woff");}.ff31_c00229{font-family:ff31_c00229;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00229{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00229{vertical-align:0.000000px;}
.ls2_c00229{letter-spacing:-0.014400px;}
.ls1_c00229{letter-spacing:0.000000px;}
.ls0_c00229{letter-spacing:0.072000px;}
.sc__c00229{text-shadow:none;}
.sc0_c00229{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00229{-webkit-text-stroke:0px transparent;}
.sc0_c00229{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00229{word-spacing:-0.072000px;}
.ws1_c00229{word-spacing:0.000000px;}
._9_c00229{width:1.908000px;}
._0_c00229{width:3.240000px;}
._5_c00229{width:4.442400px;}
._a_c00229{width:5.587200px;}
._3_c00229{width:7.041600px;}
._4_c00229{width:9.014400px;}
._2_c00229{width:10.339200px;}
._1_c00229{width:12.319200px;}
._6_c00229{width:16.869600px;}
._b_c00229{width:29.548800px;}
._8_c00229{width:31.716000px;}
._7_c00229{width:33.127200px;}
.fc1_c00229{color:transparent;}
.fc0_c00229{color:rgb(0,0,0);}
.fs1_c00229{font-size:64.800000px;}
.fs0_c00229{font-size:72.000000px;}
.y0_c00229{bottom:0.000000px;}
.y5_c00229{bottom:5.040000px;}
.y1_c00229{bottom:12.735000px;}
.y3_c00229{bottom:45.045000px;}
.y4_c00229{bottom:52.740000px;}
.y21_c00229{bottom:110.565000px;}
.y20_c00229{bottom:146.565000px;}
.y1f_c00229{bottom:182.565000px;}
.y1e_c00229{bottom:218.565000px;}
.y1d_c00229{bottom:254.565000px;}
.y1c_c00229{bottom:290.565000px;}
.y1b_c00229{bottom:326.565000px;}
.y1a_c00229{bottom:362.565000px;}
.y19_c00229{bottom:398.565000px;}
.y18_c00229{bottom:434.565000px;}
.y17_c00229{bottom:470.565000px;}
.y16_c00229{bottom:506.565000px;}
.y15_c00229{bottom:542.565000px;}
.y14_c00229{bottom:578.565000px;}
.y13_c00229{bottom:614.565000px;}
.y12_c00229{bottom:650.565000px;}
.y11_c00229{bottom:686.565000px;}
.y10_c00229{bottom:722.565000px;}
.yf_c00229{bottom:758.565000px;}
.ye_c00229{bottom:794.565000px;}
.yd_c00229{bottom:830.565000px;}
.yc_c00229{bottom:866.565000px;}
.yb_c00229{bottom:902.565000px;}
.ya_c00229{bottom:938.565000px;}
.y9_c00229{bottom:974.565000px;}
.y8_c00229{bottom:1010.565000px;}
.y7_c00229{bottom:1046.565000px;}
.y6_c00229{bottom:1082.565000px;}
.y2_c00229{bottom:1165.365000px;}
.h4_c00229{height:20.880000px;}
.h3_c00229{height:70.664062px;}
.h5_c00229{height:74.004654px;}
.h2_c00229{height:1237.365000px;}
.h0_c00229{height:1262.835000px;}
.h1_c00229{height:1263.000000px;}
.w3_c00229{width:27.000000px;}
.w2_c00229{width:867.465000px;}
.w0_c00229{width:892.935000px;}
.w1_c00229{width:893.250000px;}
.x0_c00229{left:0.000000px;}
.x1_c00229{left:12.735000px;}
.x3_c00229{left:95.406300px;}
.x5_c00229{left:149.400150px;}
.x4_c00229{left:433.215000px;}
.x2_c00229{left:878.550300px;}
@media print{
.v0_c00229{vertical-align:0.000000pt;}
.ls2_c00229{letter-spacing:-0.012800pt;}
.ls1_c00229{letter-spacing:0.000000pt;}
.ls0_c00229{letter-spacing:0.064000pt;}
.ws0_c00229{word-spacing:-0.064000pt;}
.ws1_c00229{word-spacing:0.000000pt;}
._9_c00229{width:1.696000pt;}
._0_c00229{width:2.880000pt;}
._5_c00229{width:3.948800pt;}
._a_c00229{width:4.966400pt;}
._3_c00229{width:6.259200pt;}
._4_c00229{width:8.012800pt;}
._2_c00229{width:9.190400pt;}
._1_c00229{width:10.950400pt;}
._6_c00229{width:14.995200pt;}
._b_c00229{width:26.265600pt;}
._8_c00229{width:28.192000pt;}
._7_c00229{width:29.446400pt;}
.fs1_c00229{font-size:57.600000pt;}
.fs0_c00229{font-size:64.000000pt;}
.y0_c00229{bottom:0.000000pt;}
.y5_c00229{bottom:4.480000pt;}
.y1_c00229{bottom:11.320000pt;}
.y3_c00229{bottom:40.040000pt;}
.y4_c00229{bottom:46.880000pt;}
.y21_c00229{bottom:98.280000pt;}
.y20_c00229{bottom:130.280000pt;}
.y1f_c00229{bottom:162.280000pt;}
.y1e_c00229{bottom:194.280000pt;}
.y1d_c00229{bottom:226.280000pt;}
.y1c_c00229{bottom:258.280000pt;}
.y1b_c00229{bottom:290.280000pt;}
.y1a_c00229{bottom:322.280000pt;}
.y19_c00229{bottom:354.280000pt;}
.y18_c00229{bottom:386.280000pt;}
.y17_c00229{bottom:418.280000pt;}
.y16_c00229{bottom:450.280000pt;}
.y15_c00229{bottom:482.280000pt;}
.y14_c00229{bottom:514.280000pt;}
.y13_c00229{bottom:546.280000pt;}
.y12_c00229{bottom:578.280000pt;}
.y11_c00229{bottom:610.280000pt;}
.y10_c00229{bottom:642.280000pt;}
.yf_c00229{bottom:674.280000pt;}
.ye_c00229{bottom:706.280000pt;}
.yd_c00229{bottom:738.280000pt;}
.yc_c00229{bottom:770.280000pt;}
.yb_c00229{bottom:802.280000pt;}
.ya_c00229{bottom:834.280000pt;}
.y9_c00229{bottom:866.280000pt;}
.y8_c00229{bottom:898.280000pt;}
.y7_c00229{bottom:930.280000pt;}
.y6_c00229{bottom:962.280000pt;}
.y2_c00229{bottom:1035.880000pt;}
.h4_c00229{height:18.560000pt;}
.h3_c00229{height:62.812500pt;}
.h5_c00229{height:65.781915pt;}
.h2_c00229{height:1099.880000pt;}
.h0_c00229{height:1122.520000pt;}
.h1_c00229{height:1122.666667pt;}
.w3_c00229{width:24.000000pt;}
.w2_c00229{width:771.080000pt;}
.w0_c00229{width:793.720000pt;}
.w1_c00229{width:794.000000pt;}
.x0_c00229{left:0.000000pt;}
.x1_c00229{left:11.320000pt;}
.x3_c00229{left:84.805600pt;}
.x5_c00229{left:132.800133pt;}
.x4_c00229{left:385.080000pt;}
.x2_c00229{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8463241aeb5e7bfcbc4bbbe5.woff2')format("woff");}.ff1_c00230{font-family:ff1_c00230;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00230;src:url('chunks/assets/font_aef36dced4b7d1e65e526313.woff2')format("woff");}.ff2_c00230{font-family:ff2_c00230;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00230;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00230{font-family:ff3_c00230;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00230;src:url('chunks/assets/font_69ffd7e00bd8d940da5114a0.woff2')format("woff");}.ff4_c00230{font-family:ff4_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00230;src:url('chunks/assets/font_15c61761753fd184fd9e8d2d.woff2')format("woff");}.ff5_c00230{font-family:ff5_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00230;src:url('chunks/assets/font_4a4b52156ed1ac1e2604edf2.woff2')format("woff");}.ff6_c00230{font-family:ff6_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00230;src:url('chunks/assets/font_35e2c3a9fe6325c89f96c78a.woff2')format("woff");}.ff7_c00230{font-family:ff7_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00230;src:url('chunks/assets/font_cc711cb9b03338ef44a843b0.woff2')format("woff");}.ff8_c00230{font-family:ff8_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00230;src:url('chunks/assets/font_70649ffb95044d3fa725b496.woff2')format("woff");}.ff9_c00230{font-family:ff9_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00230;src:url('chunks/assets/font_c3183463198a59f09a50cf8e.woff2')format("woff");}.ffa_c00230{font-family:ffa_c00230;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00230;src:url('chunks/assets/font_5052831880b966e37fbc913b.woff2')format("woff");}.ffb_c00230{font-family:ffb_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:ffc_c00230;src:url('chunks/assets/font_9cb6b0865386a6eaea57643c.woff2')format("woff");}.ffc_c00230{font-family:ffc_c00230;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00230;src:url('chunks/assets/font_cd7aee78aec439c4d42c2f6c.woff2')format("woff");}.ffd_c00230{font-family:ffd_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:ffe_c00230;src:url('chunks/assets/font_8765d737281f736531f91e8b.woff2')format("woff");}.ffe_c00230{font-family:ffe_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:fff_c00230;src:url('chunks/assets/font_916ec1dc58c7c4a9f1132808.woff2')format("woff");}.fff_c00230{font-family:fff_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:ff10_c00230;src:url('chunks/assets/font_fdbe783688fd0e88fc8e5713.woff2')format("woff");}.ff10_c00230{font-family:ff10_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00230;src:url('chunks/assets/font_9258a3410964c1eec064026f.woff2')format("woff");}.ff11_c00230{font-family:ff11_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00230;src:url('chunks/assets/font_826271ceeea1ebac2bb50bd8.woff2')format("woff");}.ff12_c00230{font-family:ff12_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00230;src:url('chunks/assets/font_a63e8b608106a3cbaf454bd6.woff2')format("woff");}.ff13_c00230{font-family:ff13_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00230;src:url('chunks/assets/font_fa1dd3a259de887862fde3ec.woff2')format("woff");}.ff14_c00230{font-family:ff14_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00230;src:url('chunks/assets/font_b0927d37d66bc6fbb2a6011e.woff2')format("woff");}.ff15_c00230{font-family:ff15_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00230;src:url('chunks/assets/font_dc8995c5525edb44d4f78e0b.woff2')format("woff");}.ff16_c00230{font-family:ff16_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00230;src:url('chunks/assets/font_f8e315146439491f6fda8485.woff2')format("woff");}.ff17_c00230{font-family:ff17_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00230;src:url('chunks/assets/font_eee24bd212d648ac15c452f2.woff2')format("woff");}.ff18_c00230{font-family:ff18_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00230;src:url('chunks/assets/font_387d6d57c4ce69f5d3b4c67a.woff2')format("woff");}.ff19_c00230{font-family:ff19_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00230;src:url('chunks/assets/font_744871ab3f749fe971654339.woff2')format("woff");}.ff1a_c00230{font-family:ff1a_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00230;src:url('chunks/assets/font_a28b3f9bd9f16c82c7fe0394.woff2')format("woff");}.ff1b_c00230{font-family:ff1b_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00230;src:url('chunks/assets/font_6e9930e53d110359f954ad08.woff2')format("woff");}.ff1c_c00230{font-family:ff1c_c00230;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:ff1d_c00230;src:url('chunks/assets/font_d0745e9ca440732841756d4f.woff2')format("woff");}.ff1d_c00230{font-family:ff1d_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00230;src:url('chunks/assets/font_077c1260c1725690712694e6.woff2')format("woff");}.ff1e_c00230{font-family:ff1e_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00230;src:url('chunks/assets/font_8682250475e99c2086ba3173.woff2')format("woff");}.ff1f_c00230{font-family:ff1f_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00230;src:url('chunks/assets/font_938264ceab7a9f41035b8579.woff2')format("woff");}.ff20_c00230{font-family:ff20_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00230;src:url('chunks/assets/font_576c01b932753428d8abd771.woff2')format("woff");}.ff21_c00230{font-family:ff21_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00230;src:url('chunks/assets/font_bffb46833c8d04f0b1f9092c.woff2')format("woff");}.ff22_c00230{font-family:ff22_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00230;src:url('chunks/assets/font_c2e5a9983f8ae3b248bf7b6e.woff2')format("woff");}.ff23_c00230{font-family:ff23_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00230;src:url('chunks/assets/font_1b0db964e5a961bbf657adc8.woff2')format("woff");}.ff24_c00230{font-family:ff24_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00230;src:url('chunks/assets/font_d1b9efdddd28e1f722572c44.woff2')format("woff");}.ff25_c00230{font-family:ff25_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00230;src:url('chunks/assets/font_31e30dae405783537ba515c8.woff2')format("woff");}.ff26_c00230{font-family:ff26_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00230;src:url('chunks/assets/font_561324117616a8ceddf9c60a.woff2')format("woff");}.ff27_c00230{font-family:ff27_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00230;src:url('chunks/assets/font_f5558866d85f42a456f8b724.woff2')format("woff");}.ff28_c00230{font-family:ff28_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00230;src:url('chunks/assets/font_ba5870d13ca86c36b299cc3c.woff2')format("woff");}.ff29_c00230{font-family:ff29_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00230;src:url('chunks/assets/font_a1cd09f94da076f61e454e93.woff2')format("woff");}.ff2a_c00230{font-family:ff2a_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00230;src:url('chunks/assets/font_93e9e7b1202f14555ca1d0cc.woff2')format("woff");}.ff2b_c00230{font-family:ff2b_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00230;src:url('chunks/assets/font_49ebbc463d2d8ab9b27f99c9.woff2')format("woff");}.ff2c_c00230{font-family:ff2c_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00230;src:url('chunks/assets/font_8be616b4b665d36bd434baaf.woff2')format("woff");}.ff2d_c00230{font-family:ff2d_c00230;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00230{letter-spacing:0.116928px;}
.ls0_c00230{letter-spacing:0.242208px;}
.ls3_c00230{letter-spacing:0.283968px;}
.ls4_c00230{letter-spacing:0.359136px;}
.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:-0.325728px;}
.ws0_c00230{word-spacing:-0.072000px;}
.ws2_c00230{word-spacing:0.000000px;}
._2_c00230{margin-left:-1.127520px;}
._3_c00230{width:1.052352px;}
._7_c00230{width:2.779200px;}
._6_c00230{width:3.902400px;}
._5_c00230{width:5.767200px;}
._1_c00230{width:9.597600px;}
._b_c00230{width:10.821600px;}
._4_c00230{width:12.340800px;}
._8_c00230{width:13.708800px;}
._0_c00230{width:15.523200px;}
._d_c00230{width:20.376000px;}
._c_c00230{width:21.808800px;}
._9_c00230{width:23.047200px;}
._a_c00230{width:34.588800px;}
.fc2_c00230{color:transparent;}
.fc1_c00230{color:rgb(127,127,127);}
.fc0_c00230{color:rgb(0,0,0);}
.fs1_c00230{font-size:64.800000px;}
.fs0_c00230{font-size:72.000000px;}
.fs2_c00230{font-size:83.520000px;}
.y0_c00230{bottom:0.000000px;}
.y5_c00230{bottom:5.040000px;}
.y1_c00230{bottom:12.735000px;}
.y3_c00230{bottom:45.045000px;}
.y4_c00230{bottom:52.740000px;}
.y21_c00230{bottom:110.565000px;}
.y20_c00230{bottom:146.565000px;}
.y1f_c00230{bottom:182.565000px;}
.y1e_c00230{bottom:218.565000px;}
.y1d_c00230{bottom:254.565000px;}
.y1c_c00230{bottom:290.565000px;}
.y1b_c00230{bottom:326.565000px;}
.y1a_c00230{bottom:362.565000px;}
.y19_c00230{bottom:398.565000px;}
.y18_c00230{bottom:434.565000px;}
.y17_c00230{bottom:470.565000px;}
.y16_c00230{bottom:506.565000px;}
.y15_c00230{bottom:542.565000px;}
.y14_c00230{bottom:578.565000px;}
.y13_c00230{bottom:614.565000px;}
.y12_c00230{bottom:650.565000px;}
.y11_c00230{bottom:686.565000px;}
.y10_c00230{bottom:722.565000px;}
.yf_c00230{bottom:758.565000px;}
.ye_c00230{bottom:794.565000px;}
.yd_c00230{bottom:830.565000px;}
.yc_c00230{bottom:866.565000px;}
.yb_c00230{bottom:902.565000px;}
.ya_c00230{bottom:939.287880px;}
.y9_c00230{bottom:975.285000px;}
.y8_c00230{bottom:1010.565000px;}
.y7_c00230{bottom:1046.565000px;}
.y6_c00230{bottom:1082.565000px;}
.y2_c00230{bottom:1165.365000px;}
.h4_c00230{height:20.880000px;}
.h5_c00230{height:70.664062px;}
.h3_c00230{height:74.004654px;}
.h6_c00230{height:84.172500px;}
.h2_c00230{height:1237.365000px;}
.h0_c00230{height:1262.835000px;}
.h1_c00230{height:1263.000000px;}
.w3_c00230{width:27.000000px;}
.w2_c00230{width:867.465000px;}
.w0_c00230{width:892.935000px;}
.w1_c00230{width:893.250000px;}
.x0_c00230{left:0.000000px;}
.x1_c00230{left:12.735000px;}
.x3_c00230{left:95.406300px;}
.x5_c00230{left:149.404200px;}
.x4_c00230{left:433.215000px;}
.x2_c00230{left:878.550300px;}
@media print{
.v0_c00230{vertical-align:0.000000pt;}
.ls1_c00230{letter-spacing:0.000000pt;}
.ls2_c00230{letter-spacing:0.103936pt;}
.ls0_c00230{letter-spacing:0.215296pt;}
.ls3_c00230{letter-spacing:0.252416pt;}
.ls4_c00230{letter-spacing:0.319232pt;}
.ws1_c00230{word-spacing:-0.289536pt;}
.ws0_c00230{word-spacing:-0.064000pt;}
.ws2_c00230{word-spacing:0.000000pt;}
._2_c00230{margin-left:-1.002240pt;}
._3_c00230{width:0.935424pt;}
._7_c00230{width:2.470400pt;}
._6_c00230{width:3.468800pt;}
._5_c00230{width:5.126400pt;}
._1_c00230{width:8.531200pt;}
._b_c00230{width:9.619200pt;}
._4_c00230{width:10.969600pt;}
._8_c00230{width:12.185600pt;}
._0_c00230{width:13.798400pt;}
._d_c00230{width:18.112000pt;}
._c_c00230{width:19.385600pt;}
._9_c00230{width:20.486400pt;}
._a_c00230{width:30.745600pt;}
.fs1_c00230{font-size:57.600000pt;}
.fs0_c00230{font-size:64.000000pt;}
.fs2_c00230{font-size:74.240000pt;}
.y0_c00230{bottom:0.000000pt;}
.y5_c00230{bottom:4.480000pt;}
.y1_c00230{bottom:11.320000pt;}
.y3_c00230{bottom:40.040000pt;}
.y4_c00230{bottom:46.880000pt;}
.y21_c00230{bottom:98.280000pt;}
.y20_c00230{bottom:130.280000pt;}
.y1f_c00230{bottom:162.280000pt;}
.y1e_c00230{bottom:194.280000pt;}
.y1d_c00230{bottom:226.280000pt;}
.y1c_c00230{bottom:258.280000pt;}
.y1b_c00230{bottom:290.280000pt;}
.y1a_c00230{bottom:322.280000pt;}
.y19_c00230{bottom:354.280000pt;}
.y18_c00230{bottom:386.280000pt;}
.y17_c00230{bottom:418.280000pt;}
.y16_c00230{bottom:450.280000pt;}
.y15_c00230{bottom:482.280000pt;}
.y14_c00230{bottom:514.280000pt;}
.y13_c00230{bottom:546.280000pt;}
.y12_c00230{bottom:578.280000pt;}
.y11_c00230{bottom:610.280000pt;}
.y10_c00230{bottom:642.280000pt;}
.yf_c00230{bottom:674.280000pt;}
.ye_c00230{bottom:706.280000pt;}
.yd_c00230{bottom:738.280000pt;}
.yc_c00230{bottom:770.280000pt;}
.yb_c00230{bottom:802.280000pt;}
.ya_c00230{bottom:834.922560pt;}
.y9_c00230{bottom:866.920000pt;}
.y8_c00230{bottom:898.280000pt;}
.y7_c00230{bottom:930.280000pt;}
.y6_c00230{bottom:962.280000pt;}
.y2_c00230{bottom:1035.880000pt;}
.h4_c00230{height:18.560000pt;}
.h5_c00230{height:62.812500pt;}
.h3_c00230{height:65.781915pt;}
.h6_c00230{height:74.820000pt;}
.h2_c00230{height:1099.880000pt;}
.h0_c00230{height:1122.520000pt;}
.h1_c00230{height:1122.666667pt;}
.w3_c00230{width:24.000000pt;}
.w2_c00230{width:771.080000pt;}
.w0_c00230{width:793.720000pt;}
.w1_c00230{width:794.000000pt;}
.x0_c00230{left:0.000000pt;}
.x1_c00230{left:11.320000pt;}
.x3_c00230{left:84.805600pt;}
.x5_c00230{left:132.803733pt;}
.x4_c00230{left:385.080000pt;}
.x2_c00230{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00231{font-family:ff1_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:ff2_c00231;src:url('chunks/assets/font_1f8d9f8b6f26ab3a6bc6d419.woff2')format("woff");}.ff2_c00231{font-family:ff2_c00231;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00231;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00231{font-family:ff3_c00231;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00231;src:url('chunks/assets/font_13883047525e9ef810a6b74d.woff2')format("woff");}.ff4_c00231{font-family:ff4_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:ff5_c00231;src:url('chunks/assets/font_d1251cd4e1a1eb660264a4af.woff2')format("woff");}.ff5_c00231{font-family:ff5_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:ff6_c00231;src:url('chunks/assets/font_5276182705bd0271baf241d1.woff2')format("woff");}.ff6_c00231{font-family:ff6_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:ff7_c00231;src:url('chunks/assets/font_8ab7702bd4ea17b1516d1e79.woff2')format("woff");}.ff7_c00231{font-family:ff7_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:ff8_c00231;src:url('chunks/assets/font_602554aad49166f6a6fc8d29.woff2')format("woff");}.ff8_c00231{font-family:ff8_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:ff9_c00231;src:url('chunks/assets/font_019993cadffb08e2aa5003a6.woff2')format("woff");}.ff9_c00231{font-family:ff9_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:ffa_c00231;src:url('chunks/assets/font_2a67a906754a099be66e8e08.woff2')format("woff");}.ffa_c00231{font-family:ffa_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:ffb_c00231;src:url('chunks/assets/font_b09d104920163e85ccd7175e.woff2')format("woff");}.ffb_c00231{font-family:ffb_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:ffc_c00231;src:url('chunks/assets/font_6a2787fd68ef5cfefb04df0d.woff2')format("woff");}.ffc_c00231{font-family:ffc_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:ffd_c00231;src:url('chunks/assets/font_4b9d5874f4b807600ff16e44.woff2')format("woff");}.ffd_c00231{font-family:ffd_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:ffe_c00231;src:url('chunks/assets/font_4d7c78935f8ac86a7ccdfe41.woff2')format("woff");}.ffe_c00231{font-family:ffe_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:fff_c00231;src:url('chunks/assets/font_eac27ec19b25a1885c5ac7fc.woff2')format("woff");}.fff_c00231{font-family:fff_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:ff10_c00231;src:url('chunks/assets/font_973d5b3c4e0b18ef0316bd78.woff2')format("woff");}.ff10_c00231{font-family:ff10_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:ff11_c00231;src:url('chunks/assets/font_35090b1bbece43e8ae27c6b8.woff2')format("woff");}.ff11_c00231{font-family:ff11_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:ff12_c00231;src:url('chunks/assets/font_500f13612611fdb36683e5f9.woff2')format("woff");}.ff12_c00231{font-family:ff12_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:ff13_c00231;src:url('chunks/assets/font_4eeac273f5f3c608e466bcd5.woff2')format("woff");}.ff13_c00231{font-family:ff13_c00231;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00231;src:url('chunks/assets/font_c20ae9ec69647c5835d47aad.woff2')format("woff");}.ff14_c00231{font-family:ff14_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:ff15_c00231;src:url('chunks/assets/font_27f52e4e067eb0fc8eaed636.woff2')format("woff");}.ff15_c00231{font-family:ff15_c00231;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00231;src:url('chunks/assets/font_4eeac273f5f3c608e466bcd5.woff2')format("woff");}.ff16_c00231{font-family:ff16_c00231;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00231;src:url('chunks/assets/font_0a118599d771779473be042c.woff2')format("woff");}.ff17_c00231{font-family:ff17_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:ff18_c00231;src:url('chunks/assets/font_b8f8e42f37a51fde2e3401d4.woff2')format("woff");}.ff18_c00231{font-family:ff18_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:ff19_c00231;src:url('chunks/assets/font_5cd8b271be1b9b532115a343.woff2')format("woff");}.ff19_c00231{font-family:ff19_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:ff1a_c00231;src:url('chunks/assets/font_c3acd7af82eb294171751daf.woff2')format("woff");}.ff1a_c00231{font-family:ff1a_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:ff1b_c00231;src:url('chunks/assets/font_155c89e5d599e55d2c83b260.woff2')format("woff");}.ff1b_c00231{font-family:ff1b_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:ff1c_c00231;src:url('chunks/assets/font_a50cc8d95f211a8e19c08f72.woff2')format("woff");}.ff1c_c00231{font-family:ff1c_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:ff1d_c00231;src:url('chunks/assets/font_4050f7b4ce3ca5f5c81985e1.woff2')format("woff");}.ff1d_c00231{font-family:ff1d_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:ff1e_c00231;src:url('chunks/assets/font_fe1ee7535a608b821be2ae23.woff2')format("woff");}.ff1e_c00231{font-family:ff1e_c00231;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:ff1f_c00231;src:url('chunks/assets/font_256f0b1cd832d0bf1a610114.woff2')format("woff");}.ff1f_c00231{font-family:ff1f_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:ff20_c00231;src:url('chunks/assets/font_1d7f6012d6addb7634b828c6.woff2')format("woff");}.ff20_c00231{font-family:ff20_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:ff21_c00231;src:url('chunks/assets/font_8b3be25a4ab7a12db9ab782f.woff2')format("woff");}.ff21_c00231{font-family:ff21_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:ff22_c00231;src:url('chunks/assets/font_b3acdf400fe8e45b66d5e2ad.woff2')format("woff");}.ff22_c00231{font-family:ff22_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:ff23_c00231;src:url('chunks/assets/font_b398b45ce2566995471f27c9.woff2')format("woff");}.ff23_c00231{font-family:ff23_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:ff24_c00231;src:url('chunks/assets/font_0508e41f68eeb5a5ce083345.woff2')format("woff");}.ff24_c00231{font-family:ff24_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:ff25_c00231;src:url('chunks/assets/font_7b9bdce6100af48e4b69754e.woff2')format("woff");}.ff25_c00231{font-family:ff25_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:ff26_c00231;src:url('chunks/assets/font_c2837a97b0d4f5739f5f5969.woff2')format("woff");}.ff26_c00231{font-family:ff26_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:ff27_c00231;src:url('chunks/assets/font_0336e0515857af5b825c6673.woff2')format("woff");}.ff27_c00231{font-family:ff27_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:ff28_c00231;src:url('chunks/assets/font_7ef900c96999041e12206943.woff2')format("woff");}.ff28_c00231{font-family:ff28_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:ff29_c00231;src:url('chunks/assets/font_c2d33aafdf11f2fabd28d7a9.woff2')format("woff");}.ff29_c00231{font-family:ff29_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:ff2a_c00231;src:url('chunks/assets/font_ead61b922b939e2e49cf3cc9.woff2')format("woff");}.ff2a_c00231{font-family:ff2a_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;}
.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;}
.ls0_c00231{letter-spacing:0.000000px;}
.sc__c00231{text-shadow:none;}
.sc0_c00231{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00231{-webkit-text-stroke:0px transparent;}
.sc0_c00231{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00231{word-spacing:-0.072000px;}
.ws1_c00231{word-spacing:0.000000px;}
._8_c00231{width:1.094400px;}
._2_c00231{width:2.851200px;}
._a_c00231{width:5.882400px;}
._1_c00231{width:7.423200px;}
._4_c00231{width:8.784000px;}
._7_c00231{width:10.058400px;}
._6_c00231{width:11.181600px;}
._5_c00231{width:13.003200px;}
._9_c00231{width:14.414400px;}
._b_c00231{width:16.596000px;}
._0_c00231{width:22.370400px;}
._3_c00231{width:26.344800px;}
.fc1_c00231{color:transparent;}
.fc0_c00231{color:rgb(0,0,0);}
.fs1_c00231{font-size:64.800000px;}
.fs0_c00231{font-size:72.000000px;}
.y0_c00231{bottom:0.000000px;}
.y5_c00231{bottom:5.040000px;}
.y1_c00231{bottom:12.735000px;}
.y3_c00231{bottom:45.045000px;}
.y4_c00231{bottom:52.740000px;}
.y21_c00231{bottom:110.565000px;}
.y20_c00231{bottom:146.565000px;}
.y1f_c00231{bottom:182.565000px;}
.y1e_c00231{bottom:218.565000px;}
.y1d_c00231{bottom:254.565000px;}
.y1c_c00231{bottom:290.565000px;}
.y1b_c00231{bottom:326.565000px;}
.y1a_c00231{bottom:362.565000px;}
.y19_c00231{bottom:398.565000px;}
.y18_c00231{bottom:434.565000px;}
.y17_c00231{bottom:470.565000px;}
.y16_c00231{bottom:506.565000px;}
.y15_c00231{bottom:542.565000px;}
.y14_c00231{bottom:578.565000px;}
.y13_c00231{bottom:614.565000px;}
.y12_c00231{bottom:650.565000px;}
.y11_c00231{bottom:686.565000px;}
.y10_c00231{bottom:722.565000px;}
.yf_c00231{bottom:758.565000px;}
.ye_c00231{bottom:794.565000px;}
.yd_c00231{bottom:830.565000px;}
.yc_c00231{bottom:866.565000px;}
.yb_c00231{bottom:902.565000px;}
.ya_c00231{bottom:938.565000px;}
.y9_c00231{bottom:974.565000px;}
.y8_c00231{bottom:1010.565000px;}
.y7_c00231{bottom:1046.565000px;}
.y6_c00231{bottom:1082.565000px;}
.y2_c00231{bottom:1165.365000px;}
.h4_c00231{height:20.880000px;}
.h3_c00231{height:70.664062px;}
.h6_c00231{height:71.824219px;}
.h5_c00231{height:74.004654px;}
.h2_c00231{height:1237.365000px;}
.h0_c00231{height:1262.835000px;}
.h1_c00231{height:1263.000000px;}
.w3_c00231{width:27.000000px;}
.w2_c00231{width:867.465000px;}
.w0_c00231{width:892.935000px;}
.w1_c00231{width:893.250000px;}
.x0_c00231{left:0.000000px;}
.x1_c00231{left:12.735000px;}
.x3_c00231{left:95.406300px;}
.x5_c00231{left:149.400150px;}
.x6_c00231{left:180.450150px;}
.x4_c00231{left:433.215000px;}
.x2_c00231{left:878.550300px;}
@media print{
.v0_c00231{vertical-align:0.000000pt;}
.ls0_c00231{letter-spacing:0.000000pt;}
.ws0_c00231{word-spacing:-0.064000pt;}
.ws1_c00231{word-spacing:0.000000pt;}
._8_c00231{width:0.972800pt;}
._2_c00231{width:2.534400pt;}
._a_c00231{width:5.228800pt;}
._1_c00231{width:6.598400pt;}
._4_c00231{width:7.808000pt;}
._7_c00231{width:8.940800pt;}
._6_c00231{width:9.939200pt;}
._5_c00231{width:11.558400pt;}
._9_c00231{width:12.812800pt;}
._b_c00231{width:14.752000pt;}
._0_c00231{width:19.884800pt;}
._3_c00231{width:23.417600pt;}
.fs1_c00231{font-size:57.600000pt;}
.fs0_c00231{font-size:64.000000pt;}
.y0_c00231{bottom:0.000000pt;}
.y5_c00231{bottom:4.480000pt;}
.y1_c00231{bottom:11.320000pt;}
.y3_c00231{bottom:40.040000pt;}
.y4_c00231{bottom:46.880000pt;}
.y21_c00231{bottom:98.280000pt;}
.y20_c00231{bottom:130.280000pt;}
.y1f_c00231{bottom:162.280000pt;}
.y1e_c00231{bottom:194.280000pt;}
.y1d_c00231{bottom:226.280000pt;}
.y1c_c00231{bottom:258.280000pt;}
.y1b_c00231{bottom:290.280000pt;}
.y1a_c00231{bottom:322.280000pt;}
.y19_c00231{bottom:354.280000pt;}
.y18_c00231{bottom:386.280000pt;}
.y17_c00231{bottom:418.280000pt;}
.y16_c00231{bottom:450.280000pt;}
.y15_c00231{bottom:482.280000pt;}
.y14_c00231{bottom:514.280000pt;}
.y13_c00231{bottom:546.280000pt;}
.y12_c00231{bottom:578.280000pt;}
.y11_c00231{bottom:610.280000pt;}
.y10_c00231{bottom:642.280000pt;}
.yf_c00231{bottom:674.280000pt;}
.ye_c00231{bottom:706.280000pt;}
.yd_c00231{bottom:738.280000pt;}
.yc_c00231{bottom:770.280000pt;}
.yb_c00231{bottom:802.280000pt;}
.ya_c00231{bottom:834.280000pt;}
.y9_c00231{bottom:866.280000pt;}
.y8_c00231{bottom:898.280000pt;}
.y7_c00231{bottom:930.280000pt;}
.y6_c00231{bottom:962.280000pt;}
.y2_c00231{bottom:1035.880000pt;}
.h4_c00231{height:18.560000pt;}
.h3_c00231{height:62.812500pt;}
.h6_c00231{height:63.843750pt;}
.h5_c00231{height:65.781915pt;}
.h2_c00231{height:1099.880000pt;}
.h0_c00231{height:1122.520000pt;}
.h1_c00231{height:1122.666667pt;}
.w3_c00231{width:24.000000pt;}
.w2_c00231{width:771.080000pt;}
.w0_c00231{width:793.720000pt;}
.w1_c00231{width:794.000000pt;}
.x0_c00231{left:0.000000pt;}
.x1_c00231{left:11.320000pt;}
.x3_c00231{left:84.805600pt;}
.x5_c00231{left:132.800133pt;}
.x6_c00231{left:160.400133pt;}
.x4_c00231{left:385.080000pt;}
.x2_c00231{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00232{font-family:ff1_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00232;src:url('chunks/assets/font_85d4546c9806cf5d09ef8c30.woff2')format("woff");}.ff2_c00232{font-family:ff2_c00232;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00232;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00232{font-family:ff3_c00232;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00232;src:url('chunks/assets/font_73f44b431418bec01d308727.woff2')format("woff");}.ff4_c00232{font-family:ff4_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00232;src:url('chunks/assets/font_c25f32d675943458680bd95f.woff2')format("woff");}.ff5_c00232{font-family:ff5_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00232;src:url('chunks/assets/font_de8a4bb4f393dc69864251a1.woff2')format("woff");}.ff6_c00232{font-family:ff6_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00232;src:url('chunks/assets/font_20b9efbc855388a771bbe270.woff2')format("woff");}.ff7_c00232{font-family:ff7_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00232;src:url('chunks/assets/font_91272a37ecf2d2552fb98ee6.woff2')format("woff");}.ff8_c00232{font-family:ff8_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00232;src:url('chunks/assets/font_a4560ea77c8f7de33f3e7602.woff2')format("woff");}.ff9_c00232{font-family:ff9_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00232;src:url('chunks/assets/font_d9aa8fe78c6238379b491c45.woff2')format("woff");}.ffa_c00232{font-family:ffa_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00232;src:url('chunks/assets/font_4fa950215dbc608d961f2b1c.woff2')format("woff");}.ffb_c00232{font-family:ffb_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00232;src:url('chunks/assets/font_8bed11b5b31db255c150a584.woff2')format("woff");}.ffc_c00232{font-family:ffc_c00232;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:ffd_c00232;src:url('chunks/assets/font_733e07ce4534de1cbf45f705.woff2')format("woff");}.ffd_c00232{font-family:ffd_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00232;src:url('chunks/assets/font_8933aaf0f14ffb4dd053c5d1.woff2')format("woff");}.ffe_c00232{font-family:ffe_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00232;src:url('chunks/assets/font_0242505681ae9ba835a2cfc0.woff2')format("woff");}.fff_c00232{font-family:fff_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00232;src:url('chunks/assets/font_2af57d7e990f489c7d16871c.woff2')format("woff");}.ff10_c00232{font-family:ff10_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00232;src:url('chunks/assets/font_5f3c19f761e0db6535119fa2.woff2')format("woff");}.ff11_c00232{font-family:ff11_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00232;src:url('chunks/assets/font_5338b328824a943e14990814.woff2')format("woff");}.ff12_c00232{font-family:ff12_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00232;src:url('chunks/assets/font_5dab6db36b5d2b70425afb6f.woff2')format("woff");}.ff13_c00232{font-family:ff13_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00232;src:url('chunks/assets/font_f6292a0520449e2e63171d27.woff2')format("woff");}.ff14_c00232{font-family:ff14_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00232;src:url('chunks/assets/font_405652add632b2815bf2f416.woff2')format("woff");}.ff15_c00232{font-family:ff15_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00232;src:url('chunks/assets/font_c9a811336a496960c754c74a.woff2')format("woff");}.ff16_c00232{font-family:ff16_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00232;src:url('chunks/assets/font_66e2a37d5ac048ee80f5e4c4.woff2')format("woff");}.ff17_c00232{font-family:ff17_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00232;src:url('chunks/assets/font_a8c93ada1c6e3b54ce12d52e.woff2')format("woff");}.ff18_c00232{font-family:ff18_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00232;src:url('chunks/assets/font_5721521166925f2a9efd0f30.woff2')format("woff");}.ff19_c00232{font-family:ff19_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00232;src:url('chunks/assets/font_5083c91d827ac8dcbd031985.woff2')format("woff");}.ff1a_c00232{font-family:ff1a_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00232;src:url('chunks/assets/font_b5971d36c8b8fa8a76a3c4c2.woff2')format("woff");}.ff1b_c00232{font-family:ff1b_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00232;src:url('chunks/assets/font_74783a0c57fc662fdf72196b.woff2')format("woff");}.ff1c_c00232{font-family:ff1c_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00232;src:url('chunks/assets/font_c3de313ab4a0ffca55c48189.woff2')format("woff");}.ff1d_c00232{font-family:ff1d_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00232;src:url('chunks/assets/font_6d00380f41749645aeae8f19.woff2')format("woff");}.ff1e_c00232{font-family:ff1e_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00232;src:url('chunks/assets/font_419c41a08d9ec50973416be8.woff2')format("woff");}.ff1f_c00232{font-family:ff1f_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00232;src:url('chunks/assets/font_36e143329b4da09801ed7ef5.woff2')format("woff");}.ff20_c00232{font-family:ff20_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00232;src:url('chunks/assets/font_6a925a4973a487463b6e938e.woff2')format("woff");}.ff21_c00232{font-family:ff21_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00232;src:url('chunks/assets/font_05261316be02dc29110e2780.woff2')format("woff");}.ff22_c00232{font-family:ff22_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00232;src:url('chunks/assets/font_e7d3e99a1f10c4912aaa6a79.woff2')format("woff");}.ff23_c00232{font-family:ff23_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00232;src:url('chunks/assets/font_d5307eedff3cccb320b390bf.woff2')format("woff");}.ff24_c00232{font-family:ff24_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00232;src:url('chunks/assets/font_24fbca2b3fe9f69bd4cfe950.woff2')format("woff");}.ff25_c00232{font-family:ff25_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00232;src:url('chunks/assets/font_eb4495115b344bf978d12f25.woff2')format("woff");}.ff26_c00232{font-family:ff26_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00232;src:url('chunks/assets/font_39d49cd7934d0c591b45d3a5.woff2')format("woff");}.ff27_c00232{font-family:ff27_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00232;src:url('chunks/assets/font_b315863f9a8d6796d68b1916.woff2')format("woff");}.ff28_c00232{font-family:ff28_c00232;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00232{letter-spacing:0.014400px;}
.ls1_c00232{letter-spacing:0.072000px;}
.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;}
}
.ws2_c00232{word-spacing:-18.000000px;}
.ws1_c00232{word-spacing:-0.086400px;}
.ws0_c00232{word-spacing:-0.072000px;}
.ws3_c00232{word-spacing:0.000000px;}
._7_c00232{margin-left:-1.029600px;}
._0_c00232{width:1.396800px;}
._1_c00232{width:2.534400px;}
._6_c00232{width:3.945600px;}
._a_c00232{width:5.673600px;}
._4_c00232{width:7.653600px;}
._2_c00232{width:8.719200px;}
._c_c00232{width:10.036800px;}
._5_c00232{width:11.174400px;}
._d_c00232{width:12.592800px;}
._8_c00232{width:13.759200px;}
._b_c00232{width:14.781600px;}
._9_c00232{width:19.044000px;}
._e_c00232{width:23.191200px;}
._3_c00232{width:26.546400px;}
.fc1_c00232{color:transparent;}
.fc0_c00232{color:rgb(0,0,0);}
.fs1_c00232{font-size:64.800000px;}
.fs0_c00232{font-size:72.000000px;}
.y0_c00232{bottom:0.000000px;}
.y5_c00232{bottom:5.040000px;}
.y1_c00232{bottom:12.735000px;}
.y3_c00232{bottom:45.045000px;}
.y4_c00232{bottom:52.740000px;}
.y20_c00232{bottom:146.565000px;}
.y1f_c00232{bottom:182.565000px;}
.y1e_c00232{bottom:218.565000px;}
.y1d_c00232{bottom:254.565000px;}
.y1c_c00232{bottom:290.565000px;}
.y1b_c00232{bottom:326.565000px;}
.y1a_c00232{bottom:362.565000px;}
.y19_c00232{bottom:398.565000px;}
.y18_c00232{bottom:434.565000px;}
.y17_c00232{bottom:470.565000px;}
.y16_c00232{bottom:506.565000px;}
.y15_c00232{bottom:542.565000px;}
.y14_c00232{bottom:578.565000px;}
.y13_c00232{bottom:614.565000px;}
.y12_c00232{bottom:650.565000px;}
.y11_c00232{bottom:686.565000px;}
.y10_c00232{bottom:722.565000px;}
.yf_c00232{bottom:758.565000px;}
.ye_c00232{bottom:794.565000px;}
.yd_c00232{bottom:830.565000px;}
.yc_c00232{bottom:866.565000px;}
.yb_c00232{bottom:902.565000px;}
.ya_c00232{bottom:938.565000px;}
.y9_c00232{bottom:974.565000px;}
.y8_c00232{bottom:1010.565000px;}
.y7_c00232{bottom:1046.565000px;}
.y6_c00232{bottom:1082.565000px;}
.y2_c00232{bottom:1165.365000px;}
.h4_c00232{height:20.880000px;}
.h3_c00232{height:70.664062px;}
.h5_c00232{height:74.004654px;}
.h2_c00232{height:1237.365000px;}
.h0_c00232{height:1262.835000px;}
.h1_c00232{height:1263.000000px;}
.w3_c00232{width:27.000000px;}
.w2_c00232{width:867.465000px;}
.w0_c00232{width:892.935000px;}
.w1_c00232{width:893.250000px;}
.x0_c00232{left:0.000000px;}
.x1_c00232{left:12.735000px;}
.x3_c00232{left:95.406300px;}
.x5_c00232{left:149.400150px;}
.x4_c00232{left:433.215000px;}
.x2_c00232{left:878.550300px;}
@media print{
.v0_c00232{vertical-align:0.000000pt;}
.ls2_c00232{letter-spacing:0.000000pt;}
.ls0_c00232{letter-spacing:0.012800pt;}
.ls1_c00232{letter-spacing:0.064000pt;}
.ws2_c00232{word-spacing:-16.000000pt;}
.ws1_c00232{word-spacing:-0.076800pt;}
.ws0_c00232{word-spacing:-0.064000pt;}
.ws3_c00232{word-spacing:0.000000pt;}
._7_c00232{margin-left:-0.915200pt;}
._0_c00232{width:1.241600pt;}
._1_c00232{width:2.252800pt;}
._6_c00232{width:3.507200pt;}
._a_c00232{width:5.043200pt;}
._4_c00232{width:6.803200pt;}
._2_c00232{width:7.750400pt;}
._c_c00232{width:8.921600pt;}
._5_c00232{width:9.932800pt;}
._d_c00232{width:11.193600pt;}
._8_c00232{width:12.230400pt;}
._b_c00232{width:13.139200pt;}
._9_c00232{width:16.928000pt;}
._e_c00232{width:20.614400pt;}
._3_c00232{width:23.596800pt;}
.fs1_c00232{font-size:57.600000pt;}
.fs0_c00232{font-size:64.000000pt;}
.y0_c00232{bottom:0.000000pt;}
.y5_c00232{bottom:4.480000pt;}
.y1_c00232{bottom:11.320000pt;}
.y3_c00232{bottom:40.040000pt;}
.y4_c00232{bottom:46.880000pt;}
.y20_c00232{bottom:130.280000pt;}
.y1f_c00232{bottom:162.280000pt;}
.y1e_c00232{bottom:194.280000pt;}
.y1d_c00232{bottom:226.280000pt;}
.y1c_c00232{bottom:258.280000pt;}
.y1b_c00232{bottom:290.280000pt;}
.y1a_c00232{bottom:322.280000pt;}
.y19_c00232{bottom:354.280000pt;}
.y18_c00232{bottom:386.280000pt;}
.y17_c00232{bottom:418.280000pt;}
.y16_c00232{bottom:450.280000pt;}
.y15_c00232{bottom:482.280000pt;}
.y14_c00232{bottom:514.280000pt;}
.y13_c00232{bottom:546.280000pt;}
.y12_c00232{bottom:578.280000pt;}
.y11_c00232{bottom:610.280000pt;}
.y10_c00232{bottom:642.280000pt;}
.yf_c00232{bottom:674.280000pt;}
.ye_c00232{bottom:706.280000pt;}
.yd_c00232{bottom:738.280000pt;}
.yc_c00232{bottom:770.280000pt;}
.yb_c00232{bottom:802.280000pt;}
.ya_c00232{bottom:834.280000pt;}
.y9_c00232{bottom:866.280000pt;}
.y8_c00232{bottom:898.280000pt;}
.y7_c00232{bottom:930.280000pt;}
.y6_c00232{bottom:962.280000pt;}
.y2_c00232{bottom:1035.880000pt;}
.h4_c00232{height:18.560000pt;}
.h3_c00232{height:62.812500pt;}
.h5_c00232{height:65.781915pt;}
.h2_c00232{height:1099.880000pt;}
.h0_c00232{height:1122.520000pt;}
.h1_c00232{height:1122.666667pt;}
.w3_c00232{width:24.000000pt;}
.w2_c00232{width:771.080000pt;}
.w0_c00232{width:793.720000pt;}
.w1_c00232{width:794.000000pt;}
.x0_c00232{left:0.000000pt;}
.x1_c00232{left:11.320000pt;}
.x3_c00232{left:84.805600pt;}
.x5_c00232{left:132.800133pt;}
.x4_c00232{left:385.080000pt;}
.x2_c00232{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00233{font-family:ff1_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00233;src:url('chunks/assets/font_011b6583ef7d82db45335dc6.woff2')format("woff");}.ff2_c00233{font-family:ff2_c00233;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00233;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00233{font-family:ff3_c00233;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00233;src:url('chunks/assets/font_dacb0d64411c0ff1020a0577.woff2')format("woff");}.ff4_c00233{font-family:ff4_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00233;src:url('chunks/assets/font_058971eecfcf3e40f8852cc4.woff2')format("woff");}.ff5_c00233{font-family:ff5_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00233;src:url('chunks/assets/font_b315863f9a8d6796d68b1916.woff2')format("woff");}.ff6_c00233{font-family:ff6_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00233;src:url('chunks/assets/font_e68987ac9a58f1b38eeb280b.woff2')format("woff");}.ff7_c00233{font-family:ff7_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00233;src:url('chunks/assets/font_67257003c3d8cb285dfbc7d9.woff2')format("woff");}.ff8_c00233{font-family:ff8_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00233;src:url('chunks/assets/font_f6407947d2b2a19d35ae4be0.woff2')format("woff");}.ff9_c00233{font-family:ff9_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00233;src:url('chunks/assets/font_2852249ae295b64d34c4cd46.woff2')format("woff");}.ffa_c00233{font-family:ffa_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00233;src:url('chunks/assets/font_bfbf260188986240aea38ce0.woff2')format("woff");}.ffb_c00233{font-family:ffb_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00233;src:url('chunks/assets/font_d95d53efc214a50e193c2210.woff2')format("woff");}.ffc_c00233{font-family:ffc_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00233;src:url('chunks/assets/font_649d04ee7580e2954b067882.woff2')format("woff");}.ffd_c00233{font-family:ffd_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00233;src:url('chunks/assets/font_135333c10d949e17a2703170.woff2')format("woff");}.ffe_c00233{font-family:ffe_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00233;src:url('chunks/assets/font_e550783474924d8eed821605.woff2')format("woff");}.fff_c00233{font-family:fff_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00233;src:url('chunks/assets/font_03926ff98d915ffc4cbd9aca.woff2')format("woff");}.ff10_c00233{font-family:ff10_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00233;src:url('chunks/assets/font_2a6f178f3aacfe8d88ac4b99.woff2')format("woff");}.ff11_c00233{font-family:ff11_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00233;src:url('chunks/assets/font_a7a18bbf6b02b061b0afc8dc.woff2')format("woff");}.ff12_c00233{font-family:ff12_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00233;src:url('chunks/assets/font_0ee1fae6ccbe3da2e33371da.woff2')format("woff");}.ff13_c00233{font-family:ff13_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00233;src:url('chunks/assets/font_f8719e1c02e368d9d0c3cf0d.woff2')format("woff");}.ff14_c00233{font-family:ff14_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00233;src:url('chunks/assets/font_9b6dcd0e7037121a2bae03a6.woff2')format("woff");}.ff15_c00233{font-family:ff15_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00233;src:url('chunks/assets/font_d5162ab17495df264f43635b.woff2')format("woff");}.ff16_c00233{font-family:ff16_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00233;src:url('chunks/assets/font_7bd8803a91aabd7c18bfa16d.woff2')format("woff");}.ff17_c00233{font-family:ff17_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00233;src:url('chunks/assets/font_5069bddd984a6a67ab3dbf81.woff2')format("woff");}.ff18_c00233{font-family:ff18_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00233;src:url('chunks/assets/font_6eacdd774ca3d1d29795e2fa.woff2')format("woff");}.ff19_c00233{font-family:ff19_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00233;src:url('chunks/assets/font_06fb16dc6bb31f2aeb8061a5.woff2')format("woff");}.ff1a_c00233{font-family:ff1a_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00233;src:url('chunks/assets/font_d2998a1a8f88ee51b4f0567c.woff2')format("woff");}.ff1b_c00233{font-family:ff1b_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00233;src:url('chunks/assets/font_400900a3e8ee4fa3b6eca750.woff2')format("woff");}.ff1c_c00233{font-family:ff1c_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00233;src:url('chunks/assets/font_276ea575e00d827d18ea83e1.woff2')format("woff");}.ff1d_c00233{font-family:ff1d_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00233;src:url('chunks/assets/font_8da8ecc40813a5c6be8ee097.woff2')format("woff");}.ff1e_c00233{font-family:ff1e_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00233;src:url('chunks/assets/font_b65d6e9a982cb5857b0c8524.woff2')format("woff");}.ff1f_c00233{font-family:ff1f_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00233;src:url('chunks/assets/font_15eb95b353abca5655a3eadb.woff2')format("woff");}.ff20_c00233{font-family:ff20_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00233;src:url('chunks/assets/font_77f3065e55499bb405c7fe95.woff2')format("woff");}.ff21_c00233{font-family:ff21_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00233;src:url('chunks/assets/font_9d7384b6c7f87ef203ec199b.woff2')format("woff");}.ff22_c00233{font-family:ff22_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00233;src:url('chunks/assets/font_4b162f4f80422b84d28c76ff.woff2')format("woff");}.ff23_c00233{font-family:ff23_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00233;src:url('chunks/assets/font_d18bf90dfc421b807fb7a4d9.woff2')format("woff");}.ff24_c00233{font-family:ff24_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00233;src:url('chunks/assets/font_be6479c605d234edbc57f501.woff2')format("woff");}.ff25_c00233{font-family:ff25_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00233;src:url('chunks/assets/font_0c691b3994fa61ff917cecc5.woff2')format("woff");}.ff26_c00233{font-family:ff26_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00233;src:url('chunks/assets/font_17d8f2426992fe42e72ecddf.woff2')format("woff");}.ff27_c00233{font-family:ff27_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00233;src:url('chunks/assets/font_de8100fc73324cabd0076a21.woff2')format("woff");}.ff28_c00233{font-family:ff28_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00233;src:url('chunks/assets/font_38d6ee20784a304cbb9ff471.woff2')format("woff");}.ff29_c00233{font-family:ff29_c00233;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00233{letter-spacing:0.000000px;}
.ls0_c00233{letter-spacing:0.072000px;}
.sc__c00233{text-shadow:none;}
.sc0_c00233{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00233{-webkit-text-stroke:0px transparent;}
.sc0_c00233{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00233{word-spacing:-0.072000px;}
.ws1_c00233{word-spacing:0.000000px;}
._8_c00233{margin-left:-1.418400px;}
._6_c00233{width:1.116000px;}
._2_c00233{width:2.224800px;}
._5_c00233{width:3.535200px;}
._3_c00233{width:5.479200px;}
._9_c00233{width:6.544800px;}
._0_c00233{width:8.632800px;}
._1_c00233{width:10.029600px;}
._4_c00233{width:11.138400px;}
._e_c00233{width:13.384800px;}
._b_c00233{width:14.767200px;}
._7_c00233{width:15.912000px;}
._a_c00233{width:16.999200px;}
._d_c00233{width:20.102400px;}
._c_c00233{width:21.247200px;}
.fc1_c00233{color:transparent;}
.fc0_c00233{color:rgb(0,0,0);}
.fs1_c00233{font-size:64.800000px;}
.fs0_c00233{font-size:72.000000px;}
.y0_c00233{bottom:0.000000px;}
.y5_c00233{bottom:5.040000px;}
.y1_c00233{bottom:12.735000px;}
.y3_c00233{bottom:45.045000px;}
.y4_c00233{bottom:52.740000px;}
.y21_c00233{bottom:110.565000px;}
.y20_c00233{bottom:146.565000px;}
.y1f_c00233{bottom:182.565000px;}
.y1e_c00233{bottom:218.565000px;}
.y1d_c00233{bottom:254.565000px;}
.y1c_c00233{bottom:290.565000px;}
.y1b_c00233{bottom:326.565000px;}
.y1a_c00233{bottom:362.565000px;}
.y19_c00233{bottom:398.565000px;}
.y18_c00233{bottom:434.565000px;}
.y17_c00233{bottom:470.565000px;}
.y16_c00233{bottom:506.565000px;}
.y15_c00233{bottom:542.565000px;}
.y14_c00233{bottom:578.565000px;}
.y13_c00233{bottom:614.565000px;}
.y12_c00233{bottom:650.565000px;}
.y11_c00233{bottom:686.565000px;}
.y10_c00233{bottom:722.565000px;}
.yf_c00233{bottom:758.565000px;}
.ye_c00233{bottom:794.565000px;}
.yd_c00233{bottom:830.565000px;}
.yc_c00233{bottom:866.565000px;}
.yb_c00233{bottom:902.565000px;}
.ya_c00233{bottom:938.565000px;}
.y9_c00233{bottom:974.565000px;}
.y8_c00233{bottom:1010.565000px;}
.y7_c00233{bottom:1046.565000px;}
.y6_c00233{bottom:1082.565000px;}
.y2_c00233{bottom:1165.365000px;}
.h4_c00233{height:20.880000px;}
.h3_c00233{height:70.664062px;}
.h5_c00233{height:74.004654px;}
.h2_c00233{height:1237.365000px;}
.h0_c00233{height:1262.835000px;}
.h1_c00233{height:1263.000000px;}
.w3_c00233{width:27.000000px;}
.w2_c00233{width:867.465000px;}
.w0_c00233{width:892.935000px;}
.w1_c00233{width:893.250000px;}
.x0_c00233{left:0.000000px;}
.x1_c00233{left:12.735000px;}
.x3_c00233{left:95.406300px;}
.x5_c00233{left:149.400150px;}
.x4_c00233{left:433.215000px;}
.x2_c00233{left:878.550300px;}
@media print{
.v0_c00233{vertical-align:0.000000pt;}
.ls1_c00233{letter-spacing:0.000000pt;}
.ls0_c00233{letter-spacing:0.064000pt;}
.ws0_c00233{word-spacing:-0.064000pt;}
.ws1_c00233{word-spacing:0.000000pt;}
._8_c00233{margin-left:-1.260800pt;}
._6_c00233{width:0.992000pt;}
._2_c00233{width:1.977600pt;}
._5_c00233{width:3.142400pt;}
._3_c00233{width:4.870400pt;}
._9_c00233{width:5.817600pt;}
._0_c00233{width:7.673600pt;}
._1_c00233{width:8.915200pt;}
._4_c00233{width:9.900800pt;}
._e_c00233{width:11.897600pt;}
._b_c00233{width:13.126400pt;}
._7_c00233{width:14.144000pt;}
._a_c00233{width:15.110400pt;}
._d_c00233{width:17.868800pt;}
._c_c00233{width:18.886400pt;}
.fs1_c00233{font-size:57.600000pt;}
.fs0_c00233{font-size:64.000000pt;}
.y0_c00233{bottom:0.000000pt;}
.y5_c00233{bottom:4.480000pt;}
.y1_c00233{bottom:11.320000pt;}
.y3_c00233{bottom:40.040000pt;}
.y4_c00233{bottom:46.880000pt;}
.y21_c00233{bottom:98.280000pt;}
.y20_c00233{bottom:130.280000pt;}
.y1f_c00233{bottom:162.280000pt;}
.y1e_c00233{bottom:194.280000pt;}
.y1d_c00233{bottom:226.280000pt;}
.y1c_c00233{bottom:258.280000pt;}
.y1b_c00233{bottom:290.280000pt;}
.y1a_c00233{bottom:322.280000pt;}
.y19_c00233{bottom:354.280000pt;}
.y18_c00233{bottom:386.280000pt;}
.y17_c00233{bottom:418.280000pt;}
.y16_c00233{bottom:450.280000pt;}
.y15_c00233{bottom:482.280000pt;}
.y14_c00233{bottom:514.280000pt;}
.y13_c00233{bottom:546.280000pt;}
.y12_c00233{bottom:578.280000pt;}
.y11_c00233{bottom:610.280000pt;}
.y10_c00233{bottom:642.280000pt;}
.yf_c00233{bottom:674.280000pt;}
.ye_c00233{bottom:706.280000pt;}
.yd_c00233{bottom:738.280000pt;}
.yc_c00233{bottom:770.280000pt;}
.yb_c00233{bottom:802.280000pt;}
.ya_c00233{bottom:834.280000pt;}
.y9_c00233{bottom:866.280000pt;}
.y8_c00233{bottom:898.280000pt;}
.y7_c00233{bottom:930.280000pt;}
.y6_c00233{bottom:962.280000pt;}
.y2_c00233{bottom:1035.880000pt;}
.h4_c00233{height:18.560000pt;}
.h3_c00233{height:62.812500pt;}
.h5_c00233{height:65.781915pt;}
.h2_c00233{height:1099.880000pt;}
.h0_c00233{height:1122.520000pt;}
.h1_c00233{height:1122.666667pt;}
.w3_c00233{width:24.000000pt;}
.w2_c00233{width:771.080000pt;}
.w0_c00233{width:793.720000pt;}
.w1_c00233{width:794.000000pt;}
.x0_c00233{left:0.000000pt;}
.x1_c00233{left:11.320000pt;}
.x3_c00233{left:84.805600pt;}
.x5_c00233{left:132.800133pt;}
.x4_c00233{left:385.080000pt;}
.x2_c00233{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_911296cab861147c75cd8bb2.woff2')format("woff");}.ff1_c00234{font-family:ff1_c00234;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00234;src:url('chunks/assets/font_dcd7b3152d7ac02a3542bb1c.woff2')format("woff");}.ff2_c00234{font-family:ff2_c00234;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00234;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00234{font-family:ff3_c00234;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00234;src:url('chunks/assets/font_4c74c6af6f5db963d0744743.woff2')format("woff");}.ff4_c00234{font-family:ff4_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00234;src:url('chunks/assets/font_e59879024cb2d38ef6f81c37.woff2')format("woff");}.ff5_c00234{font-family:ff5_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00234;src:url('chunks/assets/font_f617989f1c9ea3a4aeff395d.woff2')format("woff");}.ff6_c00234{font-family:ff6_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00234;src:url('chunks/assets/font_238ede6b82657767e05174a2.woff2')format("woff");}.ff7_c00234{font-family:ff7_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00234;src:url('chunks/assets/font_3c028fee6f2b6d30e3a556ac.woff2')format("woff");}.ff8_c00234{font-family:ff8_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00234;src:url('chunks/assets/font_80d758fe9aa423c7583e6dc4.woff2')format("woff");}.ff9_c00234{font-family:ff9_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00234;src:url('chunks/assets/font_2bbb4a918155b4274dfc5d47.woff2')format("woff");}.ffa_c00234{font-family:ffa_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00234;src:url('chunks/assets/font_37d8fd3f2f6137ab5e047285.woff2')format("woff");}.ffb_c00234{font-family:ffb_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00234;src:url('chunks/assets/font_507630e7da585d8de4200074.woff2')format("woff");}.ffc_c00234{font-family:ffc_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00234;src:url('chunks/assets/font_443b38d0d6653491286ced97.woff2')format("woff");}.ffd_c00234{font-family:ffd_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00234;src:url('chunks/assets/font_7ccc5627dbddd56c0e2bca2b.woff2')format("woff");}.ffe_c00234{font-family:ffe_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00234;src:url('chunks/assets/font_53ed6547d840e6c250b47857.woff2')format("woff");}.fff_c00234{font-family:fff_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00234;src:url('chunks/assets/font_a501d672dc4363ee703a18e8.woff2')format("woff");}.ff10_c00234{font-family:ff10_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00234;src:url('chunks/assets/font_ad9c2711885ca074a72d0958.woff2')format("woff");}.ff11_c00234{font-family:ff11_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00234;src:url('chunks/assets/font_408940ba2cb65cdfa0caa7b3.woff2')format("woff");}.ff12_c00234{font-family:ff12_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00234;src:url('chunks/assets/font_f4e658c4e7dbde23afd9c410.woff2')format("woff");}.ff13_c00234{font-family:ff13_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00234;src:url('chunks/assets/font_c644f86f930f6898d38a61c6.woff2')format("woff");}.ff14_c00234{font-family:ff14_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00234;src:url('chunks/assets/font_e6538399a05562c6bf8f8801.woff2')format("woff");}.ff15_c00234{font-family:ff15_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00234;src:url('chunks/assets/font_a158f4fdb141ed575a986aa2.woff2')format("woff");}.ff16_c00234{font-family:ff16_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00234;src:url('chunks/assets/font_56accdfff2be82a9263b25a7.woff2')format("woff");}.ff17_c00234{font-family:ff17_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00234;src:url('chunks/assets/font_623797d81fc9d504e2b7cd66.woff2')format("woff");}.ff18_c00234{font-family:ff18_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00234;src:url('chunks/assets/font_8f817a8210bb25cc21538530.woff2')format("woff");}.ff19_c00234{font-family:ff19_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00234;src:url('chunks/assets/font_c720ae2203f7fb2251001ba4.woff2')format("woff");}.ff1a_c00234{font-family:ff1a_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00234;src:url('chunks/assets/font_77ef20776dc3c6ed756f0523.woff2')format("woff");}.ff1b_c00234{font-family:ff1b_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00234;src:url('chunks/assets/font_c3af9dcb84ff07d0461ef1fa.woff2')format("woff");}.ff1c_c00234{font-family:ff1c_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00234;src:url('chunks/assets/font_28249a178bb6494fb0f262dc.woff2')format("woff");}.ff1d_c00234{font-family:ff1d_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00234;src:url('chunks/assets/font_b454c732694a1061b1b58852.woff2')format("woff");}.ff1e_c00234{font-family:ff1e_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00234;src:url('chunks/assets/font_b360bf67c60accc665451298.woff2')format("woff");}.ff1f_c00234{font-family:ff1f_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00234;src:url('chunks/assets/font_31fe5fb8b7495a4ce76bfba9.woff2')format("woff");}.ff20_c00234{font-family:ff20_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00234;src:url('chunks/assets/font_4cd94970f6d5dcc630a954c0.woff2')format("woff");}.ff21_c00234{font-family:ff21_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00234;src:url('chunks/assets/font_c93b8f169a73bd0d9e080711.woff2')format("woff");}.ff22_c00234{font-family:ff22_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00234;src:url('chunks/assets/font_7527776655404dd5c4b49086.woff2')format("woff");}.ff23_c00234{font-family:ff23_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00234;src:url('chunks/assets/font_160a57d8d9fdec62576ee794.woff2')format("woff");}.ff24_c00234{font-family:ff24_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00234;src:url('chunks/assets/font_5d661d606cbeb861cdf7ce1a.woff2')format("woff");}.ff25_c00234{font-family:ff25_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00234;src:url('chunks/assets/font_91695f31f09b84578dd3e786.woff2')format("woff");}.ff26_c00234{font-family:ff26_c00234;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00234{letter-spacing:0.000000px;}
.sc__c00234{text-shadow:none;}
.sc0_c00234{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00234{-webkit-text-stroke:0px transparent;}
.sc0_c00234{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00234{word-spacing:-0.072000px;}
.ws1_c00234{word-spacing:0.000000px;}
._1_c00234{width:1.483200px;}
._0_c00234{width:3.304800px;}
._7_c00234{width:4.492800px;}
._8_c00234{width:5.652000px;}
._4_c00234{width:8.359200px;}
._6_c00234{width:10.029600px;}
._2_c00234{width:11.887200px;}
._5_c00234{width:21.312000px;}
._3_c00234{width:24.796800px;}
.fc1_c00234{color:transparent;}
.fc0_c00234{color:rgb(0,0,0);}
.fs1_c00234{font-size:64.800000px;}
.fs0_c00234{font-size:72.000000px;}
.y0_c00234{bottom:0.000000px;}
.y5_c00234{bottom:5.040000px;}
.y1_c00234{bottom:12.735000px;}
.y3_c00234{bottom:45.045000px;}
.y4_c00234{bottom:52.740000px;}
.y21_c00234{bottom:110.565000px;}
.y20_c00234{bottom:146.565000px;}
.y1f_c00234{bottom:182.565000px;}
.y1e_c00234{bottom:218.565000px;}
.y1d_c00234{bottom:254.565000px;}
.y1c_c00234{bottom:290.565000px;}
.y1b_c00234{bottom:326.565000px;}
.y1a_c00234{bottom:362.565000px;}
.y19_c00234{bottom:398.565000px;}
.y18_c00234{bottom:434.565000px;}
.y17_c00234{bottom:470.565000px;}
.y16_c00234{bottom:506.565000px;}
.y15_c00234{bottom:542.565000px;}
.y14_c00234{bottom:578.565000px;}
.y13_c00234{bottom:614.565000px;}
.y12_c00234{bottom:650.565000px;}
.y11_c00234{bottom:686.565000px;}
.y10_c00234{bottom:722.565000px;}
.yf_c00234{bottom:758.565000px;}
.ye_c00234{bottom:794.565000px;}
.yd_c00234{bottom:830.565000px;}
.yc_c00234{bottom:866.565000px;}
.yb_c00234{bottom:902.565000px;}
.ya_c00234{bottom:938.565000px;}
.y9_c00234{bottom:974.565000px;}
.y8_c00234{bottom:1010.565000px;}
.y7_c00234{bottom:1046.565000px;}
.y6_c00234{bottom:1082.565000px;}
.y2_c00234{bottom:1165.365000px;}
.h4_c00234{height:20.880000px;}
.h5_c00234{height:70.664062px;}
.h3_c00234{height:74.004654px;}
.h2_c00234{height:1237.365000px;}
.h0_c00234{height:1262.835000px;}
.h1_c00234{height:1263.000000px;}
.w3_c00234{width:27.000000px;}
.w2_c00234{width:867.465000px;}
.w0_c00234{width:892.935000px;}
.w1_c00234{width:893.250000px;}
.x0_c00234{left:0.000000px;}
.x1_c00234{left:12.735000px;}
.x3_c00234{left:95.406300px;}
.x5_c00234{left:149.400150px;}
.x4_c00234{left:433.215000px;}
.x2_c00234{left:878.550300px;}
@media print{
.v0_c00234{vertical-align:0.000000pt;}
.ls0_c00234{letter-spacing:0.000000pt;}
.ws0_c00234{word-spacing:-0.064000pt;}
.ws1_c00234{word-spacing:0.000000pt;}
._1_c00234{width:1.318400pt;}
._0_c00234{width:2.937600pt;}
._7_c00234{width:3.993600pt;}
._8_c00234{width:5.024000pt;}
._4_c00234{width:7.430400pt;}
._6_c00234{width:8.915200pt;}
._2_c00234{width:10.566400pt;}
._5_c00234{width:18.944000pt;}
._3_c00234{width:22.041600pt;}
.fs1_c00234{font-size:57.600000pt;}
.fs0_c00234{font-size:64.000000pt;}
.y0_c00234{bottom:0.000000pt;}
.y5_c00234{bottom:4.480000pt;}
.y1_c00234{bottom:11.320000pt;}
.y3_c00234{bottom:40.040000pt;}
.y4_c00234{bottom:46.880000pt;}
.y21_c00234{bottom:98.280000pt;}
.y20_c00234{bottom:130.280000pt;}
.y1f_c00234{bottom:162.280000pt;}
.y1e_c00234{bottom:194.280000pt;}
.y1d_c00234{bottom:226.280000pt;}
.y1c_c00234{bottom:258.280000pt;}
.y1b_c00234{bottom:290.280000pt;}
.y1a_c00234{bottom:322.280000pt;}
.y19_c00234{bottom:354.280000pt;}
.y18_c00234{bottom:386.280000pt;}
.y17_c00234{bottom:418.280000pt;}
.y16_c00234{bottom:450.280000pt;}
.y15_c00234{bottom:482.280000pt;}
.y14_c00234{bottom:514.280000pt;}
.y13_c00234{bottom:546.280000pt;}
.y12_c00234{bottom:578.280000pt;}
.y11_c00234{bottom:610.280000pt;}
.y10_c00234{bottom:642.280000pt;}
.yf_c00234{bottom:674.280000pt;}
.ye_c00234{bottom:706.280000pt;}
.yd_c00234{bottom:738.280000pt;}
.yc_c00234{bottom:770.280000pt;}
.yb_c00234{bottom:802.280000pt;}
.ya_c00234{bottom:834.280000pt;}
.y9_c00234{bottom:866.280000pt;}
.y8_c00234{bottom:898.280000pt;}
.y7_c00234{bottom:930.280000pt;}
.y6_c00234{bottom:962.280000pt;}
.y2_c00234{bottom:1035.880000pt;}
.h4_c00234{height:18.560000pt;}
.h5_c00234{height:62.812500pt;}
.h3_c00234{height:65.781915pt;}
.h2_c00234{height:1099.880000pt;}
.h0_c00234{height:1122.520000pt;}
.h1_c00234{height:1122.666667pt;}
.w3_c00234{width:24.000000pt;}
.w2_c00234{width:771.080000pt;}
.w0_c00234{width:793.720000pt;}
.w1_c00234{width:794.000000pt;}
.x0_c00234{left:0.000000pt;}
.x1_c00234{left:11.320000pt;}
.x3_c00234{left:84.805600pt;}
.x5_c00234{left:132.800133pt;}
.x4_c00234{left:385.080000pt;}
.x2_c00234{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00235{font-family:ff1_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00235;src:url('chunks/assets/font_a6a138abc2db953d1b5a84ed.woff2')format("woff");}.ff2_c00235{font-family:ff2_c00235;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00235;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00235{font-family:ff3_c00235;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00235;src:url('chunks/assets/font_e978aacebbd7ddf07d67143c.woff2')format("woff");}.ff4_c00235{font-family:ff4_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00235;src:url('chunks/assets/font_454d4d5bcac6eb9e1f91fb59.woff2')format("woff");}.ff5_c00235{font-family:ff5_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00235;src:url('chunks/assets/font_add564fad86d56de84cab647.woff2')format("woff");}.ff6_c00235{font-family:ff6_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00235;src:url('chunks/assets/font_8f657e2305509877a22b9ea2.woff2')format("woff");}.ff7_c00235{font-family:ff7_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00235;src:url('chunks/assets/font_0c227877c11bcd798db74fbf.woff2')format("woff");}.ff8_c00235{font-family:ff8_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00235;src:url('chunks/assets/font_0cd90e72f9cabf773fad6379.woff2')format("woff");}.ff9_c00235{font-family:ff9_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00235;src:url('chunks/assets/font_f9d14fa295e1f1f1635a7d40.woff2')format("woff");}.ffa_c00235{font-family:ffa_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00235;src:url('chunks/assets/font_14e0082f6acea4436e27554b.woff2')format("woff");}.ffb_c00235{font-family:ffb_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00235;src:url('chunks/assets/font_c9f1a0b9abaa8a25a88ef2f0.woff2')format("woff");}.ffc_c00235{font-family:ffc_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00235;src:url('chunks/assets/font_0a79095c2567125f7ff7b1fa.woff2')format("woff");}.ffd_c00235{font-family:ffd_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00235;src:url('chunks/assets/font_fac12275d101e6fff120314f.woff2')format("woff");}.ffe_c00235{font-family:ffe_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00235;src:url('chunks/assets/font_5fe30debd9760c8b99e3d6cc.woff2')format("woff");}.fff_c00235{font-family:fff_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00235;src:url('chunks/assets/font_8540c3d81a88bfc7722b6910.woff2')format("woff");}.ff10_c00235{font-family:ff10_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00235;src:url('chunks/assets/font_5fda49075c6d64fb850179cf.woff2')format("woff");}.ff11_c00235{font-family:ff11_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00235;src:url('chunks/assets/font_9370c30e1c142f4f6ccf3981.woff2')format("woff");}.ff12_c00235{font-family:ff12_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00235;src:url('chunks/assets/font_60d443c84b56a48fcb729c94.woff2')format("woff");}.ff13_c00235{font-family:ff13_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00235;src:url('chunks/assets/font_c876f16d4ebefb14780a07ca.woff2')format("woff");}.ff14_c00235{font-family:ff14_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00235;src:url('chunks/assets/font_7c37a80fb47525d4debb8835.woff2')format("woff");}.ff15_c00235{font-family:ff15_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00235;src:url('chunks/assets/font_fe0ab4705d5beb67b4b32d3b.woff2')format("woff");}.ff16_c00235{font-family:ff16_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00235;src:url('chunks/assets/font_3b8e082e99fe634c0d2e1cce.woff2')format("woff");}.ff17_c00235{font-family:ff17_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00235;src:url('chunks/assets/font_0f67b1e8c48476127242fe05.woff2')format("woff");}.ff18_c00235{font-family:ff18_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00235;src:url('chunks/assets/font_39cc74ff6a78b4202620695d.woff2')format("woff");}.ff19_c00235{font-family:ff19_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00235;src:url('chunks/assets/font_c76cabac35c36186cac4e9f7.woff2')format("woff");}.ff1a_c00235{font-family:ff1a_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00235;src:url('chunks/assets/font_b09fe3c84a9651f5553d8a0b.woff2')format("woff");}.ff1b_c00235{font-family:ff1b_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00235;src:url('chunks/assets/font_bd34832959deafaceb9270c0.woff2')format("woff");}.ff1c_c00235{font-family:ff1c_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00235;src:url('chunks/assets/font_2c1571ac5582ae6764d050d8.woff2')format("woff");}.ff1d_c00235{font-family:ff1d_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00235;src:url('chunks/assets/font_7e21f9a30c7c483439cf198b.woff2')format("woff");}.ff1e_c00235{font-family:ff1e_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00235;src:url('chunks/assets/font_2f6dbfae333471a975827773.woff2')format("woff");}.ff1f_c00235{font-family:ff1f_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00235;src:url('chunks/assets/font_5fd4d9a12ac588aa0f1fd7d0.woff2')format("woff");}.ff20_c00235{font-family:ff20_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00235;src:url('chunks/assets/font_895c4c8cb8034f5d9c7d355f.woff2')format("woff");}.ff21_c00235{font-family:ff21_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00235;src:url('chunks/assets/font_d45e9dec113268a2969e60a4.woff2')format("woff");}.ff22_c00235{font-family:ff22_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00235;src:url('chunks/assets/font_b286ebdd116bddd5fc41cd6d.woff2')format("woff");}.ff23_c00235{font-family:ff23_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00235;src:url('chunks/assets/font_77cda7b5eac1029877a4e446.woff2')format("woff");}.ff24_c00235{font-family:ff24_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00235;src:url('chunks/assets/font_67ddce873119b2f000b9a489.woff2')format("woff");}.ff25_c00235{font-family:ff25_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00235;src:url('chunks/assets/font_a0b9ba582d14bcf5b2d65fba.woff2')format("woff");}.ff26_c00235{font-family:ff26_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00235;src:url('chunks/assets/font_aad5d9e2be7c7a24fbb4b76d.woff2')format("woff");}.ff27_c00235{font-family:ff27_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00235;src:url('chunks/assets/font_5d1f05589683306b95cbee7b.woff2')format("woff");}.ff28_c00235{font-family:ff28_c00235;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00235{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00235{vertical-align:0.000000px;}
.ls2_c00235{letter-spacing:-0.014400px;}
.ls1_c00235{letter-spacing:0.000000px;}
.ls0_c00235{letter-spacing:0.043200px;}
.sc__c00235{text-shadow:none;}
.sc0_c00235{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00235{-webkit-text-stroke:0px transparent;}
.sc0_c00235{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00235{word-spacing:-18.000000px;}
.ws0_c00235{word-spacing:-0.072000px;}
.ws2_c00235{word-spacing:-0.057600px;}
.ws3_c00235{word-spacing:0.000000px;}
._9_c00235{margin-left:-1.447200px;}
._5_c00235{width:1.044000px;}
._1_c00235{width:2.937600px;}
._c_c00235{width:4.032000px;}
._4_c00235{width:5.666400px;}
._6_c00235{width:7.279200px;}
._7_c00235{width:9.165600px;}
._8_c00235{width:10.281600px;}
._a_c00235{width:11.484000px;}
._3_c00235{width:12.564000px;}
._0_c00235{width:13.680000px;}
._b_c00235{width:20.368800px;}
._d_c00235{width:21.816000px;}
._2_c00235{width:27.892800px;}
.fc1_c00235{color:transparent;}
.fc0_c00235{color:rgb(0,0,0);}
.fs1_c00235{font-size:64.800000px;}
.fs0_c00235{font-size:72.000000px;}
.y0_c00235{bottom:0.000000px;}
.y5_c00235{bottom:5.040000px;}
.y1_c00235{bottom:12.735000px;}
.y3_c00235{bottom:45.045000px;}
.y4_c00235{bottom:52.740000px;}
.y21_c00235{bottom:110.565000px;}
.y20_c00235{bottom:146.565000px;}
.y1f_c00235{bottom:182.565000px;}
.y1e_c00235{bottom:218.565000px;}
.y1d_c00235{bottom:254.565000px;}
.y1c_c00235{bottom:290.565000px;}
.y1b_c00235{bottom:326.565000px;}
.y1a_c00235{bottom:362.565000px;}
.y19_c00235{bottom:398.565000px;}
.y18_c00235{bottom:434.565000px;}
.y17_c00235{bottom:470.565000px;}
.y16_c00235{bottom:506.565000px;}
.y15_c00235{bottom:542.565000px;}
.y14_c00235{bottom:578.565000px;}
.y13_c00235{bottom:614.565000px;}
.y12_c00235{bottom:650.565000px;}
.y11_c00235{bottom:686.565000px;}
.y10_c00235{bottom:722.565000px;}
.yf_c00235{bottom:758.565000px;}
.ye_c00235{bottom:794.565000px;}
.yd_c00235{bottom:830.565000px;}
.yc_c00235{bottom:866.565000px;}
.yb_c00235{bottom:902.565000px;}
.ya_c00235{bottom:938.565000px;}
.y9_c00235{bottom:974.565000px;}
.y8_c00235{bottom:1010.565000px;}
.y7_c00235{bottom:1046.565000px;}
.y6_c00235{bottom:1082.565000px;}
.y2_c00235{bottom:1165.365000px;}
.h4_c00235{height:20.880000px;}
.h3_c00235{height:70.664062px;}
.h5_c00235{height:74.004654px;}
.h2_c00235{height:1237.365000px;}
.h0_c00235{height:1262.835000px;}
.h1_c00235{height:1263.000000px;}
.w3_c00235{width:27.000000px;}
.w2_c00235{width:867.465000px;}
.w0_c00235{width:892.935000px;}
.w1_c00235{width:893.250000px;}
.x0_c00235{left:0.000000px;}
.x1_c00235{left:12.735000px;}
.x3_c00235{left:95.406300px;}
.x5_c00235{left:149.400150px;}
.x4_c00235{left:433.215000px;}
.x2_c00235{left:878.550300px;}
@media print{
.v0_c00235{vertical-align:0.000000pt;}
.ls2_c00235{letter-spacing:-0.012800pt;}
.ls1_c00235{letter-spacing:0.000000pt;}
.ls0_c00235{letter-spacing:0.038400pt;}
.ws1_c00235{word-spacing:-16.000000pt;}
.ws0_c00235{word-spacing:-0.064000pt;}
.ws2_c00235{word-spacing:-0.051200pt;}
.ws3_c00235{word-spacing:0.000000pt;}
._9_c00235{margin-left:-1.286400pt;}
._5_c00235{width:0.928000pt;}
._1_c00235{width:2.611200pt;}
._c_c00235{width:3.584000pt;}
._4_c00235{width:5.036800pt;}
._6_c00235{width:6.470400pt;}
._7_c00235{width:8.147200pt;}
._8_c00235{width:9.139200pt;}
._a_c00235{width:10.208000pt;}
._3_c00235{width:11.168000pt;}
._0_c00235{width:12.160000pt;}
._b_c00235{width:18.105600pt;}
._d_c00235{width:19.392000pt;}
._2_c00235{width:24.793600pt;}
.fs1_c00235{font-size:57.600000pt;}
.fs0_c00235{font-size:64.000000pt;}
.y0_c00235{bottom:0.000000pt;}
.y5_c00235{bottom:4.480000pt;}
.y1_c00235{bottom:11.320000pt;}
.y3_c00235{bottom:40.040000pt;}
.y4_c00235{bottom:46.880000pt;}
.y21_c00235{bottom:98.280000pt;}
.y20_c00235{bottom:130.280000pt;}
.y1f_c00235{bottom:162.280000pt;}
.y1e_c00235{bottom:194.280000pt;}
.y1d_c00235{bottom:226.280000pt;}
.y1c_c00235{bottom:258.280000pt;}
.y1b_c00235{bottom:290.280000pt;}
.y1a_c00235{bottom:322.280000pt;}
.y19_c00235{bottom:354.280000pt;}
.y18_c00235{bottom:386.280000pt;}
.y17_c00235{bottom:418.280000pt;}
.y16_c00235{bottom:450.280000pt;}
.y15_c00235{bottom:482.280000pt;}
.y14_c00235{bottom:514.280000pt;}
.y13_c00235{bottom:546.280000pt;}
.y12_c00235{bottom:578.280000pt;}
.y11_c00235{bottom:610.280000pt;}
.y10_c00235{bottom:642.280000pt;}
.yf_c00235{bottom:674.280000pt;}
.ye_c00235{bottom:706.280000pt;}
.yd_c00235{bottom:738.280000pt;}
.yc_c00235{bottom:770.280000pt;}
.yb_c00235{bottom:802.280000pt;}
.ya_c00235{bottom:834.280000pt;}
.y9_c00235{bottom:866.280000pt;}
.y8_c00235{bottom:898.280000pt;}
.y7_c00235{bottom:930.280000pt;}
.y6_c00235{bottom:962.280000pt;}
.y2_c00235{bottom:1035.880000pt;}
.h4_c00235{height:18.560000pt;}
.h3_c00235{height:62.812500pt;}
.h5_c00235{height:65.781915pt;}
.h2_c00235{height:1099.880000pt;}
.h0_c00235{height:1122.520000pt;}
.h1_c00235{height:1122.666667pt;}
.w3_c00235{width:24.000000pt;}
.w2_c00235{width:771.080000pt;}
.w0_c00235{width:793.720000pt;}
.w1_c00235{width:794.000000pt;}
.x0_c00235{left:0.000000pt;}
.x1_c00235{left:11.320000pt;}
.x3_c00235{left:84.805600pt;}
.x5_c00235{left:132.800133pt;}
.x4_c00235{left:385.080000pt;}
.x2_c00235{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00236{font-family:ff1_c00236;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00236;src:url('chunks/assets/font_25425537ae4295536bfa84dd.woff2')format("woff");}.ff2_c00236{font-family:ff2_c00236;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00236;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00236{font-family:ff3_c00236;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00236;src:url('chunks/assets/font_f3d02c5f0b036a1107d66072.woff2')format("woff");}.ff4_c00236{font-family:ff4_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:ff5_c00236;src:url('chunks/assets/font_546ac4e541739533bbbcd366.woff2')format("woff");}.ff5_c00236{font-family:ff5_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:ff6_c00236;src:url('chunks/assets/font_e82216251bb93e8172ac3559.woff2')format("woff");}.ff6_c00236{font-family:ff6_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:ff7_c00236;src:url('chunks/assets/font_75dfc28b6cdc78d154c36ef7.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_c2cdedf3e41e12f16586f26e.woff2')format("woff");}.ff8_c00236{font-family:ff8_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:ff9_c00236;src:url('chunks/assets/font_c14d11c0e42233b0b147298e.woff2')format("woff");}.ff9_c00236{font-family:ff9_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:ffa_c00236;src:url('chunks/assets/font_3f048f9e5c3e7552822eff3c.woff2')format("woff");}.ffa_c00236{font-family:ffa_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:ffb_c00236;src:url('chunks/assets/font_a28169146de11cfc803488bd.woff2')format("woff");}.ffb_c00236{font-family:ffb_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:ffc_c00236;src:url('chunks/assets/font_1c7ff0916c5599bf0fa659a3.woff2')format("woff");}.ffc_c00236{font-family:ffc_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:ffd_c00236;src:url('chunks/assets/font_586cd88f90114339c78ba684.woff2')format("woff");}.ffd_c00236{font-family:ffd_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:ffe_c00236;src:url('chunks/assets/font_b09da063ecb53aa13cf1c529.woff2')format("woff");}.ffe_c00236{font-family:ffe_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:fff_c00236;src:url('chunks/assets/font_f9ae08e0f8901015388710ee.woff2')format("woff");}.fff_c00236{font-family:fff_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:ff10_c00236;src:url('chunks/assets/font_9ed4562be812c570dadff38f.woff2')format("woff");}.ff10_c00236{font-family:ff10_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:ff11_c00236;src:url('chunks/assets/font_f28e22310bf86cfc9c4f668e.woff2')format("woff");}.ff11_c00236{font-family:ff11_c00236;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:ff12_c00236;src:url('chunks/assets/font_e6d0e96c162f53d70055b812.woff2')format("woff");}.ff12_c00236{font-family:ff12_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:ff13_c00236;src:url('chunks/assets/font_a761dea8e821fec2a2b36459.woff2')format("woff");}.ff13_c00236{font-family:ff13_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:ff14_c00236;src:url('chunks/assets/font_d14d543bcc5c24e1219b5ada.woff2')format("woff");}.ff14_c00236{font-family:ff14_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:ff15_c00236;src:url('chunks/assets/font_c1121b8b2e33f4f919ad116d.woff2')format("woff");}.ff15_c00236{font-family:ff15_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:ff16_c00236;src:url('chunks/assets/font_afe1b7a78c899ceae3e974ca.woff2')format("woff");}.ff16_c00236{font-family:ff16_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:ff17_c00236;src:url('chunks/assets/font_0f0bbaee8f56ae90526ae901.woff2')format("woff");}.ff17_c00236{font-family:ff17_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:ff18_c00236;src:url('chunks/assets/font_a3ef89dfcac80952250ad14a.woff2')format("woff");}.ff18_c00236{font-family:ff18_c00236;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:ff19_c00236;src:url('chunks/assets/font_5f0414f69cfded177b9bf3bc.woff2')format("woff");}.ff19_c00236{font-family:ff19_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:ff1a_c00236;src:url('chunks/assets/font_edad9fcf12aec9be3a9e83f7.woff2')format("woff");}.ff1a_c00236{font-family:ff1a_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:ff1b_c00236;src:url('chunks/assets/font_05bc9d7d5c97536006a8adce.woff2')format("woff");}.ff1b_c00236{font-family:ff1b_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:ff1c_c00236;src:url('chunks/assets/font_da02822487c96d039d269748.woff2')format("woff");}.ff1c_c00236{font-family:ff1c_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:ff1d_c00236;src:url('chunks/assets/font_36ee8c33b674295501b84631.woff2')format("woff");}.ff1d_c00236{font-family:ff1d_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:ff1e_c00236;src:url('chunks/assets/font_153a14dcf8cdad1397ac4921.woff2')format("woff");}.ff1e_c00236{font-family:ff1e_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:ff1f_c00236;src:url('chunks/assets/font_42511469aaeaf9a1312b86bd.woff2')format("woff");}.ff1f_c00236{font-family:ff1f_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:ff20_c00236;src:url('chunks/assets/font_dbc3d8e2eeb7ed830f24d4e2.woff2')format("woff");}.ff20_c00236{font-family:ff20_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:ff21_c00236;src:url('chunks/assets/font_edc4c6561e53b524e96bdab7.woff2')format("woff");}.ff21_c00236{font-family:ff21_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:ff22_c00236;src:url('chunks/assets/font_57e9ff161bd33a25e823d7c5.woff2')format("woff");}.ff22_c00236{font-family:ff22_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:ff23_c00236;src:url('chunks/assets/font_f4e1bcbaebbad22f6bac80fa.woff2')format("woff");}.ff23_c00236{font-family:ff23_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:ff24_c00236;src:url('chunks/assets/font_5c0f1bc658bb4c9d4e6f75f8.woff2')format("woff");}.ff24_c00236{font-family:ff24_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:ff25_c00236;src:url('chunks/assets/font_0d89028a8b56a9fe642a6eea.woff2')format("woff");}.ff25_c00236{font-family:ff25_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:ff26_c00236;src:url('chunks/assets/font_38d1d360d1b27c9ae2c81285.woff2')format("woff");}.ff26_c00236{font-family:ff26_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:ff27_c00236;src:url('chunks/assets/font_7e77c4c56d187d64ba02e435.woff2')format("woff");}.ff27_c00236{font-family:ff27_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:ff28_c00236;src:url('chunks/assets/font_2d1a0cc6c0e740efd2ed2a5a.woff2')format("woff");}.ff28_c00236{font-family:ff28_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:ff29_c00236;src:url('chunks/assets/font_2f3f31ee85ceb897335e18f7.woff2')format("woff");}.ff29_c00236{font-family:ff29_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:ff2a_c00236;src:url('chunks/assets/font_aabc945c992eec430ec01f1b.woff2')format("woff");}.ff2a_c00236{font-family:ff2a_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;}
.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;}
.ls1_c00236{letter-spacing:0.000000px;}
.ls0_c00236{letter-spacing:0.072000px;}
.sc__c00236{text-shadow:none;}
.sc0_c00236{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00236{-webkit-text-stroke:0px transparent;}
.sc0_c00236{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00236{word-spacing:-0.072000px;}
.ws1_c00236{word-spacing:0.000000px;}
._3_c00236{width:1.915200px;}
._b_c00236{width:2.930400px;}
._8_c00236{width:4.276800px;}
._9_c00236{width:5.284800px;}
._7_c00236{width:6.451200px;}
._6_c00236{width:7.473600px;}
._0_c00236{width:12.290400px;}
._a_c00236{width:13.557600px;}
._d_c00236{width:16.920000px;}
._c_c00236{width:23.356800px;}
._4_c00236{width:24.415200px;}
._1_c00236{width:25.668000px;}
._2_c00236{width:28.029600px;}
._5_c00236{width:33.537600px;}
.fc1_c00236{color:transparent;}
.fc0_c00236{color:rgb(0,0,0);}
.fs1_c00236{font-size:64.800000px;}
.fs0_c00236{font-size:72.000000px;}
.y0_c00236{bottom:0.000000px;}
.y5_c00236{bottom:5.040000px;}
.y1_c00236{bottom:12.735000px;}
.y3_c00236{bottom:45.045000px;}
.y4_c00236{bottom:52.740000px;}
.y21_c00236{bottom:110.565000px;}
.y20_c00236{bottom:146.565000px;}
.y1f_c00236{bottom:182.565000px;}
.y1e_c00236{bottom:218.565000px;}
.y1d_c00236{bottom:254.565000px;}
.y1c_c00236{bottom:290.565000px;}
.y1b_c00236{bottom:326.565000px;}
.y1a_c00236{bottom:362.565000px;}
.y19_c00236{bottom:398.565000px;}
.y18_c00236{bottom:434.565000px;}
.y17_c00236{bottom:470.565000px;}
.y16_c00236{bottom:506.565000px;}
.y15_c00236{bottom:542.565000px;}
.y14_c00236{bottom:578.565000px;}
.y13_c00236{bottom:614.565000px;}
.y12_c00236{bottom:650.565000px;}
.y11_c00236{bottom:686.565000px;}
.y10_c00236{bottom:722.565000px;}
.yf_c00236{bottom:758.565000px;}
.ye_c00236{bottom:794.565000px;}
.yd_c00236{bottom:830.565000px;}
.yc_c00236{bottom:866.565000px;}
.yb_c00236{bottom:902.565000px;}
.ya_c00236{bottom:938.565000px;}
.y9_c00236{bottom:974.565000px;}
.y8_c00236{bottom:1010.565000px;}
.y7_c00236{bottom:1046.565000px;}
.y6_c00236{bottom:1082.565000px;}
.y2_c00236{bottom:1165.365000px;}
.h4_c00236{height:20.880000px;}
.h3_c00236{height:70.664062px;}
.h5_c00236{height:74.004654px;}
.h2_c00236{height:1237.365000px;}
.h0_c00236{height:1262.835000px;}
.h1_c00236{height:1263.000000px;}
.w3_c00236{width:27.000000px;}
.w2_c00236{width:867.465000px;}
.w0_c00236{width:892.935000px;}
.w1_c00236{width:893.250000px;}
.x0_c00236{left:0.000000px;}
.x1_c00236{left:12.735000px;}
.x3_c00236{left:95.406300px;}
.x5_c00236{left:149.400150px;}
.x4_c00236{left:433.215000px;}
.x2_c00236{left:878.550300px;}
@media print{
.v0_c00236{vertical-align:0.000000pt;}
.ls1_c00236{letter-spacing:0.000000pt;}
.ls0_c00236{letter-spacing:0.064000pt;}
.ws0_c00236{word-spacing:-0.064000pt;}
.ws1_c00236{word-spacing:0.000000pt;}
._3_c00236{width:1.702400pt;}
._b_c00236{width:2.604800pt;}
._8_c00236{width:3.801600pt;}
._9_c00236{width:4.697600pt;}
._7_c00236{width:5.734400pt;}
._6_c00236{width:6.643200pt;}
._0_c00236{width:10.924800pt;}
._a_c00236{width:12.051200pt;}
._d_c00236{width:15.040000pt;}
._c_c00236{width:20.761600pt;}
._4_c00236{width:21.702400pt;}
._1_c00236{width:22.816000pt;}
._2_c00236{width:24.915200pt;}
._5_c00236{width:29.811200pt;}
.fs1_c00236{font-size:57.600000pt;}
.fs0_c00236{font-size:64.000000pt;}
.y0_c00236{bottom:0.000000pt;}
.y5_c00236{bottom:4.480000pt;}
.y1_c00236{bottom:11.320000pt;}
.y3_c00236{bottom:40.040000pt;}
.y4_c00236{bottom:46.880000pt;}
.y21_c00236{bottom:98.280000pt;}
.y20_c00236{bottom:130.280000pt;}
.y1f_c00236{bottom:162.280000pt;}
.y1e_c00236{bottom:194.280000pt;}
.y1d_c00236{bottom:226.280000pt;}
.y1c_c00236{bottom:258.280000pt;}
.y1b_c00236{bottom:290.280000pt;}
.y1a_c00236{bottom:322.280000pt;}
.y19_c00236{bottom:354.280000pt;}
.y18_c00236{bottom:386.280000pt;}
.y17_c00236{bottom:418.280000pt;}
.y16_c00236{bottom:450.280000pt;}
.y15_c00236{bottom:482.280000pt;}
.y14_c00236{bottom:514.280000pt;}
.y13_c00236{bottom:546.280000pt;}
.y12_c00236{bottom:578.280000pt;}
.y11_c00236{bottom:610.280000pt;}
.y10_c00236{bottom:642.280000pt;}
.yf_c00236{bottom:674.280000pt;}
.ye_c00236{bottom:706.280000pt;}
.yd_c00236{bottom:738.280000pt;}
.yc_c00236{bottom:770.280000pt;}
.yb_c00236{bottom:802.280000pt;}
.ya_c00236{bottom:834.280000pt;}
.y9_c00236{bottom:866.280000pt;}
.y8_c00236{bottom:898.280000pt;}
.y7_c00236{bottom:930.280000pt;}
.y6_c00236{bottom:962.280000pt;}
.y2_c00236{bottom:1035.880000pt;}
.h4_c00236{height:18.560000pt;}
.h3_c00236{height:62.812500pt;}
.h5_c00236{height:65.781915pt;}
.h2_c00236{height:1099.880000pt;}
.h0_c00236{height:1122.520000pt;}
.h1_c00236{height:1122.666667pt;}
.w3_c00236{width:24.000000pt;}
.w2_c00236{width:771.080000pt;}
.w0_c00236{width:793.720000pt;}
.w1_c00236{width:794.000000pt;}
.x0_c00236{left:0.000000pt;}
.x1_c00236{left:11.320000pt;}
.x3_c00236{left:84.805600pt;}
.x5_c00236{left:132.800133pt;}
.x4_c00236{left:385.080000pt;}
.x2_c00236{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00237{font-family:ff1_c00237;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00237;src:url('chunks/assets/font_a12078022a82abdc2754fcce.woff2')format("woff");}.ff2_c00237{font-family:ff2_c00237;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00237;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00237{font-family:ff3_c00237;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00237;src:url('chunks/assets/font_8b15158b88e283b4c24b18e8.woff2')format("woff");}.ff4_c00237{font-family:ff4_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:ff5_c00237;src:url('chunks/assets/font_29859a687297f35f152ca43e.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_19f300dc5298b77f8e9c62eb.woff2')format("woff");}.ff6_c00237{font-family:ff6_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:ff7_c00237;src:url('chunks/assets/font_552bd7deb43e817943c95bc7.woff2')format("woff");}.ff7_c00237{font-family:ff7_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:ff8_c00237;src:url('chunks/assets/font_48bde6c31c82f6bb9f7c3281.woff2')format("woff");}.ff8_c00237{font-family:ff8_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:ff9_c00237;src:url('chunks/assets/font_25f52f1852b44373957364e1.woff2')format("woff");}.ff9_c00237{font-family:ff9_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:ffa_c00237;src:url('chunks/assets/font_a94d4c7643f76be2002b7816.woff2')format("woff");}.ffa_c00237{font-family:ffa_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:ffb_c00237;src:url('chunks/assets/font_2624f7069aff073b11849815.woff2')format("woff");}.ffb_c00237{font-family:ffb_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:ffc_c00237;src:url('chunks/assets/font_60b104984e090d10ef373c01.woff2')format("woff");}.ffc_c00237{font-family:ffc_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:ffd_c00237;src:url('chunks/assets/font_98bf6875d7f1726593bf0fcf.woff2')format("woff");}.ffd_c00237{font-family:ffd_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:ffe_c00237;src:url('chunks/assets/font_37a8e42d88a2e6c93d8f8c6d.woff2')format("woff");}.ffe_c00237{font-family:ffe_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:fff_c00237;src:url('chunks/assets/font_910a6d33a3933e3925d04859.woff2')format("woff");}.fff_c00237{font-family:fff_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:ff10_c00237;src:url('chunks/assets/font_34852bcc73dd282a61eb1a68.woff2')format("woff");}.ff10_c00237{font-family:ff10_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:ff11_c00237;src:url('chunks/assets/font_01589ddc52261ce21f40b429.woff2')format("woff");}.ff11_c00237{font-family:ff11_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:ff12_c00237;src:url('chunks/assets/font_cd98f7174758c704e460661a.woff2')format("woff");}.ff12_c00237{font-family:ff12_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:ff13_c00237;src:url('chunks/assets/font_7428e600076ce2a26d22539b.woff2')format("woff");}.ff13_c00237{font-family:ff13_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:ff14_c00237;src:url('chunks/assets/font_5f3142b8b857a3940018f4f2.woff2')format("woff");}.ff14_c00237{font-family:ff14_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:ff15_c00237;src:url('chunks/assets/font_e7790cd6fc54b3635b6f620d.woff2')format("woff");}.ff15_c00237{font-family:ff15_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:ff16_c00237;src:url('chunks/assets/font_c47a0067eb934b88a509e05e.woff2')format("woff");}.ff16_c00237{font-family:ff16_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:ff17_c00237;src:url('chunks/assets/font_932fd2017ee4025b266536c2.woff2')format("woff");}.ff17_c00237{font-family:ff17_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:ff18_c00237;src:url('chunks/assets/font_154230f3bd1fc37382818d47.woff2')format("woff");}.ff18_c00237{font-family:ff18_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:ff19_c00237;src:url('chunks/assets/font_8af8ee535f7d0ec80d9c4f50.woff2')format("woff");}.ff19_c00237{font-family:ff19_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:ff1a_c00237;src:url('chunks/assets/font_43325e4426b707f12dd162fb.woff2')format("woff");}.ff1a_c00237{font-family:ff1a_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:ff1b_c00237;src:url('chunks/assets/font_1f938edafec165ca8906a6ac.woff2')format("woff");}.ff1b_c00237{font-family:ff1b_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:ff1c_c00237;src:url('chunks/assets/font_d5bdaef21a2d45f4ad5003ee.woff2')format("woff");}.ff1c_c00237{font-family:ff1c_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:ff1d_c00237;src:url('chunks/assets/font_5f0a2451c7957eaeeb5fceb6.woff2')format("woff");}.ff1d_c00237{font-family:ff1d_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:ff1e_c00237;src:url('chunks/assets/font_b0454262f7528446b508e22a.woff2')format("woff");}.ff1e_c00237{font-family:ff1e_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:ff1f_c00237;src:url('chunks/assets/font_a68afcadab96e1b9359e33ed.woff2')format("woff");}.ff1f_c00237{font-family:ff1f_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:ff20_c00237;src:url('chunks/assets/font_7a924acf3a325f7ad5b09b30.woff2')format("woff");}.ff20_c00237{font-family:ff20_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:ff21_c00237;src:url('chunks/assets/font_66565f8a4f93d861d68b576f.woff2')format("woff");}.ff21_c00237{font-family:ff21_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:ff22_c00237;src:url('chunks/assets/font_bdf33ae29198b2b25d5027b1.woff2')format("woff");}.ff22_c00237{font-family:ff22_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:ff23_c00237;src:url('chunks/assets/font_a95eef5cc640ab302c78bceb.woff2')format("woff");}.ff23_c00237{font-family:ff23_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:ff24_c00237;src:url('chunks/assets/font_c2262fb21ea5111d9cac4a63.woff2')format("woff");}.ff24_c00237{font-family:ff24_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:ff25_c00237;src:url('chunks/assets/font_e23fb69aadf9d0f19b812e90.woff2')format("woff");}.ff25_c00237{font-family:ff25_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:ff26_c00237;src:url('chunks/assets/font_e1b69c337d85913b81f31b84.woff2')format("woff");}.ff26_c00237{font-family:ff26_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:ff27_c00237;src:url('chunks/assets/font_daff5ec6beef410061da1091.woff2')format("woff");}.ff27_c00237{font-family:ff27_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:ff28_c00237;src:url('chunks/assets/font_170394e6ed6bbc4d5729182b.woff2')format("woff");}.ff28_c00237{font-family:ff28_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:ff29_c00237;src:url('chunks/assets/font_14a6f9e063364592f410bd22.woff2')format("woff");}.ff29_c00237{font-family:ff29_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:ff2a_c00237;src:url('chunks/assets/font_f509ed10646227ca9a093d5b.woff2')format("woff");}.ff2a_c00237{font-family:ff2a_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:ff2b_c00237;src:url('chunks/assets/font_62c11e58edc97d2f5f7fe610.woff2')format("woff");}.ff2b_c00237{font-family:ff2b_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;}
.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;}
.ls1_c00237{letter-spacing:0.000000px;}
.ls0_c00237{letter-spacing:0.100800px;}
.sc__c00237{text-shadow:none;}
.sc0_c00237{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00237{-webkit-text-stroke:0px transparent;}
.sc0_c00237{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00237{word-spacing:-0.072000px;}
.ws1_c00237{word-spacing:0.000000px;}
._0_c00237{width:1.000800px;}
._5_c00237{width:2.275200px;}
._8_c00237{width:3.578400px;}
._9_c00237{width:4.651200px;}
._b_c00237{width:5.803200px;}
._1_c00237{width:6.976800px;}
._2_c00237{width:8.244000px;}
._3_c00237{width:10.022400px;}
._4_c00237{width:11.145600px;}
._a_c00237{width:12.398400px;}
._d_c00237{width:13.586400px;}
._6_c00237{width:16.200000px;}
._c_c00237{width:23.551200px;}
._7_c00237{width:30.348000px;}
.fc1_c00237{color:transparent;}
.fc0_c00237{color:rgb(0,0,0);}
.fs1_c00237{font-size:64.800000px;}
.fs0_c00237{font-size:72.000000px;}
.y0_c00237{bottom:0.000000px;}
.y5_c00237{bottom:5.040000px;}
.y1_c00237{bottom:12.735000px;}
.y3_c00237{bottom:45.045000px;}
.y4_c00237{bottom:52.740000px;}
.y21_c00237{bottom:110.565000px;}
.y20_c00237{bottom:146.565000px;}
.y1f_c00237{bottom:182.565000px;}
.y1e_c00237{bottom:218.565000px;}
.y1d_c00237{bottom:254.565000px;}
.y1c_c00237{bottom:290.565000px;}
.y1b_c00237{bottom:326.565000px;}
.y1a_c00237{bottom:362.565000px;}
.y19_c00237{bottom:398.565000px;}
.y18_c00237{bottom:434.565000px;}
.y17_c00237{bottom:470.565000px;}
.y16_c00237{bottom:506.565000px;}
.y15_c00237{bottom:542.565000px;}
.y14_c00237{bottom:578.565000px;}
.y13_c00237{bottom:614.565000px;}
.y12_c00237{bottom:650.565000px;}
.y11_c00237{bottom:686.565000px;}
.y10_c00237{bottom:722.565000px;}
.yf_c00237{bottom:758.565000px;}
.ye_c00237{bottom:794.565000px;}
.yd_c00237{bottom:830.565000px;}
.yc_c00237{bottom:866.565000px;}
.yb_c00237{bottom:902.565000px;}
.ya_c00237{bottom:938.565000px;}
.y9_c00237{bottom:974.565000px;}
.y8_c00237{bottom:1010.565000px;}
.y7_c00237{bottom:1046.565000px;}
.y6_c00237{bottom:1082.565000px;}
.y2_c00237{bottom:1165.365000px;}
.h4_c00237{height:20.880000px;}
.h3_c00237{height:70.664062px;}
.h5_c00237{height:74.004654px;}
.h2_c00237{height:1237.365000px;}
.h0_c00237{height:1262.835000px;}
.h1_c00237{height:1263.000000px;}
.w3_c00237{width:27.000000px;}
.w2_c00237{width:867.465000px;}
.w0_c00237{width:892.935000px;}
.w1_c00237{width:893.250000px;}
.x0_c00237{left:0.000000px;}
.x1_c00237{left:12.735000px;}
.x3_c00237{left:95.406300px;}
.x5_c00237{left:149.400150px;}
.x4_c00237{left:433.215000px;}
.x2_c00237{left:878.550300px;}
@media print{
.v0_c00237{vertical-align:0.000000pt;}
.ls1_c00237{letter-spacing:0.000000pt;}
.ls0_c00237{letter-spacing:0.089600pt;}
.ws0_c00237{word-spacing:-0.064000pt;}
.ws1_c00237{word-spacing:0.000000pt;}
._0_c00237{width:0.889600pt;}
._5_c00237{width:2.022400pt;}
._8_c00237{width:3.180800pt;}
._9_c00237{width:4.134400pt;}
._b_c00237{width:5.158400pt;}
._1_c00237{width:6.201600pt;}
._2_c00237{width:7.328000pt;}
._3_c00237{width:8.908800pt;}
._4_c00237{width:9.907200pt;}
._a_c00237{width:11.020800pt;}
._d_c00237{width:12.076800pt;}
._6_c00237{width:14.400000pt;}
._c_c00237{width:20.934400pt;}
._7_c00237{width:26.976000pt;}
.fs1_c00237{font-size:57.600000pt;}
.fs0_c00237{font-size:64.000000pt;}
.y0_c00237{bottom:0.000000pt;}
.y5_c00237{bottom:4.480000pt;}
.y1_c00237{bottom:11.320000pt;}
.y3_c00237{bottom:40.040000pt;}
.y4_c00237{bottom:46.880000pt;}
.y21_c00237{bottom:98.280000pt;}
.y20_c00237{bottom:130.280000pt;}
.y1f_c00237{bottom:162.280000pt;}
.y1e_c00237{bottom:194.280000pt;}
.y1d_c00237{bottom:226.280000pt;}
.y1c_c00237{bottom:258.280000pt;}
.y1b_c00237{bottom:290.280000pt;}
.y1a_c00237{bottom:322.280000pt;}
.y19_c00237{bottom:354.280000pt;}
.y18_c00237{bottom:386.280000pt;}
.y17_c00237{bottom:418.280000pt;}
.y16_c00237{bottom:450.280000pt;}
.y15_c00237{bottom:482.280000pt;}
.y14_c00237{bottom:514.280000pt;}
.y13_c00237{bottom:546.280000pt;}
.y12_c00237{bottom:578.280000pt;}
.y11_c00237{bottom:610.280000pt;}
.y10_c00237{bottom:642.280000pt;}
.yf_c00237{bottom:674.280000pt;}
.ye_c00237{bottom:706.280000pt;}
.yd_c00237{bottom:738.280000pt;}
.yc_c00237{bottom:770.280000pt;}
.yb_c00237{bottom:802.280000pt;}
.ya_c00237{bottom:834.280000pt;}
.y9_c00237{bottom:866.280000pt;}
.y8_c00237{bottom:898.280000pt;}
.y7_c00237{bottom:930.280000pt;}
.y6_c00237{bottom:962.280000pt;}
.y2_c00237{bottom:1035.880000pt;}
.h4_c00237{height:18.560000pt;}
.h3_c00237{height:62.812500pt;}
.h5_c00237{height:65.781915pt;}
.h2_c00237{height:1099.880000pt;}
.h0_c00237{height:1122.520000pt;}
.h1_c00237{height:1122.666667pt;}
.w3_c00237{width:24.000000pt;}
.w2_c00237{width:771.080000pt;}
.w0_c00237{width:793.720000pt;}
.w1_c00237{width:794.000000pt;}
.x0_c00237{left:0.000000pt;}
.x1_c00237{left:11.320000pt;}
.x3_c00237{left:84.805600pt;}
.x5_c00237{left:132.800133pt;}
.x4_c00237{left:385.080000pt;}
.x2_c00237{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00238{font-family:ff1_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:ff2_c00238;src:url('chunks/assets/font_ce9bfd7f4c0562638aa1074e.woff2')format("woff");}.ff2_c00238{font-family:ff2_c00238;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00238;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00238{font-family:ff3_c00238;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00238;src:url('chunks/assets/font_bb81c80ee7ecc6e5068de13b.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_e444555e3efda68ca81a6dd8.woff2')format("woff");}.ff5_c00238{font-family:ff5_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:ff6_c00238;src:url('chunks/assets/font_2d98f6800225da498974c3af.woff2')format("woff");}.ff6_c00238{font-family:ff6_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:ff7_c00238;src:url('chunks/assets/font_20de36bae3ed51781173c0b7.woff2')format("woff");}.ff7_c00238{font-family:ff7_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:ff8_c00238;src:url('chunks/assets/font_c9f8924a9455b52b1f7c9c48.woff2')format("woff");}.ff8_c00238{font-family:ff8_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:ff9_c00238;src:url('chunks/assets/font_2f7e3c7b06c1c06cde2d2a6f.woff2')format("woff");}.ff9_c00238{font-family:ff9_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:ffa_c00238;src:url('chunks/assets/font_87d7d4242382a95af450e39a.woff2')format("woff");}.ffa_c00238{font-family:ffa_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:ffb_c00238;src:url('chunks/assets/font_16ca81bd9357d74c53bbd830.woff2')format("woff");}.ffb_c00238{font-family:ffb_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:ffc_c00238;src:url('chunks/assets/font_dfee8ab7e0778e80940d552b.woff2')format("woff");}.ffc_c00238{font-family:ffc_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:ffd_c00238;src:url('chunks/assets/font_ea481f84c9a4d5a1904a881c.woff2')format("woff");}.ffd_c00238{font-family:ffd_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:ffe_c00238;src:url('chunks/assets/font_8ad4d73633ff4973435914f1.woff2')format("woff");}.ffe_c00238{font-family:ffe_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:fff_c00238;src:url('chunks/assets/font_0cafc57a118eafee3148b535.woff2')format("woff");}.fff_c00238{font-family:fff_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:ff10_c00238;src:url('chunks/assets/font_9ff492752a2cb4df5338d830.woff2')format("woff");}.ff10_c00238{font-family:ff10_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:ff11_c00238;src:url('chunks/assets/font_68008095c015f2a0f1bf1dc2.woff2')format("woff");}.ff11_c00238{font-family:ff11_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:ff12_c00238;src:url('chunks/assets/font_44234742b3264a1f3f8d8758.woff2')format("woff");}.ff12_c00238{font-family:ff12_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:ff13_c00238;src:url('chunks/assets/font_d83ce1b604c6f7939f145bd6.woff2')format("woff");}.ff13_c00238{font-family:ff13_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:ff14_c00238;src:url('chunks/assets/font_18720d87d5ef50585f102a24.woff2')format("woff");}.ff14_c00238{font-family:ff14_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:ff15_c00238;src:url('chunks/assets/font_bb6928c6786b78ac6ba02f05.woff2')format("woff");}.ff15_c00238{font-family:ff15_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:ff16_c00238;src:url('chunks/assets/font_ebe2cba9bfd91fd6b35b1ba7.woff2')format("woff");}.ff16_c00238{font-family:ff16_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:ff17_c00238;src:url('chunks/assets/font_d78e17fc80b038a49e003e16.woff2')format("woff");}.ff17_c00238{font-family:ff17_c00238;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:ff18_c00238;src:url('chunks/assets/font_242dfaed919021f82cbb0461.woff2')format("woff");}.ff18_c00238{font-family:ff18_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:ff19_c00238;src:url('chunks/assets/font_e6ab59a31feafe74f3e8e27e.woff2')format("woff");}.ff19_c00238{font-family:ff19_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:ff1a_c00238;src:url('chunks/assets/font_400128fc8b1c3b345f3bae7c.woff2')format("woff");}.ff1a_c00238{font-family:ff1a_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:ff1b_c00238;src:url('chunks/assets/font_17b3161ad55f1787db77e52e.woff2')format("woff");}.ff1b_c00238{font-family:ff1b_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:ff1c_c00238;src:url('chunks/assets/font_58d8abb1480aacc9466a931f.woff2')format("woff");}.ff1c_c00238{font-family:ff1c_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:ff1d_c00238;src:url('chunks/assets/font_5d1bd67058b93b576eabb66f.woff2')format("woff");}.ff1d_c00238{font-family:ff1d_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:ff1e_c00238;src:url('chunks/assets/font_6aa634a7e71167408f788b7c.woff2')format("woff");}.ff1e_c00238{font-family:ff1e_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:ff1f_c00238;src:url('chunks/assets/font_8c218aaea12bf964d233e4a8.woff2')format("woff");}.ff1f_c00238{font-family:ff1f_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:ff20_c00238;src:url('chunks/assets/font_bed45b6089f8db00a416e58f.woff2')format("woff");}.ff20_c00238{font-family:ff20_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:ff21_c00238;src:url('chunks/assets/font_eb425ee3446a985f5de520b3.woff2')format("woff");}.ff21_c00238{font-family:ff21_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:ff22_c00238;src:url('chunks/assets/font_faec68e1f90c6352fbe4c261.woff2')format("woff");}.ff22_c00238{font-family:ff22_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:ff23_c00238;src:url('chunks/assets/font_8ec244d3dfac7bd15d89539e.woff2')format("woff");}.ff23_c00238{font-family:ff23_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:ff24_c00238;src:url('chunks/assets/font_9eda5b81c8d65541b67c799e.woff2')format("woff");}.ff24_c00238{font-family:ff24_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:ff25_c00238;src:url('chunks/assets/font_f074ae2af0b59baddbe9194b.woff2')format("woff");}.ff25_c00238{font-family:ff25_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:ff26_c00238;src:url('chunks/assets/font_6bdacb1507447446836cdb7a.woff2')format("woff");}.ff26_c00238{font-family:ff26_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:ff27_c00238;src:url('chunks/assets/font_f73f4ec53ad81b1a5f8898de.woff2')format("woff");}.ff27_c00238{font-family:ff27_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:ff28_c00238;src:url('chunks/assets/font_3e3332e62edfcef77bf67c35.woff2')format("woff");}.ff28_c00238{font-family:ff28_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:ff29_c00238;src:url('chunks/assets/font_3c732c0b4ffcfd6fc5ab7c15.woff2')format("woff");}.ff29_c00238{font-family:ff29_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:ff2a_c00238;src:url('chunks/assets/font_968df5b0adaca2e0d329d170.woff2')format("woff");}.ff2a_c00238{font-family:ff2a_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:ff2b_c00238;src:url('chunks/assets/font_c57ad6de566c66705d2bd64b.woff2')format("woff");}.ff2b_c00238{font-family:ff2b_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:ff2c_c00238;src:url('chunks/assets/font_72325e7a9f551b50a75c77ac.woff2')format("woff");}.ff2c_c00238{font-family:ff2c_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:ff2d_c00238;src:url('chunks/assets/font_cee4bcfa1c25d558ae9c0afb.woff2')format("woff");}.ff2d_c00238{font-family:ff2d_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;}
.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;}
.ls0_c00238{letter-spacing:0.000000px;}
.sc__c00238{text-shadow:none;}
.sc0_c00238{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00238{-webkit-text-stroke:0px transparent;}
.sc0_c00238{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00238{word-spacing:-18.000000px;}
.ws0_c00238{word-spacing:-0.072000px;}
.ws2_c00238{word-spacing:0.000000px;}
._8_c00238{width:1.094400px;}
._b_c00238{width:2.764800px;}
._4_c00238{width:3.801600px;}
._2_c00238{width:4.838400px;}
._6_c00238{width:5.846400px;}
._a_c00238{width:7.120800px;}
._5_c00238{width:8.179200px;}
._3_c00238{width:9.871200px;}
._9_c00238{width:11.188800px;}
._1_c00238{width:13.752000px;}
._0_c00238{width:14.940000px;}
._7_c00238{width:19.224000px;}
._c_c00238{width:28.562400px;}
.fc1_c00238{color:transparent;}
.fc0_c00238{color:rgb(0,0,0);}
.fs1_c00238{font-size:64.800000px;}
.fs0_c00238{font-size:72.000000px;}
.y0_c00238{bottom:0.000000px;}
.y5_c00238{bottom:5.040000px;}
.y1_c00238{bottom:12.735000px;}
.y3_c00238{bottom:45.045000px;}
.y4_c00238{bottom:52.740000px;}
.y21_c00238{bottom:110.565000px;}
.y20_c00238{bottom:146.565000px;}
.y1f_c00238{bottom:182.565000px;}
.y1e_c00238{bottom:218.565000px;}
.y1d_c00238{bottom:254.565000px;}
.y1c_c00238{bottom:290.565000px;}
.y1b_c00238{bottom:326.565000px;}
.y1a_c00238{bottom:362.565000px;}
.y19_c00238{bottom:398.565000px;}
.y18_c00238{bottom:434.565000px;}
.y17_c00238{bottom:470.565000px;}
.y16_c00238{bottom:506.565000px;}
.y15_c00238{bottom:542.565000px;}
.y14_c00238{bottom:578.565000px;}
.y13_c00238{bottom:614.565000px;}
.y12_c00238{bottom:650.565000px;}
.y11_c00238{bottom:686.565000px;}
.y10_c00238{bottom:722.565000px;}
.yf_c00238{bottom:758.565000px;}
.ye_c00238{bottom:794.565000px;}
.yd_c00238{bottom:830.565000px;}
.yc_c00238{bottom:866.565000px;}
.yb_c00238{bottom:902.565000px;}
.ya_c00238{bottom:938.565000px;}
.y9_c00238{bottom:974.565000px;}
.y8_c00238{bottom:1010.565000px;}
.y7_c00238{bottom:1046.565000px;}
.y6_c00238{bottom:1082.565000px;}
.y2_c00238{bottom:1165.365000px;}
.h4_c00238{height:20.880000px;}
.h3_c00238{height:70.664062px;}
.h5_c00238{height:74.004654px;}
.h2_c00238{height:1237.365000px;}
.h0_c00238{height:1262.835000px;}
.h1_c00238{height:1263.000000px;}
.w3_c00238{width:27.000000px;}
.w2_c00238{width:867.465000px;}
.w0_c00238{width:892.935000px;}
.w1_c00238{width:893.250000px;}
.x0_c00238{left:0.000000px;}
.x1_c00238{left:12.735000px;}
.x3_c00238{left:95.406300px;}
.x5_c00238{left:149.400150px;}
.x4_c00238{left:433.215000px;}
.x2_c00238{left:878.550300px;}
@media print{
.v0_c00238{vertical-align:0.000000pt;}
.ls0_c00238{letter-spacing:0.000000pt;}
.ws1_c00238{word-spacing:-16.000000pt;}
.ws0_c00238{word-spacing:-0.064000pt;}
.ws2_c00238{word-spacing:0.000000pt;}
._8_c00238{width:0.972800pt;}
._b_c00238{width:2.457600pt;}
._4_c00238{width:3.379200pt;}
._2_c00238{width:4.300800pt;}
._6_c00238{width:5.196800pt;}
._a_c00238{width:6.329600pt;}
._5_c00238{width:7.270400pt;}
._3_c00238{width:8.774400pt;}
._9_c00238{width:9.945600pt;}
._1_c00238{width:12.224000pt;}
._0_c00238{width:13.280000pt;}
._7_c00238{width:17.088000pt;}
._c_c00238{width:25.388800pt;}
.fs1_c00238{font-size:57.600000pt;}
.fs0_c00238{font-size:64.000000pt;}
.y0_c00238{bottom:0.000000pt;}
.y5_c00238{bottom:4.480000pt;}
.y1_c00238{bottom:11.320000pt;}
.y3_c00238{bottom:40.040000pt;}
.y4_c00238{bottom:46.880000pt;}
.y21_c00238{bottom:98.280000pt;}
.y20_c00238{bottom:130.280000pt;}
.y1f_c00238{bottom:162.280000pt;}
.y1e_c00238{bottom:194.280000pt;}
.y1d_c00238{bottom:226.280000pt;}
.y1c_c00238{bottom:258.280000pt;}
.y1b_c00238{bottom:290.280000pt;}
.y1a_c00238{bottom:322.280000pt;}
.y19_c00238{bottom:354.280000pt;}
.y18_c00238{bottom:386.280000pt;}
.y17_c00238{bottom:418.280000pt;}
.y16_c00238{bottom:450.280000pt;}
.y15_c00238{bottom:482.280000pt;}
.y14_c00238{bottom:514.280000pt;}
.y13_c00238{bottom:546.280000pt;}
.y12_c00238{bottom:578.280000pt;}
.y11_c00238{bottom:610.280000pt;}
.y10_c00238{bottom:642.280000pt;}
.yf_c00238{bottom:674.280000pt;}
.ye_c00238{bottom:706.280000pt;}
.yd_c00238{bottom:738.280000pt;}
.yc_c00238{bottom:770.280000pt;}
.yb_c00238{bottom:802.280000pt;}
.ya_c00238{bottom:834.280000pt;}
.y9_c00238{bottom:866.280000pt;}
.y8_c00238{bottom:898.280000pt;}
.y7_c00238{bottom:930.280000pt;}
.y6_c00238{bottom:962.280000pt;}
.y2_c00238{bottom:1035.880000pt;}
.h4_c00238{height:18.560000pt;}
.h3_c00238{height:62.812500pt;}
.h5_c00238{height:65.781915pt;}
.h2_c00238{height:1099.880000pt;}
.h0_c00238{height:1122.520000pt;}
.h1_c00238{height:1122.666667pt;}
.w3_c00238{width:24.000000pt;}
.w2_c00238{width:771.080000pt;}
.w0_c00238{width:793.720000pt;}
.w1_c00238{width:794.000000pt;}
.x0_c00238{left:0.000000pt;}
.x1_c00238{left:11.320000pt;}
.x3_c00238{left:84.805600pt;}
.x5_c00238{left:132.800133pt;}
.x4_c00238{left:385.080000pt;}
.x2_c00238{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00239{font-family:ff1_c00239;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00239;src:url('chunks/assets/font_8dd543e7657c8883e7bcff80.woff2')format("woff");}.ff2_c00239{font-family:ff2_c00239;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00239;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00239{font-family:ff3_c00239;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00239;src:url('chunks/assets/font_81ecd9dba9ade19fac6c1fd9.woff2')format("woff");}.ff4_c00239{font-family:ff4_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:ff5_c00239;src:url('chunks/assets/font_0be797c1d105b096f222aec8.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_9466895348965edbc63b23a3.woff2')format("woff");}.ff6_c00239{font-family:ff6_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:ff7_c00239;src:url('chunks/assets/font_3fe18aaf527a3dc737237db4.woff2')format("woff");}.ff7_c00239{font-family:ff7_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:ff8_c00239;src:url('chunks/assets/font_11f4d19cf482631db8d813b4.woff2')format("woff");}.ff8_c00239{font-family:ff8_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:ff9_c00239;src:url('chunks/assets/font_9f271917d4261c818e62738b.woff2')format("woff");}.ff9_c00239{font-family:ff9_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:ffa_c00239;src:url('chunks/assets/font_e1cda3c65cd4080019e20272.woff2')format("woff");}.ffa_c00239{font-family:ffa_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:ffb_c00239;src:url('chunks/assets/font_706edffc531a56ab6137d02b.woff2')format("woff");}.ffb_c00239{font-family:ffb_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:ffc_c00239;src:url('chunks/assets/font_5f2550c61dfa46acd88ee5f9.woff2')format("woff");}.ffc_c00239{font-family:ffc_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:ffd_c00239;src:url('chunks/assets/font_7d5acaf37366fd0a0e6bfd12.woff2')format("woff");}.ffd_c00239{font-family:ffd_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:ffe_c00239;src:url('chunks/assets/font_5dd81798ec600ec9c587731b.woff2')format("woff");}.ffe_c00239{font-family:ffe_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:fff_c00239;src:url('chunks/assets/font_a32fb07e8dd5545f2eb349b9.woff2')format("woff");}.fff_c00239{font-family:fff_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:ff10_c00239;src:url('chunks/assets/font_390b874efcbcd8ac2406dea0.woff2')format("woff");}.ff10_c00239{font-family:ff10_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:ff11_c00239;src:url('chunks/assets/font_becadb5358cd1acc885e0ffb.woff2')format("woff");}.ff11_c00239{font-family:ff11_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:ff12_c00239;src:url('chunks/assets/font_cc9119710fe86e0dc8c6f8a5.woff2')format("woff");}.ff12_c00239{font-family:ff12_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:ff13_c00239;src:url('chunks/assets/font_8dddca8026672d8cbf7c278e.woff2')format("woff");}.ff13_c00239{font-family:ff13_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:ff14_c00239;src:url('chunks/assets/font_11fcda1bf200509f1de38f1a.woff2')format("woff");}.ff14_c00239{font-family:ff14_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:ff15_c00239;src:url('chunks/assets/font_d094119d1158213e3906a6cf.woff2')format("woff");}.ff15_c00239{font-family:ff15_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:ff16_c00239;src:url('chunks/assets/font_868ec0930869a91e80fcfd63.woff2')format("woff");}.ff16_c00239{font-family:ff16_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:ff17_c00239;src:url('chunks/assets/font_77436a8eaf66b4504962dead.woff2')format("woff");}.ff17_c00239{font-family:ff17_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:ff18_c00239;src:url('chunks/assets/font_666172ca0196b3aec04f2957.woff2')format("woff");}.ff18_c00239{font-family:ff18_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:ff19_c00239;src:url('chunks/assets/font_753e0d004f6f20d2e405ae41.woff2')format("woff");}.ff19_c00239{font-family:ff19_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:ff1a_c00239;src:url('chunks/assets/font_ad82faca7182d77cb203f4c7.woff2')format("woff");}.ff1a_c00239{font-family:ff1a_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:ff1b_c00239;src:url('chunks/assets/font_9f160f2c3f04f7826d33800f.woff2')format("woff");}.ff1b_c00239{font-family:ff1b_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:ff1c_c00239;src:url('chunks/assets/font_e306502bee52e20ee263598f.woff2')format("woff");}.ff1c_c00239{font-family:ff1c_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:ff1d_c00239;src:url('chunks/assets/font_e5ddd521660ae1b70965e401.woff2')format("woff");}.ff1d_c00239{font-family:ff1d_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:ff1e_c00239;src:url('chunks/assets/font_28724f8a8a509a5cd4a3db1f.woff2')format("woff");}.ff1e_c00239{font-family:ff1e_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:ff1f_c00239;src:url('chunks/assets/font_b6dff4ab6c93c4b83611ca63.woff2')format("woff");}.ff1f_c00239{font-family:ff1f_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:ff20_c00239;src:url('chunks/assets/font_fd9e5adb4d4153f881521b00.woff2')format("woff");}.ff20_c00239{font-family:ff20_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:ff21_c00239;src:url('chunks/assets/font_8af67be6a5bbd7511cb752df.woff2')format("woff");}.ff21_c00239{font-family:ff21_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:ff22_c00239;src:url('chunks/assets/font_11ecbadbd2f884fd4efc1e08.woff2')format("woff");}.ff22_c00239{font-family:ff22_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:ff23_c00239;src:url('chunks/assets/font_be4f3d0951153df6d8af2065.woff2')format("woff");}.ff23_c00239{font-family:ff23_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:ff24_c00239;src:url('chunks/assets/font_286efa6ab35efac2facc860e.woff2')format("woff");}.ff24_c00239{font-family:ff24_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:ff25_c00239;src:url('chunks/assets/font_a920d713fab03b40cea90165.woff2')format("woff");}.ff25_c00239{font-family:ff25_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:ff26_c00239;src:url('chunks/assets/font_17f6ed03377c6685c653b50f.woff2')format("woff");}.ff26_c00239{font-family:ff26_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:ff27_c00239;src:url('chunks/assets/font_691a4ac1803aed61229611d9.woff2')format("woff");}.ff27_c00239{font-family:ff27_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:ff28_c00239;src:url('chunks/assets/font_26925653bd3b81e11ab356e6.woff2')format("woff");}.ff28_c00239{font-family:ff28_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:ff29_c00239;src:url('chunks/assets/font_7cb51364082e09dc62492314.woff2')format("woff");}.ff29_c00239{font-family:ff29_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:ff2a_c00239;src:url('chunks/assets/font_9d17861c55c33391d63e7772.woff2')format("woff");}.ff2a_c00239{font-family:ff2a_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;}
.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;}
.ls2_c00239{letter-spacing:0.000000px;}
.ls1_c00239{letter-spacing:0.072000px;}
.ls0_c00239{letter-spacing:0.115200px;}
.sc__c00239{text-shadow:none;}
.sc0_c00239{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00239{-webkit-text-stroke:0px transparent;}
.sc0_c00239{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00239{word-spacing:-0.072000px;}
.ws1_c00239{word-spacing:0.000000px;}
._2_c00239{width:1.101600px;}
._1_c00239{width:2.556000px;}
._3_c00239{width:3.780000px;}
._4_c00239{width:4.924800px;}
._0_c00239{width:6.177600px;}
._6_c00239{width:7.488000px;}
._5_c00239{width:10.562400px;}
._7_c00239{width:16.588800px;}
.fc1_c00239{color:transparent;}
.fc0_c00239{color:rgb(0,0,0);}
.fs1_c00239{font-size:64.800000px;}
.fs0_c00239{font-size:72.000000px;}
.y0_c00239{bottom:0.000000px;}
.y5_c00239{bottom:5.040000px;}
.y1_c00239{bottom:12.735000px;}
.y3_c00239{bottom:45.045000px;}
.y4_c00239{bottom:52.740000px;}
.y20_c00239{bottom:146.565000px;}
.y1f_c00239{bottom:182.565000px;}
.y1e_c00239{bottom:218.565000px;}
.y1d_c00239{bottom:254.565000px;}
.y1c_c00239{bottom:290.565000px;}
.y1b_c00239{bottom:326.565000px;}
.y1a_c00239{bottom:362.565000px;}
.y19_c00239{bottom:398.565000px;}
.y18_c00239{bottom:434.565000px;}
.y17_c00239{bottom:470.565000px;}
.y16_c00239{bottom:506.565000px;}
.y15_c00239{bottom:542.565000px;}
.y14_c00239{bottom:578.565000px;}
.y13_c00239{bottom:614.565000px;}
.y12_c00239{bottom:650.565000px;}
.y11_c00239{bottom:686.565000px;}
.y10_c00239{bottom:722.565000px;}
.yf_c00239{bottom:758.565000px;}
.ye_c00239{bottom:794.565000px;}
.yd_c00239{bottom:830.565000px;}
.yc_c00239{bottom:866.565000px;}
.yb_c00239{bottom:902.565000px;}
.ya_c00239{bottom:938.565000px;}
.y9_c00239{bottom:974.565000px;}
.y8_c00239{bottom:1010.565000px;}
.y7_c00239{bottom:1046.565000px;}
.y6_c00239{bottom:1082.565000px;}
.y2_c00239{bottom:1165.365000px;}
.h4_c00239{height:20.880000px;}
.h3_c00239{height:70.664062px;}
.h5_c00239{height:74.004654px;}
.h2_c00239{height:1237.365000px;}
.h0_c00239{height:1262.835000px;}
.h1_c00239{height:1263.000000px;}
.w3_c00239{width:27.000000px;}
.w2_c00239{width:867.465000px;}
.w0_c00239{width:892.935000px;}
.w1_c00239{width:893.250000px;}
.x0_c00239{left:0.000000px;}
.x1_c00239{left:12.735000px;}
.x3_c00239{left:95.406300px;}
.x5_c00239{left:149.400150px;}
.x4_c00239{left:433.215000px;}
.x2_c00239{left:878.550300px;}
@media print{
.v0_c00239{vertical-align:0.000000pt;}
.ls2_c00239{letter-spacing:0.000000pt;}
.ls1_c00239{letter-spacing:0.064000pt;}
.ls0_c00239{letter-spacing:0.102400pt;}
.ws0_c00239{word-spacing:-0.064000pt;}
.ws1_c00239{word-spacing:0.000000pt;}
._2_c00239{width:0.979200pt;}
._1_c00239{width:2.272000pt;}
._3_c00239{width:3.360000pt;}
._4_c00239{width:4.377600pt;}
._0_c00239{width:5.491200pt;}
._6_c00239{width:6.656000pt;}
._5_c00239{width:9.388800pt;}
._7_c00239{width:14.745600pt;}
.fs1_c00239{font-size:57.600000pt;}
.fs0_c00239{font-size:64.000000pt;}
.y0_c00239{bottom:0.000000pt;}
.y5_c00239{bottom:4.480000pt;}
.y1_c00239{bottom:11.320000pt;}
.y3_c00239{bottom:40.040000pt;}
.y4_c00239{bottom:46.880000pt;}
.y20_c00239{bottom:130.280000pt;}
.y1f_c00239{bottom:162.280000pt;}
.y1e_c00239{bottom:194.280000pt;}
.y1d_c00239{bottom:226.280000pt;}
.y1c_c00239{bottom:258.280000pt;}
.y1b_c00239{bottom:290.280000pt;}
.y1a_c00239{bottom:322.280000pt;}
.y19_c00239{bottom:354.280000pt;}
.y18_c00239{bottom:386.280000pt;}
.y17_c00239{bottom:418.280000pt;}
.y16_c00239{bottom:450.280000pt;}
.y15_c00239{bottom:482.280000pt;}
.y14_c00239{bottom:514.280000pt;}
.y13_c00239{bottom:546.280000pt;}
.y12_c00239{bottom:578.280000pt;}
.y11_c00239{bottom:610.280000pt;}
.y10_c00239{bottom:642.280000pt;}
.yf_c00239{bottom:674.280000pt;}
.ye_c00239{bottom:706.280000pt;}
.yd_c00239{bottom:738.280000pt;}
.yc_c00239{bottom:770.280000pt;}
.yb_c00239{bottom:802.280000pt;}
.ya_c00239{bottom:834.280000pt;}
.y9_c00239{bottom:866.280000pt;}
.y8_c00239{bottom:898.280000pt;}
.y7_c00239{bottom:930.280000pt;}
.y6_c00239{bottom:962.280000pt;}
.y2_c00239{bottom:1035.880000pt;}
.h4_c00239{height:18.560000pt;}
.h3_c00239{height:62.812500pt;}
.h5_c00239{height:65.781915pt;}
.h2_c00239{height:1099.880000pt;}
.h0_c00239{height:1122.520000pt;}
.h1_c00239{height:1122.666667pt;}
.w3_c00239{width:24.000000pt;}
.w2_c00239{width:771.080000pt;}
.w0_c00239{width:793.720000pt;}
.w1_c00239{width:794.000000pt;}
.x0_c00239{left:0.000000pt;}
.x1_c00239{left:11.320000pt;}
.x3_c00239{left:84.805600pt;}
.x5_c00239{left:132.800133pt;}
.x4_c00239{left:385.080000pt;}
.x2_c00239{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00240{font-family:ff1_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00240;src:url('chunks/assets/font_fb663eedb69a46dedad9f289.woff2')format("woff");}.ff2_c00240{font-family:ff2_c00240;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00240;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00240{font-family:ff3_c00240;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00240;src:url('chunks/assets/font_c19bb73f657225c34432cfdc.woff2')format("woff");}.ff4_c00240{font-family:ff4_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00240;src:url('chunks/assets/font_4675a122851fab67f9c2f5f2.woff2')format("woff");}.ff5_c00240{font-family:ff5_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00240;src:url('chunks/assets/font_09374e5c22d860564d2837ff.woff2')format("woff");}.ff6_c00240{font-family:ff6_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00240;src:url('chunks/assets/font_a7f52267cc106fc6964152d2.woff2')format("woff");}.ff7_c00240{font-family:ff7_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00240;src:url('chunks/assets/font_ab97fb5967877fed1e00c7bc.woff2')format("woff");}.ff8_c00240{font-family:ff8_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00240;src:url('chunks/assets/font_59aa8b56a767bd3bf7b1c584.woff2')format("woff");}.ff9_c00240{font-family:ff9_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00240;src:url('chunks/assets/font_a633d454b73d79d9d7601bb3.woff2')format("woff");}.ffa_c00240{font-family:ffa_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00240;src:url('chunks/assets/font_b7c7c279bbed41a1c336ee49.woff2')format("woff");}.ffb_c00240{font-family:ffb_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00240;src:url('chunks/assets/font_fe3953e558b8c1096d0431bd.woff2')format("woff");}.ffc_c00240{font-family:ffc_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00240;src:url('chunks/assets/font_14bc914f5ceffd23c027ab4f.woff2')format("woff");}.ffd_c00240{font-family:ffd_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00240;src:url('chunks/assets/font_9ed5150988220f644cd2d681.woff2')format("woff");}.ffe_c00240{font-family:ffe_c00240;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:fff_c00240;src:url('chunks/assets/font_796b185a7a55c548b49fa905.woff2')format("woff");}.fff_c00240{font-family:fff_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00240;src:url('chunks/assets/font_c451a3989d1c75298b7322d4.woff2')format("woff");}.ff10_c00240{font-family:ff10_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00240;src:url('chunks/assets/font_780552f7a0b6d6e94508171e.woff2')format("woff");}.ff11_c00240{font-family:ff11_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00240;src:url('chunks/assets/font_531e273aad0132447a537858.woff2')format("woff");}.ff12_c00240{font-family:ff12_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00240;src:url('chunks/assets/font_0e53eb233456e577675cda08.woff2')format("woff");}.ff13_c00240{font-family:ff13_c00240;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:ff14_c00240;src:url('chunks/assets/font_65732cf99c46ab735512f135.woff2')format("woff");}.ff14_c00240{font-family:ff14_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00240;src:url('chunks/assets/font_d8b8fe0f29152812bbe2a71d.woff2')format("woff");}.ff15_c00240{font-family:ff15_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00240;src:url('chunks/assets/font_aa148852bd9a7e8dc1be2f17.woff2')format("woff");}.ff16_c00240{font-family:ff16_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00240;src:url('chunks/assets/font_f28d0a97141845d605f5298e.woff2')format("woff");}.ff17_c00240{font-family:ff17_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00240;src:url('chunks/assets/font_1586667575ad65d14a1dad44.woff2')format("woff");}.ff18_c00240{font-family:ff18_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00240;src:url('chunks/assets/font_7eb21c639d5e340a867f51e5.woff2')format("woff");}.ff19_c00240{font-family:ff19_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00240;src:url('chunks/assets/font_d6238df126b7b12fb339c6ed.woff2')format("woff");}.ff1a_c00240{font-family:ff1a_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00240;src:url('chunks/assets/font_869e8b06b532d8aa2c2e5520.woff2')format("woff");}.ff1b_c00240{font-family:ff1b_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00240;src:url('chunks/assets/font_308b3c99393bb3aafc850e09.woff2')format("woff");}.ff1c_c00240{font-family:ff1c_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00240;src:url('chunks/assets/font_8608a97b5179b175d19f3ed3.woff2')format("woff");}.ff1d_c00240{font-family:ff1d_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00240;src:url('chunks/assets/font_4bf497f0c6d3d503b450f050.woff2')format("woff");}.ff1e_c00240{font-family:ff1e_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00240;src:url('chunks/assets/font_32176e2f57c42ab25fa15758.woff2')format("woff");}.ff1f_c00240{font-family:ff1f_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00240;src:url('chunks/assets/font_c6d59d6cb1a8eb4dab2fe734.woff2')format("woff");}.ff20_c00240{font-family:ff20_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00240;src:url('chunks/assets/font_0938e802a1f70b5184764f6f.woff2')format("woff");}.ff21_c00240{font-family:ff21_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00240;src:url('chunks/assets/font_c9abc59e0de14952f14e42fa.woff2')format("woff");}.ff22_c00240{font-family:ff22_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00240;src:url('chunks/assets/font_1d9e5947794c34d386a8acb6.woff2')format("woff");}.ff23_c00240{font-family:ff23_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00240;src:url('chunks/assets/font_0b5382b059cd6a869ff8b24f.woff2')format("woff");}.ff24_c00240{font-family:ff24_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00240;src:url('chunks/assets/font_d474fcbcf3bc9586b7f42ab5.woff2')format("woff");}.ff25_c00240{font-family:ff25_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00240;src:url('chunks/assets/font_9f59e2ef02db7e3f4069c9e0.woff2')format("woff");}.ff26_c00240{font-family:ff26_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00240;src:url('chunks/assets/font_ffd1adaeacb04a5d32f4761e.woff2')format("woff");}.ff27_c00240{font-family:ff27_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00240;src:url('chunks/assets/font_4d73a61ea86f9bb9032422dd.woff2')format("woff");}.ff28_c00240{font-family:ff28_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00240;src:url('chunks/assets/font_6e242ceaa71d613a00c157b3.woff2')format("woff");}.ff29_c00240{font-family:ff29_c00240;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00240{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00240{vertical-align:0.000000px;}
.ls2_c00240{letter-spacing:-0.014400px;}
.ls1_c00240{letter-spacing:0.000000px;}
.ls0_c00240{letter-spacing:0.072000px;}
.sc__c00240{text-shadow:none;}
.sc0_c00240{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00240{-webkit-text-stroke:0px transparent;}
.sc0_c00240{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00240{word-spacing:-18.000000px;}
.ws0_c00240{word-spacing:-0.072000px;}
.ws2_c00240{word-spacing:0.000000px;}
._2_c00240{margin-left:-1.476000px;}
._4_c00240{width:2.023200px;}
._0_c00240{width:4.024800px;}
._1_c00240{width:6.883200px;}
._3_c00240{width:8.150400px;}
._7_c00240{width:9.352800px;}
._8_c00240{width:11.052000px;}
._a_c00240{width:12.204000px;}
._9_c00240{width:14.472000px;}
._6_c00240{width:16.336800px;}
._5_c00240{width:19.396800px;}
._d_c00240{width:23.018400px;}
._b_c00240{width:24.249600px;}
._c_c00240{width:25.560000px;}
.fc1_c00240{color:transparent;}
.fc0_c00240{color:rgb(0,0,0);}
.fs1_c00240{font-size:64.800000px;}
.fs0_c00240{font-size:72.000000px;}
.y0_c00240{bottom:0.000000px;}
.y5_c00240{bottom:5.040000px;}
.y1_c00240{bottom:12.735000px;}
.y3_c00240{bottom:45.045000px;}
.y4_c00240{bottom:52.740000px;}
.y21_c00240{bottom:110.565000px;}
.y20_c00240{bottom:146.565000px;}
.y1f_c00240{bottom:182.565000px;}
.y1e_c00240{bottom:218.565000px;}
.y1d_c00240{bottom:254.565000px;}
.y1c_c00240{bottom:290.565000px;}
.y1b_c00240{bottom:326.565000px;}
.y1a_c00240{bottom:362.565000px;}
.y19_c00240{bottom:398.565000px;}
.y18_c00240{bottom:434.565000px;}
.y17_c00240{bottom:470.565000px;}
.y16_c00240{bottom:506.565000px;}
.y15_c00240{bottom:542.565000px;}
.y14_c00240{bottom:578.565000px;}
.y13_c00240{bottom:614.565000px;}
.y12_c00240{bottom:650.565000px;}
.y11_c00240{bottom:686.565000px;}
.y10_c00240{bottom:722.565000px;}
.yf_c00240{bottom:758.565000px;}
.ye_c00240{bottom:794.565000px;}
.yd_c00240{bottom:830.565000px;}
.yc_c00240{bottom:866.565000px;}
.yb_c00240{bottom:902.565000px;}
.ya_c00240{bottom:938.565000px;}
.y9_c00240{bottom:974.565000px;}
.y8_c00240{bottom:1010.565000px;}
.y7_c00240{bottom:1046.565000px;}
.y6_c00240{bottom:1082.565000px;}
.y2_c00240{bottom:1165.365000px;}
.h4_c00240{height:20.880000px;}
.h3_c00240{height:70.664062px;}
.h5_c00240{height:74.004654px;}
.h2_c00240{height:1237.365000px;}
.h0_c00240{height:1262.835000px;}
.h1_c00240{height:1263.000000px;}
.w3_c00240{width:27.000000px;}
.w2_c00240{width:867.465000px;}
.w0_c00240{width:892.935000px;}
.w1_c00240{width:893.250000px;}
.x0_c00240{left:0.000000px;}
.x1_c00240{left:12.735000px;}
.x3_c00240{left:95.406300px;}
.x5_c00240{left:149.400150px;}
.x4_c00240{left:433.215000px;}
.x2_c00240{left:878.550300px;}
@media print{
.v0_c00240{vertical-align:0.000000pt;}
.ls2_c00240{letter-spacing:-0.012800pt;}
.ls1_c00240{letter-spacing:0.000000pt;}
.ls0_c00240{letter-spacing:0.064000pt;}
.ws1_c00240{word-spacing:-16.000000pt;}
.ws0_c00240{word-spacing:-0.064000pt;}
.ws2_c00240{word-spacing:0.000000pt;}
._2_c00240{margin-left:-1.312000pt;}
._4_c00240{width:1.798400pt;}
._0_c00240{width:3.577600pt;}
._1_c00240{width:6.118400pt;}
._3_c00240{width:7.244800pt;}
._7_c00240{width:8.313600pt;}
._8_c00240{width:9.824000pt;}
._a_c00240{width:10.848000pt;}
._9_c00240{width:12.864000pt;}
._6_c00240{width:14.521600pt;}
._5_c00240{width:17.241600pt;}
._d_c00240{width:20.460800pt;}
._b_c00240{width:21.555200pt;}
._c_c00240{width:22.720000pt;}
.fs1_c00240{font-size:57.600000pt;}
.fs0_c00240{font-size:64.000000pt;}
.y0_c00240{bottom:0.000000pt;}
.y5_c00240{bottom:4.480000pt;}
.y1_c00240{bottom:11.320000pt;}
.y3_c00240{bottom:40.040000pt;}
.y4_c00240{bottom:46.880000pt;}
.y21_c00240{bottom:98.280000pt;}
.y20_c00240{bottom:130.280000pt;}
.y1f_c00240{bottom:162.280000pt;}
.y1e_c00240{bottom:194.280000pt;}
.y1d_c00240{bottom:226.280000pt;}
.y1c_c00240{bottom:258.280000pt;}
.y1b_c00240{bottom:290.280000pt;}
.y1a_c00240{bottom:322.280000pt;}
.y19_c00240{bottom:354.280000pt;}
.y18_c00240{bottom:386.280000pt;}
.y17_c00240{bottom:418.280000pt;}
.y16_c00240{bottom:450.280000pt;}
.y15_c00240{bottom:482.280000pt;}
.y14_c00240{bottom:514.280000pt;}
.y13_c00240{bottom:546.280000pt;}
.y12_c00240{bottom:578.280000pt;}
.y11_c00240{bottom:610.280000pt;}
.y10_c00240{bottom:642.280000pt;}
.yf_c00240{bottom:674.280000pt;}
.ye_c00240{bottom:706.280000pt;}
.yd_c00240{bottom:738.280000pt;}
.yc_c00240{bottom:770.280000pt;}
.yb_c00240{bottom:802.280000pt;}
.ya_c00240{bottom:834.280000pt;}
.y9_c00240{bottom:866.280000pt;}
.y8_c00240{bottom:898.280000pt;}
.y7_c00240{bottom:930.280000pt;}
.y6_c00240{bottom:962.280000pt;}
.y2_c00240{bottom:1035.880000pt;}
.h4_c00240{height:18.560000pt;}
.h3_c00240{height:62.812500pt;}
.h5_c00240{height:65.781915pt;}
.h2_c00240{height:1099.880000pt;}
.h0_c00240{height:1122.520000pt;}
.h1_c00240{height:1122.666667pt;}
.w3_c00240{width:24.000000pt;}
.w2_c00240{width:771.080000pt;}
.w0_c00240{width:793.720000pt;}
.w1_c00240{width:794.000000pt;}
.x0_c00240{left:0.000000pt;}
.x1_c00240{left:11.320000pt;}
.x3_c00240{left:84.805600pt;}
.x5_c00240{left:132.800133pt;}
.x4_c00240{left:385.080000pt;}
.x2_c00240{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00241{font-family:ff1_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:ff2_c00241;src:url('chunks/assets/font_c0bd77f8b1500bd913659843.woff2')format("woff");}.ff2_c00241{font-family:ff2_c00241;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00241;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00241{font-family:ff3_c00241;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00241;src:url('chunks/assets/font_59795411b1fe9ac9dc12dadb.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_f97f2eeb7fbbfacf262d72ec.woff2')format("woff");}.ff5_c00241{font-family:ff5_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:ff6_c00241;src:url('chunks/assets/font_f7f42b6814aca75f4721ffd7.woff2')format("woff");}.ff6_c00241{font-family:ff6_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:ff7_c00241;src:url('chunks/assets/font_e92406bf96ff96ba026821d3.woff2')format("woff");}.ff7_c00241{font-family:ff7_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:ff8_c00241;src:url('chunks/assets/font_ecd6669c19433ec5ab7c9a11.woff2')format("woff");}.ff8_c00241{font-family:ff8_c00241;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00241;src:url('chunks/assets/font_883c056528b79bc0f655ce1b.woff2')format("woff");}.ff9_c00241{font-family:ff9_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:ffa_c00241;src:url('chunks/assets/font_31d43b7c400e2d303eecda33.woff2')format("woff");}.ffa_c00241{font-family:ffa_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:ffb_c00241;src:url('chunks/assets/font_c2bb15e98853c4233709be73.woff2')format("woff");}.ffb_c00241{font-family:ffb_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:ffc_c00241;src:url('chunks/assets/font_85cda1dcde4347369b31b4f9.woff2')format("woff");}.ffc_c00241{font-family:ffc_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:ffd_c00241;src:url('chunks/assets/font_6a996f8d77252a584760744a.woff2')format("woff");}.ffd_c00241{font-family:ffd_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:ffe_c00241;src:url('chunks/assets/font_86ddedc21ef2987bf6434279.woff2')format("woff");}.ffe_c00241{font-family:ffe_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:fff_c00241;src:url('chunks/assets/font_f94c066b9f18c0f4b4211ad3.woff2')format("woff");}.fff_c00241{font-family:fff_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:ff10_c00241;src:url('chunks/assets/font_b63d6d3a8c9ad3e36793f188.woff2')format("woff");}.ff10_c00241{font-family:ff10_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:ff11_c00241;src:url('chunks/assets/font_5abe2c92710d2f3f95bb1da2.woff2')format("woff");}.ff11_c00241{font-family:ff11_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:ff12_c00241;src:url('chunks/assets/font_4543d786b1b43ca2c7c38f0d.woff2')format("woff");}.ff12_c00241{font-family:ff12_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:ff13_c00241;src:url('chunks/assets/font_a8b6cf3d418dc1fcfbfcc282.woff2')format("woff");}.ff13_c00241{font-family:ff13_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:ff14_c00241;src:url('chunks/assets/font_8e200160e940b92452f2b6c3.woff2')format("woff");}.ff14_c00241{font-family:ff14_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:ff15_c00241;src:url('chunks/assets/font_f8d4afba3dd2eeadef0013b4.woff2')format("woff");}.ff15_c00241{font-family:ff15_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:ff16_c00241;src:url('chunks/assets/font_91ba708a31dc85607bdca91f.woff2')format("woff");}.ff16_c00241{font-family:ff16_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:ff17_c00241;src:url('chunks/assets/font_ceea2bbb4f160180d20d0091.woff2')format("woff");}.ff17_c00241{font-family:ff17_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:ff18_c00241;src:url('chunks/assets/font_889878f0e4e6e4225f373510.woff2')format("woff");}.ff18_c00241{font-family:ff18_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:ff19_c00241;src:url('chunks/assets/font_70fb7e497e2fa280c70b7b15.woff2')format("woff");}.ff19_c00241{font-family:ff19_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:ff1a_c00241;src:url('chunks/assets/font_cd8ce86c5133fa59b205d470.woff2')format("woff");}.ff1a_c00241{font-family:ff1a_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:ff1b_c00241;src:url('chunks/assets/font_42a2d41dc2f8925dcf7f89ec.woff2')format("woff");}.ff1b_c00241{font-family:ff1b_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:ff1c_c00241;src:url('chunks/assets/font_1fd3db882581a21fe603de4f.woff2')format("woff");}.ff1c_c00241{font-family:ff1c_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:ff1d_c00241;src:url('chunks/assets/font_a81b8c4ac481c9feb94995a6.woff2')format("woff");}.ff1d_c00241{font-family:ff1d_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:ff1e_c00241;src:url('chunks/assets/font_474bc8e1c88fcd7268d923c8.woff2')format("woff");}.ff1e_c00241{font-family:ff1e_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:ff1f_c00241;src:url('chunks/assets/font_39124b22d4109ca8f32327c0.woff2')format("woff");}.ff1f_c00241{font-family:ff1f_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:ff20_c00241;src:url('chunks/assets/font_a196b16fbfd0c04f74237432.woff2')format("woff");}.ff20_c00241{font-family:ff20_c00241;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00241;src:url('chunks/assets/font_29d355b23c1175effb872f0b.woff2')format("woff");}.ff21_c00241{font-family:ff21_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:ff22_c00241;src:url('chunks/assets/font_331fb001a5bb0548a3648974.woff2')format("woff");}.ff22_c00241{font-family:ff22_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:ff23_c00241;src:url('chunks/assets/font_68d6d382764fe1d3ef86c75e.woff2')format("woff");}.ff23_c00241{font-family:ff23_c00241;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00241;src:url('chunks/assets/font_e6d08c56e8257fb124774c9f.woff2')format("woff");}.ff24_c00241{font-family:ff24_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:ff25_c00241;src:url('chunks/assets/font_7659d71e76414dbc735400f1.woff2')format("woff");}.ff25_c00241{font-family:ff25_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:ff26_c00241;src:url('chunks/assets/font_331fb001a5bb0548a3648974.woff2')format("woff");}.ff26_c00241{font-family:ff26_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:ff27_c00241;src:url('chunks/assets/font_0f44f8ded29931d16b49f93a.woff2')format("woff");}.ff27_c00241{font-family:ff27_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:ff28_c00241;src:url('chunks/assets/font_79e45ee7a4828b41420cc103.woff2')format("woff");}.ff28_c00241{font-family:ff28_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:ff29_c00241;src:url('chunks/assets/font_be6af2f0df2b2a7480bdb863.woff2')format("woff");}.ff29_c00241{font-family:ff29_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:ff2a_c00241;src:url('chunks/assets/font_85a30962d2bf32d06aba90e1.woff2')format("woff");}.ff2a_c00241{font-family:ff2a_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:ff2b_c00241;src:url('chunks/assets/font_f2c36564c31ce4e6c1d76546.woff2')format("woff");}.ff2b_c00241{font-family:ff2b_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:ff2c_c00241;src:url('chunks/assets/font_0af590d857d08b89ebe3aec7.woff2')format("woff");}.ff2c_c00241{font-family:ff2c_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:ff2d_c00241;src:url('chunks/assets/font_6c4dda5fc43148c2d7150637.woff2')format("woff");}.ff2d_c00241{font-family:ff2d_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:ff2e_c00241;src:url('chunks/assets/font_1a6a050ad11c74e1b3d716c4.woff2')format("woff");}.ff2e_c00241{font-family:ff2e_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:ff2f_c00241;src:url('chunks/assets/font_c97b055100c39e1a055e4070.woff2')format("woff");}.ff2f_c00241{font-family:ff2f_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:ff30_c00241;src:url('chunks/assets/font_78f99d2983ee2c401e2a7a28.woff2')format("woff");}.ff30_c00241{font-family:ff30_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:ff31_c00241;src:url('chunks/assets/font_00f4eafa30ce9ea5d038a6f4.woff2')format("woff");}.ff31_c00241{font-family:ff31_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:ff32_c00241;src:url('chunks/assets/font_0679fac639f00c8d1b193751.woff2')format("woff");}.ff32_c00241{font-family:ff32_c00241;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:ff33_c00241;src:url('chunks/assets/font_a66ff38f456af1902211ff30.woff2')format("woff");}.ff33_c00241{font-family:ff33_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:ff34_c00241;src:url('chunks/assets/font_79fa95d8c3aaaade3e9e2eb4.woff2')format("woff");}.ff34_c00241{font-family:ff34_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;}
.m0_c00241{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00241{vertical-align:0.000000px;}
.ls4_c00241{letter-spacing:0.000000px;}
.ls0_c00241{letter-spacing:0.072000px;}
.ls2_c00241{letter-spacing:0.079200px;}
.ls1_c00241{letter-spacing:0.100800px;}
.ls3_c00241{letter-spacing:0.136800px;}
.sc__c00241{text-shadow:none;}
.sc0_c00241{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00241{-webkit-text-stroke:0px transparent;}
.sc0_c00241{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00241{word-spacing:-0.072000px;}
.ws1_c00241{word-spacing:0.000000px;}
._c_c00241{width:1.411200px;}
._4_c00241{width:3.168000px;}
._a_c00241{width:4.168800px;}
._3_c00241{width:5.227200px;}
._d_c00241{width:6.386400px;}
._b_c00241{width:7.898400px;}
._9_c00241{width:10.029600px;}
._e_c00241{width:12.240000px;}
._5_c00241{width:13.550400px;}
._1_c00241{width:14.731200px;}
._2_c00241{width:15.876000px;}
._7_c00241{width:19.094400px;}
._6_c00241{width:21.708000px;}
._0_c00241{width:25.250400px;}
._8_c00241{width:26.632800px;}
.fc1_c00241{color:transparent;}
.fc0_c00241{color:rgb(0,0,0);}
.fs1_c00241{font-size:64.800000px;}
.fs0_c00241{font-size:72.000000px;}
.y0_c00241{bottom:0.000000px;}
.y5_c00241{bottom:5.040000px;}
.y1_c00241{bottom:12.735000px;}
.y3_c00241{bottom:45.045000px;}
.y4_c00241{bottom:52.740000px;}
.y21_c00241{bottom:110.565000px;}
.y20_c00241{bottom:146.565000px;}
.y1f_c00241{bottom:182.565000px;}
.y1e_c00241{bottom:218.565000px;}
.y1d_c00241{bottom:254.565000px;}
.y1c_c00241{bottom:290.565000px;}
.y1b_c00241{bottom:326.565000px;}
.y1a_c00241{bottom:362.565000px;}
.y19_c00241{bottom:398.565000px;}
.y18_c00241{bottom:434.565000px;}
.y17_c00241{bottom:470.565000px;}
.y16_c00241{bottom:506.565000px;}
.y15_c00241{bottom:542.565000px;}
.y14_c00241{bottom:578.565000px;}
.y13_c00241{bottom:614.565000px;}
.y12_c00241{bottom:650.565000px;}
.y11_c00241{bottom:686.565000px;}
.y10_c00241{bottom:722.565000px;}
.yf_c00241{bottom:758.565000px;}
.ye_c00241{bottom:794.565000px;}
.yd_c00241{bottom:830.565000px;}
.yc_c00241{bottom:866.565000px;}
.yb_c00241{bottom:902.565000px;}
.ya_c00241{bottom:938.565000px;}
.y9_c00241{bottom:974.565000px;}
.y8_c00241{bottom:1010.565000px;}
.y7_c00241{bottom:1046.565000px;}
.y6_c00241{bottom:1082.565000px;}
.y2_c00241{bottom:1165.365000px;}
.h4_c00241{height:20.880000px;}
.h3_c00241{height:70.664062px;}
.h6_c00241{height:71.824219px;}
.h5_c00241{height:74.004654px;}
.h2_c00241{height:1237.365000px;}
.h0_c00241{height:1262.835000px;}
.h1_c00241{height:1263.000000px;}
.w3_c00241{width:27.000000px;}
.w2_c00241{width:867.465000px;}
.w0_c00241{width:892.935000px;}
.w1_c00241{width:893.250000px;}
.x0_c00241{left:0.000000px;}
.x1_c00241{left:12.735000px;}
.x3_c00241{left:95.406300px;}
.x5_c00241{left:149.382150px;}
.x6_c00241{left:180.432150px;}
.x4_c00241{left:433.215000px;}
.x2_c00241{left:878.550300px;}
@media print{
.v0_c00241{vertical-align:0.000000pt;}
.ls4_c00241{letter-spacing:0.000000pt;}
.ls0_c00241{letter-spacing:0.064000pt;}
.ls2_c00241{letter-spacing:0.070400pt;}
.ls1_c00241{letter-spacing:0.089600pt;}
.ls3_c00241{letter-spacing:0.121600pt;}
.ws0_c00241{word-spacing:-0.064000pt;}
.ws1_c00241{word-spacing:0.000000pt;}
._c_c00241{width:1.254400pt;}
._4_c00241{width:2.816000pt;}
._a_c00241{width:3.705600pt;}
._3_c00241{width:4.646400pt;}
._d_c00241{width:5.676800pt;}
._b_c00241{width:7.020800pt;}
._9_c00241{width:8.915200pt;}
._e_c00241{width:10.880000pt;}
._5_c00241{width:12.044800pt;}
._1_c00241{width:13.094400pt;}
._2_c00241{width:14.112000pt;}
._7_c00241{width:16.972800pt;}
._6_c00241{width:19.296000pt;}
._0_c00241{width:22.444800pt;}
._8_c00241{width:23.673600pt;}
.fs1_c00241{font-size:57.600000pt;}
.fs0_c00241{font-size:64.000000pt;}
.y0_c00241{bottom:0.000000pt;}
.y5_c00241{bottom:4.480000pt;}
.y1_c00241{bottom:11.320000pt;}
.y3_c00241{bottom:40.040000pt;}
.y4_c00241{bottom:46.880000pt;}
.y21_c00241{bottom:98.280000pt;}
.y20_c00241{bottom:130.280000pt;}
.y1f_c00241{bottom:162.280000pt;}
.y1e_c00241{bottom:194.280000pt;}
.y1d_c00241{bottom:226.280000pt;}
.y1c_c00241{bottom:258.280000pt;}
.y1b_c00241{bottom:290.280000pt;}
.y1a_c00241{bottom:322.280000pt;}
.y19_c00241{bottom:354.280000pt;}
.y18_c00241{bottom:386.280000pt;}
.y17_c00241{bottom:418.280000pt;}
.y16_c00241{bottom:450.280000pt;}
.y15_c00241{bottom:482.280000pt;}
.y14_c00241{bottom:514.280000pt;}
.y13_c00241{bottom:546.280000pt;}
.y12_c00241{bottom:578.280000pt;}
.y11_c00241{bottom:610.280000pt;}
.y10_c00241{bottom:642.280000pt;}
.yf_c00241{bottom:674.280000pt;}
.ye_c00241{bottom:706.280000pt;}
.yd_c00241{bottom:738.280000pt;}
.yc_c00241{bottom:770.280000pt;}
.yb_c00241{bottom:802.280000pt;}
.ya_c00241{bottom:834.280000pt;}
.y9_c00241{bottom:866.280000pt;}
.y8_c00241{bottom:898.280000pt;}
.y7_c00241{bottom:930.280000pt;}
.y6_c00241{bottom:962.280000pt;}
.y2_c00241{bottom:1035.880000pt;}
.h4_c00241{height:18.560000pt;}
.h3_c00241{height:62.812500pt;}
.h6_c00241{height:63.843750pt;}
.h5_c00241{height:65.781915pt;}
.h2_c00241{height:1099.880000pt;}
.h0_c00241{height:1122.520000pt;}
.h1_c00241{height:1122.666667pt;}
.w3_c00241{width:24.000000pt;}
.w2_c00241{width:771.080000pt;}
.w0_c00241{width:793.720000pt;}
.w1_c00241{width:794.000000pt;}
.x0_c00241{left:0.000000pt;}
.x1_c00241{left:11.320000pt;}
.x3_c00241{left:84.805600pt;}
.x5_c00241{left:132.784133pt;}
.x6_c00241{left:160.384133pt;}
.x4_c00241{left:385.080000pt;}
.x2_c00241{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00242{font-family:ff1_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00242;src:url('chunks/assets/font_5960f5aef08d83a3a1ef1a71.woff2')format("woff");}.ff2_c00242{font-family:ff2_c00242;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00242;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00242{font-family:ff3_c00242;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00242;src:url('chunks/assets/font_2bbb8f10596f80699d110c6f.woff2')format("woff");}.ff4_c00242{font-family:ff4_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00242;src:url('chunks/assets/font_d9ca929ad7dd9939cfa9b573.woff2')format("woff");}.ff5_c00242{font-family:ff5_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00242;src:url('chunks/assets/font_51204508278b85e3f3d8862a.woff2')format("woff");}.ff6_c00242{font-family:ff6_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00242;src:url('chunks/assets/font_b198f8bc4c98de522b08aa37.woff2')format("woff");}.ff7_c00242{font-family:ff7_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00242;src:url('chunks/assets/font_81e809535b6963145fc34ee7.woff2')format("woff");}.ff8_c00242{font-family:ff8_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00242;src:url('chunks/assets/font_7cd28be8f51affb3f7e4c0ee.woff2')format("woff");}.ff9_c00242{font-family:ff9_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00242;src:url('chunks/assets/font_83b20bd805803d510707329e.woff2')format("woff");}.ffa_c00242{font-family:ffa_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00242;src:url('chunks/assets/font_7f8a7f61c7fe259fba324fb5.woff2')format("woff");}.ffb_c00242{font-family:ffb_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00242;src:url('chunks/assets/font_1eea7fce470259d03c3d59d9.woff2')format("woff");}.ffc_c00242{font-family:ffc_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00242;src:url('chunks/assets/font_549714f7d4fa5c97048d4fd8.woff2')format("woff");}.ffd_c00242{font-family:ffd_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00242;src:url('chunks/assets/font_6c3c440e77497081206f9b5a.woff2')format("woff");}.ffe_c00242{font-family:ffe_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00242;src:url('chunks/assets/font_887152317dd2765819b20274.woff2')format("woff");}.fff_c00242{font-family:fff_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00242;src:url('chunks/assets/font_a300653509fb89983d880a3e.woff2')format("woff");}.ff10_c00242{font-family:ff10_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00242;src:url('chunks/assets/font_56f69cbbc741d2b2bdc89782.woff2')format("woff");}.ff11_c00242{font-family:ff11_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00242;src:url('chunks/assets/font_ec5fbcf176c316481899602f.woff2')format("woff");}.ff12_c00242{font-family:ff12_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00242;src:url('chunks/assets/font_8b3be25a4ab7a12db9ab782f.woff2')format("woff");}.ff13_c00242{font-family:ff13_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00242;src:url('chunks/assets/font_d884e3d7e4f0b63ea6f70ea4.woff2')format("woff");}.ff14_c00242{font-family:ff14_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00242;src:url('chunks/assets/font_ad1a722330aa4791dcb2976c.woff2')format("woff");}.ff15_c00242{font-family:ff15_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00242;src:url('chunks/assets/font_f44ddb3a80a041067e03e04a.woff2')format("woff");}.ff16_c00242{font-family:ff16_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00242;src:url('chunks/assets/font_9083b943d5a6b0341a5dd8aa.woff2')format("woff");}.ff17_c00242{font-family:ff17_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00242;src:url('chunks/assets/font_b0ab7d7b5fda4e78f84754b4.woff2')format("woff");}.ff18_c00242{font-family:ff18_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00242;src:url('chunks/assets/font_e599f7295b060f7516a492a4.woff2')format("woff");}.ff19_c00242{font-family:ff19_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00242;src:url('chunks/assets/font_2d68092877d07691a89bebe9.woff2')format("woff");}.ff1a_c00242{font-family:ff1a_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00242;src:url('chunks/assets/font_d17c5b306d590a8ebe8c32d1.woff2')format("woff");}.ff1b_c00242{font-family:ff1b_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00242;src:url('chunks/assets/font_c0559e7ad367f78902f9a2b5.woff2')format("woff");}.ff1c_c00242{font-family:ff1c_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00242;src:url('chunks/assets/font_d75e3974953aff028cfa1211.woff2')format("woff");}.ff1d_c00242{font-family:ff1d_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00242;src:url('chunks/assets/font_ec888770bebfd1b3537bab04.woff2')format("woff");}.ff1e_c00242{font-family:ff1e_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00242;src:url('chunks/assets/font_1f6ef022c05da9802c6350d2.woff2')format("woff");}.ff1f_c00242{font-family:ff1f_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00242;src:url('chunks/assets/font_dbecb85647751a5c25b3c688.woff2')format("woff");}.ff20_c00242{font-family:ff20_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00242;src:url('chunks/assets/font_31d6a0040a10119095934657.woff2')format("woff");}.ff21_c00242{font-family:ff21_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00242;src:url('chunks/assets/font_9bbbc23f55558f6967a8bd4b.woff2')format("woff");}.ff22_c00242{font-family:ff22_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00242;src:url('chunks/assets/font_a54669a1069e5b6f2426feb6.woff2')format("woff");}.ff23_c00242{font-family:ff23_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00242;src:url('chunks/assets/font_1f520cf0b57cfafc3136c683.woff2')format("woff");}.ff24_c00242{font-family:ff24_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00242;src:url('chunks/assets/font_8caabc3fac5332e53190bc14.woff2')format("woff");}.ff25_c00242{font-family:ff25_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00242;src:url('chunks/assets/font_23297c762cd53fdfa58fb9b0.woff2')format("woff");}.ff26_c00242{font-family:ff26_c00242;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:ff27_c00242;src:url('chunks/assets/font_ab1c903b74c09a5d24c0447a.woff2')format("woff");}.ff27_c00242{font-family:ff27_c00242;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00242{letter-spacing:0.072000px;}
.ls0_c00242{letter-spacing:0.100800px;}
.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:-0.072000px;}
.ws1_c00242{word-spacing:0.000000px;}
._1_c00242{width:1.411200px;}
._9_c00242{width:2.476800px;}
._6_c00242{width:3.729600px;}
._a_c00242{width:4.946400px;}
._2_c00242{width:6.328800px;}
._0_c00242{width:7.336800px;}
._5_c00242{width:9.194400px;}
._7_c00242{width:10.735200px;}
._4_c00242{width:11.750400px;}
._8_c00242{width:12.945600px;}
._3_c00242{width:28.209600px;}
.fc1_c00242{color:transparent;}
.fc0_c00242{color:rgb(0,0,0);}
.fs1_c00242{font-size:64.800000px;}
.fs0_c00242{font-size:72.000000px;}
.y0_c00242{bottom:0.000000px;}
.y5_c00242{bottom:5.040000px;}
.y1_c00242{bottom:12.735000px;}
.y3_c00242{bottom:45.045000px;}
.y4_c00242{bottom:52.740000px;}
.y21_c00242{bottom:110.565000px;}
.y20_c00242{bottom:146.565000px;}
.y1f_c00242{bottom:182.565000px;}
.y1e_c00242{bottom:218.565000px;}
.y1d_c00242{bottom:254.565000px;}
.y1c_c00242{bottom:290.565000px;}
.y1b_c00242{bottom:326.565000px;}
.y1a_c00242{bottom:362.565000px;}
.y19_c00242{bottom:398.565000px;}
.y18_c00242{bottom:434.565000px;}
.y17_c00242{bottom:470.565000px;}
.y16_c00242{bottom:506.565000px;}
.y15_c00242{bottom:542.565000px;}
.y14_c00242{bottom:578.565000px;}
.y13_c00242{bottom:614.565000px;}
.y12_c00242{bottom:650.565000px;}
.y11_c00242{bottom:686.565000px;}
.y10_c00242{bottom:722.565000px;}
.yf_c00242{bottom:758.565000px;}
.ye_c00242{bottom:794.565000px;}
.yd_c00242{bottom:830.565000px;}
.yc_c00242{bottom:866.565000px;}
.yb_c00242{bottom:902.565000px;}
.ya_c00242{bottom:938.565000px;}
.y9_c00242{bottom:974.565000px;}
.y8_c00242{bottom:1010.565000px;}
.y7_c00242{bottom:1046.565000px;}
.y6_c00242{bottom:1082.565000px;}
.y2_c00242{bottom:1165.365000px;}
.h4_c00242{height:20.880000px;}
.h3_c00242{height:70.664062px;}
.h5_c00242{height:74.004654px;}
.h2_c00242{height:1237.365000px;}
.h0_c00242{height:1262.835000px;}
.h1_c00242{height:1263.000000px;}
.w3_c00242{width:27.000000px;}
.w2_c00242{width:867.465000px;}
.w0_c00242{width:892.935000px;}
.w1_c00242{width:893.250000px;}
.x0_c00242{left:0.000000px;}
.x1_c00242{left:12.735000px;}
.x3_c00242{left:95.406300px;}
.x5_c00242{left:149.400150px;}
.x4_c00242{left:433.215000px;}
.x2_c00242{left:878.550300px;}
@media print{
.v0_c00242{vertical-align:0.000000pt;}
.ls2_c00242{letter-spacing:0.000000pt;}
.ls1_c00242{letter-spacing:0.064000pt;}
.ls0_c00242{letter-spacing:0.089600pt;}
.ws0_c00242{word-spacing:-0.064000pt;}
.ws1_c00242{word-spacing:0.000000pt;}
._1_c00242{width:1.254400pt;}
._9_c00242{width:2.201600pt;}
._6_c00242{width:3.315200pt;}
._a_c00242{width:4.396800pt;}
._2_c00242{width:5.625600pt;}
._0_c00242{width:6.521600pt;}
._5_c00242{width:8.172800pt;}
._7_c00242{width:9.542400pt;}
._4_c00242{width:10.444800pt;}
._8_c00242{width:11.507200pt;}
._3_c00242{width:25.075200pt;}
.fs1_c00242{font-size:57.600000pt;}
.fs0_c00242{font-size:64.000000pt;}
.y0_c00242{bottom:0.000000pt;}
.y5_c00242{bottom:4.480000pt;}
.y1_c00242{bottom:11.320000pt;}
.y3_c00242{bottom:40.040000pt;}
.y4_c00242{bottom:46.880000pt;}
.y21_c00242{bottom:98.280000pt;}
.y20_c00242{bottom:130.280000pt;}
.y1f_c00242{bottom:162.280000pt;}
.y1e_c00242{bottom:194.280000pt;}
.y1d_c00242{bottom:226.280000pt;}
.y1c_c00242{bottom:258.280000pt;}
.y1b_c00242{bottom:290.280000pt;}
.y1a_c00242{bottom:322.280000pt;}
.y19_c00242{bottom:354.280000pt;}
.y18_c00242{bottom:386.280000pt;}
.y17_c00242{bottom:418.280000pt;}
.y16_c00242{bottom:450.280000pt;}
.y15_c00242{bottom:482.280000pt;}
.y14_c00242{bottom:514.280000pt;}
.y13_c00242{bottom:546.280000pt;}
.y12_c00242{bottom:578.280000pt;}
.y11_c00242{bottom:610.280000pt;}
.y10_c00242{bottom:642.280000pt;}
.yf_c00242{bottom:674.280000pt;}
.ye_c00242{bottom:706.280000pt;}
.yd_c00242{bottom:738.280000pt;}
.yc_c00242{bottom:770.280000pt;}
.yb_c00242{bottom:802.280000pt;}
.ya_c00242{bottom:834.280000pt;}
.y9_c00242{bottom:866.280000pt;}
.y8_c00242{bottom:898.280000pt;}
.y7_c00242{bottom:930.280000pt;}
.y6_c00242{bottom:962.280000pt;}
.y2_c00242{bottom:1035.880000pt;}
.h4_c00242{height:18.560000pt;}
.h3_c00242{height:62.812500pt;}
.h5_c00242{height:65.781915pt;}
.h2_c00242{height:1099.880000pt;}
.h0_c00242{height:1122.520000pt;}
.h1_c00242{height:1122.666667pt;}
.w3_c00242{width:24.000000pt;}
.w2_c00242{width:771.080000pt;}
.w0_c00242{width:793.720000pt;}
.w1_c00242{width:794.000000pt;}
.x0_c00242{left:0.000000pt;}
.x1_c00242{left:11.320000pt;}
.x3_c00242{left:84.805600pt;}
.x5_c00242{left:132.800133pt;}
.x4_c00242{left:385.080000pt;}
.x2_c00242{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00243{font-family:ff1_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00243;src:url('chunks/assets/font_08908ce3507a7535903847b2.woff2')format("woff");}.ff2_c00243{font-family:ff2_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:ff3_c00243;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00243{font-family:ff3_c00243;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00243;src:url('chunks/assets/font_86f354edbbe91a2bb9b11c6a.woff2')format("woff");}.ff4_c00243{font-family:ff4_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00243;src:url('chunks/assets/font_cff0f4b7745c1c48f098b4ea.woff2')format("woff");}.ff5_c00243{font-family:ff5_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00243;src:url('chunks/assets/font_34cd9737b1ea1fe68bc60f29.woff2')format("woff");}.ff6_c00243{font-family:ff6_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00243;src:url('chunks/assets/font_e10df82eff0ac979dcfee146.woff2')format("woff");}.ff7_c00243{font-family:ff7_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00243;src:url('chunks/assets/font_a1ab5e9682cb1faceffcae38.woff2')format("woff");}.ff8_c00243{font-family:ff8_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00243;src:url('chunks/assets/font_75e7c31d016543659cfa4c83.woff2')format("woff");}.ff9_c00243{font-family:ff9_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00243;src:url('chunks/assets/font_85a71545730eec60fa480eb8.woff2')format("woff");}.ffa_c00243{font-family:ffa_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00243;src:url('chunks/assets/font_1a08d2b26320f64ec9b2cabc.woff2')format("woff");}.ffb_c00243{font-family:ffb_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00243;src:url('chunks/assets/font_e8543c466e821ac205dd8783.woff2')format("woff");}.ffc_c00243{font-family:ffc_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00243;src:url('chunks/assets/font_868c7bde10a6e41501c5cdfd.woff2')format("woff");}.ffd_c00243{font-family:ffd_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00243;src:url('chunks/assets/font_8a53d8f6fe87f4a54bcd45c2.woff2')format("woff");}.ffe_c00243{font-family:ffe_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00243;src:url('chunks/assets/font_a79b43bf1afa6d01f9193ba3.woff2')format("woff");}.fff_c00243{font-family:fff_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00243;src:url('chunks/assets/font_751eb6f529dad4ae209ff9e9.woff2')format("woff");}.ff10_c00243{font-family:ff10_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00243;src:url('chunks/assets/font_042e5906f3a5f50d5a2092bf.woff2')format("woff");}.ff11_c00243{font-family:ff11_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00243;src:url('chunks/assets/font_da6ef2edaf7390da3af532f3.woff2')format("woff");}.ff12_c00243{font-family:ff12_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00243;src:url('chunks/assets/font_4f61ca54811deeda456cc0a2.woff2')format("woff");}.ff13_c00243{font-family:ff13_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00243;src:url('chunks/assets/font_e9cff95714f153589c35d5f4.woff2')format("woff");}.ff14_c00243{font-family:ff14_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00243;src:url('chunks/assets/font_364c025c103b863ecb04df61.woff2')format("woff");}.ff15_c00243{font-family:ff15_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00243;src:url('chunks/assets/font_27cb1dc5563d7339a4fa01de.woff2')format("woff");}.ff16_c00243{font-family:ff16_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00243;src:url('chunks/assets/font_b9af4aa1eeb3843d28c6a0e5.woff2')format("woff");}.ff17_c00243{font-family:ff17_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00243;src:url('chunks/assets/font_a0bfbdcba9b928b349437a73.woff2')format("woff");}.ff18_c00243{font-family:ff18_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00243;src:url('chunks/assets/font_a7359d8cff66eaa9b50d8114.woff2')format("woff");}.ff19_c00243{font-family:ff19_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00243;src:url('chunks/assets/font_30878aef125a4f0996e58dbf.woff2')format("woff");}.ff1a_c00243{font-family:ff1a_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00243;src:url('chunks/assets/font_a5f2767fdbd79921ee27c323.woff2')format("woff");}.ff1b_c00243{font-family:ff1b_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00243;src:url('chunks/assets/font_4b78a4edd5d1f71dcc0a990c.woff2')format("woff");}.ff1c_c00243{font-family:ff1c_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:ff1d_c00243;src:url('chunks/assets/font_6c659b345022a76cde366525.woff2')format("woff");}.ff1d_c00243{font-family:ff1d_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00243;src:url('chunks/assets/font_70924c05657927b2416cc8ad.woff2')format("woff");}.ff1e_c00243{font-family:ff1e_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00243;src:url('chunks/assets/font_eef517b1586a6598c72ce77d.woff2')format("woff");}.ff1f_c00243{font-family:ff1f_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00243;src:url('chunks/assets/font_7a83522444f25539c7bc2498.woff2')format("woff");}.ff20_c00243{font-family:ff20_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00243;src:url('chunks/assets/font_67d387e143ea9c1e8a38eb96.woff2')format("woff");}.ff21_c00243{font-family:ff21_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00243;src:url('chunks/assets/font_5ea4b45f83c51b7fa8ca2dc4.woff2')format("woff");}.ff22_c00243{font-family:ff22_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00243;src:url('chunks/assets/font_7abc8a2f55bbc26e3069aa39.woff2')format("woff");}.ff23_c00243{font-family:ff23_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00243;src:url('chunks/assets/font_19f81803e7bb5b1e7919fd21.woff2')format("woff");}.ff24_c00243{font-family:ff24_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00243;src:url('chunks/assets/font_61758da07f53daf4837a867e.woff2')format("woff");}.ff25_c00243{font-family:ff25_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00243;src:url('chunks/assets/font_cc35dd33a200d4f2769058cd.woff2')format("woff");}.ff26_c00243{font-family:ff26_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00243;src:url('chunks/assets/font_05bfbbca464045d1ede49f4f.woff2')format("woff");}.ff27_c00243{font-family:ff27_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00243;src:url('chunks/assets/font_f3b44912b5904e8dfa5216f8.woff2')format("woff");}.ff28_c00243{font-family:ff28_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00243;src:url('chunks/assets/font_221768a0fb31024667ed05ea.woff2')format("woff");}.ff29_c00243{font-family:ff29_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00243;src:url('chunks/assets/font_fe747b05ba56d53722968128.woff2')format("woff");}.ff2a_c00243{font-family:ff2a_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00243;src:url('chunks/assets/font_8a778c99c0b5e68b5e6fde91.woff2')format("woff");}.ff2b_c00243{font-family:ff2b_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00243;src:url('chunks/assets/font_b3a1cd109e4f8d9584eb8421.woff2')format("woff");}.ff2c_c00243{font-family:ff2c_c00243;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00243{letter-spacing:0.000000px;}
.ls1_c00243{letter-spacing:0.072000px;}
.ls0_c00243{letter-spacing:0.144000px;}
.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:-18.000000px;}
.ws0_c00243{word-spacing:-0.072000px;}
.ws2_c00243{word-spacing:0.000000px;}
._3_c00243{width:1.137600px;}
._1_c00243{width:2.203200px;}
._2_c00243{width:3.362400px;}
._7_c00243{width:4.600800px;}
._4_c00243{width:6.357600px;}
._5_c00243{width:8.179200px;}
._b_c00243{width:12.542400px;}
._9_c00243{width:14.443200px;}
._0_c00243{width:15.595200px;}
._8_c00243{width:21.052800px;}
._c_c00243{width:23.032800px;}
._6_c00243{width:25.610400px;}
._a_c00243{width:27.684000px;}
.fc1_c00243{color:transparent;}
.fc0_c00243{color:rgb(0,0,0);}
.fs1_c00243{font-size:64.800000px;}
.fs0_c00243{font-size:72.000000px;}
.y0_c00243{bottom:0.000000px;}
.y5_c00243{bottom:5.040000px;}
.y1_c00243{bottom:12.735000px;}
.y3_c00243{bottom:45.045000px;}
.y4_c00243{bottom:52.740000px;}
.y20_c00243{bottom:146.565000px;}
.y1f_c00243{bottom:182.565000px;}
.y1e_c00243{bottom:218.565000px;}
.y1d_c00243{bottom:254.565000px;}
.y1c_c00243{bottom:290.565000px;}
.y1b_c00243{bottom:326.565000px;}
.y1a_c00243{bottom:362.565000px;}
.y19_c00243{bottom:398.565000px;}
.y18_c00243{bottom:434.565000px;}
.y17_c00243{bottom:470.565000px;}
.y16_c00243{bottom:506.565000px;}
.y15_c00243{bottom:542.565000px;}
.y14_c00243{bottom:578.565000px;}
.y13_c00243{bottom:614.565000px;}
.y12_c00243{bottom:650.565000px;}
.y11_c00243{bottom:686.565000px;}
.y10_c00243{bottom:722.565000px;}
.yf_c00243{bottom:758.565000px;}
.ye_c00243{bottom:794.565000px;}
.yd_c00243{bottom:830.565000px;}
.yc_c00243{bottom:866.565000px;}
.yb_c00243{bottom:902.565000px;}
.ya_c00243{bottom:938.565000px;}
.y9_c00243{bottom:974.565000px;}
.y8_c00243{bottom:1010.565000px;}
.y7_c00243{bottom:1046.565000px;}
.y6_c00243{bottom:1082.565000px;}
.y2_c00243{bottom:1165.365000px;}
.h4_c00243{height:20.880000px;}
.h3_c00243{height:70.664062px;}
.h5_c00243{height:74.004654px;}
.h2_c00243{height:1237.365000px;}
.h0_c00243{height:1262.835000px;}
.h1_c00243{height:1263.000000px;}
.w3_c00243{width:27.000000px;}
.w2_c00243{width:867.465000px;}
.w0_c00243{width:892.935000px;}
.w1_c00243{width:893.250000px;}
.x0_c00243{left:0.000000px;}
.x1_c00243{left:12.735000px;}
.x3_c00243{left:95.406300px;}
.x5_c00243{left:149.400150px;}
.x4_c00243{left:433.215000px;}
.x2_c00243{left:878.550300px;}
@media print{
.v0_c00243{vertical-align:0.000000pt;}
.ls2_c00243{letter-spacing:0.000000pt;}
.ls1_c00243{letter-spacing:0.064000pt;}
.ls0_c00243{letter-spacing:0.128000pt;}
.ws1_c00243{word-spacing:-16.000000pt;}
.ws0_c00243{word-spacing:-0.064000pt;}
.ws2_c00243{word-spacing:0.000000pt;}
._3_c00243{width:1.011200pt;}
._1_c00243{width:1.958400pt;}
._2_c00243{width:2.988800pt;}
._7_c00243{width:4.089600pt;}
._4_c00243{width:5.651200pt;}
._5_c00243{width:7.270400pt;}
._b_c00243{width:11.148800pt;}
._9_c00243{width:12.838400pt;}
._0_c00243{width:13.862400pt;}
._8_c00243{width:18.713600pt;}
._c_c00243{width:20.473600pt;}
._6_c00243{width:22.764800pt;}
._a_c00243{width:24.608000pt;}
.fs1_c00243{font-size:57.600000pt;}
.fs0_c00243{font-size:64.000000pt;}
.y0_c00243{bottom:0.000000pt;}
.y5_c00243{bottom:4.480000pt;}
.y1_c00243{bottom:11.320000pt;}
.y3_c00243{bottom:40.040000pt;}
.y4_c00243{bottom:46.880000pt;}
.y20_c00243{bottom:130.280000pt;}
.y1f_c00243{bottom:162.280000pt;}
.y1e_c00243{bottom:194.280000pt;}
.y1d_c00243{bottom:226.280000pt;}
.y1c_c00243{bottom:258.280000pt;}
.y1b_c00243{bottom:290.280000pt;}
.y1a_c00243{bottom:322.280000pt;}
.y19_c00243{bottom:354.280000pt;}
.y18_c00243{bottom:386.280000pt;}
.y17_c00243{bottom:418.280000pt;}
.y16_c00243{bottom:450.280000pt;}
.y15_c00243{bottom:482.280000pt;}
.y14_c00243{bottom:514.280000pt;}
.y13_c00243{bottom:546.280000pt;}
.y12_c00243{bottom:578.280000pt;}
.y11_c00243{bottom:610.280000pt;}
.y10_c00243{bottom:642.280000pt;}
.yf_c00243{bottom:674.280000pt;}
.ye_c00243{bottom:706.280000pt;}
.yd_c00243{bottom:738.280000pt;}
.yc_c00243{bottom:770.280000pt;}
.yb_c00243{bottom:802.280000pt;}
.ya_c00243{bottom:834.280000pt;}
.y9_c00243{bottom:866.280000pt;}
.y8_c00243{bottom:898.280000pt;}
.y7_c00243{bottom:930.280000pt;}
.y6_c00243{bottom:962.280000pt;}
.y2_c00243{bottom:1035.880000pt;}
.h4_c00243{height:18.560000pt;}
.h3_c00243{height:62.812500pt;}
.h5_c00243{height:65.781915pt;}
.h2_c00243{height:1099.880000pt;}
.h0_c00243{height:1122.520000pt;}
.h1_c00243{height:1122.666667pt;}
.w3_c00243{width:24.000000pt;}
.w2_c00243{width:771.080000pt;}
.w0_c00243{width:793.720000pt;}
.w1_c00243{width:794.000000pt;}
.x0_c00243{left:0.000000pt;}
.x1_c00243{left:11.320000pt;}
.x3_c00243{left:84.805600pt;}
.x5_c00243{left:132.800133pt;}
.x4_c00243{left:385.080000pt;}
.x2_c00243{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00244{font-family:ff1_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:ff2_c00244;src:url('chunks/assets/font_83e4d4abd782a4410316c21f.woff2')format("woff");}.ff2_c00244{font-family:ff2_c00244;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00244;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00244{font-family:ff3_c00244;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00244;src:url('chunks/assets/font_8bc40dec20d518ba495bcb1c.woff2')format("woff");}.ff4_c00244{font-family:ff4_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:ff5_c00244;src:url('chunks/assets/font_b9d00a141218cbba90703748.woff2')format("woff");}.ff5_c00244{font-family:ff5_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:ff6_c00244;src:url('chunks/assets/font_bd6d9b6846c2198169e6f86b.woff2')format("woff");}.ff6_c00244{font-family:ff6_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:ff7_c00244;src:url('chunks/assets/font_c5611424bc7c7ed05549cbd1.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_09138cf0146ca7701714ae8a.woff2')format("woff");}.ff8_c00244{font-family:ff8_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:ff9_c00244;src:url('chunks/assets/font_899756d1c62c0430f4d73ea6.woff2')format("woff");}.ff9_c00244{font-family:ff9_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:ffa_c00244;src:url('chunks/assets/font_f5b513e265f720332cd50e57.woff2')format("woff");}.ffa_c00244{font-family:ffa_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:ffb_c00244;src:url('chunks/assets/font_473076f52dfe0cabdfdce6bb.woff2')format("woff");}.ffb_c00244{font-family:ffb_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:ffc_c00244;src:url('chunks/assets/font_e881e4cc087473fcbbba1526.woff2')format("woff");}.ffc_c00244{font-family:ffc_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:ffd_c00244;src:url('chunks/assets/font_7dfbd5ec5ca0236deb68743d.woff2')format("woff");}.ffd_c00244{font-family:ffd_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:ffe_c00244;src:url('chunks/assets/font_b9824b1737b8ae55237a17d1.woff2')format("woff");}.ffe_c00244{font-family:ffe_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:fff_c00244;src:url('chunks/assets/font_dd85b5fc19b9136c1442882c.woff2')format("woff");}.fff_c00244{font-family:fff_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:ff10_c00244;src:url('chunks/assets/font_6b252971bede6146823d4fd2.woff2')format("woff");}.ff10_c00244{font-family:ff10_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:ff11_c00244;src:url('chunks/assets/font_8c90462eb1994ddb900dfca5.woff2')format("woff");}.ff11_c00244{font-family:ff11_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:ff12_c00244;src:url('chunks/assets/font_1f774f3dbb6fc678521c29fd.woff2')format("woff");}.ff12_c00244{font-family:ff12_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:ff13_c00244;src:url('chunks/assets/font_b6d8378ea33fe9ae3836fde0.woff2')format("woff");}.ff13_c00244{font-family:ff13_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:ff14_c00244;src:url('chunks/assets/font_fe935171f1b88beba6f6a1b7.woff2')format("woff");}.ff14_c00244{font-family:ff14_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:ff15_c00244;src:url('chunks/assets/font_0b584f5fde91022fb0b4ef21.woff2')format("woff");}.ff15_c00244{font-family:ff15_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:ff16_c00244;src:url('chunks/assets/font_6a0139ab68958851e53ce52b.woff2')format("woff");}.ff16_c00244{font-family:ff16_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:ff17_c00244;src:url('chunks/assets/font_047f9c1e268c1ffd78b92436.woff2')format("woff");}.ff17_c00244{font-family:ff17_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:ff18_c00244;src:url('chunks/assets/font_3e36e2d5e788e81a543a925f.woff2')format("woff");}.ff18_c00244{font-family:ff18_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:ff19_c00244;src:url('chunks/assets/font_6d006052d82847ba9c55b3be.woff2')format("woff");}.ff19_c00244{font-family:ff19_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:ff1a_c00244;src:url('chunks/assets/font_92ed74b8dbcb12de9635475c.woff2')format("woff");}.ff1a_c00244{font-family:ff1a_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:ff1b_c00244;src:url('chunks/assets/font_e1aa4d5c99052ab8ac6029c8.woff2')format("woff");}.ff1b_c00244{font-family:ff1b_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:ff1c_c00244;src:url('chunks/assets/font_f9c6e2f09aef7cbc68fec2ad.woff2')format("woff");}.ff1c_c00244{font-family:ff1c_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:ff1d_c00244;src:url('chunks/assets/font_1586667575ad65d14a1dad44.woff2')format("woff");}.ff1d_c00244{font-family:ff1d_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:ff1e_c00244;src:url('chunks/assets/font_0d0a05fce3c2cb2a0cf30a6a.woff2')format("woff");}.ff1e_c00244{font-family:ff1e_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:ff1f_c00244;src:url('chunks/assets/font_e4d73a7b91d4471a4228d490.woff2')format("woff");}.ff1f_c00244{font-family:ff1f_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:ff20_c00244;src:url('chunks/assets/font_4584530955e1be1fc7f47973.woff2')format("woff");}.ff20_c00244{font-family:ff20_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:ff21_c00244;src:url('chunks/assets/font_58154ce19335a2a67ad52c80.woff2')format("woff");}.ff21_c00244{font-family:ff21_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:ff22_c00244;src:url('chunks/assets/font_d386f94d453a3065f6bb2077.woff2')format("woff");}.ff22_c00244{font-family:ff22_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:ff23_c00244;src:url('chunks/assets/font_ee0c2f609d3293815548ecf4.woff2')format("woff");}.ff23_c00244{font-family:ff23_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:ff24_c00244;src:url('chunks/assets/font_9017af6de9573485e8f97f5c.woff2')format("woff");}.ff24_c00244{font-family:ff24_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:ff25_c00244;src:url('chunks/assets/font_ed99b0bf0b1014cae916d0c6.woff2')format("woff");}.ff25_c00244{font-family:ff25_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:ff26_c00244;src:url('chunks/assets/font_5b58e7784e1ab55f53f40ced.woff2')format("woff");}.ff26_c00244{font-family:ff26_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;}
.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;}
.ls1_c00244{letter-spacing:0.000000px;}
.ls0_c00244{letter-spacing:0.014400px;}
.sc__c00244{text-shadow:none;}
.sc0_c00244{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00244{-webkit-text-stroke:0px transparent;}
.sc0_c00244{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00244{word-spacing:-0.086400px;}
.ws0_c00244{word-spacing:-0.072000px;}
.ws2_c00244{word-spacing:0.000000px;}
._1_c00244{width:1.396800px;}
._2_c00244{width:2.455200px;}
._6_c00244{width:3.477600px;}
._0_c00244{width:4.478400px;}
._4_c00244{width:5.932800px;}
._8_c00244{width:7.027200px;}
._9_c00244{width:8.150400px;}
._3_c00244{width:10.159200px;}
._5_c00244{width:13.377600px;}
._7_c00244{width:22.039200px;}
.fc1_c00244{color:transparent;}
.fc0_c00244{color:rgb(0,0,0);}
.fs1_c00244{font-size:64.800000px;}
.fs0_c00244{font-size:72.000000px;}
.y0_c00244{bottom:0.000000px;}
.y5_c00244{bottom:5.040000px;}
.y1_c00244{bottom:12.735000px;}
.y3_c00244{bottom:45.045000px;}
.y4_c00244{bottom:52.740000px;}
.y21_c00244{bottom:110.565000px;}
.y20_c00244{bottom:146.565000px;}
.y1f_c00244{bottom:182.565000px;}
.y1e_c00244{bottom:218.565000px;}
.y1d_c00244{bottom:254.565000px;}
.y1c_c00244{bottom:290.565000px;}
.y1b_c00244{bottom:326.565000px;}
.y1a_c00244{bottom:362.565000px;}
.y19_c00244{bottom:398.565000px;}
.y18_c00244{bottom:434.565000px;}
.y17_c00244{bottom:470.565000px;}
.y16_c00244{bottom:506.565000px;}
.y15_c00244{bottom:542.565000px;}
.y14_c00244{bottom:578.565000px;}
.y13_c00244{bottom:614.565000px;}
.y12_c00244{bottom:650.565000px;}
.y11_c00244{bottom:686.565000px;}
.y10_c00244{bottom:722.565000px;}
.yf_c00244{bottom:758.565000px;}
.ye_c00244{bottom:794.565000px;}
.yd_c00244{bottom:830.565000px;}
.yc_c00244{bottom:866.565000px;}
.yb_c00244{bottom:902.565000px;}
.ya_c00244{bottom:938.565000px;}
.y9_c00244{bottom:974.565000px;}
.y8_c00244{bottom:1010.565000px;}
.y7_c00244{bottom:1046.565000px;}
.y6_c00244{bottom:1082.565000px;}
.y2_c00244{bottom:1165.365000px;}
.h4_c00244{height:20.880000px;}
.h3_c00244{height:70.664062px;}
.h5_c00244{height:74.004654px;}
.h2_c00244{height:1237.365000px;}
.h0_c00244{height:1262.835000px;}
.h1_c00244{height:1263.000000px;}
.w3_c00244{width:27.000000px;}
.w2_c00244{width:867.465000px;}
.w0_c00244{width:892.935000px;}
.w1_c00244{width:893.250000px;}
.x0_c00244{left:0.000000px;}
.x1_c00244{left:12.735000px;}
.x3_c00244{left:95.406300px;}
.x5_c00244{left:149.400150px;}
.x4_c00244{left:433.215000px;}
.x2_c00244{left:878.550300px;}
@media print{
.v0_c00244{vertical-align:0.000000pt;}
.ls1_c00244{letter-spacing:0.000000pt;}
.ls0_c00244{letter-spacing:0.012800pt;}
.ws1_c00244{word-spacing:-0.076800pt;}
.ws0_c00244{word-spacing:-0.064000pt;}
.ws2_c00244{word-spacing:0.000000pt;}
._1_c00244{width:1.241600pt;}
._2_c00244{width:2.182400pt;}
._6_c00244{width:3.091200pt;}
._0_c00244{width:3.980800pt;}
._4_c00244{width:5.273600pt;}
._8_c00244{width:6.246400pt;}
._9_c00244{width:7.244800pt;}
._3_c00244{width:9.030400pt;}
._5_c00244{width:11.891200pt;}
._7_c00244{width:19.590400pt;}
.fs1_c00244{font-size:57.600000pt;}
.fs0_c00244{font-size:64.000000pt;}
.y0_c00244{bottom:0.000000pt;}
.y5_c00244{bottom:4.480000pt;}
.y1_c00244{bottom:11.320000pt;}
.y3_c00244{bottom:40.040000pt;}
.y4_c00244{bottom:46.880000pt;}
.y21_c00244{bottom:98.280000pt;}
.y20_c00244{bottom:130.280000pt;}
.y1f_c00244{bottom:162.280000pt;}
.y1e_c00244{bottom:194.280000pt;}
.y1d_c00244{bottom:226.280000pt;}
.y1c_c00244{bottom:258.280000pt;}
.y1b_c00244{bottom:290.280000pt;}
.y1a_c00244{bottom:322.280000pt;}
.y19_c00244{bottom:354.280000pt;}
.y18_c00244{bottom:386.280000pt;}
.y17_c00244{bottom:418.280000pt;}
.y16_c00244{bottom:450.280000pt;}
.y15_c00244{bottom:482.280000pt;}
.y14_c00244{bottom:514.280000pt;}
.y13_c00244{bottom:546.280000pt;}
.y12_c00244{bottom:578.280000pt;}
.y11_c00244{bottom:610.280000pt;}
.y10_c00244{bottom:642.280000pt;}
.yf_c00244{bottom:674.280000pt;}
.ye_c00244{bottom:706.280000pt;}
.yd_c00244{bottom:738.280000pt;}
.yc_c00244{bottom:770.280000pt;}
.yb_c00244{bottom:802.280000pt;}
.ya_c00244{bottom:834.280000pt;}
.y9_c00244{bottom:866.280000pt;}
.y8_c00244{bottom:898.280000pt;}
.y7_c00244{bottom:930.280000pt;}
.y6_c00244{bottom:962.280000pt;}
.y2_c00244{bottom:1035.880000pt;}
.h4_c00244{height:18.560000pt;}
.h3_c00244{height:62.812500pt;}
.h5_c00244{height:65.781915pt;}
.h2_c00244{height:1099.880000pt;}
.h0_c00244{height:1122.520000pt;}
.h1_c00244{height:1122.666667pt;}
.w3_c00244{width:24.000000pt;}
.w2_c00244{width:771.080000pt;}
.w0_c00244{width:793.720000pt;}
.w1_c00244{width:794.000000pt;}
.x0_c00244{left:0.000000pt;}
.x1_c00244{left:11.320000pt;}
.x3_c00244{left:84.805600pt;}
.x5_c00244{left:132.800133pt;}
.x4_c00244{left:385.080000pt;}
.x2_c00244{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00245{font-family:ff1_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00245;src:url('chunks/assets/font_de1cfe90f9e9d4b692aa8635.woff2')format("woff");}.ff2_c00245{font-family:ff2_c00245;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00245;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00245{font-family:ff3_c00245;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00245;src:url('chunks/assets/font_eed26fda242e610ab254f529.woff2')format("woff");}.ff4_c00245{font-family:ff4_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00245;src:url('chunks/assets/font_d4c4ee9e5b9d87163f041c42.woff2')format("woff");}.ff5_c00245{font-family:ff5_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00245;src:url('chunks/assets/font_436c933b6d5e24ee58d0c0c6.woff2')format("woff");}.ff6_c00245{font-family:ff6_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00245;src:url('chunks/assets/font_7f060d6c867752aaec01cde9.woff2')format("woff");}.ff7_c00245{font-family:ff7_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00245;src:url('chunks/assets/font_75c330cb4f13f811bbe14564.woff2')format("woff");}.ff8_c00245{font-family:ff8_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00245;src:url('chunks/assets/font_92417c4f44ea04dc1cba97bc.woff2')format("woff");}.ff9_c00245{font-family:ff9_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00245;src:url('chunks/assets/font_e1bf6eeef9264fb9ac073820.woff2')format("woff");}.ffa_c00245{font-family:ffa_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00245;src:url('chunks/assets/font_af33e040dbb8d3627b0cff93.woff2')format("woff");}.ffb_c00245{font-family:ffb_c00245;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00245;src:url('chunks/assets/font_d3067f5bc6d0a880189ba609.woff2')format("woff");}.ffc_c00245{font-family:ffc_c00245;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00245;src:url('chunks/assets/font_f8ab3c2413021eec959e1d04.woff2')format("woff");}.ffd_c00245{font-family:ffd_c00245;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00245;src:url('chunks/assets/font_5fabc475e426f5e9b850fcef.woff2')format("woff");}.ffe_c00245{font-family:ffe_c00245;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00245;src:url('chunks/assets/font_a3f97eae670e0aa78e98c4a2.woff2')format("woff");}.fff_c00245{font-family:fff_c00245;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00245;src:url('chunks/assets/font_4a50b4fa8788c90ea70cfe48.woff2')format("woff");}.ff10_c00245{font-family:ff10_c00245;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00245;src:url('chunks/assets/font_cee239f715ae838b18b5aed6.woff2')format("woff");}.ff11_c00245{font-family:ff11_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00245;src:url('chunks/assets/font_e4e8d2240310b752dad6ef7e.woff2')format("woff");}.ff12_c00245{font-family:ff12_c00245;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00245;src:url('chunks/assets/font_5416bb269311f71760a70c1d.woff2')format("woff");}.ff13_c00245{font-family:ff13_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00245;src:url('chunks/assets/font_79942eab93544cf5259741dc.woff2')format("woff");}.ff14_c00245{font-family:ff14_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00245;src:url('chunks/assets/font_814dab0b4e0d82640c7dd4e3.woff2')format("woff");}.ff15_c00245{font-family:ff15_c00245;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:ff16_c00245;src:url('chunks/assets/font_62b01ba0ba682d1f341a9f3b.woff2')format("woff");}.ff16_c00245{font-family:ff16_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00245;src:url('chunks/assets/font_15a5719fb073a038565eb765.woff2')format("woff");}.ff17_c00245{font-family:ff17_c00245;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:ff18_c00245;src:url('chunks/assets/font_814dab0b4e0d82640c7dd4e3.woff2')format("woff");}.ff18_c00245{font-family:ff18_c00245;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:ff19_c00245;src:url('chunks/assets/font_f59b233e1f571d217034fe23.woff2')format("woff");}.ff19_c00245{font-family:ff19_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00245;src:url('chunks/assets/font_a177d5fd1bebcd06c15585b9.woff2')format("woff");}.ff1a_c00245{font-family:ff1a_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00245;src:url('chunks/assets/font_9b047ccfb8ea4ec8dc889f89.woff2')format("woff");}.ff1b_c00245{font-family:ff1b_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00245;src:url('chunks/assets/font_827eee45003d09b17d331ad7.woff2')format("woff");}.ff1c_c00245{font-family:ff1c_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00245;src:url('chunks/assets/font_7018f12c5a957e3ac70a394d.woff2')format("woff");}.ff1d_c00245{font-family:ff1d_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00245;src:url('chunks/assets/font_2923e75a54053b73596d4a79.woff2')format("woff");}.ff1e_c00245{font-family:ff1e_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00245;src:url('chunks/assets/font_9f945f1dbf3f53e18a6d3d1f.woff2')format("woff");}.ff1f_c00245{font-family:ff1f_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00245;src:url('chunks/assets/font_0004fbccd68e8ea3f4df978f.woff2')format("woff");}.ff20_c00245{font-family:ff20_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00245;src:url('chunks/assets/font_3bd57b592b7ab73f187919f3.woff2')format("woff");}.ff21_c00245{font-family:ff21_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00245;src:url('chunks/assets/font_fcdf9214d7b690f631956863.woff2')format("woff");}.ff22_c00245{font-family:ff22_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00245;src:url('chunks/assets/font_dc9e325735d98a5e11b126b6.woff2')format("woff");}.ff23_c00245{font-family:ff23_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00245;src:url('chunks/assets/font_a10a7c703d30dc4e4de03453.woff2')format("woff");}.ff24_c00245{font-family:ff24_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00245;src:url('chunks/assets/font_6dca63f898baf3f4530a3803.woff2')format("woff");}.ff25_c00245{font-family:ff25_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00245;src:url('chunks/assets/font_0e8b643f476945c63cc8558d.woff2')format("woff");}.ff26_c00245{font-family:ff26_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00245;src:url('chunks/assets/font_ad6921716390b50723948643.woff2')format("woff");}.ff27_c00245{font-family:ff27_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00245;src:url('chunks/assets/font_5e407ec177ead15916bda16b.woff2')format("woff");}.ff28_c00245{font-family:ff28_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00245;src:url('chunks/assets/font_958a38126a47aad3252e1a0a.woff2')format("woff");}.ff29_c00245{font-family:ff29_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00245;src:url('chunks/assets/font_34d0d6d3fa97ed8524a9ed92.woff2')format("woff");}.ff2a_c00245{font-family:ff2a_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00245;src:url('chunks/assets/font_9e04d11f691744af310ecf97.woff2')format("woff");}.ff2b_c00245{font-family:ff2b_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00245;src:url('chunks/assets/font_e685a7ebfb209641cfcf6057.woff2')format("woff");}.ff2c_c00245{font-family:ff2c_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00245;src:url('chunks/assets/font_62b01ba0ba682d1f341a9f3b.woff2')format("woff");}.ff2d_c00245{font-family:ff2d_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00245;src:url('chunks/assets/font_e56c7e70551086180cb25318.woff2')format("woff");}.ff2e_c00245{font-family:ff2e_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00245;src:url('chunks/assets/font_01f6d9de914ce74c0688b401.woff2')format("woff");}.ff2f_c00245{font-family:ff2f_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00245;src:url('chunks/assets/font_793f871187efc95a569d1c90.woff2')format("woff");}.ff30_c00245{font-family:ff30_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00245;src:url('chunks/assets/font_bc149b3cf1c814ee504c407a.woff2')format("woff");}.ff31_c00245{font-family:ff31_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00245;src:url('chunks/assets/font_857e963777afef92c9e2c23a.woff2')format("woff");}.ff32_c00245{font-family:ff32_c00245;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:ff33_c00245;src:url('chunks/assets/font_fc46b355aeb343473cf6c727.woff2')format("woff");}.ff33_c00245{font-family:ff33_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00245;src:url('chunks/assets/font_bb5ba118993d8dc63904f38b.woff2')format("woff");}.ff34_c00245{font-family:ff34_c00245;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:ff35_c00245;src:url('chunks/assets/font_223263389e883b3461253ac6.woff2')format("woff");}.ff35_c00245{font-family:ff35_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00245;src:url('chunks/assets/font_bb5ba118993d8dc63904f38b.woff2')format("woff");}.ff36_c00245{font-family:ff36_c00245;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:ff37_c00245;src:url('chunks/assets/font_b18823d8889828698c76e33d.woff2')format("woff");}.ff37_c00245{font-family:ff37_c00245;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:ff38_c00245;src:url('chunks/assets/font_627fc929c2959516124a92e3.woff2')format("woff");}.ff38_c00245{font-family:ff38_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00245;src:url('chunks/assets/font_8ea0852d9767915e64d470aa.woff2')format("woff");}.ff39_c00245{font-family:ff39_c00245;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:ff3a_c00245;src:url('chunks/assets/font_e44ffdcd608bb3998f0b1f6b.woff2')format("woff");}.ff3a_c00245{font-family:ff3a_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00245;src:url('chunks/assets/font_a29dbedaac4975f672e7fef8.woff2')format("woff");}.ff3b_c00245{font-family:ff3b_c00245;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00245;src:url('chunks/assets/font_4119a6115cb9af7acebf282b.woff2')format("woff");}.ff3c_c00245{font-family:ff3c_c00245;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls3_c00245{letter-spacing:0.000000px;}
.ls1_c00245{letter-spacing:0.014400px;}
.ls2_c00245{letter-spacing:0.072000px;}
.ls0_c00245{letter-spacing:22.492800px;}
.sc__c00245{text-shadow:none;}
.sc0_c00245{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00245{-webkit-text-stroke:0px transparent;}
.sc0_c00245{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00245{word-spacing:-0.086400px;}
.ws0_c00245{word-spacing:-0.072000px;}
.ws2_c00245{word-spacing:0.000000px;}
._1_c00245{width:1.274400px;}
._8_c00245{width:2.808000px;}
._6_c00245{width:3.902400px;}
._7_c00245{width:6.235200px;}
._3_c00245{width:11.728800px;}
._5_c00245{width:12.924000px;}
._4_c00245{width:15.192000px;}
._0_c00245{width:16.927200px;}
._2_c00245{width:22.536000px;}
._9_c00245{width:33.501600px;}
.fc1_c00245{color:transparent;}
.fc0_c00245{color:rgb(0,0,0);}
.fs1_c00245{font-size:64.800000px;}
.fs0_c00245{font-size:72.000000px;}
.y0_c00245{bottom:0.000000px;}
.y5_c00245{bottom:5.040000px;}
.y1_c00245{bottom:12.735000px;}
.y3_c00245{bottom:45.045000px;}
.y4_c00245{bottom:52.740000px;}
.y21_c00245{bottom:110.565000px;}
.y20_c00245{bottom:146.565000px;}
.y1f_c00245{bottom:182.565000px;}
.y1e_c00245{bottom:218.565000px;}
.y1d_c00245{bottom:254.565000px;}
.y1c_c00245{bottom:290.565000px;}
.y1b_c00245{bottom:326.565000px;}
.y1a_c00245{bottom:362.565000px;}
.y19_c00245{bottom:398.565000px;}
.y18_c00245{bottom:434.565000px;}
.y17_c00245{bottom:470.565000px;}
.y16_c00245{bottom:506.565000px;}
.y15_c00245{bottom:542.565000px;}
.y14_c00245{bottom:578.565000px;}
.y13_c00245{bottom:614.565000px;}
.y12_c00245{bottom:650.565000px;}
.y11_c00245{bottom:686.565000px;}
.y10_c00245{bottom:722.565000px;}
.yf_c00245{bottom:758.565000px;}
.ye_c00245{bottom:794.565000px;}
.yd_c00245{bottom:830.565000px;}
.yc_c00245{bottom:866.565000px;}
.yb_c00245{bottom:902.565000px;}
.ya_c00245{bottom:938.565000px;}
.y9_c00245{bottom:974.565000px;}
.y8_c00245{bottom:1010.565000px;}
.y7_c00245{bottom:1046.565000px;}
.y6_c00245{bottom:1082.565000px;}
.y2_c00245{bottom:1165.365000px;}
.h4_c00245{height:20.880000px;}
.h3_c00245{height:70.664062px;}
.h6_c00245{height:71.824219px;}
.h5_c00245{height:74.004654px;}
.h2_c00245{height:1237.365000px;}
.h0_c00245{height:1262.835000px;}
.h1_c00245{height:1263.000000px;}
.w3_c00245{width:27.000000px;}
.w2_c00245{width:867.465000px;}
.w0_c00245{width:892.935000px;}
.w1_c00245{width:893.250000px;}
.x0_c00245{left:0.000000px;}
.x1_c00245{left:12.735000px;}
.x3_c00245{left:95.406300px;}
.x5_c00245{left:149.400150px;}
.x6_c00245{left:180.450150px;}
.x4_c00245{left:433.215000px;}
.x2_c00245{left:878.550300px;}
@media print{
.v0_c00245{vertical-align:0.000000pt;}
.ls3_c00245{letter-spacing:0.000000pt;}
.ls1_c00245{letter-spacing:0.012800pt;}
.ls2_c00245{letter-spacing:0.064000pt;}
.ls0_c00245{letter-spacing:19.993600pt;}
.ws1_c00245{word-spacing:-0.076800pt;}
.ws0_c00245{word-spacing:-0.064000pt;}
.ws2_c00245{word-spacing:0.000000pt;}
._1_c00245{width:1.132800pt;}
._8_c00245{width:2.496000pt;}
._6_c00245{width:3.468800pt;}
._7_c00245{width:5.542400pt;}
._3_c00245{width:10.425600pt;}
._5_c00245{width:11.488000pt;}
._4_c00245{width:13.504000pt;}
._0_c00245{width:15.046400pt;}
._2_c00245{width:20.032000pt;}
._9_c00245{width:29.779200pt;}
.fs1_c00245{font-size:57.600000pt;}
.fs0_c00245{font-size:64.000000pt;}
.y0_c00245{bottom:0.000000pt;}
.y5_c00245{bottom:4.480000pt;}
.y1_c00245{bottom:11.320000pt;}
.y3_c00245{bottom:40.040000pt;}
.y4_c00245{bottom:46.880000pt;}
.y21_c00245{bottom:98.280000pt;}
.y20_c00245{bottom:130.280000pt;}
.y1f_c00245{bottom:162.280000pt;}
.y1e_c00245{bottom:194.280000pt;}
.y1d_c00245{bottom:226.280000pt;}
.y1c_c00245{bottom:258.280000pt;}
.y1b_c00245{bottom:290.280000pt;}
.y1a_c00245{bottom:322.280000pt;}
.y19_c00245{bottom:354.280000pt;}
.y18_c00245{bottom:386.280000pt;}
.y17_c00245{bottom:418.280000pt;}
.y16_c00245{bottom:450.280000pt;}
.y15_c00245{bottom:482.280000pt;}
.y14_c00245{bottom:514.280000pt;}
.y13_c00245{bottom:546.280000pt;}
.y12_c00245{bottom:578.280000pt;}
.y11_c00245{bottom:610.280000pt;}
.y10_c00245{bottom:642.280000pt;}
.yf_c00245{bottom:674.280000pt;}
.ye_c00245{bottom:706.280000pt;}
.yd_c00245{bottom:738.280000pt;}
.yc_c00245{bottom:770.280000pt;}
.yb_c00245{bottom:802.280000pt;}
.ya_c00245{bottom:834.280000pt;}
.y9_c00245{bottom:866.280000pt;}
.y8_c00245{bottom:898.280000pt;}
.y7_c00245{bottom:930.280000pt;}
.y6_c00245{bottom:962.280000pt;}
.y2_c00245{bottom:1035.880000pt;}
.h4_c00245{height:18.560000pt;}
.h3_c00245{height:62.812500pt;}
.h6_c00245{height:63.843750pt;}
.h5_c00245{height:65.781915pt;}
.h2_c00245{height:1099.880000pt;}
.h0_c00245{height:1122.520000pt;}
.h1_c00245{height:1122.666667pt;}
.w3_c00245{width:24.000000pt;}
.w2_c00245{width:771.080000pt;}
.w0_c00245{width:793.720000pt;}
.w1_c00245{width:794.000000pt;}
.x0_c00245{left:0.000000pt;}
.x1_c00245{left:11.320000pt;}
.x3_c00245{left:84.805600pt;}
.x5_c00245{left:132.800133pt;}
.x6_c00245{left:160.400133pt;}
.x4_c00245{left:385.080000pt;}
.x2_c00245{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00246{font-family:ff1_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00246;src:url('chunks/assets/font_602fb52cbae397bc6bd02bc5.woff2')format("woff");}.ff2_c00246{font-family:ff2_c00246;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00246;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00246{font-family:ff3_c00246;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00246;src:url('chunks/assets/font_3082a05950b00e358bbc06ba.woff2')format("woff");}.ff4_c00246{font-family:ff4_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00246;src:url('chunks/assets/font_e1ea6b39e85b38c55882abbf.woff2')format("woff");}.ff5_c00246{font-family:ff5_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00246;src:url('chunks/assets/font_df5a2c68284c60e829c9a203.woff2')format("woff");}.ff6_c00246{font-family:ff6_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00246;src:url('chunks/assets/font_1ec74256c9fa5b704be2fb8f.woff2')format("woff");}.ff7_c00246{font-family:ff7_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00246;src:url('chunks/assets/font_bc149b3cf1c814ee504c407a.woff2')format("woff");}.ff8_c00246{font-family:ff8_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00246;src:url('chunks/assets/font_9c6877937cd3021a173447ef.woff2')format("woff");}.ff9_c00246{font-family:ff9_c00246;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_c00246;src:url('chunks/assets/font_e93d3b88a2e0f8590a9d4f2e.woff2')format("woff");}.ffa_c00246{font-family:ffa_c00246;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00246;src:url('chunks/assets/font_6170cc6566e688fc19e424ca.woff2')format("woff");}.ffb_c00246{font-family:ffb_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00246;src:url('chunks/assets/font_9c6877937cd3021a173447ef.woff2')format("woff");}.ffc_c00246{font-family:ffc_c00246;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:ffd_c00246;src:url('chunks/assets/font_223263389e883b3461253ac6.woff2')format("woff");}.ffd_c00246{font-family:ffd_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00246;src:url('chunks/assets/font_9c6877937cd3021a173447ef.woff2')format("woff");}.ffe_c00246{font-family:ffe_c00246;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:fff_c00246;src:url('chunks/assets/font_627fc929c2959516124a92e3.woff2')format("woff");}.fff_c00246{font-family:fff_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00246;src:url('chunks/assets/font_9c6877937cd3021a173447ef.woff2')format("woff");}.ff10_c00246{font-family:ff10_c00246;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:ff11_c00246;src:url('chunks/assets/font_c09a166b37790dbe07cb9bc1.woff2')format("woff");}.ff11_c00246{font-family:ff11_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00246;src:url('chunks/assets/font_6992e048bbad180f71fafeda.woff2')format("woff");}.ff12_c00246{font-family:ff12_c00246;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:ff13_c00246;src:url('chunks/assets/font_9119cd2e5542f332fb388291.woff2')format("woff");}.ff13_c00246{font-family:ff13_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00246;src:url('chunks/assets/font_6f149559c30352383a1826ad.woff2')format("woff");}.ff14_c00246{font-family:ff14_c00246;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:ff15_c00246;src:url('chunks/assets/font_38e9722a3d7280e426af36c1.woff2')format("woff");}.ff15_c00246{font-family:ff15_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00246;src:url('chunks/assets/font_df7b7aec5c68d3dcaa05c6b4.woff2')format("woff");}.ff16_c00246{font-family:ff16_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00246;src:url('chunks/assets/font_9516e63ff39f94ab921147b5.woff2')format("woff");}.ff17_c00246{font-family:ff17_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00246;src:url('chunks/assets/font_eb162d1ebd51afac47621c09.woff2')format("woff");}.ff18_c00246{font-family:ff18_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00246;src:url('chunks/assets/font_0c1bc3442172c6c0e19685e4.woff2')format("woff");}.ff19_c00246{font-family:ff19_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00246;src:url('chunks/assets/font_51258ee3944561fa064af1c9.woff2')format("woff");}.ff1a_c00246{font-family:ff1a_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00246;src:url('chunks/assets/font_b7e60ab9621b87d758ebbb95.woff2')format("woff");}.ff1b_c00246{font-family:ff1b_c00246;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:ff1c_c00246;src:url('chunks/assets/font_7133d8a2dcf587a5a5c7ddbf.woff2')format("woff");}.ff1c_c00246{font-family:ff1c_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00246;src:url('chunks/assets/font_0f309957aba37da4dd7b2293.woff2')format("woff");}.ff1d_c00246{font-family:ff1d_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00246;src:url('chunks/assets/font_426b7310fc2421011b16689f.woff2')format("woff");}.ff1e_c00246{font-family:ff1e_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00246;src:url('chunks/assets/font_9d898a5103f271c2646ed6a0.woff2')format("woff");}.ff1f_c00246{font-family:ff1f_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00246;src:url('chunks/assets/font_fbc84d4854bf9e2813d481c3.woff2')format("woff");}.ff20_c00246{font-family:ff20_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00246;src:url('chunks/assets/font_cde5cf2ae0f0f6aefca6a973.woff2')format("woff");}.ff21_c00246{font-family:ff21_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00246;src:url('chunks/assets/font_53ce8180c00fc86407adfda5.woff2')format("woff");}.ff22_c00246{font-family:ff22_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00246;src:url('chunks/assets/font_491b33f84b408b69d0aeceb7.woff2')format("woff");}.ff23_c00246{font-family:ff23_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00246;src:url('chunks/assets/font_d86f3f710085055d8e4553e5.woff2')format("woff");}.ff24_c00246{font-family:ff24_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00246;src:url('chunks/assets/font_c771d4d421e08fed2b0fff6f.woff2')format("woff");}.ff25_c00246{font-family:ff25_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00246;src:url('chunks/assets/font_978edce1d7abdf8298cc4f5e.woff2')format("woff");}.ff26_c00246{font-family:ff26_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00246;src:url('chunks/assets/font_16b53c7e8c117fbeb44be6ce.woff2')format("woff");}.ff27_c00246{font-family:ff27_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00246;src:url('chunks/assets/font_335c052a417c7c2fb698ad96.woff2')format("woff");}.ff28_c00246{font-family:ff28_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00246;src:url('chunks/assets/font_05a55456e1edf60d1844b7d7.woff2')format("woff");}.ff29_c00246{font-family:ff29_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00246;src:url('chunks/assets/font_48dfbdb8923173673445fe8f.woff2')format("woff");}.ff2a_c00246{font-family:ff2a_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00246;src:url('chunks/assets/font_525e970ad7c675cbb4dca755.woff2')format("woff");}.ff2b_c00246{font-family:ff2b_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00246;src:url('chunks/assets/font_427dba3d13c47eaa00b51503.woff2')format("woff");}.ff2c_c00246{font-family:ff2c_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00246;src:url('chunks/assets/font_cadd1cceccd37fdd8e2f54ef.woff2')format("woff");}.ff2d_c00246{font-family:ff2d_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00246;src:url('chunks/assets/font_dae846191576d9df99a7c511.woff2')format("woff");}.ff2e_c00246{font-family:ff2e_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00246;src:url('chunks/assets/font_0b979ebeac893b2309ac09aa.woff2')format("woff");}.ff2f_c00246{font-family:ff2f_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00246;src:url('chunks/assets/font_c1f6f8b71c8aa2519af5e7bc.woff2')format("woff");}.ff30_c00246{font-family:ff30_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00246;src:url('chunks/assets/font_872f7f64f1bf1b24d927744a.woff2')format("woff");}.ff31_c00246{font-family:ff31_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00246;src:url('chunks/assets/font_0464a6c356453ceec97b214f.woff2')format("woff");}.ff32_c00246{font-family:ff32_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00246;src:url('chunks/assets/font_bb662ef70a2abeecfa68e8a1.woff2')format("woff");}.ff33_c00246{font-family:ff33_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00246;src:url('chunks/assets/font_ea2a117d906a8382b31a7798.woff2')format("woff");}.ff34_c00246{font-family:ff34_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00246;src:url('chunks/assets/font_020761803ef15db9c5c49a0a.woff2')format("woff");}.ff35_c00246{font-family:ff35_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00246;src:url('chunks/assets/font_604f275f3a5544aa9d84a136.woff2')format("woff");}.ff36_c00246{font-family:ff36_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00246;src:url('chunks/assets/font_9d420e004a420ed9cf511399.woff2')format("woff");}.ff37_c00246{font-family:ff37_c00246;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:ff38_c00246;src:url('chunks/assets/font_335fc54af6de576dcf4ad994.woff2')format("woff");}.ff38_c00246{font-family:ff38_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00246;src:url('chunks/assets/font_1a50bd4bcd3c574f69c72242.woff2')format("woff");}.ff39_c00246{font-family:ff39_c00246;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00246;src:url('chunks/assets/font_c538633a062cb7b8499a66ee.woff2')format("woff");}.ff3a_c00246{font-family:ff3a_c00246;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00246;src:url('chunks/assets/font_527977abf811180842c201ad.woff2')format("woff");}.ff3b_c00246{font-family:ff3b_c00246;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:ff3c_c00246;src:url('chunks/assets/font_a316cac344c45bf27660e0c1.woff2')format("woff");}.ff3c_c00246{font-family:ff3c_c00246;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00246;src:url('chunks/assets/font_449408e6f17c44117d5077a1.woff2')format("woff");}.ff3d_c00246{font-family:ff3d_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00246;src:url('chunks/assets/font_49485542e74a5c5790b14f62.woff2')format("woff");}.ff3e_c00246{font-family:ff3e_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00246;src:url('chunks/assets/font_20a48bd7cbbc1d8d9b67aded.woff2')format("woff");}.ff3f_c00246{font-family:ff3f_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00246;src:url('chunks/assets/font_cad4eaee554c8c1b1e585278.woff2')format("woff");}.ff40_c00246{font-family:ff40_c00246;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00246{letter-spacing:0.000000px;}
.ls0_c00246{letter-spacing:0.014400px;}
.ls1_c00246{letter-spacing:0.072000px;}
.ls4_c00246{letter-spacing:6.422400px;}
.ls2_c00246{letter-spacing:67.320000px;}
.sc__c00246{text-shadow:none;}
.sc0_c00246{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00246{-webkit-text-stroke:0px transparent;}
.sc0_c00246{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2_c00246{word-spacing:-18.000000px;}
.ws1_c00246{word-spacing:-0.086400px;}
.ws0_c00246{word-spacing:-0.072000px;}
.ws3_c00246{word-spacing:0.000000px;}
._1_c00246{margin-left:-7.243200px;}
._4_c00246{width:2.023200px;}
._3_c00246{width:3.060000px;}
._5_c00246{width:4.183200px;}
._6_c00246{width:5.284800px;}
._0_c00246{width:6.422400px;}
._a_c00246{width:7.920000px;}
._9_c00246{width:9.108000px;}
._7_c00246{width:10.605600px;}
._8_c00246{width:12.945600px;}
._e_c00246{width:14.083200px;}
._b_c00246{width:19.209600px;}
._d_c00246{width:22.960800px;}
._c_c00246{width:26.028000px;}
._f_c00246{width:35.323200px;}
._2_c00246{width:67.276800px;}
.fc1_c00246{color:transparent;}
.fc0_c00246{color:rgb(0,0,0);}
.fs1_c00246{font-size:64.800000px;}
.fs0_c00246{font-size:72.000000px;}
.y0_c00246{bottom:0.000000px;}
.y5_c00246{bottom:5.040000px;}
.y1_c00246{bottom:12.735000px;}
.y3_c00246{bottom:45.045000px;}
.y4_c00246{bottom:52.740000px;}
.y21_c00246{bottom:110.565000px;}
.y20_c00246{bottom:146.565000px;}
.y1f_c00246{bottom:182.565000px;}
.y1e_c00246{bottom:218.565000px;}
.y1d_c00246{bottom:254.565000px;}
.y1c_c00246{bottom:290.565000px;}
.y1b_c00246{bottom:326.565000px;}
.y1a_c00246{bottom:362.565000px;}
.y19_c00246{bottom:398.565000px;}
.y18_c00246{bottom:434.565000px;}
.y17_c00246{bottom:470.565000px;}
.y16_c00246{bottom:506.565000px;}
.y15_c00246{bottom:542.565000px;}
.y14_c00246{bottom:578.565000px;}
.y13_c00246{bottom:614.565000px;}
.y12_c00246{bottom:650.565000px;}
.y11_c00246{bottom:686.565000px;}
.y10_c00246{bottom:722.565000px;}
.yf_c00246{bottom:758.565000px;}
.ye_c00246{bottom:794.565000px;}
.yd_c00246{bottom:830.565000px;}
.yc_c00246{bottom:866.565000px;}
.yb_c00246{bottom:902.565000px;}
.ya_c00246{bottom:938.565000px;}
.y9_c00246{bottom:974.565000px;}
.y8_c00246{bottom:1010.565000px;}
.y7_c00246{bottom:1046.565000px;}
.y6_c00246{bottom:1082.565000px;}
.y2_c00246{bottom:1165.365000px;}
.h4_c00246{height:20.880000px;}
.h6_c00246{height:70.628906px;}
.h3_c00246{height:70.664062px;}
.h7_c00246{height:71.824219px;}
.h5_c00246{height:74.004654px;}
.h2_c00246{height:1237.365000px;}
.h0_c00246{height:1262.835000px;}
.h1_c00246{height:1263.000000px;}
.w3_c00246{width:27.000000px;}
.w2_c00246{width:867.465000px;}
.w0_c00246{width:892.935000px;}
.w1_c00246{width:893.250000px;}
.x0_c00246{left:0.000000px;}
.x1_c00246{left:12.735000px;}
.x3_c00246{left:95.406300px;}
.x5_c00246{left:149.400150px;}
.x4_c00246{left:433.215000px;}
.x2_c00246{left:878.550300px;}
@media print{
.v0_c00246{vertical-align:0.000000pt;}
.ls3_c00246{letter-spacing:0.000000pt;}
.ls0_c00246{letter-spacing:0.012800pt;}
.ls1_c00246{letter-spacing:0.064000pt;}
.ls4_c00246{letter-spacing:5.708800pt;}
.ls2_c00246{letter-spacing:59.840000pt;}
.ws2_c00246{word-spacing:-16.000000pt;}
.ws1_c00246{word-spacing:-0.076800pt;}
.ws0_c00246{word-spacing:-0.064000pt;}
.ws3_c00246{word-spacing:0.000000pt;}
._1_c00246{margin-left:-6.438400pt;}
._4_c00246{width:1.798400pt;}
._3_c00246{width:2.720000pt;}
._5_c00246{width:3.718400pt;}
._6_c00246{width:4.697600pt;}
._0_c00246{width:5.708800pt;}
._a_c00246{width:7.040000pt;}
._9_c00246{width:8.096000pt;}
._7_c00246{width:9.427200pt;}
._8_c00246{width:11.507200pt;}
._e_c00246{width:12.518400pt;}
._b_c00246{width:17.075200pt;}
._d_c00246{width:20.409600pt;}
._c_c00246{width:23.136000pt;}
._f_c00246{width:31.398400pt;}
._2_c00246{width:59.801600pt;}
.fs1_c00246{font-size:57.600000pt;}
.fs0_c00246{font-size:64.000000pt;}
.y0_c00246{bottom:0.000000pt;}
.y5_c00246{bottom:4.480000pt;}
.y1_c00246{bottom:11.320000pt;}
.y3_c00246{bottom:40.040000pt;}
.y4_c00246{bottom:46.880000pt;}
.y21_c00246{bottom:98.280000pt;}
.y20_c00246{bottom:130.280000pt;}
.y1f_c00246{bottom:162.280000pt;}
.y1e_c00246{bottom:194.280000pt;}
.y1d_c00246{bottom:226.280000pt;}
.y1c_c00246{bottom:258.280000pt;}
.y1b_c00246{bottom:290.280000pt;}
.y1a_c00246{bottom:322.280000pt;}
.y19_c00246{bottom:354.280000pt;}
.y18_c00246{bottom:386.280000pt;}
.y17_c00246{bottom:418.280000pt;}
.y16_c00246{bottom:450.280000pt;}
.y15_c00246{bottom:482.280000pt;}
.y14_c00246{bottom:514.280000pt;}
.y13_c00246{bottom:546.280000pt;}
.y12_c00246{bottom:578.280000pt;}
.y11_c00246{bottom:610.280000pt;}
.y10_c00246{bottom:642.280000pt;}
.yf_c00246{bottom:674.280000pt;}
.ye_c00246{bottom:706.280000pt;}
.yd_c00246{bottom:738.280000pt;}
.yc_c00246{bottom:770.280000pt;}
.yb_c00246{bottom:802.280000pt;}
.ya_c00246{bottom:834.280000pt;}
.y9_c00246{bottom:866.280000pt;}
.y8_c00246{bottom:898.280000pt;}
.y7_c00246{bottom:930.280000pt;}
.y6_c00246{bottom:962.280000pt;}
.y2_c00246{bottom:1035.880000pt;}
.h4_c00246{height:18.560000pt;}
.h6_c00246{height:62.781250pt;}
.h3_c00246{height:62.812500pt;}
.h7_c00246{height:63.843750pt;}
.h5_c00246{height:65.781915pt;}
.h2_c00246{height:1099.880000pt;}
.h0_c00246{height:1122.520000pt;}
.h1_c00246{height:1122.666667pt;}
.w3_c00246{width:24.000000pt;}
.w2_c00246{width:771.080000pt;}
.w0_c00246{width:793.720000pt;}
.w1_c00246{width:794.000000pt;}
.x0_c00246{left:0.000000pt;}
.x1_c00246{left:11.320000pt;}
.x3_c00246{left:84.805600pt;}
.x5_c00246{left:132.800133pt;}
.x4_c00246{left:385.080000pt;}
.x2_c00246{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b3aa9ff369a83b23827ecef4.woff2')format("woff");}.ff1_c00247{font-family:ff1_c00247;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00247;src:url('chunks/assets/font_06890fc1b8714df551354eec.woff2')format("woff");}.ff2_c00247{font-family:ff2_c00247;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00247;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00247{font-family:ff3_c00247;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00247;src:url('chunks/assets/font_cf6dcf154f6191a4da1eeef3.woff2')format("woff");}.ff4_c00247{font-family:ff4_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:ff5_c00247;src:url('chunks/assets/font_52d4c950870d98bfa060ac66.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_0377f75d0145515b5060ef70.woff2')format("woff");}.ff6_c00247{font-family:ff6_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:ff7_c00247;src:url('chunks/assets/font_36a3f361a393a8664d04697b.woff2')format("woff");}.ff7_c00247{font-family:ff7_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:ff8_c00247;src:url('chunks/assets/font_ed72898012281bd44a448ec5.woff2')format("woff");}.ff8_c00247{font-family:ff8_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:ff9_c00247;src:url('chunks/assets/font_25c41bd3992704bd0db55c28.woff2')format("woff");}.ff9_c00247{font-family:ff9_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:ffa_c00247;src:url('chunks/assets/font_d6e9cfadb737d1ff1733a1cd.woff2')format("woff");}.ffa_c00247{font-family:ffa_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:ffb_c00247;src:url('chunks/assets/font_f364439e3dd20dc4427d465a.woff2')format("woff");}.ffb_c00247{font-family:ffb_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:ffc_c00247;src:url('chunks/assets/font_9daa09326f1253673edce646.woff2')format("woff");}.ffc_c00247{font-family:ffc_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:ffd_c00247;src:url('chunks/assets/font_636a30c4e151c7aa20230193.woff2')format("woff");}.ffd_c00247{font-family:ffd_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:ffe_c00247;src:url('chunks/assets/font_f4fd6ac62d68b28d26df5a20.woff2')format("woff");}.ffe_c00247{font-family:ffe_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:fff_c00247;src:url('chunks/assets/font_ce8867ba962142ef3fbe5682.woff2')format("woff");}.fff_c00247{font-family:fff_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:ff10_c00247;src:url('chunks/assets/font_d83c3126356c51bfb19927b4.woff2')format("woff");}.ff10_c00247{font-family:ff10_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:ff11_c00247;src:url('chunks/assets/font_a9da7be5946cb5cb92e7b5ea.woff2')format("woff");}.ff11_c00247{font-family:ff11_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:ff12_c00247;src:url('chunks/assets/font_2edd399b951b786f99b1ddcc.woff2')format("woff");}.ff12_c00247{font-family:ff12_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:ff13_c00247;src:url('chunks/assets/font_4b2d0aab8f6876d02be451d0.woff2')format("woff");}.ff13_c00247{font-family:ff13_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:ff14_c00247;src:url('chunks/assets/font_24518c72035dd0e9027f9324.woff2')format("woff");}.ff14_c00247{font-family:ff14_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:ff15_c00247;src:url('chunks/assets/font_73bde3d49ae7af68ac8a7a2e.woff2')format("woff");}.ff15_c00247{font-family:ff15_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:ff16_c00247;src:url('chunks/assets/font_feebc7f8a348604b8700c451.woff2')format("woff");}.ff16_c00247{font-family:ff16_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:ff17_c00247;src:url('chunks/assets/font_b640f0f3fa9eae4af2cdce61.woff2')format("woff");}.ff17_c00247{font-family:ff17_c00247;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00247;src:url('chunks/assets/font_04c475471d068197e5ec6789.woff2')format("woff");}.ff18_c00247{font-family:ff18_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:ff19_c00247;src:url('chunks/assets/font_7292145e41d8d9e2a031e887.woff2')format("woff");}.ff19_c00247{font-family:ff19_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:ff1a_c00247;src:url('chunks/assets/font_188237788fa206103ad9cc87.woff2')format("woff");}.ff1a_c00247{font-family:ff1a_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:ff1b_c00247;src:url('chunks/assets/font_71431855d4a9e2372ce90111.woff2')format("woff");}.ff1b_c00247{font-family:ff1b_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:ff1c_c00247;src:url('chunks/assets/font_d1a010707e7a4925b4c159d9.woff2')format("woff");}.ff1c_c00247{font-family:ff1c_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:ff1d_c00247;src:url('chunks/assets/font_a72d858d04343c7020b5f374.woff2')format("woff");}.ff1d_c00247{font-family:ff1d_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:ff1e_c00247;src:url('chunks/assets/font_2c5829a1918043fc23b220a0.woff2')format("woff");}.ff1e_c00247{font-family:ff1e_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:ff1f_c00247;src:url('chunks/assets/font_6bca5033274bfe5e1fa55fea.woff2')format("woff");}.ff1f_c00247{font-family:ff1f_c00247;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00247;src:url('chunks/assets/font_59a547cd5211bd604c8830d1.woff2')format("woff");}.ff20_c00247{font-family:ff20_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:ff21_c00247;src:url('chunks/assets/font_870ec157050a3c7ceeb7f755.woff2')format("woff");}.ff21_c00247{font-family:ff21_c00247;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00247;src:url('chunks/assets/font_e55adb0b7a4c138008d29a4d.woff2')format("woff");}.ff22_c00247{font-family:ff22_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:ff23_c00247;src:url('chunks/assets/font_78eb8dfdaf9f461682af055d.woff2')format("woff");}.ff23_c00247{font-family:ff23_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:ff24_c00247;src:url('chunks/assets/font_90bca23766b35740f08d516c.woff2')format("woff");}.ff24_c00247{font-family:ff24_c00247;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00247;src:url('chunks/assets/font_2d7753869a370df32e2e90f9.woff2')format("woff");}.ff25_c00247{font-family:ff25_c00247;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00247;src:url('chunks/assets/font_9c2d323062d121e45a539f29.woff2')format("woff");}.ff26_c00247{font-family:ff26_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:ff27_c00247;src:url('chunks/assets/font_c4b26f1da565119a2d20aef8.woff2')format("woff");}.ff27_c00247{font-family:ff27_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:ff28_c00247;src:url('chunks/assets/font_8064b713b06026ea9421e7a3.woff2')format("woff");}.ff28_c00247{font-family:ff28_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:ff29_c00247;src:url('chunks/assets/font_593a114860e81ccaff914697.woff2')format("woff");}.ff29_c00247{font-family:ff29_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:ff2a_c00247;src:url('chunks/assets/font_97565c66872d5dde7ff7eabb.woff2')format("woff");}.ff2a_c00247{font-family:ff2a_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:ff2b_c00247;src:url('chunks/assets/font_b978b670c619b21fa4dda812.woff2')format("woff");}.ff2b_c00247{font-family:ff2b_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:ff2c_c00247;src:url('chunks/assets/font_3e798fae8afcf805bf0975e3.woff2')format("woff");}.ff2c_c00247{font-family:ff2c_c00247;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00247;src:url('chunks/assets/font_a5285bb74bce9311b5b62293.woff2')format("woff");}.ff2d_c00247{font-family:ff2d_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:ff2e_c00247;src:url('chunks/assets/font_2329ff1f1f7f8531577c2bd9.woff2')format("woff");}.ff2e_c00247{font-family:ff2e_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:ff2f_c00247;src:url('chunks/assets/font_960a3db7c18c6480b60e3f3f.woff2')format("woff");}.ff2f_c00247{font-family:ff2f_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:ff30_c00247;src:url('chunks/assets/font_5ac8b69c649529a8d83b85d1.woff2')format("woff");}.ff30_c00247{font-family:ff30_c00247;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00247;src:url('chunks/assets/font_af778ec639088acbb867f9d7.woff2')format("woff");}.ff31_c00247{font-family:ff31_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:ff32_c00247;src:url('chunks/assets/font_8b87c60e3f65676f3708a9f8.woff2')format("woff");}.ff32_c00247{font-family:ff32_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:ff33_c00247;src:url('chunks/assets/font_59fffbbcaac1a6bf9f0030ca.woff2')format("woff");}.ff33_c00247{font-family:ff33_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:ff34_c00247;src:url('chunks/assets/font_f993f90225023973ed5351ed.woff2')format("woff");}.ff34_c00247{font-family:ff34_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:ff35_c00247;src:url('chunks/assets/font_51f15c7a9e066d9855d5c2b8.woff2')format("woff");}.ff35_c00247{font-family:ff35_c00247;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00247{letter-spacing:0.000000px;}
.ls1_c00247{letter-spacing:0.014400px;}
.sc__c00247{text-shadow:none;}
.sc0_c00247{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00247{-webkit-text-stroke:0px transparent;}
.sc0_c00247{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00247{word-spacing:-0.072000px;}
.ws1_c00247{word-spacing:0.000000px;}
._2_c00247{width:2.023200px;}
._7_c00247{width:3.369600px;}
._6_c00247{width:4.924800px;}
._4_c00247{width:6.141600px;}
._3_c00247{width:7.365600px;}
._0_c00247{width:8.661600px;}
._1_c00247{width:10.202400px;}
._5_c00247{width:12.146400px;}
._8_c00247{width:13.579200px;}
.fc1_c00247{color:transparent;}
.fc0_c00247{color:rgb(0,0,0);}
.fs1_c00247{font-size:64.800000px;}
.fs0_c00247{font-size:72.000000px;}
.y0_c00247{bottom:0.000000px;}
.y5_c00247{bottom:5.040000px;}
.y1_c00247{bottom:12.735000px;}
.y3_c00247{bottom:45.045000px;}
.y4_c00247{bottom:52.740000px;}
.y20_c00247{bottom:146.565000px;}
.y1f_c00247{bottom:182.565000px;}
.y1e_c00247{bottom:218.565000px;}
.y1d_c00247{bottom:254.565000px;}
.y1c_c00247{bottom:290.565000px;}
.y1b_c00247{bottom:326.565000px;}
.y1a_c00247{bottom:362.565000px;}
.y19_c00247{bottom:398.565000px;}
.y18_c00247{bottom:434.565000px;}
.y17_c00247{bottom:470.565000px;}
.y16_c00247{bottom:506.565000px;}
.y15_c00247{bottom:542.565000px;}
.y14_c00247{bottom:578.565000px;}
.y13_c00247{bottom:614.565000px;}
.y12_c00247{bottom:650.565000px;}
.y11_c00247{bottom:686.565000px;}
.y10_c00247{bottom:722.565000px;}
.yf_c00247{bottom:758.565000px;}
.ye_c00247{bottom:794.565000px;}
.yd_c00247{bottom:830.565000px;}
.yc_c00247{bottom:866.565000px;}
.yb_c00247{bottom:902.565000px;}
.ya_c00247{bottom:938.565000px;}
.y9_c00247{bottom:974.565000px;}
.y8_c00247{bottom:1010.565000px;}
.y7_c00247{bottom:1046.565000px;}
.y6_c00247{bottom:1082.565000px;}
.y2_c00247{bottom:1165.365000px;}
.h4_c00247{height:20.880000px;}
.h6_c00247{height:70.628906px;}
.h5_c00247{height:70.664062px;}
.h3_c00247{height:74.004654px;}
.h2_c00247{height:1237.365000px;}
.h0_c00247{height:1262.835000px;}
.h1_c00247{height:1263.000000px;}
.w3_c00247{width:27.000000px;}
.w2_c00247{width:867.465000px;}
.w0_c00247{width:892.935000px;}
.w1_c00247{width:893.250000px;}
.x0_c00247{left:0.000000px;}
.x1_c00247{left:12.735000px;}
.x3_c00247{left:95.406300px;}
.x5_c00247{left:149.400150px;}
.x4_c00247{left:433.215000px;}
.x2_c00247{left:878.550300px;}
@media print{
.v0_c00247{vertical-align:0.000000pt;}
.ls0_c00247{letter-spacing:0.000000pt;}
.ls1_c00247{letter-spacing:0.012800pt;}
.ws0_c00247{word-spacing:-0.064000pt;}
.ws1_c00247{word-spacing:0.000000pt;}
._2_c00247{width:1.798400pt;}
._7_c00247{width:2.995200pt;}
._6_c00247{width:4.377600pt;}
._4_c00247{width:5.459200pt;}
._3_c00247{width:6.547200pt;}
._0_c00247{width:7.699200pt;}
._1_c00247{width:9.068800pt;}
._5_c00247{width:10.796800pt;}
._8_c00247{width:12.070400pt;}
.fs1_c00247{font-size:57.600000pt;}
.fs0_c00247{font-size:64.000000pt;}
.y0_c00247{bottom:0.000000pt;}
.y5_c00247{bottom:4.480000pt;}
.y1_c00247{bottom:11.320000pt;}
.y3_c00247{bottom:40.040000pt;}
.y4_c00247{bottom:46.880000pt;}
.y20_c00247{bottom:130.280000pt;}
.y1f_c00247{bottom:162.280000pt;}
.y1e_c00247{bottom:194.280000pt;}
.y1d_c00247{bottom:226.280000pt;}
.y1c_c00247{bottom:258.280000pt;}
.y1b_c00247{bottom:290.280000pt;}
.y1a_c00247{bottom:322.280000pt;}
.y19_c00247{bottom:354.280000pt;}
.y18_c00247{bottom:386.280000pt;}
.y17_c00247{bottom:418.280000pt;}
.y16_c00247{bottom:450.280000pt;}
.y15_c00247{bottom:482.280000pt;}
.y14_c00247{bottom:514.280000pt;}
.y13_c00247{bottom:546.280000pt;}
.y12_c00247{bottom:578.280000pt;}
.y11_c00247{bottom:610.280000pt;}
.y10_c00247{bottom:642.280000pt;}
.yf_c00247{bottom:674.280000pt;}
.ye_c00247{bottom:706.280000pt;}
.yd_c00247{bottom:738.280000pt;}
.yc_c00247{bottom:770.280000pt;}
.yb_c00247{bottom:802.280000pt;}
.ya_c00247{bottom:834.280000pt;}
.y9_c00247{bottom:866.280000pt;}
.y8_c00247{bottom:898.280000pt;}
.y7_c00247{bottom:930.280000pt;}
.y6_c00247{bottom:962.280000pt;}
.y2_c00247{bottom:1035.880000pt;}
.h4_c00247{height:18.560000pt;}
.h6_c00247{height:62.781250pt;}
.h5_c00247{height:62.812500pt;}
.h3_c00247{height:65.781915pt;}
.h2_c00247{height:1099.880000pt;}
.h0_c00247{height:1122.520000pt;}
.h1_c00247{height:1122.666667pt;}
.w3_c00247{width:24.000000pt;}
.w2_c00247{width:771.080000pt;}
.w0_c00247{width:793.720000pt;}
.w1_c00247{width:794.000000pt;}
.x0_c00247{left:0.000000pt;}
.x1_c00247{left:11.320000pt;}
.x3_c00247{left:84.805600pt;}
.x5_c00247{left:132.800133pt;}
.x4_c00247{left:385.080000pt;}
.x2_c00247{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00248{font-family:ff1_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00248;src:url('chunks/assets/font_cf2b92ea05d3f45a7bf138f8.woff2')format("woff");}.ff2_c00248{font-family:ff2_c00248;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00248;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00248{font-family:ff3_c00248;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00248;src:url('chunks/assets/font_00b086aef4c6da103d9ac18b.woff2')format("woff");}.ff4_c00248{font-family:ff4_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00248;src:url('chunks/assets/font_e79df49d8e2a152961a03e43.woff2')format("woff");}.ff5_c00248{font-family:ff5_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00248;src:url('chunks/assets/font_93095e112012a43e446d3e8b.woff2')format("woff");}.ff6_c00248{font-family:ff6_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00248;src:url('chunks/assets/font_d0d734ef5dc020b49a6a3c24.woff2')format("woff");}.ff7_c00248{font-family:ff7_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00248;src:url('chunks/assets/font_5295122f55c5fcac0d56efc4.woff2')format("woff");}.ff8_c00248{font-family:ff8_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00248;src:url('chunks/assets/font_2fb3f9ea178c1bde443fae6a.woff2')format("woff");}.ff9_c00248{font-family:ff9_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00248;src:url('chunks/assets/font_f7bc13922b39863d8804ba06.woff2')format("woff");}.ffa_c00248{font-family:ffa_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00248;src:url('chunks/assets/font_47106cda487dedf82c58ff5d.woff2')format("woff");}.ffb_c00248{font-family:ffb_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00248;src:url('chunks/assets/font_04dfea22f1a6d6e970b916e5.woff2')format("woff");}.ffc_c00248{font-family:ffc_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00248;src:url('chunks/assets/font_2bd60406119f3ad9e5d009a1.woff2')format("woff");}.ffd_c00248{font-family:ffd_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00248;src:url('chunks/assets/font_cd4d0e3011befa1b6cbe7cc9.woff2')format("woff");}.ffe_c00248{font-family:ffe_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00248;src:url('chunks/assets/font_c7781e1001bd9408ada86959.woff2')format("woff");}.fff_c00248{font-family:fff_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:ff10_c00248;src:url('chunks/assets/font_430c00f8044eefa9517dcc9e.woff2')format("woff");}.ff10_c00248{font-family:ff10_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00248;src:url('chunks/assets/font_f0b270d00e38153954d620d5.woff2')format("woff");}.ff11_c00248{font-family:ff11_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00248;src:url('chunks/assets/font_94de64092d547a2dfddcadd5.woff2')format("woff");}.ff12_c00248{font-family:ff12_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00248;src:url('chunks/assets/font_09a6a71bda7cbb5d8707cf8f.woff2')format("woff");}.ff13_c00248{font-family:ff13_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00248;src:url('chunks/assets/font_9a549b3232cc4d2eb3b1ebb7.woff2')format("woff");}.ff14_c00248{font-family:ff14_c00248;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:ff15_c00248;src:url('chunks/assets/font_51ce8586916b0a95f7c71658.woff2')format("woff");}.ff15_c00248{font-family:ff15_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:ff16_c00248;src:url('chunks/assets/font_77fac6ce94d0f25d25f78c5c.woff2')format("woff");}.ff16_c00248{font-family:ff16_c00248;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00248;src:url('chunks/assets/font_83502efaf15a7378c4420ec1.woff2')format("woff");}.ff17_c00248{font-family:ff17_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00248;src:url('chunks/assets/font_210d97a29361080c8b6033b3.woff2')format("woff");}.ff18_c00248{font-family:ff18_c00248;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00248;src:url('chunks/assets/font_d0eb65eb7aa9da1108b62648.woff2')format("woff");}.ff19_c00248{font-family:ff19_c00248;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:ff1a_c00248;src:url('chunks/assets/font_f1f31b1559ad6ab521f46007.woff2')format("woff");}.ff1a_c00248{font-family:ff1a_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:ff1b_c00248;src:url('chunks/assets/font_c26503a41f02fc939e77ce9b.woff2')format("woff");}.ff1b_c00248{font-family:ff1b_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00248;src:url('chunks/assets/font_048407a1292c42d1d0ddfdf4.woff2')format("woff");}.ff1c_c00248{font-family:ff1c_c00248;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:ff1d_c00248;src:url('chunks/assets/font_c8aec40cb1e902b40a0afa58.woff2')format("woff");}.ff1d_c00248{font-family:ff1d_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:ff1e_c00248;src:url('chunks/assets/font_4a21c09b208e4fd5749005c4.woff2')format("woff");}.ff1e_c00248{font-family:ff1e_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:ff1f_c00248;src:url('chunks/assets/font_8548044ece16ce60d9b10da3.woff2')format("woff");}.ff1f_c00248{font-family:ff1f_c00248;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:ff20_c00248;src:url('chunks/assets/font_5da6690da33ed1e3a28aec50.woff2')format("woff");}.ff20_c00248{font-family:ff20_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:ff21_c00248;src:url('chunks/assets/font_503dc04e5168285de1017c5c.woff2')format("woff");}.ff21_c00248{font-family:ff21_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:ff22_c00248;src:url('chunks/assets/font_23ce3b12cb62d4ea276c64b4.woff2')format("woff");}.ff22_c00248{font-family:ff22_c00248;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00248;src:url('chunks/assets/font_da6dabe991389ec83123bee4.woff2')format("woff");}.ff23_c00248{font-family:ff23_c00248;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:ff24_c00248;src:url('chunks/assets/font_8c2e30287af3a81b9c89223c.woff2')format("woff");}.ff24_c00248{font-family:ff24_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00248;src:url('chunks/assets/font_1584308a4b40cf368d4c4d11.woff2')format("woff");}.ff25_c00248{font-family:ff25_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00248;src:url('chunks/assets/font_f2759f71cc422ad7dcb4febf.woff2')format("woff");}.ff26_c00248{font-family:ff26_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00248;src:url('chunks/assets/font_7e3ae0d8cec97ffe2fd3561b.woff2')format("woff");}.ff27_c00248{font-family:ff27_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00248;src:url('chunks/assets/font_422dad218a0de2ba77e118e9.woff2')format("woff");}.ff28_c00248{font-family:ff28_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00248;src:url('chunks/assets/font_dcc862f9c4b4140acda50922.woff2')format("woff");}.ff29_c00248{font-family:ff29_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00248;src:url('chunks/assets/font_2cec9c687174b674305d658f.woff2')format("woff");}.ff2a_c00248{font-family:ff2a_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00248;src:url('chunks/assets/font_ce8867ba962142ef3fbe5682.woff2')format("woff");}.ff2b_c00248{font-family:ff2b_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00248;src:url('chunks/assets/font_0e7b3142dfd53bfae4a7084b.woff2')format("woff");}.ff2c_c00248{font-family:ff2c_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00248;src:url('chunks/assets/font_e208fb3f2869b7beb6f6cfe6.woff2')format("woff");}.ff2d_c00248{font-family:ff2d_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00248;src:url('chunks/assets/font_430c00f8044eefa9517dcc9e.woff2')format("woff");}.ff2e_c00248{font-family:ff2e_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00248;src:url('chunks/assets/font_6693514e7d2a977190ebb129.woff2')format("woff");}.ff2f_c00248{font-family:ff2f_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00248;src:url('chunks/assets/font_50278ec85e5a574af0dc69ae.woff2')format("woff");}.ff30_c00248{font-family:ff30_c00248;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:ff31_c00248;src:url('chunks/assets/font_b0f9417f85921801b5832d71.woff2')format("woff");}.ff31_c00248{font-family:ff31_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:ff32_c00248;src:url('chunks/assets/font_4c4460677070899d33788c14.woff2')format("woff");}.ff32_c00248{font-family:ff32_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:ff33_c00248;src:url('chunks/assets/font_94fcdf0ab114a56c57766588.woff2')format("woff");}.ff33_c00248{font-family:ff33_c00248;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00248;src:url('chunks/assets/font_3cdd5bb33f972e5620c70fa4.woff2')format("woff");}.ff34_c00248{font-family:ff34_c00248;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:ff35_c00248;src:url('chunks/assets/font_58f1a5a85442c1a9dbb791a9.woff2')format("woff");}.ff35_c00248{font-family:ff35_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00248;src:url('chunks/assets/font_979c3358eaaeef24ef3bffb9.woff2')format("woff");}.ff36_c00248{font-family:ff36_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00248;src:url('chunks/assets/font_0c6909963f15777bdb6f3088.woff2')format("woff");}.ff37_c00248{font-family:ff37_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00248;src:url('chunks/assets/font_8540c3d81a88bfc7722b6910.woff2')format("woff");}.ff38_c00248{font-family:ff38_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00248;src:url('chunks/assets/font_fb132fedc52622bd1399a53a.woff2')format("woff");}.ff39_c00248{font-family:ff39_c00248;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls4_c00248{letter-spacing:-0.014400px;}
.ls3_c00248{letter-spacing:0.000000px;}
.ls0_c00248{letter-spacing:0.093600px;}
.ls2_c00248{letter-spacing:0.237600px;}
.ls1_c00248{letter-spacing:1.396800px;}
.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:-0.072000px;}
.ws1_c00248{word-spacing:0.000000px;}
._0_c00248{width:1.879200px;}
._1_c00248{width:3.247200px;}
._6_c00248{width:4.334400px;}
._8_c00248{width:5.428800px;}
._4_c00248{width:7.538400px;}
._7_c00248{width:9.223200px;}
._2_c00248{width:12.981600px;}
._5_c00248{width:19.512000px;}
._3_c00248{width:24.861600px;}
.fc1_c00248{color:transparent;}
.fc0_c00248{color:rgb(0,0,0);}
.fs1_c00248{font-size:64.800000px;}
.fs0_c00248{font-size:72.000000px;}
.y0_c00248{bottom:0.000000px;}
.y5_c00248{bottom:5.040000px;}
.y1_c00248{bottom:12.735000px;}
.y3_c00248{bottom:45.045000px;}
.y4_c00248{bottom:52.740000px;}
.y21_c00248{bottom:110.565000px;}
.y20_c00248{bottom:146.565000px;}
.y1f_c00248{bottom:182.565000px;}
.y1e_c00248{bottom:218.565000px;}
.y1d_c00248{bottom:254.565000px;}
.y1c_c00248{bottom:290.565000px;}
.y1b_c00248{bottom:326.565000px;}
.y1a_c00248{bottom:362.565000px;}
.y19_c00248{bottom:398.565000px;}
.y18_c00248{bottom:434.565000px;}
.y17_c00248{bottom:470.565000px;}
.y16_c00248{bottom:506.565000px;}
.y15_c00248{bottom:542.565000px;}
.y14_c00248{bottom:578.565000px;}
.y13_c00248{bottom:614.565000px;}
.y12_c00248{bottom:650.565000px;}
.y11_c00248{bottom:686.565000px;}
.y10_c00248{bottom:722.565000px;}
.yf_c00248{bottom:758.565000px;}
.ye_c00248{bottom:794.565000px;}
.yd_c00248{bottom:830.565000px;}
.yc_c00248{bottom:866.565000px;}
.yb_c00248{bottom:902.565000px;}
.ya_c00248{bottom:938.565000px;}
.y9_c00248{bottom:974.565000px;}
.y8_c00248{bottom:1010.565000px;}
.y7_c00248{bottom:1046.565000px;}
.y6_c00248{bottom:1082.565000px;}
.y2_c00248{bottom:1165.365000px;}
.h4_c00248{height:20.880000px;}
.h3_c00248{height:70.664062px;}
.h5_c00248{height:74.004654px;}
.h2_c00248{height:1237.365000px;}
.h0_c00248{height:1262.835000px;}
.h1_c00248{height:1263.000000px;}
.w3_c00248{width:27.000000px;}
.w2_c00248{width:867.465000px;}
.w0_c00248{width:892.935000px;}
.w1_c00248{width:893.250000px;}
.x0_c00248{left:0.000000px;}
.x1_c00248{left:12.735000px;}
.x3_c00248{left:95.406300px;}
.x5_c00248{left:149.400150px;}
.x4_c00248{left:433.215000px;}
.x2_c00248{left:878.550300px;}
@media print{
.v0_c00248{vertical-align:0.000000pt;}
.ls4_c00248{letter-spacing:-0.012800pt;}
.ls3_c00248{letter-spacing:0.000000pt;}
.ls0_c00248{letter-spacing:0.083200pt;}
.ls2_c00248{letter-spacing:0.211200pt;}
.ls1_c00248{letter-spacing:1.241600pt;}
.ws0_c00248{word-spacing:-0.064000pt;}
.ws1_c00248{word-spacing:0.000000pt;}
._0_c00248{width:1.670400pt;}
._1_c00248{width:2.886400pt;}
._6_c00248{width:3.852800pt;}
._8_c00248{width:4.825600pt;}
._4_c00248{width:6.700800pt;}
._7_c00248{width:8.198400pt;}
._2_c00248{width:11.539200pt;}
._5_c00248{width:17.344000pt;}
._3_c00248{width:22.099200pt;}
.fs1_c00248{font-size:57.600000pt;}
.fs0_c00248{font-size:64.000000pt;}
.y0_c00248{bottom:0.000000pt;}
.y5_c00248{bottom:4.480000pt;}
.y1_c00248{bottom:11.320000pt;}
.y3_c00248{bottom:40.040000pt;}
.y4_c00248{bottom:46.880000pt;}
.y21_c00248{bottom:98.280000pt;}
.y20_c00248{bottom:130.280000pt;}
.y1f_c00248{bottom:162.280000pt;}
.y1e_c00248{bottom:194.280000pt;}
.y1d_c00248{bottom:226.280000pt;}
.y1c_c00248{bottom:258.280000pt;}
.y1b_c00248{bottom:290.280000pt;}
.y1a_c00248{bottom:322.280000pt;}
.y19_c00248{bottom:354.280000pt;}
.y18_c00248{bottom:386.280000pt;}
.y17_c00248{bottom:418.280000pt;}
.y16_c00248{bottom:450.280000pt;}
.y15_c00248{bottom:482.280000pt;}
.y14_c00248{bottom:514.280000pt;}
.y13_c00248{bottom:546.280000pt;}
.y12_c00248{bottom:578.280000pt;}
.y11_c00248{bottom:610.280000pt;}
.y10_c00248{bottom:642.280000pt;}
.yf_c00248{bottom:674.280000pt;}
.ye_c00248{bottom:706.280000pt;}
.yd_c00248{bottom:738.280000pt;}
.yc_c00248{bottom:770.280000pt;}
.yb_c00248{bottom:802.280000pt;}
.ya_c00248{bottom:834.280000pt;}
.y9_c00248{bottom:866.280000pt;}
.y8_c00248{bottom:898.280000pt;}
.y7_c00248{bottom:930.280000pt;}
.y6_c00248{bottom:962.280000pt;}
.y2_c00248{bottom:1035.880000pt;}
.h4_c00248{height:18.560000pt;}
.h3_c00248{height:62.812500pt;}
.h5_c00248{height:65.781915pt;}
.h2_c00248{height:1099.880000pt;}
.h0_c00248{height:1122.520000pt;}
.h1_c00248{height:1122.666667pt;}
.w3_c00248{width:24.000000pt;}
.w2_c00248{width:771.080000pt;}
.w0_c00248{width:793.720000pt;}
.w1_c00248{width:794.000000pt;}
.x0_c00248{left:0.000000pt;}
.x1_c00248{left:11.320000pt;}
.x3_c00248{left:84.805600pt;}
.x5_c00248{left:132.800133pt;}
.x4_c00248{left:385.080000pt;}
.x2_c00248{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00249{font-family:ff1_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00249;src:url('chunks/assets/font_2054ce3f061a44fb277ab9d9.woff2')format("woff");}.ff2_c00249{font-family:ff2_c00249;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00249;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00249{font-family:ff3_c00249;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00249;src:url('chunks/assets/font_377610b11f7b96b6f5f08761.woff2')format("woff");}.ff4_c00249{font-family:ff4_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00249;src:url('chunks/assets/font_0e68a9585e42c49cdf8818ad.woff2')format("woff");}.ff5_c00249{font-family:ff5_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00249;src:url('chunks/assets/font_d4d20f0b6d353c116531f410.woff2')format("woff");}.ff6_c00249{font-family:ff6_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00249;src:url('chunks/assets/font_d015063465d8a3254d7161b1.woff2')format("woff");}.ff7_c00249{font-family:ff7_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00249;src:url('chunks/assets/font_757d6b213e4c6972a8199691.woff2')format("woff");}.ff8_c00249{font-family:ff8_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00249;src:url('chunks/assets/font_1e0df1eb4f208178930b1705.woff2')format("woff");}.ff9_c00249{font-family:ff9_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00249;src:url('chunks/assets/font_4506f4780692ccf4d11f2c2a.woff2')format("woff");}.ffa_c00249{font-family:ffa_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00249;src:url('chunks/assets/font_7c37b8c0aec5d0eccf5bcfbc.woff2')format("woff");}.ffb_c00249{font-family:ffb_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00249;src:url('chunks/assets/font_b54597ac4b55a203ba488a43.woff2')format("woff");}.ffc_c00249{font-family:ffc_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00249;src:url('chunks/assets/font_1030be8bdf174e540af73aa8.woff2')format("woff");}.ffd_c00249{font-family:ffd_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00249;src:url('chunks/assets/font_46aef3c0bf85821c2e5b0dd2.woff2')format("woff");}.ffe_c00249{font-family:ffe_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00249;src:url('chunks/assets/font_c2608e9f15a88758201fee6d.woff2')format("woff");}.fff_c00249{font-family:fff_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00249;src:url('chunks/assets/font_ce982a860482a259307e136f.woff2')format("woff");}.ff10_c00249{font-family:ff10_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00249;src:url('chunks/assets/font_461390ce6b75b72dda64fd31.woff2')format("woff");}.ff11_c00249{font-family:ff11_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00249;src:url('chunks/assets/font_130329ce145418823e1cd0d0.woff2')format("woff");}.ff12_c00249{font-family:ff12_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00249;src:url('chunks/assets/font_9f0fae8cd0f9de7a9f98c7d3.woff2')format("woff");}.ff13_c00249{font-family:ff13_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00249;src:url('chunks/assets/font_444975083c515cc1912e1559.woff2')format("woff");}.ff14_c00249{font-family:ff14_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00249;src:url('chunks/assets/font_d7568f7af087c0cbdd2fec96.woff2')format("woff");}.ff15_c00249{font-family:ff15_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00249;src:url('chunks/assets/font_ec6cc45ec3e510c6de185c74.woff2')format("woff");}.ff16_c00249{font-family:ff16_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00249;src:url('chunks/assets/font_fb9ec1f0a368b475a2e7b5b2.woff2')format("woff");}.ff17_c00249{font-family:ff17_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:ff18_c00249;src:url('chunks/assets/font_d583e4272bee0ddfdc41d4cd.woff2')format("woff");}.ff18_c00249{font-family:ff18_c00249;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00249;src:url('chunks/assets/font_65fa7fe7884a131149a2a210.woff2')format("woff");}.ff19_c00249{font-family:ff19_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:ff1a_c00249;src:url('chunks/assets/font_e33943eb7a8ddc0bd42294ee.woff2')format("woff");}.ff1a_c00249{font-family:ff1a_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00249;src:url('chunks/assets/font_e029ce2d07a80bb250607d84.woff2')format("woff");}.ff1b_c00249{font-family:ff1b_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00249;src:url('chunks/assets/font_3fcd1db156b0855f776f5ca0.woff2')format("woff");}.ff1c_c00249{font-family:ff1c_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00249;src:url('chunks/assets/font_5cee58f285b3e726df871e30.woff2')format("woff");}.ff1d_c00249{font-family:ff1d_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00249;src:url('chunks/assets/font_6f786b91b2ca99da2ccf928c.woff2')format("woff");}.ff1e_c00249{font-family:ff1e_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00249;src:url('chunks/assets/font_b5c17868c27c506385d734dd.woff2')format("woff");}.ff1f_c00249{font-family:ff1f_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00249;src:url('chunks/assets/font_fb202aab1de3770b1d8d746a.woff2')format("woff");}.ff20_c00249{font-family:ff20_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00249;src:url('chunks/assets/font_52c5e7f6304dc3ed8bd80fc6.woff2')format("woff");}.ff21_c00249{font-family:ff21_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00249;src:url('chunks/assets/font_e06ad06c3950b4774ee07d96.woff2')format("woff");}.ff22_c00249{font-family:ff22_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00249;src:url('chunks/assets/font_33e948d5bcbcf9f7e796bc2b.woff2')format("woff");}.ff23_c00249{font-family:ff23_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00249;src:url('chunks/assets/font_fa6f4b71a3ce62768477a48f.woff2')format("woff");}.ff24_c00249{font-family:ff24_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00249;src:url('chunks/assets/font_2f2241dd15a92affead73e5d.woff2')format("woff");}.ff25_c00249{font-family:ff25_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00249;src:url('chunks/assets/font_c8af5dbdf56ac9c29ced0b81.woff2')format("woff");}.ff26_c00249{font-family:ff26_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00249;src:url('chunks/assets/font_02aa0c4fab8107eeb7eb667e.woff2')format("woff");}.ff27_c00249{font-family:ff27_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00249;src:url('chunks/assets/font_8aa43cb1c0cf507c12584128.woff2')format("woff");}.ff28_c00249{font-family:ff28_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00249;src:url('chunks/assets/font_6bf7477854955ff14ead4e60.woff2')format("woff");}.ff29_c00249{font-family:ff29_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00249;src:url('chunks/assets/font_638414f90948310f374d891e.woff2')format("woff");}.ff2a_c00249{font-family:ff2a_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00249;src:url('chunks/assets/font_cee239f715ae838b18b5aed6.woff2')format("woff");}.ff2b_c00249{font-family:ff2b_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00249;src:url('chunks/assets/font_5f34f0e3dec6d5e910094060.woff2')format("woff");}.ff2c_c00249{font-family:ff2c_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00249;src:url('chunks/assets/font_82884aba793534ac14f6a815.woff2')format("woff");}.ff2d_c00249{font-family:ff2d_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00249;src:url('chunks/assets/font_6d2dc044fcdbe7f5de9b309e.woff2')format("woff");}.ff2e_c00249{font-family:ff2e_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:ff2f_c00249;src:url('chunks/assets/font_7c319d760fb547333dea283b.woff2')format("woff");}.ff2f_c00249{font-family:ff2f_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00249;src:url('chunks/assets/font_b4a9ac3cb10ef6bda33439ee.woff2')format("woff");}.ff30_c00249{font-family:ff30_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00249;src:url('chunks/assets/font_f2485bf0940be6fd3c624905.woff2')format("woff");}.ff31_c00249{font-family:ff31_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00249;src:url('chunks/assets/font_582e29cde14c0198f88d96a1.woff2')format("woff");}.ff32_c00249{font-family:ff32_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00249;src:url('chunks/assets/font_68f0d09f35b3b4e57f83399d.woff2')format("woff");}.ff33_c00249{font-family:ff33_c00249;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00249{letter-spacing:0.000000px;}
.ls0_c00249{letter-spacing:0.072000px;}
.ls2_c00249{letter-spacing:9.511200px;}
.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;}
}
.ws1_c00249{word-spacing:-18.000000px;}
.ws0_c00249{word-spacing:-0.072000px;}
.ws2_c00249{word-spacing:0.000000px;}
._6_c00249{margin-left:-9.540000px;}
._1_c00249{width:1.116000px;}
._0_c00249{width:2.584800px;}
._3_c00249{width:4.161600px;}
._8_c00249{width:5.320800px;}
._4_c00249{width:6.660000px;}
._5_c00249{width:8.474400px;}
._2_c00249{width:9.576000px;}
._7_c00249{width:13.104000px;}
._a_c00249{width:14.860800px;}
._9_c00249{width:15.984000px;}
.fc1_c00249{color:transparent;}
.fc0_c00249{color:rgb(0,0,0);}
.fs1_c00249{font-size:64.800000px;}
.fs0_c00249{font-size:72.000000px;}
.y0_c00249{bottom:0.000000px;}
.y5_c00249{bottom:5.040000px;}
.y1_c00249{bottom:12.735000px;}
.y3_c00249{bottom:45.045000px;}
.y4_c00249{bottom:52.740000px;}
.y21_c00249{bottom:110.565000px;}
.y20_c00249{bottom:146.565000px;}
.y1f_c00249{bottom:182.565000px;}
.y1e_c00249{bottom:218.565000px;}
.y1d_c00249{bottom:254.565000px;}
.y1c_c00249{bottom:290.565000px;}
.y1b_c00249{bottom:326.565000px;}
.y1a_c00249{bottom:362.565000px;}
.y19_c00249{bottom:398.565000px;}
.y18_c00249{bottom:434.565000px;}
.y17_c00249{bottom:470.565000px;}
.y16_c00249{bottom:506.565000px;}
.y15_c00249{bottom:542.565000px;}
.y14_c00249{bottom:578.565000px;}
.y13_c00249{bottom:614.565000px;}
.y12_c00249{bottom:650.565000px;}
.y11_c00249{bottom:686.565000px;}
.y10_c00249{bottom:722.565000px;}
.yf_c00249{bottom:758.565000px;}
.ye_c00249{bottom:794.565000px;}
.yd_c00249{bottom:830.565000px;}
.yc_c00249{bottom:866.565000px;}
.yb_c00249{bottom:902.565000px;}
.ya_c00249{bottom:938.565000px;}
.y9_c00249{bottom:974.565000px;}
.y8_c00249{bottom:1010.565000px;}
.y7_c00249{bottom:1046.565000px;}
.y6_c00249{bottom:1082.565000px;}
.y2_c00249{bottom:1165.365000px;}
.h4_c00249{height:20.880000px;}
.h3_c00249{height:70.664062px;}
.h6_c00249{height:71.824219px;}
.h5_c00249{height:74.004654px;}
.h2_c00249{height:1237.365000px;}
.h0_c00249{height:1262.835000px;}
.h1_c00249{height:1263.000000px;}
.w3_c00249{width:27.000000px;}
.w2_c00249{width:867.465000px;}
.w0_c00249{width:892.935000px;}
.w1_c00249{width:893.250000px;}
.x0_c00249{left:0.000000px;}
.x1_c00249{left:12.735000px;}
.x3_c00249{left:95.406300px;}
.x5_c00249{left:149.400150px;}
.x4_c00249{left:433.215000px;}
.x2_c00249{left:878.550300px;}
@media print{
.v0_c00249{vertical-align:0.000000pt;}
.ls1_c00249{letter-spacing:0.000000pt;}
.ls0_c00249{letter-spacing:0.064000pt;}
.ls2_c00249{letter-spacing:8.454400pt;}
.ws1_c00249{word-spacing:-16.000000pt;}
.ws0_c00249{word-spacing:-0.064000pt;}
.ws2_c00249{word-spacing:0.000000pt;}
._6_c00249{margin-left:-8.480000pt;}
._1_c00249{width:0.992000pt;}
._0_c00249{width:2.297600pt;}
._3_c00249{width:3.699200pt;}
._8_c00249{width:4.729600pt;}
._4_c00249{width:5.920000pt;}
._5_c00249{width:7.532800pt;}
._2_c00249{width:8.512000pt;}
._7_c00249{width:11.648000pt;}
._a_c00249{width:13.209600pt;}
._9_c00249{width:14.208000pt;}
.fs1_c00249{font-size:57.600000pt;}
.fs0_c00249{font-size:64.000000pt;}
.y0_c00249{bottom:0.000000pt;}
.y5_c00249{bottom:4.480000pt;}
.y1_c00249{bottom:11.320000pt;}
.y3_c00249{bottom:40.040000pt;}
.y4_c00249{bottom:46.880000pt;}
.y21_c00249{bottom:98.280000pt;}
.y20_c00249{bottom:130.280000pt;}
.y1f_c00249{bottom:162.280000pt;}
.y1e_c00249{bottom:194.280000pt;}
.y1d_c00249{bottom:226.280000pt;}
.y1c_c00249{bottom:258.280000pt;}
.y1b_c00249{bottom:290.280000pt;}
.y1a_c00249{bottom:322.280000pt;}
.y19_c00249{bottom:354.280000pt;}
.y18_c00249{bottom:386.280000pt;}
.y17_c00249{bottom:418.280000pt;}
.y16_c00249{bottom:450.280000pt;}
.y15_c00249{bottom:482.280000pt;}
.y14_c00249{bottom:514.280000pt;}
.y13_c00249{bottom:546.280000pt;}
.y12_c00249{bottom:578.280000pt;}
.y11_c00249{bottom:610.280000pt;}
.y10_c00249{bottom:642.280000pt;}
.yf_c00249{bottom:674.280000pt;}
.ye_c00249{bottom:706.280000pt;}
.yd_c00249{bottom:738.280000pt;}
.yc_c00249{bottom:770.280000pt;}
.yb_c00249{bottom:802.280000pt;}
.ya_c00249{bottom:834.280000pt;}
.y9_c00249{bottom:866.280000pt;}
.y8_c00249{bottom:898.280000pt;}
.y7_c00249{bottom:930.280000pt;}
.y6_c00249{bottom:962.280000pt;}
.y2_c00249{bottom:1035.880000pt;}
.h4_c00249{height:18.560000pt;}
.h3_c00249{height:62.812500pt;}
.h6_c00249{height:63.843750pt;}
.h5_c00249{height:65.781915pt;}
.h2_c00249{height:1099.880000pt;}
.h0_c00249{height:1122.520000pt;}
.h1_c00249{height:1122.666667pt;}
.w3_c00249{width:24.000000pt;}
.w2_c00249{width:771.080000pt;}
.w0_c00249{width:793.720000pt;}
.w1_c00249{width:794.000000pt;}
.x0_c00249{left:0.000000pt;}
.x1_c00249{left:11.320000pt;}
.x3_c00249{left:84.805600pt;}
.x5_c00249{left:132.800133pt;}
.x4_c00249{left:385.080000pt;}
.x2_c00249{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_23757125aca08c3627ccf19c.woff2')format("woff");}.ff1_c00250{font-family:ff1_c00250;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00250;src:url('chunks/assets/font_1f90042f190265e035dde1db.woff2')format("woff");}.ff2_c00250{font-family:ff2_c00250;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00250;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00250{font-family:ff3_c00250;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00250;src:url('chunks/assets/font_cee239f715ae838b18b5aed6.woff2')format("woff");}.ff4_c00250{font-family:ff4_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00250;src:url('chunks/assets/font_8df239127d68a4be861a06b9.woff2')format("woff");}.ff5_c00250{font-family:ff5_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00250;src:url('chunks/assets/font_82884aba793534ac14f6a815.woff2')format("woff");}.ff6_c00250{font-family:ff6_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00250;src:url('chunks/assets/font_845e1b0ff457acca9545394f.woff2')format("woff");}.ff7_c00250{font-family:ff7_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:ff8_c00250;src:url('chunks/assets/font_3ede0df4f007c8cd3f9914ac.woff2')format("woff");}.ff8_c00250{font-family:ff8_c00250;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00250;src:url('chunks/assets/font_39a4515501023c0ec5596894.woff2')format("woff");}.ff9_c00250{font-family:ff9_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:ffa_c00250;src:url('chunks/assets/font_c0302acbc53e0586a2c908dc.woff2')format("woff");}.ffa_c00250{font-family:ffa_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00250;src:url('chunks/assets/font_76219084a59763073332d5cc.woff2')format("woff");}.ffb_c00250{font-family:ffb_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00250;src:url('chunks/assets/font_20c397592ac875bdd0234fd9.woff2')format("woff");}.ffc_c00250{font-family:ffc_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00250;src:url('chunks/assets/font_b45ca22e3344831d9b3a2cd0.woff2')format("woff");}.ffd_c00250{font-family:ffd_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00250;src:url('chunks/assets/font_cee239f715ae838b18b5aed6.woff2')format("woff");}.ffe_c00250{font-family:ffe_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00250;src:url('chunks/assets/font_5599ff8fe183453d3f32a7b9.woff2')format("woff");}.fff_c00250{font-family:fff_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00250;src:url('chunks/assets/font_82884aba793534ac14f6a815.woff2')format("woff");}.ff10_c00250{font-family:ff10_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00250;src:url('chunks/assets/font_a27be2adb38ea856d338da54.woff2')format("woff");}.ff11_c00250{font-family:ff11_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:ff12_c00250;src:url('chunks/assets/font_b06e103f614737e42adb8c87.woff2')format("woff");}.ff12_c00250{font-family:ff12_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00250;src:url('chunks/assets/font_661185dac5ed165577908016.woff2')format("woff");}.ff13_c00250{font-family:ff13_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00250;src:url('chunks/assets/font_6f23dd5640b89b54694c1134.woff2')format("woff");}.ff14_c00250{font-family:ff14_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00250;src:url('chunks/assets/font_986d4a60fbf01ede473be716.woff2')format("woff");}.ff15_c00250{font-family:ff15_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00250;src:url('chunks/assets/font_8d25c81a8288d76263dce806.woff2')format("woff");}.ff16_c00250{font-family:ff16_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00250;src:url('chunks/assets/font_2a7e4dbff82af61efd4d04ea.woff2')format("woff");}.ff17_c00250{font-family:ff17_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00250;src:url('chunks/assets/font_82884aba793534ac14f6a815.woff2')format("woff");}.ff18_c00250{font-family:ff18_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00250;src:url('chunks/assets/font_874decd187b79d01c067abaa.woff2')format("woff");}.ff19_c00250{font-family:ff19_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:ff1a_c00250;src:url('chunks/assets/font_deea3bac43fc748c77ae8e39.woff2')format("woff");}.ff1a_c00250{font-family:ff1a_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00250;src:url('chunks/assets/font_d092399054671bd7f234d00d.woff2')format("woff");}.ff1b_c00250{font-family:ff1b_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00250;src:url('chunks/assets/font_d22daa497cbf693909845c59.woff2')format("woff");}.ff1c_c00250{font-family:ff1c_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00250;src:url('chunks/assets/font_cee239f715ae838b18b5aed6.woff2')format("woff");}.ff1d_c00250{font-family:ff1d_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00250;src:url('chunks/assets/font_4af468c35fb6128c0789cf83.woff2')format("woff");}.ff1e_c00250{font-family:ff1e_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00250;src:url('chunks/assets/font_78239aa779595486d92b0986.woff2')format("woff");}.ff1f_c00250{font-family:ff1f_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00250;src:url('chunks/assets/font_33e02100149f88a280a910f7.woff2')format("woff");}.ff20_c00250{font-family:ff20_c00250;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:ff21_c00250;src:url('chunks/assets/font_4f90b4d3dbb5201af30874f6.woff2')format("woff");}.ff21_c00250{font-family:ff21_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:ff22_c00250;src:url('chunks/assets/font_8d6d3f86b013c6bc43777fdd.woff2')format("woff");}.ff22_c00250{font-family:ff22_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00250;src:url('chunks/assets/font_74e8abcca9ec647a5a855f87.woff2')format("woff");}.ff23_c00250{font-family:ff23_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00250;src:url('chunks/assets/font_611172bf2ce9f13bb3bfac29.woff2')format("woff");}.ff24_c00250{font-family:ff24_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00250;src:url('chunks/assets/font_22c4b10c7422bf8334e9953d.woff2')format("woff");}.ff25_c00250{font-family:ff25_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00250;src:url('chunks/assets/font_b0a0d256aa810d53d22cc383.woff2')format("woff");}.ff26_c00250{font-family:ff26_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00250;src:url('chunks/assets/font_90a7b24837aae963c318c881.woff2')format("woff");}.ff27_c00250{font-family:ff27_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00250;src:url('chunks/assets/font_fce6c35425c02a32701583e3.woff2')format("woff");}.ff28_c00250{font-family:ff28_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00250;src:url('chunks/assets/font_d36f19b29521a7580c74098e.woff2')format("woff");}.ff29_c00250{font-family:ff29_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00250;src:url('chunks/assets/font_a42deecb7cbb2eccfe9cff46.woff2')format("woff");}.ff2a_c00250{font-family:ff2a_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00250;src:url('chunks/assets/font_ff0579f1dea5732d58e3c2df.woff2')format("woff");}.ff2b_c00250{font-family:ff2b_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00250;src:url('chunks/assets/font_684d06c3f65fcd5034c62f17.woff2')format("woff");}.ff2c_c00250{font-family:ff2c_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00250;src:url('chunks/assets/font_d6bc9140b7be6caf47b62e93.woff2')format("woff");}.ff2d_c00250{font-family:ff2d_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00250;src:url('chunks/assets/font_a2d08ee5e9100799883c3405.woff2')format("woff");}.ff2e_c00250{font-family:ff2e_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00250;src:url('chunks/assets/font_ffd5c5bb05b57606141b938e.woff2')format("woff");}.ff2f_c00250{font-family:ff2f_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00250;src:url('chunks/assets/font_034dd182059a2770c2fdec9d.woff2')format("woff");}.ff30_c00250{font-family:ff30_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00250;src:url('chunks/assets/font_4ec4b4db05a0c21a32947f67.woff2')format("woff");}.ff31_c00250{font-family:ff31_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00250;src:url('chunks/assets/font_d37e03b1d5f62c3f7761e176.woff2')format("woff");}.ff32_c00250{font-family:ff32_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00250;src:url('chunks/assets/font_07714378e0b7abbde8273612.woff2')format("woff");}.ff33_c00250{font-family:ff33_c00250;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00250{letter-spacing:-0.655200px;}
.ls5_c00250{letter-spacing:-0.014400px;}
.ls2_c00250{letter-spacing:0.000000px;}
.ls4_c00250{letter-spacing:0.021600px;}
.ls0_c00250{letter-spacing:0.576000px;}
.ls1_c00250{letter-spacing:7.185600px;}
.sc__c00250{text-shadow:none;}
.sc0_c00250{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00250{-webkit-text-stroke:0px transparent;}
.sc0_c00250{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00250{word-spacing:-0.072000px;}
.ws2_c00250{word-spacing:0.000000px;}
.ws1_c00250{word-spacing:0.583200px;}
._0_c00250{width:1.288800px;}
._2_c00250{width:2.376000px;}
._9_c00250{width:3.758400px;}
._1_c00250{width:4.795200px;}
._6_c00250{width:5.961600px;}
._5_c00250{width:7.272000px;}
._8_c00250{width:9.129600px;}
._a_c00250{width:11.253600px;}
._7_c00250{width:14.644800px;}
._b_c00250{width:16.048800px;}
._4_c00250{width:19.440000px;}
._3_c00250{width:40.816800px;}
.fc1_c00250{color:transparent;}
.fc0_c00250{color:rgb(0,0,0);}
.fs1_c00250{font-size:64.800000px;}
.fs0_c00250{font-size:72.000000px;}
.y0_c00250{bottom:0.000000px;}
.y5_c00250{bottom:5.040000px;}
.y1_c00250{bottom:12.735000px;}
.y3_c00250{bottom:45.045000px;}
.y4_c00250{bottom:52.740000px;}
.y21_c00250{bottom:110.565000px;}
.y20_c00250{bottom:146.565000px;}
.y1f_c00250{bottom:182.565000px;}
.y1e_c00250{bottom:218.565000px;}
.y1d_c00250{bottom:254.565000px;}
.y1c_c00250{bottom:290.565000px;}
.y1b_c00250{bottom:326.565000px;}
.y1a_c00250{bottom:362.565000px;}
.y19_c00250{bottom:398.565000px;}
.y18_c00250{bottom:434.565000px;}
.y17_c00250{bottom:470.565000px;}
.y16_c00250{bottom:506.565000px;}
.y15_c00250{bottom:542.565000px;}
.y14_c00250{bottom:578.565000px;}
.y13_c00250{bottom:614.565000px;}
.y12_c00250{bottom:650.565000px;}
.y11_c00250{bottom:686.565000px;}
.y10_c00250{bottom:722.565000px;}
.yf_c00250{bottom:758.565000px;}
.ye_c00250{bottom:794.565000px;}
.yd_c00250{bottom:830.565000px;}
.yc_c00250{bottom:866.565000px;}
.yb_c00250{bottom:902.565000px;}
.ya_c00250{bottom:938.565000px;}
.y9_c00250{bottom:974.565000px;}
.y8_c00250{bottom:1010.565000px;}
.y7_c00250{bottom:1046.565000px;}
.y6_c00250{bottom:1082.565000px;}
.y2_c00250{bottom:1165.365000px;}
.h4_c00250{height:20.880000px;}
.h5_c00250{height:70.664062px;}
.h3_c00250{height:74.004654px;}
.h2_c00250{height:1237.365000px;}
.h0_c00250{height:1262.835000px;}
.h1_c00250{height:1263.000000px;}
.w3_c00250{width:27.000000px;}
.w2_c00250{width:867.465000px;}
.w0_c00250{width:892.935000px;}
.w1_c00250{width:893.250000px;}
.x0_c00250{left:0.000000px;}
.x1_c00250{left:12.735000px;}
.x3_c00250{left:95.406300px;}
.x5_c00250{left:149.400150px;}
.x4_c00250{left:433.215000px;}
.x2_c00250{left:878.550300px;}
@media print{
.v0_c00250{vertical-align:0.000000pt;}
.ls3_c00250{letter-spacing:-0.582400pt;}
.ls5_c00250{letter-spacing:-0.012800pt;}
.ls2_c00250{letter-spacing:0.000000pt;}
.ls4_c00250{letter-spacing:0.019200pt;}
.ls0_c00250{letter-spacing:0.512000pt;}
.ls1_c00250{letter-spacing:6.387200pt;}
.ws0_c00250{word-spacing:-0.064000pt;}
.ws2_c00250{word-spacing:0.000000pt;}
.ws1_c00250{word-spacing:0.518400pt;}
._0_c00250{width:1.145600pt;}
._2_c00250{width:2.112000pt;}
._9_c00250{width:3.340800pt;}
._1_c00250{width:4.262400pt;}
._6_c00250{width:5.299200pt;}
._5_c00250{width:6.464000pt;}
._8_c00250{width:8.115200pt;}
._a_c00250{width:10.003200pt;}
._7_c00250{width:13.017600pt;}
._b_c00250{width:14.265600pt;}
._4_c00250{width:17.280000pt;}
._3_c00250{width:36.281600pt;}
.fs1_c00250{font-size:57.600000pt;}
.fs0_c00250{font-size:64.000000pt;}
.y0_c00250{bottom:0.000000pt;}
.y5_c00250{bottom:4.480000pt;}
.y1_c00250{bottom:11.320000pt;}
.y3_c00250{bottom:40.040000pt;}
.y4_c00250{bottom:46.880000pt;}
.y21_c00250{bottom:98.280000pt;}
.y20_c00250{bottom:130.280000pt;}
.y1f_c00250{bottom:162.280000pt;}
.y1e_c00250{bottom:194.280000pt;}
.y1d_c00250{bottom:226.280000pt;}
.y1c_c00250{bottom:258.280000pt;}
.y1b_c00250{bottom:290.280000pt;}
.y1a_c00250{bottom:322.280000pt;}
.y19_c00250{bottom:354.280000pt;}
.y18_c00250{bottom:386.280000pt;}
.y17_c00250{bottom:418.280000pt;}
.y16_c00250{bottom:450.280000pt;}
.y15_c00250{bottom:482.280000pt;}
.y14_c00250{bottom:514.280000pt;}
.y13_c00250{bottom:546.280000pt;}
.y12_c00250{bottom:578.280000pt;}
.y11_c00250{bottom:610.280000pt;}
.y10_c00250{bottom:642.280000pt;}
.yf_c00250{bottom:674.280000pt;}
.ye_c00250{bottom:706.280000pt;}
.yd_c00250{bottom:738.280000pt;}
.yc_c00250{bottom:770.280000pt;}
.yb_c00250{bottom:802.280000pt;}
.ya_c00250{bottom:834.280000pt;}
.y9_c00250{bottom:866.280000pt;}
.y8_c00250{bottom:898.280000pt;}
.y7_c00250{bottom:930.280000pt;}
.y6_c00250{bottom:962.280000pt;}
.y2_c00250{bottom:1035.880000pt;}
.h4_c00250{height:18.560000pt;}
.h5_c00250{height:62.812500pt;}
.h3_c00250{height:65.781915pt;}
.h2_c00250{height:1099.880000pt;}
.h0_c00250{height:1122.520000pt;}
.h1_c00250{height:1122.666667pt;}
.w3_c00250{width:24.000000pt;}
.w2_c00250{width:771.080000pt;}
.w0_c00250{width:793.720000pt;}
.w1_c00250{width:794.000000pt;}
.x0_c00250{left:0.000000pt;}
.x1_c00250{left:11.320000pt;}
.x3_c00250{left:84.805600pt;}
.x5_c00250{left:132.800133pt;}
.x4_c00250{left:385.080000pt;}
.x2_c00250{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00251{font-family:ff1_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00251;src:url('chunks/assets/font_d7cac11daed52ff8495ce0f3.woff2')format("woff");}.ff2_c00251{font-family:ff2_c00251;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00251;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00251{font-family:ff3_c00251;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00251;src:url('chunks/assets/font_d232a7add3b99bbe05b296a0.woff2')format("woff");}.ff4_c00251{font-family:ff4_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00251;src:url('chunks/assets/font_bc68ad508012d0904b79084c.woff2')format("woff");}.ff5_c00251{font-family:ff5_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00251;src:url('chunks/assets/font_4d3b93110010df926ed58d85.woff2')format("woff");}.ff6_c00251{font-family:ff6_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00251;src:url('chunks/assets/font_8ee0ade0e6e0a4ffdb069fb0.woff2')format("woff");}.ff7_c00251{font-family:ff7_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00251;src:url('chunks/assets/font_e76f6477e9d370b14229122b.woff2')format("woff");}.ff8_c00251{font-family:ff8_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00251;src:url('chunks/assets/font_3eb217e73d3753dae68b90de.woff2')format("woff");}.ff9_c00251{font-family:ff9_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00251;src:url('chunks/assets/font_c510cb9965f92fe58eb6acb4.woff2')format("woff");}.ffa_c00251{font-family:ffa_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00251;src:url('chunks/assets/font_8bd2c87a305c1f6750ffe48f.woff2')format("woff");}.ffb_c00251{font-family:ffb_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00251;src:url('chunks/assets/font_92eef101d2ff363df191184b.woff2')format("woff");}.ffc_c00251{font-family:ffc_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00251;src:url('chunks/assets/font_b38add51ffb9ca40220d923d.woff2')format("woff");}.ffd_c00251{font-family:ffd_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00251;src:url('chunks/assets/font_c1fe8a82b9809b72b4070548.woff2')format("woff");}.ffe_c00251{font-family:ffe_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00251;src:url('chunks/assets/font_aace193ea8e0ab1f82655477.woff2')format("woff");}.fff_c00251{font-family:fff_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00251;src:url('chunks/assets/font_e65a64c78436f4241226e32a.woff2')format("woff");}.ff10_c00251{font-family:ff10_c00251;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00251;src:url('chunks/assets/font_48f519685b7e8a2a0f81e54e.woff2')format("woff");}.ff11_c00251{font-family:ff11_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00251;src:url('chunks/assets/font_e6ad54622709ea8e9277d777.woff2')format("woff");}.ff12_c00251{font-family:ff12_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00251;src:url('chunks/assets/font_d0b6785387f8995e910757ac.woff2')format("woff");}.ff13_c00251{font-family:ff13_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00251;src:url('chunks/assets/font_a01c2677763c0cfa0aec88d3.woff2')format("woff");}.ff14_c00251{font-family:ff14_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00251;src:url('chunks/assets/font_089b21d75840725eb41f3161.woff2')format("woff");}.ff15_c00251{font-family:ff15_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00251;src:url('chunks/assets/font_9d3eb3ceb74736d041ba4ee9.woff2')format("woff");}.ff16_c00251{font-family:ff16_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00251;src:url('chunks/assets/font_3679b5f0ce285836287c0475.woff2')format("woff");}.ff17_c00251{font-family:ff17_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00251;src:url('chunks/assets/font_b147ea835a6cf3b88682b10d.woff2')format("woff");}.ff18_c00251{font-family:ff18_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00251;src:url('chunks/assets/font_a01c2677763c0cfa0aec88d3.woff2')format("woff");}.ff19_c00251{font-family:ff19_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00251;src:url('chunks/assets/font_22d2fb03e2fd0874e89de2f6.woff2')format("woff");}.ff1a_c00251{font-family:ff1a_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00251;src:url('chunks/assets/font_f36394cf722457d9747ceb36.woff2')format("woff");}.ff1b_c00251{font-family:ff1b_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00251;src:url('chunks/assets/font_3db8aa2ea1a699486c1ebb23.woff2')format("woff");}.ff1c_c00251{font-family:ff1c_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00251;src:url('chunks/assets/font_f8ef63b292f9d79d241d47bc.woff2')format("woff");}.ff1d_c00251{font-family:ff1d_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00251;src:url('chunks/assets/font_cf9d2479ca265dd7b6216bd5.woff2')format("woff");}.ff1e_c00251{font-family:ff1e_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00251;src:url('chunks/assets/font_b9472a5046550fb187113419.woff2')format("woff");}.ff1f_c00251{font-family:ff1f_c00251;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00251;src:url('chunks/assets/font_a303ac878edc0dc49be893ef.woff2')format("woff");}.ff20_c00251{font-family:ff20_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00251;src:url('chunks/assets/font_62b01ba0ba682d1f341a9f3b.woff2')format("woff");}.ff21_c00251{font-family:ff21_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00251;src:url('chunks/assets/font_55b8fafeace171059a626e3c.woff2')format("woff");}.ff22_c00251{font-family:ff22_c00251;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00251;src:url('chunks/assets/font_01946dc86d007ace01e2133e.woff2')format("woff");}.ff23_c00251{font-family:ff23_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00251;src:url('chunks/assets/font_1bce4a57c990376373137cde.woff2')format("woff");}.ff24_c00251{font-family:ff24_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00251;src:url('chunks/assets/font_b76d1fbc212a98e875d843a7.woff2')format("woff");}.ff25_c00251{font-family:ff25_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00251;src:url('chunks/assets/font_9f0a0d646fda3de27135eb95.woff2')format("woff");}.ff26_c00251{font-family:ff26_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00251;src:url('chunks/assets/font_3670ba5595f53195dac8a40f.woff2')format("woff");}.ff27_c00251{font-family:ff27_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00251;src:url('chunks/assets/font_0f23bade9286cbd7ac6e28e1.woff2')format("woff");}.ff28_c00251{font-family:ff28_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00251;src:url('chunks/assets/font_c247dd81a67a32bd9d236021.woff2')format("woff");}.ff29_c00251{font-family:ff29_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00251;src:url('chunks/assets/font_f34508cea4526b5a3c36ef3d.woff2')format("woff");}.ff2a_c00251{font-family:ff2a_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00251;src:url('chunks/assets/font_60455af9ddfc3cc97be6bbda.woff2')format("woff");}.ff2b_c00251{font-family:ff2b_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00251;src:url('chunks/assets/font_edab3bc0fc70fe3cb68755fa.woff2')format("woff");}.ff2c_c00251{font-family:ff2c_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00251;src:url('chunks/assets/font_63398c2cbd53be7651e5a746.woff2')format("woff");}.ff2d_c00251{font-family:ff2d_c00251;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00251;src:url('chunks/assets/font_a6c6f87b35ebd50d1549d33a.woff2')format("woff");}.ff2e_c00251{font-family:ff2e_c00251;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00251{letter-spacing:0.000000px;}
.ls1_c00251{letter-spacing:0.072000px;}
.ls0_c00251{letter-spacing:23.400000px;}
.sc__c00251{text-shadow:none;}
.sc0_c00251{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00251{-webkit-text-stroke:0px transparent;}
.sc0_c00251{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00251{word-spacing:-0.072000px;}
.ws1_c00251{word-spacing:0.000000px;}
._2_c00251{width:1.368000px;}
._0_c00251{width:3.175200px;}
._1_c00251{width:4.917600px;}
._6_c00251{width:7.056000px;}
._4_c00251{width:8.157600px;}
._5_c00251{width:9.410400px;}
._3_c00251{width:13.896000px;}
._7_c00251{width:15.076800px;}
._9_c00251{width:16.207200px;}
._8_c00251{width:23.436000px;}
.fc1_c00251{color:transparent;}
.fc0_c00251{color:rgb(0,0,0);}
.fs1_c00251{font-size:64.800000px;}
.fs0_c00251{font-size:72.000000px;}
.y0_c00251{bottom:0.000000px;}
.y5_c00251{bottom:5.040000px;}
.y1_c00251{bottom:12.735000px;}
.y3_c00251{bottom:45.045000px;}
.y4_c00251{bottom:52.740000px;}
.y21_c00251{bottom:110.565000px;}
.y20_c00251{bottom:146.565000px;}
.y1f_c00251{bottom:182.565000px;}
.y1e_c00251{bottom:218.565000px;}
.y1d_c00251{bottom:254.565000px;}
.y1c_c00251{bottom:290.565000px;}
.y1b_c00251{bottom:326.565000px;}
.y1a_c00251{bottom:362.565000px;}
.y19_c00251{bottom:398.565000px;}
.y18_c00251{bottom:434.565000px;}
.y17_c00251{bottom:470.565000px;}
.y16_c00251{bottom:506.565000px;}
.y15_c00251{bottom:542.565000px;}
.y14_c00251{bottom:578.565000px;}
.y13_c00251{bottom:614.565000px;}
.y12_c00251{bottom:650.565000px;}
.y11_c00251{bottom:686.565000px;}
.y10_c00251{bottom:722.565000px;}
.yf_c00251{bottom:758.565000px;}
.ye_c00251{bottom:794.565000px;}
.yd_c00251{bottom:830.565000px;}
.yc_c00251{bottom:866.565000px;}
.yb_c00251{bottom:902.565000px;}
.ya_c00251{bottom:938.565000px;}
.y9_c00251{bottom:974.565000px;}
.y8_c00251{bottom:1010.565000px;}
.y7_c00251{bottom:1046.565000px;}
.y6_c00251{bottom:1082.565000px;}
.y2_c00251{bottom:1165.365000px;}
.h4_c00251{height:20.880000px;}
.h3_c00251{height:70.664062px;}
.h5_c00251{height:74.004654px;}
.h2_c00251{height:1237.365000px;}
.h0_c00251{height:1262.835000px;}
.h1_c00251{height:1263.000000px;}
.w3_c00251{width:27.000000px;}
.w2_c00251{width:867.465000px;}
.w0_c00251{width:892.935000px;}
.w1_c00251{width:893.250000px;}
.x0_c00251{left:0.000000px;}
.x1_c00251{left:12.735000px;}
.x3_c00251{left:95.406300px;}
.x5_c00251{left:149.400150px;}
.x4_c00251{left:433.215000px;}
.x2_c00251{left:878.550300px;}
@media print{
.v0_c00251{vertical-align:0.000000pt;}
.ls2_c00251{letter-spacing:0.000000pt;}
.ls1_c00251{letter-spacing:0.064000pt;}
.ls0_c00251{letter-spacing:20.800000pt;}
.ws0_c00251{word-spacing:-0.064000pt;}
.ws1_c00251{word-spacing:0.000000pt;}
._2_c00251{width:1.216000pt;}
._0_c00251{width:2.822400pt;}
._1_c00251{width:4.371200pt;}
._6_c00251{width:6.272000pt;}
._4_c00251{width:7.251200pt;}
._5_c00251{width:8.364800pt;}
._3_c00251{width:12.352000pt;}
._7_c00251{width:13.401600pt;}
._9_c00251{width:14.406400pt;}
._8_c00251{width:20.832000pt;}
.fs1_c00251{font-size:57.600000pt;}
.fs0_c00251{font-size:64.000000pt;}
.y0_c00251{bottom:0.000000pt;}
.y5_c00251{bottom:4.480000pt;}
.y1_c00251{bottom:11.320000pt;}
.y3_c00251{bottom:40.040000pt;}
.y4_c00251{bottom:46.880000pt;}
.y21_c00251{bottom:98.280000pt;}
.y20_c00251{bottom:130.280000pt;}
.y1f_c00251{bottom:162.280000pt;}
.y1e_c00251{bottom:194.280000pt;}
.y1d_c00251{bottom:226.280000pt;}
.y1c_c00251{bottom:258.280000pt;}
.y1b_c00251{bottom:290.280000pt;}
.y1a_c00251{bottom:322.280000pt;}
.y19_c00251{bottom:354.280000pt;}
.y18_c00251{bottom:386.280000pt;}
.y17_c00251{bottom:418.280000pt;}
.y16_c00251{bottom:450.280000pt;}
.y15_c00251{bottom:482.280000pt;}
.y14_c00251{bottom:514.280000pt;}
.y13_c00251{bottom:546.280000pt;}
.y12_c00251{bottom:578.280000pt;}
.y11_c00251{bottom:610.280000pt;}
.y10_c00251{bottom:642.280000pt;}
.yf_c00251{bottom:674.280000pt;}
.ye_c00251{bottom:706.280000pt;}
.yd_c00251{bottom:738.280000pt;}
.yc_c00251{bottom:770.280000pt;}
.yb_c00251{bottom:802.280000pt;}
.ya_c00251{bottom:834.280000pt;}
.y9_c00251{bottom:866.280000pt;}
.y8_c00251{bottom:898.280000pt;}
.y7_c00251{bottom:930.280000pt;}
.y6_c00251{bottom:962.280000pt;}
.y2_c00251{bottom:1035.880000pt;}
.h4_c00251{height:18.560000pt;}
.h3_c00251{height:62.812500pt;}
.h5_c00251{height:65.781915pt;}
.h2_c00251{height:1099.880000pt;}
.h0_c00251{height:1122.520000pt;}
.h1_c00251{height:1122.666667pt;}
.w3_c00251{width:24.000000pt;}
.w2_c00251{width:771.080000pt;}
.w0_c00251{width:793.720000pt;}
.w1_c00251{width:794.000000pt;}
.x0_c00251{left:0.000000pt;}
.x1_c00251{left:11.320000pt;}
.x3_c00251{left:84.805600pt;}
.x5_c00251{left:132.800133pt;}
.x4_c00251{left:385.080000pt;}
.x2_c00251{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00252{font-family:ff1_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00252;src:url('chunks/assets/font_7e7cc7f170c1e0bbd93ad6a1.woff2')format("woff");}.ff2_c00252{font-family:ff2_c00252;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00252;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00252{font-family:ff3_c00252;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00252;src:url('chunks/assets/font_0ce2266d5fbf98747029e8f6.woff2')format("woff");}.ff4_c00252{font-family:ff4_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00252;src:url('chunks/assets/font_9f9127ee2e02d77aeff2902b.woff2')format("woff");}.ff5_c00252{font-family:ff5_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00252;src:url('chunks/assets/font_0cb81877203fe75574ab7467.woff2')format("woff");}.ff6_c00252{font-family:ff6_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00252;src:url('chunks/assets/font_881fcb6d5a01f7db5565d02a.woff2')format("woff");}.ff7_c00252{font-family:ff7_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00252;src:url('chunks/assets/font_84af7f435ef064e99bde9637.woff2')format("woff");}.ff8_c00252{font-family:ff8_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00252;src:url('chunks/assets/font_ea21d05d7c9a725b629ae7bb.woff2')format("woff");}.ff9_c00252{font-family:ff9_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00252;src:url('chunks/assets/font_df31e19fc26caa744d452f1f.woff2')format("woff");}.ffa_c00252{font-family:ffa_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00252;src:url('chunks/assets/font_be1300e6e47b141c910a978d.woff2')format("woff");}.ffb_c00252{font-family:ffb_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00252;src:url('chunks/assets/font_4921ec98e43cb99707f337fc.woff2')format("woff");}.ffc_c00252{font-family:ffc_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00252;src:url('chunks/assets/font_f721b7d2d47d4e891db9bb28.woff2')format("woff");}.ffd_c00252{font-family:ffd_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00252;src:url('chunks/assets/font_52a8a408b7375cacdefa5de8.woff2')format("woff");}.ffe_c00252{font-family:ffe_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00252;src:url('chunks/assets/font_be5ad85cf394f0f2aefa72fe.woff2')format("woff");}.fff_c00252{font-family:fff_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00252;src:url('chunks/assets/font_404c7f06bf929e87585bb84e.woff2')format("woff");}.ff10_c00252{font-family:ff10_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00252;src:url('chunks/assets/font_8a11de0a4cd45ebc5f8e0433.woff2')format("woff");}.ff11_c00252{font-family:ff11_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00252;src:url('chunks/assets/font_316a2be2bbddb2724a00057e.woff2')format("woff");}.ff12_c00252{font-family:ff12_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00252;src:url('chunks/assets/font_598e9e1427474c64748f5771.woff2')format("woff");}.ff13_c00252{font-family:ff13_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00252;src:url('chunks/assets/font_48feb9013dfd2651cfc887d3.woff2')format("woff");}.ff14_c00252{font-family:ff14_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00252;src:url('chunks/assets/font_90cd27d85a19a737df36a06f.woff2')format("woff");}.ff15_c00252{font-family:ff15_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00252;src:url('chunks/assets/font_45a1a4d6b12b1a61db3e9f16.woff2')format("woff");}.ff16_c00252{font-family:ff16_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00252;src:url('chunks/assets/font_1143ebd9c6587c7ee59652cb.woff2')format("woff");}.ff17_c00252{font-family:ff17_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00252;src:url('chunks/assets/font_f987c780f09f9771ef2eaf97.woff2')format("woff");}.ff18_c00252{font-family:ff18_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00252;src:url('chunks/assets/font_83b98514d143eb09636abf78.woff2')format("woff");}.ff19_c00252{font-family:ff19_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00252;src:url('chunks/assets/font_fb10eee820b3fb4c932761ac.woff2')format("woff");}.ff1a_c00252{font-family:ff1a_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00252;src:url('chunks/assets/font_39124b22d4109ca8f32327c0.woff2')format("woff");}.ff1b_c00252{font-family:ff1b_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:ff1c_c00252;src:url('chunks/assets/font_e76bc7d3ebd3d6c413b75722.woff2')format("woff");}.ff1c_c00252{font-family:ff1c_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:ff1d_c00252;src:url('chunks/assets/font_29d355b23c1175effb872f0b.woff2')format("woff");}.ff1d_c00252{font-family:ff1d_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:ff1e_c00252;src:url('chunks/assets/font_c19cf3c105109458e499d682.woff2')format("woff");}.ff1e_c00252{font-family:ff1e_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:ff1f_c00252;src:url('chunks/assets/font_b74c37591b936ca98676cd5e.woff2')format("woff");}.ff1f_c00252{font-family:ff1f_c00252;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00252;src:url('chunks/assets/font_cee239f715ae838b18b5aed6.woff2')format("woff");}.ff20_c00252{font-family:ff20_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00252;src:url('chunks/assets/font_c19cf3c105109458e499d682.woff2')format("woff");}.ff21_c00252{font-family:ff21_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:ff22_c00252;src:url('chunks/assets/font_abb376340ee066366abbea62.woff2')format("woff");}.ff22_c00252{font-family:ff22_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00252;src:url('chunks/assets/font_8efc3e418e90b4794eb4df0d.woff2')format("woff");}.ff23_c00252{font-family:ff23_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00252;src:url('chunks/assets/font_c9216a36b83970441928f997.woff2')format("woff");}.ff24_c00252{font-family:ff24_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00252;src:url('chunks/assets/font_327ce75a2dfca47efd0fa857.woff2')format("woff");}.ff25_c00252{font-family:ff25_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00252;src:url('chunks/assets/font_69bba0f0197cdfc5a9d6a99f.woff2')format("woff");}.ff26_c00252{font-family:ff26_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00252;src:url('chunks/assets/font_fc5fdc787d88c75afe82a798.woff2')format("woff");}.ff27_c00252{font-family:ff27_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00252;src:url('chunks/assets/font_d99498a6fe8badcc61b8a6f2.woff2')format("woff");}.ff28_c00252{font-family:ff28_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00252;src:url('chunks/assets/font_d5377b1df866f255adc319af.woff2')format("woff");}.ff29_c00252{font-family:ff29_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00252;src:url('chunks/assets/font_9ce6616dc1ba669391215915.woff2')format("woff");}.ff2a_c00252{font-family:ff2a_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00252;src:url('chunks/assets/font_ecbe066799531ad7f09b540c.woff2')format("woff");}.ff2b_c00252{font-family:ff2b_c00252;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00252{letter-spacing:0.072000px;}
.sc__c00252{text-shadow:none;}
.sc0_c00252{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00252{-webkit-text-stroke:0px transparent;}
.sc0_c00252{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00252{word-spacing:-18.000000px;}
.ws0_c00252{word-spacing:-0.072000px;}
.ws2_c00252{word-spacing:0.000000px;}
._0_c00252{width:1.447200px;}
._1_c00252{width:3.492000px;}
._5_c00252{width:5.241600px;}
._2_c00252{width:6.415200px;}
._4_c00252{width:7.596000px;}
._a_c00252{width:9.331200px;}
._9_c00252{width:10.756800px;}
._7_c00252{width:12.484800px;}
._3_c00252{width:16.977600px;}
._8_c00252{width:21.880800px;}
._6_c00252{width:24.242400px;}
.fc1_c00252{color:transparent;}
.fc0_c00252{color:rgb(0,0,0);}
.fs1_c00252{font-size:64.800000px;}
.fs0_c00252{font-size:72.000000px;}
.y0_c00252{bottom:0.000000px;}
.y5_c00252{bottom:5.040000px;}
.y1_c00252{bottom:12.735000px;}
.y3_c00252{bottom:45.045000px;}
.y4_c00252{bottom:52.740000px;}
.y20_c00252{bottom:146.565000px;}
.y1f_c00252{bottom:182.565000px;}
.y1e_c00252{bottom:218.565000px;}
.y1d_c00252{bottom:254.565000px;}
.y1c_c00252{bottom:290.565000px;}
.y1b_c00252{bottom:326.565000px;}
.y1a_c00252{bottom:362.565000px;}
.y19_c00252{bottom:398.565000px;}
.y18_c00252{bottom:434.565000px;}
.y17_c00252{bottom:470.565000px;}
.y16_c00252{bottom:506.565000px;}
.y15_c00252{bottom:542.565000px;}
.y14_c00252{bottom:578.565000px;}
.y13_c00252{bottom:614.565000px;}
.y12_c00252{bottom:650.565000px;}
.y11_c00252{bottom:686.565000px;}
.y10_c00252{bottom:722.565000px;}
.yf_c00252{bottom:758.565000px;}
.ye_c00252{bottom:794.565000px;}
.yd_c00252{bottom:830.565000px;}
.yc_c00252{bottom:866.565000px;}
.yb_c00252{bottom:902.565000px;}
.ya_c00252{bottom:938.565000px;}
.y9_c00252{bottom:974.565000px;}
.y8_c00252{bottom:1010.565000px;}
.y7_c00252{bottom:1046.565000px;}
.y6_c00252{bottom:1082.565000px;}
.y2_c00252{bottom:1165.365000px;}
.h4_c00252{height:20.880000px;}
.h3_c00252{height:70.664062px;}
.h6_c00252{height:71.824219px;}
.h5_c00252{height:74.004654px;}
.h2_c00252{height:1237.365000px;}
.h0_c00252{height:1262.835000px;}
.h1_c00252{height:1263.000000px;}
.w3_c00252{width:27.000000px;}
.w2_c00252{width:867.465000px;}
.w0_c00252{width:892.935000px;}
.w1_c00252{width:893.250000px;}
.x0_c00252{left:0.000000px;}
.x1_c00252{left:12.735000px;}
.x3_c00252{left:95.406300px;}
.x5_c00252{left:149.400150px;}
.x6_c00252{left:180.450150px;}
.x4_c00252{left:433.215000px;}
.x2_c00252{left:878.550300px;}
@media print{
.v0_c00252{vertical-align:0.000000pt;}
.ls1_c00252{letter-spacing:0.000000pt;}
.ls0_c00252{letter-spacing:0.064000pt;}
.ws1_c00252{word-spacing:-16.000000pt;}
.ws0_c00252{word-spacing:-0.064000pt;}
.ws2_c00252{word-spacing:0.000000pt;}
._0_c00252{width:1.286400pt;}
._1_c00252{width:3.104000pt;}
._5_c00252{width:4.659200pt;}
._2_c00252{width:5.702400pt;}
._4_c00252{width:6.752000pt;}
._a_c00252{width:8.294400pt;}
._9_c00252{width:9.561600pt;}
._7_c00252{width:11.097600pt;}
._3_c00252{width:15.091200pt;}
._8_c00252{width:19.449600pt;}
._6_c00252{width:21.548800pt;}
.fs1_c00252{font-size:57.600000pt;}
.fs0_c00252{font-size:64.000000pt;}
.y0_c00252{bottom:0.000000pt;}
.y5_c00252{bottom:4.480000pt;}
.y1_c00252{bottom:11.320000pt;}
.y3_c00252{bottom:40.040000pt;}
.y4_c00252{bottom:46.880000pt;}
.y20_c00252{bottom:130.280000pt;}
.y1f_c00252{bottom:162.280000pt;}
.y1e_c00252{bottom:194.280000pt;}
.y1d_c00252{bottom:226.280000pt;}
.y1c_c00252{bottom:258.280000pt;}
.y1b_c00252{bottom:290.280000pt;}
.y1a_c00252{bottom:322.280000pt;}
.y19_c00252{bottom:354.280000pt;}
.y18_c00252{bottom:386.280000pt;}
.y17_c00252{bottom:418.280000pt;}
.y16_c00252{bottom:450.280000pt;}
.y15_c00252{bottom:482.280000pt;}
.y14_c00252{bottom:514.280000pt;}
.y13_c00252{bottom:546.280000pt;}
.y12_c00252{bottom:578.280000pt;}
.y11_c00252{bottom:610.280000pt;}
.y10_c00252{bottom:642.280000pt;}
.yf_c00252{bottom:674.280000pt;}
.ye_c00252{bottom:706.280000pt;}
.yd_c00252{bottom:738.280000pt;}
.yc_c00252{bottom:770.280000pt;}
.yb_c00252{bottom:802.280000pt;}
.ya_c00252{bottom:834.280000pt;}
.y9_c00252{bottom:866.280000pt;}
.y8_c00252{bottom:898.280000pt;}
.y7_c00252{bottom:930.280000pt;}
.y6_c00252{bottom:962.280000pt;}
.y2_c00252{bottom:1035.880000pt;}
.h4_c00252{height:18.560000pt;}
.h3_c00252{height:62.812500pt;}
.h6_c00252{height:63.843750pt;}
.h5_c00252{height:65.781915pt;}
.h2_c00252{height:1099.880000pt;}
.h0_c00252{height:1122.520000pt;}
.h1_c00252{height:1122.666667pt;}
.w3_c00252{width:24.000000pt;}
.w2_c00252{width:771.080000pt;}
.w0_c00252{width:793.720000pt;}
.w1_c00252{width:794.000000pt;}
.x0_c00252{left:0.000000pt;}
.x1_c00252{left:11.320000pt;}
.x3_c00252{left:84.805600pt;}
.x5_c00252{left:132.800133pt;}
.x6_c00252{left:160.400133pt;}
.x4_c00252{left:385.080000pt;}
.x2_c00252{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00253{font-family:ff1_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00253;src:url('chunks/assets/font_7f46e8d279ae2f20d041c656.woff2')format("woff");}.ff2_c00253{font-family:ff2_c00253;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00253;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00253{font-family:ff3_c00253;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00253;src:url('chunks/assets/font_fd7ab11b2a8dd20de5b4de47.woff2')format("woff");}.ff4_c00253{font-family:ff4_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00253;src:url('chunks/assets/font_46bf1c20bff9e45bf95fb4f6.woff2')format("woff");}.ff5_c00253{font-family:ff5_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00253;src:url('chunks/assets/font_0c08944447975d2e4c0cfc93.woff2')format("woff");}.ff6_c00253{font-family:ff6_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00253;src:url('chunks/assets/font_c494c122ff5eefd32e6055c5.woff2')format("woff");}.ff7_c00253{font-family:ff7_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00253;src:url('chunks/assets/font_883a7fcce827706b68ec8930.woff2')format("woff");}.ff8_c00253{font-family:ff8_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00253;src:url('chunks/assets/font_ec6f88cb989d69103eece8c9.woff2')format("woff");}.ff9_c00253{font-family:ff9_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00253;src:url('chunks/assets/font_f703cfb4cdd2d79889adfecf.woff2')format("woff");}.ffa_c00253{font-family:ffa_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00253;src:url('chunks/assets/font_093607b4d3d4b4e9ff061ae0.woff2')format("woff");}.ffb_c00253{font-family:ffb_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00253;src:url('chunks/assets/font_92598e12e2f8cc7cb9441523.woff2')format("woff");}.ffc_c00253{font-family:ffc_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00253;src:url('chunks/assets/font_cb81061c47d7f6592782e23b.woff2')format("woff");}.ffd_c00253{font-family:ffd_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00253;src:url('chunks/assets/font_7380a608f523ee9a1bfe531e.woff2')format("woff");}.ffe_c00253{font-family:ffe_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00253;src:url('chunks/assets/font_dcf82d78869f230f98534ca0.woff2')format("woff");}.fff_c00253{font-family:fff_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00253;src:url('chunks/assets/font_3b92282e0b23c960f59edff2.woff2')format("woff");}.ff10_c00253{font-family:ff10_c00253;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:ff11_c00253;src:url('chunks/assets/font_1a80af9ee1cdb9179aa968b3.woff2')format("woff");}.ff11_c00253{font-family:ff11_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00253;src:url('chunks/assets/font_e9aa548012c566ee106f9b55.woff2')format("woff");}.ff12_c00253{font-family:ff12_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00253;src:url('chunks/assets/font_0bf2f523cc67dad856b6e1c3.woff2')format("woff");}.ff13_c00253{font-family:ff13_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00253;src:url('chunks/assets/font_efc0ed0c5f5bb4300fd2e0c2.woff2')format("woff");}.ff14_c00253{font-family:ff14_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00253;src:url('chunks/assets/font_d253b7ec3d14a6e35ef680ad.woff2')format("woff");}.ff15_c00253{font-family:ff15_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00253;src:url('chunks/assets/font_fc322b09563c88c7c5939f06.woff2')format("woff");}.ff16_c00253{font-family:ff16_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00253;src:url('chunks/assets/font_4a9c1b17328d2d798f8ef649.woff2')format("woff");}.ff17_c00253{font-family:ff17_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00253;src:url('chunks/assets/font_bd288e105cb21de677124184.woff2')format("woff");}.ff18_c00253{font-family:ff18_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00253;src:url('chunks/assets/font_a7b0eb8c00323804ce40a3db.woff2')format("woff");}.ff19_c00253{font-family:ff19_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00253;src:url('chunks/assets/font_50b4ef96796a4c17ac62a284.woff2')format("woff");}.ff1a_c00253{font-family:ff1a_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00253;src:url('chunks/assets/font_630048e749dcf8501da9966a.woff2')format("woff");}.ff1b_c00253{font-family:ff1b_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00253;src:url('chunks/assets/font_32133658f93feccd79f89fbc.woff2')format("woff");}.ff1c_c00253{font-family:ff1c_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00253;src:url('chunks/assets/font_1c826329989d38be014039de.woff2')format("woff");}.ff1d_c00253{font-family:ff1d_c00253;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:ff1e_c00253;src:url('chunks/assets/font_42514289d909a38662813b4c.woff2')format("woff");}.ff1e_c00253{font-family:ff1e_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00253;src:url('chunks/assets/font_b2a859878cdf9f9cdb1221ca.woff2')format("woff");}.ff1f_c00253{font-family:ff1f_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00253;src:url('chunks/assets/font_278a46c62e29b892ab96706b.woff2')format("woff");}.ff20_c00253{font-family:ff20_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00253;src:url('chunks/assets/font_edb5eb45d84c3ffbd778de42.woff2')format("woff");}.ff21_c00253{font-family:ff21_c00253;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:ff22_c00253;src:url('chunks/assets/font_b2a859878cdf9f9cdb1221ca.woff2')format("woff");}.ff22_c00253{font-family:ff22_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00253;src:url('chunks/assets/font_f209c98d53758a2a13e57445.woff2')format("woff");}.ff23_c00253{font-family:ff23_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00253;src:url('chunks/assets/font_b2a859878cdf9f9cdb1221ca.woff2')format("woff");}.ff24_c00253{font-family:ff24_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00253;src:url('chunks/assets/font_bfb6b7d6d61e887ba1667a45.woff2')format("woff");}.ff25_c00253{font-family:ff25_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00253;src:url('chunks/assets/font_b2a859878cdf9f9cdb1221ca.woff2')format("woff");}.ff26_c00253{font-family:ff26_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00253;src:url('chunks/assets/font_47fe97ce31e3913e08753429.woff2')format("woff");}.ff27_c00253{font-family:ff27_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00253;src:url('chunks/assets/font_9e108b85a6c59f6c10db097a.woff2')format("woff");}.ff28_c00253{font-family:ff28_c00253;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:ff29_c00253;src:url('chunks/assets/font_91a058e3b5eac6024a819421.woff2')format("woff");}.ff29_c00253{font-family:ff29_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00253;src:url('chunks/assets/font_2f31aa8942dff7adb985b025.woff2')format("woff");}.ff2a_c00253{font-family:ff2a_c00253;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:ff2b_c00253;src:url('chunks/assets/font_e713c6f694acf89da5075a0c.woff2')format("woff");}.ff2b_c00253{font-family:ff2b_c00253;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:ff2c_c00253;src:url('chunks/assets/font_0d409d728b76ecbfb1d66431.woff2')format("woff");}.ff2c_c00253{font-family:ff2c_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00253;src:url('chunks/assets/font_744ecfb845b64580b4f53e0b.woff2')format("woff");}.ff2d_c00253{font-family:ff2d_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00253;src:url('chunks/assets/font_e914019b91cafbad9f96eb2b.woff2')format("woff");}.ff2e_c00253{font-family:ff2e_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00253;src:url('chunks/assets/font_a4567313c04059c925e78b9c.woff2')format("woff");}.ff2f_c00253{font-family:ff2f_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00253;src:url('chunks/assets/font_0457789030316e52b5c65dda.woff2')format("woff");}.ff30_c00253{font-family:ff30_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00253;src:url('chunks/assets/font_d6de9cc099de7f00107087d8.woff2')format("woff");}.ff31_c00253{font-family:ff31_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00253;src:url('chunks/assets/font_1870bab07fca8163194ea5f7.woff2')format("woff");}.ff32_c00253{font-family:ff32_c00253;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00253{letter-spacing:-0.014400px;}
.ls2_c00253{letter-spacing:0.000000px;}
.ls0_c00253{letter-spacing:0.014400px;}
.ls1_c00253{letter-spacing:0.072000px;}
.sc__c00253{text-shadow:none;}
.sc0_c00253{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00253{-webkit-text-stroke:0px transparent;}
.sc0_c00253{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00253{word-spacing:-0.086400px;}
.ws0_c00253{word-spacing:-0.072000px;}
.ws2_c00253{word-spacing:0.000000px;}
._4_c00253{width:1.094400px;}
._5_c00253{width:2.296800px;}
._7_c00253{width:3.477600px;}
._6_c00253{width:4.500000px;}
._9_c00253{width:5.536800px;}
._3_c00253{width:6.753600px;}
._2_c00253{width:8.056800px;}
._a_c00253{width:9.338400px;}
._b_c00253{width:10.706400px;}
._0_c00253{width:12.434400px;}
._8_c00253{width:22.413600px;}
._1_c00253{width:27.741600px;}
.fc1_c00253{color:transparent;}
.fc0_c00253{color:rgb(0,0,0);}
.fs1_c00253{font-size:64.800000px;}
.fs0_c00253{font-size:72.000000px;}
.y0_c00253{bottom:0.000000px;}
.y5_c00253{bottom:5.040000px;}
.y1_c00253{bottom:12.735000px;}
.y3_c00253{bottom:45.045000px;}
.y4_c00253{bottom:52.740000px;}
.y20_c00253{bottom:146.565000px;}
.y1f_c00253{bottom:182.565000px;}
.y1e_c00253{bottom:218.565000px;}
.y1d_c00253{bottom:254.565000px;}
.y1c_c00253{bottom:290.565000px;}
.y1b_c00253{bottom:326.565000px;}
.y1a_c00253{bottom:362.565000px;}
.y19_c00253{bottom:398.565000px;}
.y18_c00253{bottom:434.565000px;}
.y17_c00253{bottom:470.565000px;}
.y16_c00253{bottom:506.565000px;}
.y15_c00253{bottom:542.565000px;}
.y14_c00253{bottom:578.565000px;}
.y13_c00253{bottom:614.565000px;}
.y12_c00253{bottom:650.565000px;}
.y11_c00253{bottom:686.565000px;}
.y10_c00253{bottom:722.565000px;}
.yf_c00253{bottom:758.565000px;}
.ye_c00253{bottom:794.565000px;}
.yd_c00253{bottom:830.565000px;}
.yc_c00253{bottom:866.565000px;}
.yb_c00253{bottom:902.565000px;}
.ya_c00253{bottom:938.565000px;}
.y9_c00253{bottom:974.565000px;}
.y8_c00253{bottom:1010.565000px;}
.y7_c00253{bottom:1046.565000px;}
.y6_c00253{bottom:1082.565000px;}
.y2_c00253{bottom:1165.365000px;}
.h4_c00253{height:20.880000px;}
.h3_c00253{height:70.664062px;}
.h5_c00253{height:74.004654px;}
.h2_c00253{height:1237.365000px;}
.h0_c00253{height:1262.835000px;}
.h1_c00253{height:1263.000000px;}
.w3_c00253{width:27.000000px;}
.w2_c00253{width:867.465000px;}
.w0_c00253{width:892.935000px;}
.w1_c00253{width:893.250000px;}
.x0_c00253{left:0.000000px;}
.x1_c00253{left:12.735000px;}
.x3_c00253{left:95.406300px;}
.x5_c00253{left:149.400150px;}
.x4_c00253{left:433.215000px;}
.x2_c00253{left:878.550300px;}
@media print{
.v0_c00253{vertical-align:0.000000pt;}
.ls3_c00253{letter-spacing:-0.012800pt;}
.ls2_c00253{letter-spacing:0.000000pt;}
.ls0_c00253{letter-spacing:0.012800pt;}
.ls1_c00253{letter-spacing:0.064000pt;}
.ws1_c00253{word-spacing:-0.076800pt;}
.ws0_c00253{word-spacing:-0.064000pt;}
.ws2_c00253{word-spacing:0.000000pt;}
._4_c00253{width:0.972800pt;}
._5_c00253{width:2.041600pt;}
._7_c00253{width:3.091200pt;}
._6_c00253{width:4.000000pt;}
._9_c00253{width:4.921600pt;}
._3_c00253{width:6.003200pt;}
._2_c00253{width:7.161600pt;}
._a_c00253{width:8.300800pt;}
._b_c00253{width:9.516800pt;}
._0_c00253{width:11.052800pt;}
._8_c00253{width:19.923200pt;}
._1_c00253{width:24.659200pt;}
.fs1_c00253{font-size:57.600000pt;}
.fs0_c00253{font-size:64.000000pt;}
.y0_c00253{bottom:0.000000pt;}
.y5_c00253{bottom:4.480000pt;}
.y1_c00253{bottom:11.320000pt;}
.y3_c00253{bottom:40.040000pt;}
.y4_c00253{bottom:46.880000pt;}
.y20_c00253{bottom:130.280000pt;}
.y1f_c00253{bottom:162.280000pt;}
.y1e_c00253{bottom:194.280000pt;}
.y1d_c00253{bottom:226.280000pt;}
.y1c_c00253{bottom:258.280000pt;}
.y1b_c00253{bottom:290.280000pt;}
.y1a_c00253{bottom:322.280000pt;}
.y19_c00253{bottom:354.280000pt;}
.y18_c00253{bottom:386.280000pt;}
.y17_c00253{bottom:418.280000pt;}
.y16_c00253{bottom:450.280000pt;}
.y15_c00253{bottom:482.280000pt;}
.y14_c00253{bottom:514.280000pt;}
.y13_c00253{bottom:546.280000pt;}
.y12_c00253{bottom:578.280000pt;}
.y11_c00253{bottom:610.280000pt;}
.y10_c00253{bottom:642.280000pt;}
.yf_c00253{bottom:674.280000pt;}
.ye_c00253{bottom:706.280000pt;}
.yd_c00253{bottom:738.280000pt;}
.yc_c00253{bottom:770.280000pt;}
.yb_c00253{bottom:802.280000pt;}
.ya_c00253{bottom:834.280000pt;}
.y9_c00253{bottom:866.280000pt;}
.y8_c00253{bottom:898.280000pt;}
.y7_c00253{bottom:930.280000pt;}
.y6_c00253{bottom:962.280000pt;}
.y2_c00253{bottom:1035.880000pt;}
.h4_c00253{height:18.560000pt;}
.h3_c00253{height:62.812500pt;}
.h5_c00253{height:65.781915pt;}
.h2_c00253{height:1099.880000pt;}
.h0_c00253{height:1122.520000pt;}
.h1_c00253{height:1122.666667pt;}
.w3_c00253{width:24.000000pt;}
.w2_c00253{width:771.080000pt;}
.w0_c00253{width:793.720000pt;}
.w1_c00253{width:794.000000pt;}
.x0_c00253{left:0.000000pt;}
.x1_c00253{left:11.320000pt;}
.x3_c00253{left:84.805600pt;}
.x5_c00253{left:132.800133pt;}
.x4_c00253{left:385.080000pt;}
.x2_c00253{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00254{font-family:ff1_c00254;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00254;src:url('chunks/assets/font_0d95cf0878f685a01c74f7a1.woff2')format("woff");}.ff2_c00254{font-family:ff2_c00254;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00254;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00254{font-family:ff3_c00254;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00254;src:url('chunks/assets/font_02f7a8eb849d8e172d19f3d7.woff2')format("woff");}.ff4_c00254{font-family:ff4_c00254;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00254;src:url('chunks/assets/font_e37b9e01f185590938af1767.woff2')format("woff");}.ff5_c00254{font-family:ff5_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:ff6_c00254;src:url('chunks/assets/font_b2a859878cdf9f9cdb1221ca.woff2')format("woff");}.ff6_c00254{font-family:ff6_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:ff7_c00254;src:url('chunks/assets/font_a3c6950bc990aa2492f6084f.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_d9a3a56d52a0d4af8c3eb51f.woff2')format("woff");}.ff8_c00254{font-family:ff8_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:ff9_c00254;src:url('chunks/assets/font_d44c9549d019f49315e2f9e7.woff2')format("woff");}.ff9_c00254{font-family:ff9_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:ffa_c00254;src:url('chunks/assets/font_3ba7bd20ba9a70655308af9c.woff2')format("woff");}.ffa_c00254{font-family:ffa_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:ffb_c00254;src:url('chunks/assets/font_8df434e250ecaed0a9f3885e.woff2')format("woff");}.ffb_c00254{font-family:ffb_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:ffc_c00254;src:url('chunks/assets/font_541c90207ceabb01da898717.woff2')format("woff");}.ffc_c00254{font-family:ffc_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:ffd_c00254;src:url('chunks/assets/font_957693a9ae70d03d491b55bb.woff2')format("woff");}.ffd_c00254{font-family:ffd_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:ffe_c00254;src:url('chunks/assets/font_75c330cb4f13f811bbe14564.woff2')format("woff");}.ffe_c00254{font-family:ffe_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:fff_c00254;src:url('chunks/assets/font_0713f792047799f79dcdde9f.woff2')format("woff");}.fff_c00254{font-family:fff_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:ff10_c00254;src:url('chunks/assets/font_dc1435375db1d533a5e7ec7f.woff2')format("woff");}.ff10_c00254{font-family:ff10_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:ff11_c00254;src:url('chunks/assets/font_568db543e832ff18703fad9d.woff2')format("woff");}.ff11_c00254{font-family:ff11_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:ff12_c00254;src:url('chunks/assets/font_c1b6075dcbfbeca9afd21c74.woff2')format("woff");}.ff12_c00254{font-family:ff12_c00254;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:ff13_c00254;src:url('chunks/assets/font_383c4ba1dd85ded37ecd458e.woff2')format("woff");}.ff13_c00254{font-family:ff13_c00254;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:ff14_c00254;src:url('chunks/assets/font_4bb8ad8637b9e475e3c3b76b.woff2')format("woff");}.ff14_c00254{font-family:ff14_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:ff15_c00254;src:url('chunks/assets/font_e49619bc917b4d80ace9bba0.woff2')format("woff");}.ff15_c00254{font-family:ff15_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:ff16_c00254;src:url('chunks/assets/font_3e419aee919b47cad3cdcc5c.woff2')format("woff");}.ff16_c00254{font-family:ff16_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:ff17_c00254;src:url('chunks/assets/font_f5a12889deed04536c24f32e.woff2')format("woff");}.ff17_c00254{font-family:ff17_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:ff18_c00254;src:url('chunks/assets/font_d4de2e8fd27dfceb7697b375.woff2')format("woff");}.ff18_c00254{font-family:ff18_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:ff19_c00254;src:url('chunks/assets/font_0aac552acd9e5bea419d40ec.woff2')format("woff");}.ff19_c00254{font-family:ff19_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:ff1a_c00254;src:url('chunks/assets/font_9e6b7d17f620183d859f78c9.woff2')format("woff");}.ff1a_c00254{font-family:ff1a_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:ff1b_c00254;src:url('chunks/assets/font_0b877281b7b8644bdc34e134.woff2')format("woff");}.ff1b_c00254{font-family:ff1b_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:ff1c_c00254;src:url('chunks/assets/font_ef0f62d44794f924414eccd7.woff2')format("woff");}.ff1c_c00254{font-family:ff1c_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:ff1d_c00254;src:url('chunks/assets/font_454f1ace44a0177bbc2b2c52.woff2')format("woff");}.ff1d_c00254{font-family:ff1d_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:ff1e_c00254;src:url('chunks/assets/font_5b81369e46eaca7aa801db19.woff2')format("woff");}.ff1e_c00254{font-family:ff1e_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:ff1f_c00254;src:url('chunks/assets/font_40041b36ff37c213c66309df.woff2')format("woff");}.ff1f_c00254{font-family:ff1f_c00254;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:ff20_c00254;src:url('chunks/assets/font_9010c459828ba2b92bffb4fc.woff2')format("woff");}.ff20_c00254{font-family:ff20_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:ff21_c00254;src:url('chunks/assets/font_0af9054c8a3926d3a5e43202.woff2')format("woff");}.ff21_c00254{font-family:ff21_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:ff22_c00254;src:url('chunks/assets/font_89ae4bdcde4f9aa99cd4c99d.woff2')format("woff");}.ff22_c00254{font-family:ff22_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:ff23_c00254;src:url('chunks/assets/font_2bfedd5d96efba1af96be006.woff2')format("woff");}.ff23_c00254{font-family:ff23_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:ff24_c00254;src:url('chunks/assets/font_71b20e07d95ca8934be7cca3.woff2')format("woff");}.ff24_c00254{font-family:ff24_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:ff25_c00254;src:url('chunks/assets/font_959bf39c02360960d3506668.woff2')format("woff");}.ff25_c00254{font-family:ff25_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:ff26_c00254;src:url('chunks/assets/font_d8b68b7105811d37b369cb27.woff2')format("woff");}.ff26_c00254{font-family:ff26_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:ff27_c00254;src:url('chunks/assets/font_dcd960e5ec5beb3136dee15b.woff2')format("woff");}.ff27_c00254{font-family:ff27_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:ff28_c00254;src:url('chunks/assets/font_b3304803f39182e405b025ec.woff2')format("woff");}.ff28_c00254{font-family:ff28_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:ff29_c00254;src:url('chunks/assets/font_5ea5a2e240a84c590fb30284.woff2')format("woff");}.ff29_c00254{font-family:ff29_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:ff2a_c00254;src:url('chunks/assets/font_32c0d110aca0ffd3e56fe873.woff2')format("woff");}.ff2a_c00254{font-family:ff2a_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:ff2b_c00254;src:url('chunks/assets/font_f70e112d1ce30b1286ee6e8f.woff2')format("woff");}.ff2b_c00254{font-family:ff2b_c00254;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:ff2c_c00254;src:url('chunks/assets/font_e37b9e01f185590938af1767.woff2')format("woff");}.ff2c_c00254{font-family:ff2c_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:ff2d_c00254;src:url('chunks/assets/font_b2a859878cdf9f9cdb1221ca.woff2')format("woff");}.ff2d_c00254{font-family:ff2d_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:ff2e_c00254;src:url('chunks/assets/font_141587178b93f53b43b4abb0.woff2')format("woff");}.ff2e_c00254{font-family:ff2e_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:ff2f_c00254;src:url('chunks/assets/font_b2a859878cdf9f9cdb1221ca.woff2')format("woff");}.ff2f_c00254{font-family:ff2f_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:ff30_c00254;src:url('chunks/assets/font_a3c6950bc990aa2492f6084f.woff2')format("woff");}.ff30_c00254{font-family:ff30_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:ff31_c00254;src:url('chunks/assets/font_9ab1ad1ed62ca4d8bcc2cdcb.woff2')format("woff");}.ff31_c00254{font-family:ff31_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:ff32_c00254;src:url('chunks/assets/font_affb17e0bba443f024ca8d47.woff2')format("woff");}.ff32_c00254{font-family:ff32_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:ff33_c00254;src:url('chunks/assets/font_c7f8246a9f3c8d70bfe90279.woff2')format("woff");}.ff33_c00254{font-family:ff33_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:ff34_c00254;src:url('chunks/assets/font_ecfa4c720fe285fa83f70618.woff2')format("woff");}.ff34_c00254{font-family:ff34_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:ff35_c00254;src:url('chunks/assets/font_0e1a9e7c9953777c3a8d1908.woff2')format("woff");}.ff35_c00254{font-family:ff35_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:ff36_c00254;src:url('chunks/assets/font_e8a1c6a96c55b5139f8b3221.woff2')format("woff");}.ff36_c00254{font-family:ff36_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;}
.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;}
.ls2_c00254{letter-spacing:-0.014400px;}
.ls1_c00254{letter-spacing:0.000000px;}
.ls0_c00254{letter-spacing:0.072000px;}
.sc__c00254{text-shadow:none;}
.sc0_c00254{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00254{-webkit-text-stroke:0px transparent;}
.sc0_c00254{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00254{word-spacing:-0.072000px;}
.ws1_c00254{word-spacing:0.000000px;}
._1_c00254{width:1.411200px;}
._4_c00254{width:2.894400px;}
._8_c00254{width:4.262400px;}
._7_c00254{width:5.868000px;}
._5_c00254{width:8.114400px;}
._3_c00254{width:9.540000px;}
._6_c00254{width:10.944000px;}
._a_c00254{width:12.470400px;}
._0_c00254{width:14.335200px;}
._9_c00254{width:20.037600px;}
._2_c00254{width:24.789600px;}
.fc1_c00254{color:transparent;}
.fc0_c00254{color:rgb(0,0,0);}
.fs1_c00254{font-size:64.800000px;}
.fs0_c00254{font-size:72.000000px;}
.y0_c00254{bottom:0.000000px;}
.y5_c00254{bottom:5.040000px;}
.y1_c00254{bottom:12.735000px;}
.y3_c00254{bottom:45.045000px;}
.y4_c00254{bottom:52.740000px;}
.y20_c00254{bottom:146.565000px;}
.y1f_c00254{bottom:182.565000px;}
.y1e_c00254{bottom:218.565000px;}
.y1d_c00254{bottom:254.565000px;}
.y1c_c00254{bottom:290.565000px;}
.y1b_c00254{bottom:326.565000px;}
.y1a_c00254{bottom:362.565000px;}
.y19_c00254{bottom:398.565000px;}
.y18_c00254{bottom:434.565000px;}
.y17_c00254{bottom:470.565000px;}
.y16_c00254{bottom:506.565000px;}
.y15_c00254{bottom:542.565000px;}
.y14_c00254{bottom:578.565000px;}
.y13_c00254{bottom:614.565000px;}
.y12_c00254{bottom:650.565000px;}
.y11_c00254{bottom:686.565000px;}
.y10_c00254{bottom:722.565000px;}
.yf_c00254{bottom:758.565000px;}
.ye_c00254{bottom:794.565000px;}
.yd_c00254{bottom:830.565000px;}
.yc_c00254{bottom:866.565000px;}
.yb_c00254{bottom:902.565000px;}
.ya_c00254{bottom:938.565000px;}
.y9_c00254{bottom:974.565000px;}
.y8_c00254{bottom:1010.565000px;}
.y7_c00254{bottom:1046.565000px;}
.y6_c00254{bottom:1082.565000px;}
.y2_c00254{bottom:1165.365000px;}
.h4_c00254{height:20.880000px;}
.h3_c00254{height:70.664062px;}
.h5_c00254{height:74.004654px;}
.h2_c00254{height:1237.365000px;}
.h0_c00254{height:1262.835000px;}
.h1_c00254{height:1263.000000px;}
.w3_c00254{width:27.000000px;}
.w2_c00254{width:867.465000px;}
.w0_c00254{width:892.935000px;}
.w1_c00254{width:893.250000px;}
.x0_c00254{left:0.000000px;}
.x1_c00254{left:12.735000px;}
.x3_c00254{left:95.406300px;}
.x5_c00254{left:149.382150px;}
.x4_c00254{left:433.215000px;}
.x2_c00254{left:878.550300px;}
@media print{
.v0_c00254{vertical-align:0.000000pt;}
.ls2_c00254{letter-spacing:-0.012800pt;}
.ls1_c00254{letter-spacing:0.000000pt;}
.ls0_c00254{letter-spacing:0.064000pt;}
.ws0_c00254{word-spacing:-0.064000pt;}
.ws1_c00254{word-spacing:0.000000pt;}
._1_c00254{width:1.254400pt;}
._4_c00254{width:2.572800pt;}
._8_c00254{width:3.788800pt;}
._7_c00254{width:5.216000pt;}
._5_c00254{width:7.212800pt;}
._3_c00254{width:8.480000pt;}
._6_c00254{width:9.728000pt;}
._a_c00254{width:11.084800pt;}
._0_c00254{width:12.742400pt;}
._9_c00254{width:17.811200pt;}
._2_c00254{width:22.035200pt;}
.fs1_c00254{font-size:57.600000pt;}
.fs0_c00254{font-size:64.000000pt;}
.y0_c00254{bottom:0.000000pt;}
.y5_c00254{bottom:4.480000pt;}
.y1_c00254{bottom:11.320000pt;}
.y3_c00254{bottom:40.040000pt;}
.y4_c00254{bottom:46.880000pt;}
.y20_c00254{bottom:130.280000pt;}
.y1f_c00254{bottom:162.280000pt;}
.y1e_c00254{bottom:194.280000pt;}
.y1d_c00254{bottom:226.280000pt;}
.y1c_c00254{bottom:258.280000pt;}
.y1b_c00254{bottom:290.280000pt;}
.y1a_c00254{bottom:322.280000pt;}
.y19_c00254{bottom:354.280000pt;}
.y18_c00254{bottom:386.280000pt;}
.y17_c00254{bottom:418.280000pt;}
.y16_c00254{bottom:450.280000pt;}
.y15_c00254{bottom:482.280000pt;}
.y14_c00254{bottom:514.280000pt;}
.y13_c00254{bottom:546.280000pt;}
.y12_c00254{bottom:578.280000pt;}
.y11_c00254{bottom:610.280000pt;}
.y10_c00254{bottom:642.280000pt;}
.yf_c00254{bottom:674.280000pt;}
.ye_c00254{bottom:706.280000pt;}
.yd_c00254{bottom:738.280000pt;}
.yc_c00254{bottom:770.280000pt;}
.yb_c00254{bottom:802.280000pt;}
.ya_c00254{bottom:834.280000pt;}
.y9_c00254{bottom:866.280000pt;}
.y8_c00254{bottom:898.280000pt;}
.y7_c00254{bottom:930.280000pt;}
.y6_c00254{bottom:962.280000pt;}
.y2_c00254{bottom:1035.880000pt;}
.h4_c00254{height:18.560000pt;}
.h3_c00254{height:62.812500pt;}
.h5_c00254{height:65.781915pt;}
.h2_c00254{height:1099.880000pt;}
.h0_c00254{height:1122.520000pt;}
.h1_c00254{height:1122.666667pt;}
.w3_c00254{width:24.000000pt;}
.w2_c00254{width:771.080000pt;}
.w0_c00254{width:793.720000pt;}
.w1_c00254{width:794.000000pt;}
.x0_c00254{left:0.000000pt;}
.x1_c00254{left:11.320000pt;}
.x3_c00254{left:84.805600pt;}
.x5_c00254{left:132.784133pt;}
.x4_c00254{left:385.080000pt;}
.x2_c00254{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00255{font-family:ff1_c00255;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00255;src:url('chunks/assets/font_6aea79add4cf281ef132f0ec.woff2')format("woff");}.ff2_c00255{font-family:ff2_c00255;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00255;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00255{font-family:ff3_c00255;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00255;src:url('chunks/assets/font_c8718556efdb2b42c0478692.woff2')format("woff");}.ff4_c00255{font-family:ff4_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:ff5_c00255;src:url('chunks/assets/font_809717038fde4fe471c76ba5.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_7bc3a42c49293f8bff31e8cd.woff2')format("woff");}.ff6_c00255{font-family:ff6_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:ff7_c00255;src:url('chunks/assets/font_6f1e968eef88749bb99d0e82.woff2')format("woff");}.ff7_c00255{font-family:ff7_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:ff8_c00255;src:url('chunks/assets/font_75cd1070beaea37cd4bf3116.woff2')format("woff");}.ff8_c00255{font-family:ff8_c00255;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00255;src:url('chunks/assets/font_2ea020b61e4775217f18e95d.woff2')format("woff");}.ff9_c00255{font-family:ff9_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:ffa_c00255;src:url('chunks/assets/font_daa67156a32fc85f8bfc8284.woff2')format("woff");}.ffa_c00255{font-family:ffa_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:ffb_c00255;src:url('chunks/assets/font_b946608019f99addaef04cee.woff2')format("woff");}.ffb_c00255{font-family:ffb_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:ffc_c00255;src:url('chunks/assets/font_8b3d9b3c640643dda41b180d.woff2')format("woff");}.ffc_c00255{font-family:ffc_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:ffd_c00255;src:url('chunks/assets/font_38e021f64913b9924ec36d98.woff2')format("woff");}.ffd_c00255{font-family:ffd_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:ffe_c00255;src:url('chunks/assets/font_868c7bde10a6e41501c5cdfd.woff2')format("woff");}.ffe_c00255{font-family:ffe_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:fff_c00255;src:url('chunks/assets/font_b8d6de8613335e20db0b881b.woff2')format("woff");}.fff_c00255{font-family:fff_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:ff10_c00255;src:url('chunks/assets/font_cecb539a0b449b29cc0ea4a3.woff2')format("woff");}.ff10_c00255{font-family:ff10_c00255;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:ff11_c00255;src:url('chunks/assets/font_f8f0f26b47b6ef9f7f52a7e2.woff2')format("woff");}.ff11_c00255{font-family:ff11_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:ff12_c00255;src:url('chunks/assets/font_66536cd6c459faa6698e67a8.woff2')format("woff");}.ff12_c00255{font-family:ff12_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:ff13_c00255;src:url('chunks/assets/font_050445e3fe6f226513218704.woff2')format("woff");}.ff13_c00255{font-family:ff13_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:ff14_c00255;src:url('chunks/assets/font_0e218ae25cf3d9220932e218.woff2')format("woff");}.ff14_c00255{font-family:ff14_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:ff15_c00255;src:url('chunks/assets/font_cc373d1dd1b46bb763aa2089.woff2')format("woff");}.ff15_c00255{font-family:ff15_c00255;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:ff16_c00255;src:url('chunks/assets/font_3b380ce7e21830760ba58abe.woff2')format("woff");}.ff16_c00255{font-family:ff16_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:ff17_c00255;src:url('chunks/assets/font_b2a859878cdf9f9cdb1221ca.woff2')format("woff");}.ff17_c00255{font-family:ff17_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:ff18_c00255;src:url('chunks/assets/font_a1934f27cf82bf67f0865d13.woff2')format("woff");}.ff18_c00255{font-family:ff18_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:ff19_c00255;src:url('chunks/assets/font_b2a859878cdf9f9cdb1221ca.woff2')format("woff");}.ff19_c00255{font-family:ff19_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:ff1a_c00255;src:url('chunks/assets/font_859b5c6aedfc2be201aec3f3.woff2')format("woff");}.ff1a_c00255{font-family:ff1a_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:ff1b_c00255;src:url('chunks/assets/font_582bac6fb62af7bbd4802f71.woff2')format("woff");}.ff1b_c00255{font-family:ff1b_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:ff1c_c00255;src:url('chunks/assets/font_222d389f09e84327126eebfb.woff2')format("woff");}.ff1c_c00255{font-family:ff1c_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:ff1d_c00255;src:url('chunks/assets/font_b25e572d8ae24eb6c9e42668.woff2')format("woff");}.ff1d_c00255{font-family:ff1d_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:ff1e_c00255;src:url('chunks/assets/font_7c17fc51c45df7343e95ebb0.woff2')format("woff");}.ff1e_c00255{font-family:ff1e_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:ff1f_c00255;src:url('chunks/assets/font_c4d8f837b69c78d2de350379.woff2')format("woff");}.ff1f_c00255{font-family:ff1f_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:ff20_c00255;src:url('chunks/assets/font_53c912e66857e18be34bf6ca.woff2')format("woff");}.ff20_c00255{font-family:ff20_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:ff21_c00255;src:url('chunks/assets/font_019fe493963484e339e2edd2.woff2')format("woff");}.ff21_c00255{font-family:ff21_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:ff22_c00255;src:url('chunks/assets/font_70abe1226bf3223fed99763e.woff2')format("woff");}.ff22_c00255{font-family:ff22_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:ff23_c00255;src:url('chunks/assets/font_1c1b5e4ceaf75861441b0d86.woff2')format("woff");}.ff23_c00255{font-family:ff23_c00255;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:ff24_c00255;src:url('chunks/assets/font_b80982eac6cbfdb6fa2c7cdb.woff2')format("woff");}.ff24_c00255{font-family:ff24_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:ff25_c00255;src:url('chunks/assets/font_6b0576629616fd9a9e736320.woff2')format("woff");}.ff25_c00255{font-family:ff25_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:ff26_c00255;src:url('chunks/assets/font_ac6115ec1dafa460ff67fbf5.woff2')format("woff");}.ff26_c00255{font-family:ff26_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:ff27_c00255;src:url('chunks/assets/font_19502ee46d574646fe11956a.woff2')format("woff");}.ff27_c00255{font-family:ff27_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:ff28_c00255;src:url('chunks/assets/font_5cfc90dcf2f4687fb6073aaf.woff2')format("woff");}.ff28_c00255{font-family:ff28_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:ff29_c00255;src:url('chunks/assets/font_a5b075933b92e5ab930d4596.woff2')format("woff");}.ff29_c00255{font-family:ff29_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:ff2a_c00255;src:url('chunks/assets/font_d772aa2d37bdd5d3123fbe2e.woff2')format("woff");}.ff2a_c00255{font-family:ff2a_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:ff2b_c00255;src:url('chunks/assets/font_741c1b76d8492b42011c1e0b.woff2')format("woff");}.ff2b_c00255{font-family:ff2b_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:ff2c_c00255;src:url('chunks/assets/font_c212619e0a4a36be571ed26c.woff2')format("woff");}.ff2c_c00255{font-family:ff2c_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:ff2d_c00255;src:url('chunks/assets/font_7b02e93b3a5778248375d763.woff2')format("woff");}.ff2d_c00255{font-family:ff2d_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:ff2e_c00255;src:url('chunks/assets/font_582bac6fb62af7bbd4802f71.woff2')format("woff");}.ff2e_c00255{font-family:ff2e_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:ff2f_c00255;src:url('chunks/assets/font_aeed4c28cc6dba33ec897500.woff2')format("woff");}.ff2f_c00255{font-family:ff2f_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:ff30_c00255;src:url('chunks/assets/font_7d3551216325a560226f1898.woff2')format("woff");}.ff30_c00255{font-family:ff30_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:ff31_c00255;src:url('chunks/assets/font_b5c98157d9a829dd76cb2cbf.woff2')format("woff");}.ff31_c00255{font-family:ff31_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:ff32_c00255;src:url('chunks/assets/font_cb0cedf48b8cb103f9160a5e.woff2')format("woff");}.ff32_c00255{font-family:ff32_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:ff33_c00255;src:url('chunks/assets/font_cbfdb3cc175196ca798bba99.woff2')format("woff");}.ff33_c00255{font-family:ff33_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:ff34_c00255;src:url('chunks/assets/font_e61773c4f1feb6e135b79c88.woff2')format("woff");}.ff34_c00255{font-family:ff34_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:ff35_c00255;src:url('chunks/assets/font_1dcc9af8f71ee3fe2282a46f.woff2')format("woff");}.ff35_c00255{font-family:ff35_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:ff36_c00255;src:url('chunks/assets/font_54d2ca8af7125bb38576143e.woff2')format("woff");}.ff36_c00255{font-family:ff36_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:ff37_c00255;src:url('chunks/assets/font_20dc187803f15104587bda5c.woff2')format("woff");}.ff37_c00255{font-family:ff37_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;}
.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;}
.ls2_c00255{letter-spacing:-0.014400px;}
.ls1_c00255{letter-spacing:0.000000px;}
.ls0_c00255{letter-spacing:0.093600px;}
.sc__c00255{text-shadow:none;}
.sc0_c00255{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00255{-webkit-text-stroke:0px transparent;}
.sc0_c00255{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00255{word-spacing:-0.072000px;}
.ws1_c00255{word-spacing:0.000000px;}
._0_c00255{width:3.060000px;}
._b_c00255{width:5.205600px;}
._7_c00255{width:6.300000px;}
._6_c00255{width:7.322400px;}
._c_c00255{width:8.517600px;}
._5_c00255{width:10.245600px;}
._1_c00255{width:13.766400px;}
._3_c00255{width:15.170400px;}
._4_c00255{width:16.509600px;}
._8_c00255{width:19.771200px;}
._9_c00255{width:20.772000px;}
._a_c00255{width:22.089600px;}
._2_c00255{width:25.660800px;}
._d_c00255{width:28.728000px;}
.fc1_c00255{color:transparent;}
.fc0_c00255{color:rgb(0,0,0);}
.fs1_c00255{font-size:64.800000px;}
.fs0_c00255{font-size:72.000000px;}
.y0_c00255{bottom:0.000000px;}
.y5_c00255{bottom:5.040000px;}
.y1_c00255{bottom:12.735000px;}
.y3_c00255{bottom:45.045000px;}
.y4_c00255{bottom:52.740000px;}
.y21_c00255{bottom:110.565000px;}
.y20_c00255{bottom:146.565000px;}
.y1f_c00255{bottom:182.565000px;}
.y1e_c00255{bottom:218.565000px;}
.y1d_c00255{bottom:254.565000px;}
.y1c_c00255{bottom:290.565000px;}
.y1b_c00255{bottom:326.565000px;}
.y1a_c00255{bottom:362.565000px;}
.y19_c00255{bottom:398.565000px;}
.y18_c00255{bottom:434.565000px;}
.y17_c00255{bottom:470.565000px;}
.y16_c00255{bottom:506.565000px;}
.y15_c00255{bottom:542.565000px;}
.y14_c00255{bottom:578.565000px;}
.y13_c00255{bottom:614.565000px;}
.y12_c00255{bottom:650.565000px;}
.y11_c00255{bottom:686.565000px;}
.y10_c00255{bottom:722.565000px;}
.yf_c00255{bottom:758.565000px;}
.ye_c00255{bottom:794.565000px;}
.yd_c00255{bottom:830.565000px;}
.yc_c00255{bottom:866.565000px;}
.yb_c00255{bottom:902.565000px;}
.ya_c00255{bottom:938.565000px;}
.y9_c00255{bottom:974.565000px;}
.y8_c00255{bottom:1010.565000px;}
.y7_c00255{bottom:1046.565000px;}
.y6_c00255{bottom:1082.565000px;}
.y2_c00255{bottom:1165.365000px;}
.h4_c00255{height:20.880000px;}
.h3_c00255{height:70.664062px;}
.h5_c00255{height:74.004654px;}
.h2_c00255{height:1237.365000px;}
.h0_c00255{height:1262.835000px;}
.h1_c00255{height:1263.000000px;}
.w3_c00255{width:27.000000px;}
.w2_c00255{width:867.465000px;}
.w0_c00255{width:892.935000px;}
.w1_c00255{width:893.250000px;}
.x0_c00255{left:0.000000px;}
.x1_c00255{left:12.735000px;}
.x3_c00255{left:95.406300px;}
.x5_c00255{left:149.400150px;}
.x4_c00255{left:433.215000px;}
.x2_c00255{left:878.550300px;}
@media print{
.v0_c00255{vertical-align:0.000000pt;}
.ls2_c00255{letter-spacing:-0.012800pt;}
.ls1_c00255{letter-spacing:0.000000pt;}
.ls0_c00255{letter-spacing:0.083200pt;}
.ws0_c00255{word-spacing:-0.064000pt;}
.ws1_c00255{word-spacing:0.000000pt;}
._0_c00255{width:2.720000pt;}
._b_c00255{width:4.627200pt;}
._7_c00255{width:5.600000pt;}
._6_c00255{width:6.508800pt;}
._c_c00255{width:7.571200pt;}
._5_c00255{width:9.107200pt;}
._1_c00255{width:12.236800pt;}
._3_c00255{width:13.484800pt;}
._4_c00255{width:14.675200pt;}
._8_c00255{width:17.574400pt;}
._9_c00255{width:18.464000pt;}
._a_c00255{width:19.635200pt;}
._2_c00255{width:22.809600pt;}
._d_c00255{width:25.536000pt;}
.fs1_c00255{font-size:57.600000pt;}
.fs0_c00255{font-size:64.000000pt;}
.y0_c00255{bottom:0.000000pt;}
.y5_c00255{bottom:4.480000pt;}
.y1_c00255{bottom:11.320000pt;}
.y3_c00255{bottom:40.040000pt;}
.y4_c00255{bottom:46.880000pt;}
.y21_c00255{bottom:98.280000pt;}
.y20_c00255{bottom:130.280000pt;}
.y1f_c00255{bottom:162.280000pt;}
.y1e_c00255{bottom:194.280000pt;}
.y1d_c00255{bottom:226.280000pt;}
.y1c_c00255{bottom:258.280000pt;}
.y1b_c00255{bottom:290.280000pt;}
.y1a_c00255{bottom:322.280000pt;}
.y19_c00255{bottom:354.280000pt;}
.y18_c00255{bottom:386.280000pt;}
.y17_c00255{bottom:418.280000pt;}
.y16_c00255{bottom:450.280000pt;}
.y15_c00255{bottom:482.280000pt;}
.y14_c00255{bottom:514.280000pt;}
.y13_c00255{bottom:546.280000pt;}
.y12_c00255{bottom:578.280000pt;}
.y11_c00255{bottom:610.280000pt;}
.y10_c00255{bottom:642.280000pt;}
.yf_c00255{bottom:674.280000pt;}
.ye_c00255{bottom:706.280000pt;}
.yd_c00255{bottom:738.280000pt;}
.yc_c00255{bottom:770.280000pt;}
.yb_c00255{bottom:802.280000pt;}
.ya_c00255{bottom:834.280000pt;}
.y9_c00255{bottom:866.280000pt;}
.y8_c00255{bottom:898.280000pt;}
.y7_c00255{bottom:930.280000pt;}
.y6_c00255{bottom:962.280000pt;}
.y2_c00255{bottom:1035.880000pt;}
.h4_c00255{height:18.560000pt;}
.h3_c00255{height:62.812500pt;}
.h5_c00255{height:65.781915pt;}
.h2_c00255{height:1099.880000pt;}
.h0_c00255{height:1122.520000pt;}
.h1_c00255{height:1122.666667pt;}
.w3_c00255{width:24.000000pt;}
.w2_c00255{width:771.080000pt;}
.w0_c00255{width:793.720000pt;}
.w1_c00255{width:794.000000pt;}
.x0_c00255{left:0.000000pt;}
.x1_c00255{left:11.320000pt;}
.x3_c00255{left:84.805600pt;}
.x5_c00255{left:132.800133pt;}
.x4_c00255{left:385.080000pt;}
.x2_c00255{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_57f5010cf853dc58d06d14a4.woff2')format("woff");}.ff1_c00256{font-family:ff1_c00256;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00256;src:url('chunks/assets/font_c650e44b7064843227507be4.woff2')format("woff");}.ff2_c00256{font-family:ff2_c00256;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00256;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00256{font-family:ff3_c00256;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00256;src:url('chunks/assets/font_84e89f1b5c01ddfdbb270908.woff2')format("woff");}.ff4_c00256{font-family:ff4_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00256;src:url('chunks/assets/font_5fa3f2d6ca9d8abc0f2e2adb.woff2')format("woff");}.ff5_c00256{font-family:ff5_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00256;src:url('chunks/assets/font_9d1884bb7c43e9e7321fc88d.woff2')format("woff");}.ff6_c00256{font-family:ff6_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00256;src:url('chunks/assets/font_9a8b4e02ea1fe0d97f460b3b.woff2')format("woff");}.ff7_c00256{font-family:ff7_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00256;src:url('chunks/assets/font_f0a99cf348ad211f70543a9a.woff2')format("woff");}.ff8_c00256{font-family:ff8_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00256;src:url('chunks/assets/font_30f87ff703ef2cde273ad0e2.woff2')format("woff");}.ff9_c00256{font-family:ff9_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00256;src:url('chunks/assets/font_0834b8732b37cd56e8efb860.woff2')format("woff");}.ffa_c00256{font-family:ffa_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00256;src:url('chunks/assets/font_511d5712f3339cb49cf0bd90.woff2')format("woff");}.ffb_c00256{font-family:ffb_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00256;src:url('chunks/assets/font_0ccf79e046585a71eb648877.woff2')format("woff");}.ffc_c00256{font-family:ffc_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00256;src:url('chunks/assets/font_3927168650e4788585765400.woff2')format("woff");}.ffd_c00256{font-family:ffd_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00256;src:url('chunks/assets/font_a0bc78618480cbf203292b92.woff2')format("woff");}.ffe_c00256{font-family:ffe_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00256;src:url('chunks/assets/font_d95d53efc214a50e193c2210.woff2')format("woff");}.fff_c00256{font-family:fff_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00256;src:url('chunks/assets/font_98a0201a7047ef3f43dbf559.woff2')format("woff");}.ff10_c00256{font-family:ff10_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00256;src:url('chunks/assets/font_d34338ca56974db31dd89126.woff2')format("woff");}.ff11_c00256{font-family:ff11_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00256;src:url('chunks/assets/font_1b900102538a636181f15b67.woff2')format("woff");}.ff12_c00256{font-family:ff12_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00256;src:url('chunks/assets/font_92c5c370f7584b8a95c65abb.woff2')format("woff");}.ff13_c00256{font-family:ff13_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00256;src:url('chunks/assets/font_407d68e9a7a21ef9b1f58f65.woff2')format("woff");}.ff14_c00256{font-family:ff14_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00256;src:url('chunks/assets/font_e57105cecb822d5fbd284d46.woff2')format("woff");}.ff15_c00256{font-family:ff15_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00256;src:url('chunks/assets/font_1f9278cc30fb708eab2bbd60.woff2')format("woff");}.ff16_c00256{font-family:ff16_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00256;src:url('chunks/assets/font_db570c7cb37766843a43ac53.woff2')format("woff");}.ff17_c00256{font-family:ff17_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00256;src:url('chunks/assets/font_2245c9d716afba03e7940bee.woff2')format("woff");}.ff18_c00256{font-family:ff18_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00256;src:url('chunks/assets/font_05c4afbce8d06878342e999c.woff2')format("woff");}.ff19_c00256{font-family:ff19_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00256;src:url('chunks/assets/font_347c2574cc439c36c2a84a16.woff2')format("woff");}.ff1a_c00256{font-family:ff1a_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00256;src:url('chunks/assets/font_4ca981247a2dc6a2f794532b.woff2')format("woff");}.ff1b_c00256{font-family:ff1b_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00256;src:url('chunks/assets/font_a4d827ce641609fceeb91ee7.woff2')format("woff");}.ff1c_c00256{font-family:ff1c_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00256;src:url('chunks/assets/font_aeefda31b7e16d017c932c68.woff2')format("woff");}.ff1d_c00256{font-family:ff1d_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e_c00256;src:url('chunks/assets/font_10056210fa69cc36c46db916.woff2')format("woff");}.ff1e_c00256{font-family:ff1e_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00256;src:url('chunks/assets/font_08fde2762879a9763c37faaa.woff2')format("woff");}.ff1f_c00256{font-family:ff1f_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00256;src:url('chunks/assets/font_e3d8ac39fd4a1a8a5d86581b.woff2')format("woff");}.ff20_c00256{font-family:ff20_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00256;src:url('chunks/assets/font_5932062abed9f4aa6e9448b5.woff2')format("woff");}.ff21_c00256{font-family:ff21_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00256;src:url('chunks/assets/font_ae193a4342f3c94359761ad3.woff2')format("woff");}.ff22_c00256{font-family:ff22_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00256;src:url('chunks/assets/font_931837c26202678b99421cde.woff2')format("woff");}.ff23_c00256{font-family:ff23_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00256;src:url('chunks/assets/font_3be0cbb4623687c5dd6f5e98.woff2')format("woff");}.ff24_c00256{font-family:ff24_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00256;src:url('chunks/assets/font_d92560dcfc05a3ae6e63f1c5.woff2')format("woff");}.ff25_c00256{font-family:ff25_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00256;src:url('chunks/assets/font_01636c531ef3252a3782835f.woff2')format("woff");}.ff26_c00256{font-family:ff26_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00256;src:url('chunks/assets/font_4aa126fd65b6c08e4f220589.woff2')format("woff");}.ff27_c00256{font-family:ff27_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00256;src:url('chunks/assets/font_7f4259aedd6503aa2a1f8610.woff2')format("woff");}.ff28_c00256{font-family:ff28_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00256;src:url('chunks/assets/font_69f6a96bc53971ca6bd29fd5.woff2')format("woff");}.ff29_c00256{font-family:ff29_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a_c00256;src:url('chunks/assets/font_bb314075ccc4557b025ef3ab.woff2')format("woff");}.ff2a_c00256{font-family:ff2a_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00256;src:url('chunks/assets/font_fe7917bea2ed33f220fecaa0.woff2')format("woff");}.ff2b_c00256{font-family:ff2b_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00256;src:url('chunks/assets/font_376069d5690d459c27a353e6.woff2')format("woff");}.ff2c_c00256{font-family:ff2c_c00256;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00256{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00256{vertical-align:0.000000px;}
.ls0_c00256{letter-spacing:0.000000px;}
.sc__c00256{text-shadow:none;}
.sc0_c00256{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00256{-webkit-text-stroke:0px transparent;}
.sc0_c00256{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00256{word-spacing:-0.072000px;}
.ws1_c00256{word-spacing:0.000000px;}
._4_c00256{width:1.706400px;}
._7_c00256{width:2.721600px;}
._5_c00256{width:3.902400px;}
._2_c00256{width:5.882400px;}
._1_c00256{width:7.012800px;}
._b_c00256{width:8.121600px;}
._6_c00256{width:9.446400px;}
._8_c00256{width:11.044800px;}
._a_c00256{width:12.715200px;}
._9_c00256{width:13.881600px;}
._d_c00256{width:15.667200px;}
._c_c00256{width:16.920000px;}
._3_c00256{width:19.699200px;}
._0_c00256{width:20.772000px;}
.fc1_c00256{color:transparent;}
.fc0_c00256{color:rgb(0,0,0);}
.fs1_c00256{font-size:64.800000px;}
.fs0_c00256{font-size:72.000000px;}
.y0_c00256{bottom:0.000000px;}
.y5_c00256{bottom:5.040000px;}
.y1_c00256{bottom:12.735000px;}
.y3_c00256{bottom:45.045000px;}
.y4_c00256{bottom:52.740000px;}
.y21_c00256{bottom:110.565000px;}
.y20_c00256{bottom:146.565000px;}
.y1f_c00256{bottom:182.565000px;}
.y1e_c00256{bottom:218.565000px;}
.y1d_c00256{bottom:254.565000px;}
.y1c_c00256{bottom:290.565000px;}
.y1b_c00256{bottom:326.565000px;}
.y1a_c00256{bottom:362.565000px;}
.y19_c00256{bottom:398.565000px;}
.y18_c00256{bottom:434.565000px;}
.y17_c00256{bottom:470.565000px;}
.y16_c00256{bottom:506.565000px;}
.y15_c00256{bottom:542.565000px;}
.y14_c00256{bottom:578.565000px;}
.y13_c00256{bottom:614.565000px;}
.y12_c00256{bottom:650.565000px;}
.y11_c00256{bottom:686.565000px;}
.y10_c00256{bottom:722.565000px;}
.yf_c00256{bottom:758.565000px;}
.ye_c00256{bottom:794.565000px;}
.yd_c00256{bottom:830.565000px;}
.yc_c00256{bottom:866.565000px;}
.yb_c00256{bottom:902.565000px;}
.ya_c00256{bottom:938.565000px;}
.y9_c00256{bottom:974.565000px;}
.y8_c00256{bottom:1010.565000px;}
.y7_c00256{bottom:1046.565000px;}
.y6_c00256{bottom:1082.565000px;}
.y2_c00256{bottom:1165.365000px;}
.h4_c00256{height:20.880000px;}
.h5_c00256{height:70.664062px;}
.h3_c00256{height:74.004654px;}
.h2_c00256{height:1237.365000px;}
.h0_c00256{height:1262.835000px;}
.h1_c00256{height:1263.000000px;}
.w3_c00256{width:27.000000px;}
.w2_c00256{width:867.465000px;}
.w0_c00256{width:892.935000px;}
.w1_c00256{width:893.250000px;}
.x0_c00256{left:0.000000px;}
.x1_c00256{left:12.735000px;}
.x3_c00256{left:95.406300px;}
.x5_c00256{left:149.400150px;}
.x4_c00256{left:433.215000px;}
.x2_c00256{left:878.550300px;}
@media print{
.v0_c00256{vertical-align:0.000000pt;}
.ls0_c00256{letter-spacing:0.000000pt;}
.ws0_c00256{word-spacing:-0.064000pt;}
.ws1_c00256{word-spacing:0.000000pt;}
._4_c00256{width:1.516800pt;}
._7_c00256{width:2.419200pt;}
._5_c00256{width:3.468800pt;}
._2_c00256{width:5.228800pt;}
._1_c00256{width:6.233600pt;}
._b_c00256{width:7.219200pt;}
._6_c00256{width:8.396800pt;}
._8_c00256{width:9.817600pt;}
._a_c00256{width:11.302400pt;}
._9_c00256{width:12.339200pt;}
._d_c00256{width:13.926400pt;}
._c_c00256{width:15.040000pt;}
._3_c00256{width:17.510400pt;}
._0_c00256{width:18.464000pt;}
.fs1_c00256{font-size:57.600000pt;}
.fs0_c00256{font-size:64.000000pt;}
.y0_c00256{bottom:0.000000pt;}
.y5_c00256{bottom:4.480000pt;}
.y1_c00256{bottom:11.320000pt;}
.y3_c00256{bottom:40.040000pt;}
.y4_c00256{bottom:46.880000pt;}
.y21_c00256{bottom:98.280000pt;}
.y20_c00256{bottom:130.280000pt;}
.y1f_c00256{bottom:162.280000pt;}
.y1e_c00256{bottom:194.280000pt;}
.y1d_c00256{bottom:226.280000pt;}
.y1c_c00256{bottom:258.280000pt;}
.y1b_c00256{bottom:290.280000pt;}
.y1a_c00256{bottom:322.280000pt;}
.y19_c00256{bottom:354.280000pt;}
.y18_c00256{bottom:386.280000pt;}
.y17_c00256{bottom:418.280000pt;}
.y16_c00256{bottom:450.280000pt;}
.y15_c00256{bottom:482.280000pt;}
.y14_c00256{bottom:514.280000pt;}
.y13_c00256{bottom:546.280000pt;}
.y12_c00256{bottom:578.280000pt;}
.y11_c00256{bottom:610.280000pt;}
.y10_c00256{bottom:642.280000pt;}
.yf_c00256{bottom:674.280000pt;}
.ye_c00256{bottom:706.280000pt;}
.yd_c00256{bottom:738.280000pt;}
.yc_c00256{bottom:770.280000pt;}
.yb_c00256{bottom:802.280000pt;}
.ya_c00256{bottom:834.280000pt;}
.y9_c00256{bottom:866.280000pt;}
.y8_c00256{bottom:898.280000pt;}
.y7_c00256{bottom:930.280000pt;}
.y6_c00256{bottom:962.280000pt;}
.y2_c00256{bottom:1035.880000pt;}
.h4_c00256{height:18.560000pt;}
.h5_c00256{height:62.812500pt;}
.h3_c00256{height:65.781915pt;}
.h2_c00256{height:1099.880000pt;}
.h0_c00256{height:1122.520000pt;}
.h1_c00256{height:1122.666667pt;}
.w3_c00256{width:24.000000pt;}
.w2_c00256{width:771.080000pt;}
.w0_c00256{width:793.720000pt;}
.w1_c00256{width:794.000000pt;}
.x0_c00256{left:0.000000pt;}
.x1_c00256{left:11.320000pt;}
.x3_c00256{left:84.805600pt;}
.x5_c00256{left:132.800133pt;}
.x4_c00256{left:385.080000pt;}
.x2_c00256{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e74c9ab5c37d21ca5e01220.woff2')format("woff");}.ff1_c00257{font-family:ff1_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00257;src:url('chunks/assets/font_02f74f8cfaf71945f6bf3320.woff2')format("woff");}.ff2_c00257{font-family:ff2_c00257;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00257;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00257{font-family:ff3_c00257;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00257;src:url('chunks/assets/font_b7158a4d32de7cd7b6ff9338.woff2')format("woff");}.ff4_c00257{font-family:ff4_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00257;src:url('chunks/assets/font_2d2ec0d1daf7315f3d7a1115.woff2')format("woff");}.ff5_c00257{font-family:ff5_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00257;src:url('chunks/assets/font_fd29710ca8e7a36f66fff26e.woff2')format("woff");}.ff6_c00257{font-family:ff6_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00257;src:url('chunks/assets/font_9076cc5cca47b24d371e79b1.woff2')format("woff");}.ff7_c00257{font-family:ff7_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00257;src:url('chunks/assets/font_9e9c3583c22360b983197996.woff2')format("woff");}.ff8_c00257{font-family:ff8_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00257;src:url('chunks/assets/font_9884d627ccf8e0efcc7010ba.woff2')format("woff");}.ff9_c00257{font-family:ff9_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00257;src:url('chunks/assets/font_aac2f2e52372a83e3a86446e.woff2')format("woff");}.ffa_c00257{font-family:ffa_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00257;src:url('chunks/assets/font_b5a2156b3494d684dcf0ac58.woff2')format("woff");}.ffb_c00257{font-family:ffb_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00257;src:url('chunks/assets/font_b7be49ccb10c7083e401b642.woff2')format("woff");}.ffc_c00257{font-family:ffc_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd_c00257;src:url('chunks/assets/font_cecb539a0b449b29cc0ea4a3.woff2')format("woff");}.ffd_c00257{font-family:ffd_c00257;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00257;src:url('chunks/assets/font_e4e2e9a62aa525f742eaf103.woff2')format("woff");}.ffe_c00257{font-family:ffe_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00257;src:url('chunks/assets/font_f15085176c3b7ada71db9ea1.woff2')format("woff");}.fff_c00257{font-family:fff_c00257;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00257;src:url('chunks/assets/font_69bf5567841344cb0f531844.woff2')format("woff");}.ff10_c00257{font-family:ff10_c00257;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00257;src:url('chunks/assets/font_a2ce4f11cc1603872f3d08e2.woff2')format("woff");}.ff11_c00257{font-family:ff11_c00257;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00257;src:url('chunks/assets/font_0e67f25c04b1e3bd77482d02.woff2')format("woff");}.ff12_c00257{font-family:ff12_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00257;src:url('chunks/assets/font_5d77fdc8b14cb77fcf56c5e2.woff2')format("woff");}.ff13_c00257{font-family:ff13_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00257;src:url('chunks/assets/font_47748fdc70c374c13c26deb2.woff2')format("woff");}.ff14_c00257{font-family:ff14_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00257;src:url('chunks/assets/font_ad8ebf5b08ff65f113cab69a.woff2')format("woff");}.ff15_c00257{font-family:ff15_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00257;src:url('chunks/assets/font_3f36aceccffde7565043b9e3.woff2')format("woff");}.ff16_c00257{font-family:ff16_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00257;src:url('chunks/assets/font_cb15f27b5f5ffbeaefd4182c.woff2')format("woff");}.ff17_c00257{font-family:ff17_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00257;src:url('chunks/assets/font_977525e14507b5111b74e198.woff2')format("woff");}.ff18_c00257{font-family:ff18_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:ff19_c00257;src:url('chunks/assets/font_776048d7c7a8b9a2abf7c3d5.woff2')format("woff");}.ff19_c00257{font-family:ff19_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:ff1a_c00257;src:url('chunks/assets/font_65fb5b7d894eb0ed31eb8ae9.woff2')format("woff");}.ff1a_c00257{font-family:ff1a_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00257;src:url('chunks/assets/font_c86ef6cd0eae8942878eabb9.woff2')format("woff");}.ff1b_c00257{font-family:ff1b_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00257;src:url('chunks/assets/font_9c6e8f1e4fc68887ad627432.woff2')format("woff");}.ff1c_c00257{font-family:ff1c_c00257;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00257;src:url('chunks/assets/font_063646a56a72f47a8cfb2fc9.woff2')format("woff");}.ff1d_c00257{font-family:ff1d_c00257;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00257{letter-spacing:-0.014400px;}
.ls2_c00257{letter-spacing:0.000000px;}
.ls0_c00257{letter-spacing:0.072000px;}
.ls1_c00257{letter-spacing:16.898400px;}
.sc__c00257{text-shadow:none;}
.sc0_c00257{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00257{-webkit-text-stroke:0px transparent;}
.sc0_c00257{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00257{word-spacing:-0.072000px;}
.ws1_c00257{word-spacing:0.000000px;}
._0_c00257{width:1.785600px;}
._1_c00257{width:10.958400px;}
._3_c00257{width:16.927200px;}
._2_c00257{width:27.230400px;}
.fc1_c00257{color:transparent;}
.fc0_c00257{color:rgb(0,0,0);}
.fs1_c00257{font-size:64.800000px;}
.fs0_c00257{font-size:72.000000px;}
.y0_c00257{bottom:0.000000px;}
.y5_c00257{bottom:5.040000px;}
.y1_c00257{bottom:12.735000px;}
.y3_c00257{bottom:45.045000px;}
.y4_c00257{bottom:52.740000px;}
.yf_c00257{bottom:758.205000px;}
.ye_c00257{bottom:794.565000px;}
.yd_c00257{bottom:830.565000px;}
.yc_c00257{bottom:866.565000px;}
.yb_c00257{bottom:902.565000px;}
.ya_c00257{bottom:938.565000px;}
.y9_c00257{bottom:974.565000px;}
.y8_c00257{bottom:1010.565000px;}
.y7_c00257{bottom:1046.565000px;}
.y6_c00257{bottom:1082.565000px;}
.y2_c00257{bottom:1165.365000px;}
.h4_c00257{height:20.880000px;}
.h6_c00257{height:43.189453px;}
.h3_c00257{height:70.664062px;}
.h5_c00257{height:74.004654px;}
.h2_c00257{height:1237.365000px;}
.h0_c00257{height:1262.835000px;}
.h1_c00257{height:1263.000000px;}
.w3_c00257{width:27.000000px;}
.w2_c00257{width:867.465000px;}
.w0_c00257{width:892.935000px;}
.w1_c00257{width:893.250000px;}
.x0_c00257{left:0.000000px;}
.x1_c00257{left:12.735000px;}
.x3_c00257{left:95.406300px;}
.x5_c00257{left:149.400150px;}
.x4_c00257{left:433.215000px;}
.x2_c00257{left:878.550300px;}
@media print{
.v0_c00257{vertical-align:0.000000pt;}
.ls3_c00257{letter-spacing:-0.012800pt;}
.ls2_c00257{letter-spacing:0.000000pt;}
.ls0_c00257{letter-spacing:0.064000pt;}
.ls1_c00257{letter-spacing:15.020800pt;}
.ws0_c00257{word-spacing:-0.064000pt;}
.ws1_c00257{word-spacing:0.000000pt;}
._0_c00257{width:1.587200pt;}
._1_c00257{width:9.740800pt;}
._3_c00257{width:15.046400pt;}
._2_c00257{width:24.204800pt;}
.fs1_c00257{font-size:57.600000pt;}
.fs0_c00257{font-size:64.000000pt;}
.y0_c00257{bottom:0.000000pt;}
.y5_c00257{bottom:4.480000pt;}
.y1_c00257{bottom:11.320000pt;}
.y3_c00257{bottom:40.040000pt;}
.y4_c00257{bottom:46.880000pt;}
.yf_c00257{bottom:673.960000pt;}
.ye_c00257{bottom:706.280000pt;}
.yd_c00257{bottom:738.280000pt;}
.yc_c00257{bottom:770.280000pt;}
.yb_c00257{bottom:802.280000pt;}
.ya_c00257{bottom:834.280000pt;}
.y9_c00257{bottom:866.280000pt;}
.y8_c00257{bottom:898.280000pt;}
.y7_c00257{bottom:930.280000pt;}
.y6_c00257{bottom:962.280000pt;}
.y2_c00257{bottom:1035.880000pt;}
.h4_c00257{height:18.560000pt;}
.h6_c00257{height:38.390625pt;}
.h3_c00257{height:62.812500pt;}
.h5_c00257{height:65.781915pt;}
.h2_c00257{height:1099.880000pt;}
.h0_c00257{height:1122.520000pt;}
.h1_c00257{height:1122.666667pt;}
.w3_c00257{width:24.000000pt;}
.w2_c00257{width:771.080000pt;}
.w0_c00257{width:793.720000pt;}
.w1_c00257{width:794.000000pt;}
.x0_c00257{left:0.000000pt;}
.x1_c00257{left:11.320000pt;}
.x3_c00257{left:84.805600pt;}
.x5_c00257{left:132.800133pt;}
.x4_c00257{left:385.080000pt;}
.x2_c00257{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_4bf5cfd3c4bc570ad7245e4b.woff2')format("woff");}.ff1_c00258{font-family:ff1_c00258;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00258;src:url('chunks/assets/font_b695708529b70ed0c1ec6ac4.woff2')format("woff");}.ff2_c00258{font-family:ff2_c00258;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00258;src:url('chunks/assets/font_5949a23694290851b3048a68.woff2')format("woff");}.ff3_c00258{font-family:ff3_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:ff4_c00258;src:url('chunks/assets/font_03eee4426e52256107d78b33.woff2')format("woff");}.ff4_c00258{font-family:ff4_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;}
.m0_c00258{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00258{vertical-align:-132.480000px;}
.v0_c00258{vertical-align:0.000000px;}
.ls12_c00258{letter-spacing:-0.014400px;}
.lsa_c00258{letter-spacing:0.000000px;}
.lsb_c00258{letter-spacing:0.062208px;}
.ls2_c00258{letter-spacing:0.163296px;}
.ls3_c00258{letter-spacing:0.186624px;}
.ls8_c00258{letter-spacing:0.242208px;}
.ls9_c00258{letter-spacing:0.283968px;}
.lse_c00258{letter-spacing:0.298080px;}
.ls11_c00258{letter-spacing:0.317376px;}
.ls4_c00258{letter-spacing:0.324000px;}
.ls1_c00258{letter-spacing:0.370512px;}
.ls5_c00258{letter-spacing:0.388800px;}
.lsc_c00258{letter-spacing:0.524880px;}
.ls6_c00258{letter-spacing:0.602640px;}
.ls7_c00258{letter-spacing:0.622080px;}
.ls10_c00258{letter-spacing:0.680400px;}
.lsf_c00258{letter-spacing:0.725760px;}
.lsd_c00258{letter-spacing:0.874800px;}
.ls0_c00258{letter-spacing:958.900200px;}
.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;}
}
.ws1_c00258{word-spacing:-19.626624px;}
.ws0_c00258{word-spacing:-19.440000px;}
.ws3_c00258{word-spacing:-16.880400px;}
.ws2_c00258{word-spacing:-16.802640px;}
.ws4_c00258{word-spacing:0.000000px;}
._0_c00258{margin-left:-1.158624px;}
._1_c00258{width:1.057536px;}
._5_c00258{width:5.133600px;}
._2_c00258{width:6.415200px;}
._6_c00258{width:7.444800px;}
._3_c00258{width:8.496000px;}
._4_c00258{width:9.511200px;}
._7_c00258{width:27.223200px;}
.fc2_c00258{color:transparent;}
.fc1_c00258{color:rgb(127,127,127);}
.fc0_c00258{color:rgb(0,0,0);}
.fs3_c00258{font-size:64.800000px;}
.fs0_c00258{font-size:72.000000px;}
.fs2_c00258{font-size:77.760000px;}
.fs4_c00258{font-size:83.520000px;}
.fs1_c00258{font-size:119.520000px;}
.y0_c00258{bottom:0.000000px;}
.y5_c00258{bottom:5.040000px;}
.y1_c00258{bottom:12.735000px;}
.y3_c00258{bottom:45.405000px;}
.y4_c00258{bottom:53.100000px;}
.y24_c00258{bottom:101.565000px;}
.y23_c00258{bottom:137.565000px;}
.y22_c00258{bottom:173.565000px;}
.y21_c00258{bottom:209.565000px;}
.y20_c00258{bottom:245.565000px;}
.y1f_c00258{bottom:281.565000px;}
.y1e_c00258{bottom:317.565000px;}
.y1d_c00258{bottom:353.565000px;}
.y1c_c00258{bottom:389.565000px;}
.y1b_c00258{bottom:425.565000px;}
.y1a_c00258{bottom:461.565000px;}
.y19_c00258{bottom:497.565000px;}
.y18_c00258{bottom:533.565000px;}
.y17_c00258{bottom:569.565000px;}
.y16_c00258{bottom:605.565000px;}
.y15_c00258{bottom:641.565000px;}
.y14_c00258{bottom:678.285000px;}
.y13_c00258{bottom:713.565000px;}
.y12_c00258{bottom:749.925000px;}
.y11_c00258{bottom:770.445000px;}
.y10_c00258{bottom:806.059800px;}
.yf_c00258{bottom:825.143400px;}
.ye_c00258{bottom:844.227000px;}
.yd_c00258{bottom:863.310600px;}
.yc_c00258{bottom:882.394200px;}
.yb_c00258{bottom:901.121400px;}
.ya_c00258{bottom:920.205000px;}
.y9_c00258{bottom:939.645000px;}
.y8_c00258{bottom:976.005000px;}
.y7_c00258{bottom:1011.645000px;}
.y6_c00258{bottom:1083.645000px;}
.y2_c00258{bottom:1165.005000px;}
.h4_c00258{height:20.880000px;}
.h6_c00258{height:63.566016px;}
.h3_c00258{height:70.664062px;}
.h5_c00258{height:78.367500px;}
.h7_c00258{height:81.929531px;}
.h2_c00258{height:1237.365000px;}
.h0_c00258{height:1262.835000px;}
.h1_c00258{height:1263.000000px;}
.w3_c00258{width:27.360000px;}
.w2_c00258{width:867.465000px;}
.w0_c00258{width:892.935000px;}
.w1_c00258{width:893.250000px;}
.x0_c00258{left:0.000000px;}
.x1_c00258{left:12.735000px;}
.xe_c00258{left:63.450150px;}
.x3_c00258{left:95.397000px;}
.xf_c00258{left:149.400150px;}
.x6_c00258{left:168.202950px;}
.x7_c00258{left:239.672250px;}
.x8_c00258{left:262.109250px;}
.x9_c00258{left:323.507250px;}
.x4_c00258{left:432.855000px;}
.x5_c00258{left:460.799850px;}
.xa_c00258{left:595.310850px;}
.xd_c00258{left:632.425050px;}
.xc_c00258{left:666.347850px;}
.xb_c00258{left:772.214850px;}
.x2_c00258{left:880.125000px;}
@media print{
.v1_c00258{vertical-align:-117.760000pt;}
.v0_c00258{vertical-align:0.000000pt;}
.ls12_c00258{letter-spacing:-0.012800pt;}
.lsa_c00258{letter-spacing:0.000000pt;}
.lsb_c00258{letter-spacing:0.055296pt;}
.ls2_c00258{letter-spacing:0.145152pt;}
.ls3_c00258{letter-spacing:0.165888pt;}
.ls8_c00258{letter-spacing:0.215296pt;}
.ls9_c00258{letter-spacing:0.252416pt;}
.lse_c00258{letter-spacing:0.264960pt;}
.ls11_c00258{letter-spacing:0.282112pt;}
.ls4_c00258{letter-spacing:0.288000pt;}
.ls1_c00258{letter-spacing:0.329344pt;}
.ls5_c00258{letter-spacing:0.345600pt;}
.lsc_c00258{letter-spacing:0.466560pt;}
.ls6_c00258{letter-spacing:0.535680pt;}
.ls7_c00258{letter-spacing:0.552960pt;}
.ls10_c00258{letter-spacing:0.604800pt;}
.lsf_c00258{letter-spacing:0.645120pt;}
.lsd_c00258{letter-spacing:0.777600pt;}
.ls0_c00258{letter-spacing:852.355733pt;}
.ws1_c00258{word-spacing:-17.445888pt;}
.ws0_c00258{word-spacing:-17.280000pt;}
.ws3_c00258{word-spacing:-15.004800pt;}
.ws2_c00258{word-spacing:-14.935680pt;}
.ws4_c00258{word-spacing:0.000000pt;}
._0_c00258{margin-left:-1.029888pt;}
._1_c00258{width:0.940032pt;}
._5_c00258{width:4.563200pt;}
._2_c00258{width:5.702400pt;}
._6_c00258{width:6.617600pt;}
._3_c00258{width:7.552000pt;}
._4_c00258{width:8.454400pt;}
._7_c00258{width:24.198400pt;}
.fs3_c00258{font-size:57.600000pt;}
.fs0_c00258{font-size:64.000000pt;}
.fs2_c00258{font-size:69.120000pt;}
.fs4_c00258{font-size:74.240000pt;}
.fs1_c00258{font-size:106.240000pt;}
.y0_c00258{bottom:0.000000pt;}
.y5_c00258{bottom:4.480000pt;}
.y1_c00258{bottom:11.320000pt;}
.y3_c00258{bottom:40.360000pt;}
.y4_c00258{bottom:47.200000pt;}
.y24_c00258{bottom:90.280000pt;}
.y23_c00258{bottom:122.280000pt;}
.y22_c00258{bottom:154.280000pt;}
.y21_c00258{bottom:186.280000pt;}
.y20_c00258{bottom:218.280000pt;}
.y1f_c00258{bottom:250.280000pt;}
.y1e_c00258{bottom:282.280000pt;}
.y1d_c00258{bottom:314.280000pt;}
.y1c_c00258{bottom:346.280000pt;}
.y1b_c00258{bottom:378.280000pt;}
.y1a_c00258{bottom:410.280000pt;}
.y19_c00258{bottom:442.280000pt;}
.y18_c00258{bottom:474.280000pt;}
.y17_c00258{bottom:506.280000pt;}
.y16_c00258{bottom:538.280000pt;}
.y15_c00258{bottom:570.280000pt;}
.y14_c00258{bottom:602.920000pt;}
.y13_c00258{bottom:634.280000pt;}
.y12_c00258{bottom:666.600000pt;}
.y11_c00258{bottom:684.840000pt;}
.y10_c00258{bottom:716.497600pt;}
.yf_c00258{bottom:733.460800pt;}
.ye_c00258{bottom:750.424000pt;}
.yd_c00258{bottom:767.387200pt;}
.yc_c00258{bottom:784.350400pt;}
.yb_c00258{bottom:800.996800pt;}
.ya_c00258{bottom:817.960000pt;}
.y9_c00258{bottom:835.240000pt;}
.y8_c00258{bottom:867.560000pt;}
.y7_c00258{bottom:899.240000pt;}
.y6_c00258{bottom:963.240000pt;}
.y2_c00258{bottom:1035.560000pt;}
.h4_c00258{height:18.560000pt;}
.h6_c00258{height:56.503125pt;}
.h3_c00258{height:62.812500pt;}
.h5_c00258{height:69.660000pt;}
.h7_c00258{height:72.826250pt;}
.h2_c00258{height:1099.880000pt;}
.h0_c00258{height:1122.520000pt;}
.h1_c00258{height:1122.666667pt;}
.w3_c00258{width:24.320000pt;}
.w2_c00258{width:771.080000pt;}
.w0_c00258{width:793.720000pt;}
.w1_c00258{width:794.000000pt;}
.x0_c00258{left:0.000000pt;}
.x1_c00258{left:11.320000pt;}
.xe_c00258{left:56.400133pt;}
.x3_c00258{left:84.797333pt;}
.xf_c00258{left:132.800133pt;}
.x6_c00258{left:149.513733pt;}
.x7_c00258{left:213.042000pt;}
.x8_c00258{left:232.986000pt;}
.x9_c00258{left:287.562000pt;}
.x4_c00258{left:384.760000pt;}
.x5_c00258{left:409.599867pt;}
.xa_c00258{left:529.165200pt;}
.xd_c00258{left:562.155600pt;}
.xc_c00258{left:592.309200pt;}
.xb_c00258{left:686.413200pt;}
.x2_c00258{left:782.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_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_e5dcf38ec833fbf43c0ad3ab.woff2')format("woff");}.ff1_c00259{font-family:ff1_c00259;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00259;src:url('chunks/assets/font_544ef40fd995e24d67fb871e.woff2')format("woff");}.ff2_c00259{font-family:ff2_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;}
.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;}
.ls1_c00259{letter-spacing:-0.014400px;}
.ls0_c00259{letter-spacing:0.000000px;}
.sc__c00259{text-shadow:none;}
.sc0_c00259{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00259{-webkit-text-stroke:0px transparent;}
.sc0_c00259{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00259{word-spacing:0.000000px;}
._4_c00259{width:1.022400px;}
._a_c00259{width:3.405600px;}
._5_c00259{width:5.220000px;}
._1_c00259{width:7.012800px;}
._3_c00259{width:8.668800px;}
._9_c00259{width:10.749600px;}
._0_c00259{width:12.175200px;}
._8_c00259{width:16.732800px;}
._6_c00259{width:19.598400px;}
._2_c00259{width:25.797600px;}
._7_c00259{width:37.800000px;}
.fc1_c00259{color:transparent;}
.fc0_c00259{color:rgb(0,0,0);}
.fs0_c00259{font-size:72.000000px;}
.y0_c00259{bottom:0.000000px;}
.y5_c00259{bottom:5.040000px;}
.y1_c00259{bottom:12.735000px;}
.y3_c00259{bottom:45.405000px;}
.y4_c00259{bottom:53.100000px;}
.y21_c00259{bottom:111.645000px;}
.y20_c00259{bottom:147.645000px;}
.y1f_c00259{bottom:183.645000px;}
.y1e_c00259{bottom:219.645000px;}
.y1d_c00259{bottom:255.645000px;}
.y1c_c00259{bottom:291.645000px;}
.y1b_c00259{bottom:327.645000px;}
.y1a_c00259{bottom:363.645000px;}
.y19_c00259{bottom:399.645000px;}
.y18_c00259{bottom:435.645000px;}
.y17_c00259{bottom:471.645000px;}
.y16_c00259{bottom:507.645000px;}
.y15_c00259{bottom:543.645000px;}
.y14_c00259{bottom:579.645000px;}
.y13_c00259{bottom:615.645000px;}
.y12_c00259{bottom:651.645000px;}
.y11_c00259{bottom:687.645000px;}
.y10_c00259{bottom:723.645000px;}
.yf_c00259{bottom:759.645000px;}
.ye_c00259{bottom:795.645000px;}
.yd_c00259{bottom:831.645000px;}
.yc_c00259{bottom:867.645000px;}
.yb_c00259{bottom:903.645000px;}
.ya_c00259{bottom:939.645000px;}
.y9_c00259{bottom:975.645000px;}
.y8_c00259{bottom:1011.645000px;}
.y7_c00259{bottom:1047.645000px;}
.y6_c00259{bottom:1083.645000px;}
.y2_c00259{bottom:1165.005000px;}
.h4_c00259{height:20.880000px;}
.h3_c00259{height:70.664062px;}
.h2_c00259{height:1237.365000px;}
.h0_c00259{height:1262.835000px;}
.h1_c00259{height:1263.000000px;}
.w3_c00259{width:27.360000px;}
.w2_c00259{width:867.465000px;}
.w0_c00259{width:892.935000px;}
.w1_c00259{width:893.250000px;}
.x0_c00259{left:0.000000px;}
.x1_c00259{left:12.735000px;}
.x3_c00259{left:95.394300px;}
.x5_c00259{left:149.400150px;}
.x4_c00259{left:432.855000px;}
.x2_c00259{left:880.050300px;}
@media print{
.v0_c00259{vertical-align:0.000000pt;}
.ls1_c00259{letter-spacing:-0.012800pt;}
.ls0_c00259{letter-spacing:0.000000pt;}
.ws0_c00259{word-spacing:0.000000pt;}
._4_c00259{width:0.908800pt;}
._a_c00259{width:3.027200pt;}
._5_c00259{width:4.640000pt;}
._1_c00259{width:6.233600pt;}
._3_c00259{width:7.705600pt;}
._9_c00259{width:9.555200pt;}
._0_c00259{width:10.822400pt;}
._8_c00259{width:14.873600pt;}
._6_c00259{width:17.420800pt;}
._2_c00259{width:22.931200pt;}
._7_c00259{width:33.600000pt;}
.fs0_c00259{font-size:64.000000pt;}
.y0_c00259{bottom:0.000000pt;}
.y5_c00259{bottom:4.480000pt;}
.y1_c00259{bottom:11.320000pt;}
.y3_c00259{bottom:40.360000pt;}
.y4_c00259{bottom:47.200000pt;}
.y21_c00259{bottom:99.240000pt;}
.y20_c00259{bottom:131.240000pt;}
.y1f_c00259{bottom:163.240000pt;}
.y1e_c00259{bottom:195.240000pt;}
.y1d_c00259{bottom:227.240000pt;}
.y1c_c00259{bottom:259.240000pt;}
.y1b_c00259{bottom:291.240000pt;}
.y1a_c00259{bottom:323.240000pt;}
.y19_c00259{bottom:355.240000pt;}
.y18_c00259{bottom:387.240000pt;}
.y17_c00259{bottom:419.240000pt;}
.y16_c00259{bottom:451.240000pt;}
.y15_c00259{bottom:483.240000pt;}
.y14_c00259{bottom:515.240000pt;}
.y13_c00259{bottom:547.240000pt;}
.y12_c00259{bottom:579.240000pt;}
.y11_c00259{bottom:611.240000pt;}
.y10_c00259{bottom:643.240000pt;}
.yf_c00259{bottom:675.240000pt;}
.ye_c00259{bottom:707.240000pt;}
.yd_c00259{bottom:739.240000pt;}
.yc_c00259{bottom:771.240000pt;}
.yb_c00259{bottom:803.240000pt;}
.ya_c00259{bottom:835.240000pt;}
.y9_c00259{bottom:867.240000pt;}
.y8_c00259{bottom:899.240000pt;}
.y7_c00259{bottom:931.240000pt;}
.y6_c00259{bottom:963.240000pt;}
.y2_c00259{bottom:1035.560000pt;}
.h4_c00259{height:18.560000pt;}
.h3_c00259{height:62.812500pt;}
.h2_c00259{height:1099.880000pt;}
.h0_c00259{height:1122.520000pt;}
.h1_c00259{height:1122.666667pt;}
.w3_c00259{width:24.320000pt;}
.w2_c00259{width:771.080000pt;}
.w0_c00259{width:793.720000pt;}
.w1_c00259{width:794.000000pt;}
.x0_c00259{left:0.000000pt;}
.x1_c00259{left:11.320000pt;}
.x3_c00259{left:84.794933pt;}
.x5_c00259{left:132.800133pt;}
.x4_c00259{left:384.760000pt;}
.x2_c00259{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a5ba989411e2711af3e3bda9.woff2')format("woff");}.ff1_c00260{font-family:ff1_c00260;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00260;src:url('chunks/assets/font_91bb1a3332d63ab8d3f199cf.woff2')format("woff");}.ff2_c00260{font-family:ff2_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;}
.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;}
.ls0_c00260{letter-spacing:0.000000px;}
.sc__c00260{text-shadow:none;}
.sc0_c00260{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00260{-webkit-text-stroke:0px transparent;}
.sc0_c00260{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00260{word-spacing:0.000000px;}
._a_c00260{width:1.425600px;}
._5_c00260{width:3.362400px;}
._4_c00260{width:4.780800px;}
._3_c00260{width:7.149600px;}
._b_c00260{width:11.980800px;}
._7_c00260{width:13.003200px;}
._2_c00260{width:14.457600px;}
._6_c00260{width:15.768000px;}
._1_c00260{width:16.768800px;}
._0_c00260{width:19.987200px;}
._9_c00260{width:21.009600px;}
._8_c00260{width:24.681600px;}
.fc1_c00260{color:transparent;}
.fc0_c00260{color:rgb(0,0,0);}
.fs0_c00260{font-size:72.000000px;}
.y0_c00260{bottom:0.000000px;}
.y5_c00260{bottom:5.040000px;}
.y1_c00260{bottom:12.735000px;}
.y3_c00260{bottom:45.405000px;}
.y4_c00260{bottom:53.100000px;}
.y21_c00260{bottom:111.645000px;}
.y20_c00260{bottom:147.645000px;}
.y1f_c00260{bottom:183.645000px;}
.y1e_c00260{bottom:219.645000px;}
.y1d_c00260{bottom:255.645000px;}
.y1c_c00260{bottom:291.645000px;}
.y1b_c00260{bottom:327.645000px;}
.y1a_c00260{bottom:363.645000px;}
.y19_c00260{bottom:399.645000px;}
.y18_c00260{bottom:435.645000px;}
.y17_c00260{bottom:471.645000px;}
.y16_c00260{bottom:507.645000px;}
.y15_c00260{bottom:543.645000px;}
.y14_c00260{bottom:579.645000px;}
.y13_c00260{bottom:615.645000px;}
.y12_c00260{bottom:651.645000px;}
.y11_c00260{bottom:687.645000px;}
.y10_c00260{bottom:723.645000px;}
.yf_c00260{bottom:759.645000px;}
.ye_c00260{bottom:795.645000px;}
.yd_c00260{bottom:831.645000px;}
.yc_c00260{bottom:867.645000px;}
.yb_c00260{bottom:903.645000px;}
.ya_c00260{bottom:939.645000px;}
.y9_c00260{bottom:975.645000px;}
.y8_c00260{bottom:1011.645000px;}
.y7_c00260{bottom:1047.645000px;}
.y6_c00260{bottom:1083.645000px;}
.y2_c00260{bottom:1165.005000px;}
.h4_c00260{height:20.880000px;}
.h5_c00260{height:70.628906px;}
.h3_c00260{height:70.664062px;}
.h2_c00260{height:1237.365000px;}
.h0_c00260{height:1262.835000px;}
.h1_c00260{height:1263.000000px;}
.w3_c00260{width:27.360000px;}
.w2_c00260{width:867.465000px;}
.w0_c00260{width:892.935000px;}
.w1_c00260{width:893.250000px;}
.x0_c00260{left:0.000000px;}
.x1_c00260{left:12.735000px;}
.x3_c00260{left:95.397000px;}
.x5_c00260{left:117.450150px;}
.x6_c00260{left:148.572150px;}
.x4_c00260{left:432.855000px;}
.x2_c00260{left:880.125000px;}
@media print{
.v0_c00260{vertical-align:0.000000pt;}
.ls0_c00260{letter-spacing:0.000000pt;}
.ws0_c00260{word-spacing:0.000000pt;}
._a_c00260{width:1.267200pt;}
._5_c00260{width:2.988800pt;}
._4_c00260{width:4.249600pt;}
._3_c00260{width:6.355200pt;}
._b_c00260{width:10.649600pt;}
._7_c00260{width:11.558400pt;}
._2_c00260{width:12.851200pt;}
._6_c00260{width:14.016000pt;}
._1_c00260{width:14.905600pt;}
._0_c00260{width:17.766400pt;}
._9_c00260{width:18.675200pt;}
._8_c00260{width:21.939200pt;}
.fs0_c00260{font-size:64.000000pt;}
.y0_c00260{bottom:0.000000pt;}
.y5_c00260{bottom:4.480000pt;}
.y1_c00260{bottom:11.320000pt;}
.y3_c00260{bottom:40.360000pt;}
.y4_c00260{bottom:47.200000pt;}
.y21_c00260{bottom:99.240000pt;}
.y20_c00260{bottom:131.240000pt;}
.y1f_c00260{bottom:163.240000pt;}
.y1e_c00260{bottom:195.240000pt;}
.y1d_c00260{bottom:227.240000pt;}
.y1c_c00260{bottom:259.240000pt;}
.y1b_c00260{bottom:291.240000pt;}
.y1a_c00260{bottom:323.240000pt;}
.y19_c00260{bottom:355.240000pt;}
.y18_c00260{bottom:387.240000pt;}
.y17_c00260{bottom:419.240000pt;}
.y16_c00260{bottom:451.240000pt;}
.y15_c00260{bottom:483.240000pt;}
.y14_c00260{bottom:515.240000pt;}
.y13_c00260{bottom:547.240000pt;}
.y12_c00260{bottom:579.240000pt;}
.y11_c00260{bottom:611.240000pt;}
.y10_c00260{bottom:643.240000pt;}
.yf_c00260{bottom:675.240000pt;}
.ye_c00260{bottom:707.240000pt;}
.yd_c00260{bottom:739.240000pt;}
.yc_c00260{bottom:771.240000pt;}
.yb_c00260{bottom:803.240000pt;}
.ya_c00260{bottom:835.240000pt;}
.y9_c00260{bottom:867.240000pt;}
.y8_c00260{bottom:899.240000pt;}
.y7_c00260{bottom:931.240000pt;}
.y6_c00260{bottom:963.240000pt;}
.y2_c00260{bottom:1035.560000pt;}
.h4_c00260{height:18.560000pt;}
.h5_c00260{height:62.781250pt;}
.h3_c00260{height:62.812500pt;}
.h2_c00260{height:1099.880000pt;}
.h0_c00260{height:1122.520000pt;}
.h1_c00260{height:1122.666667pt;}
.w3_c00260{width:24.320000pt;}
.w2_c00260{width:771.080000pt;}
.w0_c00260{width:793.720000pt;}
.w1_c00260{width:794.000000pt;}
.x0_c00260{left:0.000000pt;}
.x1_c00260{left:11.320000pt;}
.x3_c00260{left:84.797333pt;}
.x5_c00260{left:104.400133pt;}
.x6_c00260{left:132.064133pt;}
.x4_c00260{left:384.760000pt;}
.x2_c00260{left:782.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_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_34412ec87d50ab2793843563.woff2')format("woff");}.ff1_c00261{font-family:ff1_c00261;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00261{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00261{vertical-align:0.000000px;}
.ls1_c00261{letter-spacing:-0.014400px;}
.ls0_c00261{letter-spacing:0.000000px;}
.sc__c00261{text-shadow:none;}
.sc0_c00261{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00261{-webkit-text-stroke:0px transparent;}
.sc0_c00261{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00261{word-spacing:0.000000px;}
._1_c00261{width:1.324800px;}
._2_c00261{width:2.664000px;}
._0_c00261{width:3.830400px;}
._9_c00261{width:5.716800px;}
._8_c00261{width:7.545600px;}
._7_c00261{width:9.223200px;}
._5_c00261{width:10.432800px;}
._a_c00261{width:13.068000px;}
._b_c00261{width:15.696000px;}
._6_c00261{width:19.555200px;}
._c_c00261{width:20.649600px;}
._4_c00261{width:39.096000px;}
._3_c00261{width:44.856000px;}
.fc1_c00261{color:transparent;}
.fc0_c00261{color:rgb(0,0,0);}
.fs0_c00261{font-size:72.000000px;}
.y0_c00261{bottom:0.000000px;}
.y5_c00261{bottom:5.040000px;}
.y1_c00261{bottom:12.735000px;}
.y3_c00261{bottom:45.405000px;}
.y4_c00261{bottom:53.100000px;}
.y20_c00261{bottom:147.645000px;}
.y1f_c00261{bottom:183.645000px;}
.y1e_c00261{bottom:219.645000px;}
.y1d_c00261{bottom:255.645000px;}
.y1c_c00261{bottom:291.645000px;}
.y1b_c00261{bottom:327.645000px;}
.y1a_c00261{bottom:363.645000px;}
.y19_c00261{bottom:399.645000px;}
.y18_c00261{bottom:435.645000px;}
.y17_c00261{bottom:471.645000px;}
.y16_c00261{bottom:507.645000px;}
.y15_c00261{bottom:543.645000px;}
.y14_c00261{bottom:579.645000px;}
.y13_c00261{bottom:615.645000px;}
.y12_c00261{bottom:651.645000px;}
.y11_c00261{bottom:687.645000px;}
.y10_c00261{bottom:723.645000px;}
.yf_c00261{bottom:759.645000px;}
.ye_c00261{bottom:795.645000px;}
.yd_c00261{bottom:831.645000px;}
.yc_c00261{bottom:867.645000px;}
.yb_c00261{bottom:903.645000px;}
.ya_c00261{bottom:939.645000px;}
.y9_c00261{bottom:975.645000px;}
.y8_c00261{bottom:1011.645000px;}
.y7_c00261{bottom:1047.645000px;}
.y6_c00261{bottom:1083.645000px;}
.y2_c00261{bottom:1165.005000px;}
.h4_c00261{height:20.880000px;}
.h3_c00261{height:70.664062px;}
.h2_c00261{height:1237.365000px;}
.h0_c00261{height:1262.835000px;}
.h1_c00261{height:1263.000000px;}
.w3_c00261{width:27.360000px;}
.w2_c00261{width:867.465000px;}
.w0_c00261{width:892.935000px;}
.w1_c00261{width:893.250000px;}
.x0_c00261{left:0.000000px;}
.x1_c00261{left:12.735000px;}
.x3_c00261{left:95.394300px;}
.x5_c00261{left:149.400150px;}
.x4_c00261{left:432.855000px;}
.x2_c00261{left:880.050300px;}
@media print{
.v0_c00261{vertical-align:0.000000pt;}
.ls1_c00261{letter-spacing:-0.012800pt;}
.ls0_c00261{letter-spacing:0.000000pt;}
.ws0_c00261{word-spacing:0.000000pt;}
._1_c00261{width:1.177600pt;}
._2_c00261{width:2.368000pt;}
._0_c00261{width:3.404800pt;}
._9_c00261{width:5.081600pt;}
._8_c00261{width:6.707200pt;}
._7_c00261{width:8.198400pt;}
._5_c00261{width:9.273600pt;}
._a_c00261{width:11.616000pt;}
._b_c00261{width:13.952000pt;}
._6_c00261{width:17.382400pt;}
._c_c00261{width:18.355200pt;}
._4_c00261{width:34.752000pt;}
._3_c00261{width:39.872000pt;}
.fs0_c00261{font-size:64.000000pt;}
.y0_c00261{bottom:0.000000pt;}
.y5_c00261{bottom:4.480000pt;}
.y1_c00261{bottom:11.320000pt;}
.y3_c00261{bottom:40.360000pt;}
.y4_c00261{bottom:47.200000pt;}
.y20_c00261{bottom:131.240000pt;}
.y1f_c00261{bottom:163.240000pt;}
.y1e_c00261{bottom:195.240000pt;}
.y1d_c00261{bottom:227.240000pt;}
.y1c_c00261{bottom:259.240000pt;}
.y1b_c00261{bottom:291.240000pt;}
.y1a_c00261{bottom:323.240000pt;}
.y19_c00261{bottom:355.240000pt;}
.y18_c00261{bottom:387.240000pt;}
.y17_c00261{bottom:419.240000pt;}
.y16_c00261{bottom:451.240000pt;}
.y15_c00261{bottom:483.240000pt;}
.y14_c00261{bottom:515.240000pt;}
.y13_c00261{bottom:547.240000pt;}
.y12_c00261{bottom:579.240000pt;}
.y11_c00261{bottom:611.240000pt;}
.y10_c00261{bottom:643.240000pt;}
.yf_c00261{bottom:675.240000pt;}
.ye_c00261{bottom:707.240000pt;}
.yd_c00261{bottom:739.240000pt;}
.yc_c00261{bottom:771.240000pt;}
.yb_c00261{bottom:803.240000pt;}
.ya_c00261{bottom:835.240000pt;}
.y9_c00261{bottom:867.240000pt;}
.y8_c00261{bottom:899.240000pt;}
.y7_c00261{bottom:931.240000pt;}
.y6_c00261{bottom:963.240000pt;}
.y2_c00261{bottom:1035.560000pt;}
.h4_c00261{height:18.560000pt;}
.h3_c00261{height:62.812500pt;}
.h2_c00261{height:1099.880000pt;}
.h0_c00261{height:1122.520000pt;}
.h1_c00261{height:1122.666667pt;}
.w3_c00261{width:24.320000pt;}
.w2_c00261{width:771.080000pt;}
.w0_c00261{width:793.720000pt;}
.w1_c00261{width:794.000000pt;}
.x0_c00261{left:0.000000pt;}
.x1_c00261{left:11.320000pt;}
.x3_c00261{left:84.794933pt;}
.x5_c00261{left:132.800133pt;}
.x4_c00261{left:384.760000pt;}
.x2_c00261{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cc9be088a3e98f28f15d1a6f.woff2')format("woff");}.ff1_c00262{font-family:ff1_c00262;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00262;src:url('chunks/assets/font_3ab9f38593d0ad4b0544d6db.woff2')format("woff");}.ff2_c00262{font-family:ff2_c00262;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00262{letter-spacing:-0.014400px;}
.ls0_c00262{letter-spacing:0.000000px;}
.sc__c00262{text-shadow:none;}
.sc0_c00262{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00262{-webkit-text-stroke:0px transparent;}
.sc0_c00262{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00262{word-spacing:0.000000px;}
._8_c00262{width:1.324800px;}
._0_c00262{width:2.944800px;}
._4_c00262{width:4.838400px;}
._7_c00262{width:5.990400px;}
._1_c00262{width:7.113600px;}
._3_c00262{width:8.452800px;}
._9_c00262{width:9.820800px;}
._6_c00262{width:13.687200px;}
._2_c00262{width:14.702400px;}
._5_c00262{width:44.186400px;}
.fc1_c00262{color:transparent;}
.fc0_c00262{color:rgb(0,0,0);}
.fs0_c00262{font-size:72.000000px;}
.y0_c00262{bottom:0.000000px;}
.y5_c00262{bottom:5.040000px;}
.y1_c00262{bottom:12.735000px;}
.y3_c00262{bottom:45.405000px;}
.y4_c00262{bottom:53.100000px;}
.y21_c00262{bottom:111.645000px;}
.y20_c00262{bottom:147.645000px;}
.y1f_c00262{bottom:183.645000px;}
.y1e_c00262{bottom:219.645000px;}
.y1d_c00262{bottom:255.645000px;}
.y1c_c00262{bottom:291.645000px;}
.y1b_c00262{bottom:327.645000px;}
.y1a_c00262{bottom:363.645000px;}
.y19_c00262{bottom:399.645000px;}
.y18_c00262{bottom:435.645000px;}
.y17_c00262{bottom:471.645000px;}
.y16_c00262{bottom:507.645000px;}
.y15_c00262{bottom:543.645000px;}
.y14_c00262{bottom:579.645000px;}
.y13_c00262{bottom:615.645000px;}
.y12_c00262{bottom:651.645000px;}
.y11_c00262{bottom:687.645000px;}
.y10_c00262{bottom:723.645000px;}
.yf_c00262{bottom:759.645000px;}
.ye_c00262{bottom:795.645000px;}
.yd_c00262{bottom:831.645000px;}
.yc_c00262{bottom:867.645000px;}
.yb_c00262{bottom:903.645000px;}
.ya_c00262{bottom:939.645000px;}
.y9_c00262{bottom:975.645000px;}
.y8_c00262{bottom:1011.645000px;}
.y7_c00262{bottom:1047.645000px;}
.y6_c00262{bottom:1083.645000px;}
.y2_c00262{bottom:1165.005000px;}
.h4_c00262{height:20.880000px;}
.h5_c00262{height:70.628906px;}
.h3_c00262{height:70.664062px;}
.h2_c00262{height:1237.365000px;}
.h0_c00262{height:1262.835000px;}
.h1_c00262{height:1263.000000px;}
.w3_c00262{width:27.360000px;}
.w2_c00262{width:867.465000px;}
.w0_c00262{width:892.935000px;}
.w1_c00262{width:893.250000px;}
.x0_c00262{left:0.000000px;}
.x1_c00262{left:12.735000px;}
.x3_c00262{left:95.397000px;}
.x5_c00262{left:149.400150px;}
.x4_c00262{left:432.855000px;}
.x2_c00262{left:880.125000px;}
@media print{
.v0_c00262{vertical-align:0.000000pt;}
.ls1_c00262{letter-spacing:-0.012800pt;}
.ls0_c00262{letter-spacing:0.000000pt;}
.ws0_c00262{word-spacing:0.000000pt;}
._8_c00262{width:1.177600pt;}
._0_c00262{width:2.617600pt;}
._4_c00262{width:4.300800pt;}
._7_c00262{width:5.324800pt;}
._1_c00262{width:6.323200pt;}
._3_c00262{width:7.513600pt;}
._9_c00262{width:8.729600pt;}
._6_c00262{width:12.166400pt;}
._2_c00262{width:13.068800pt;}
._5_c00262{width:39.276800pt;}
.fs0_c00262{font-size:64.000000pt;}
.y0_c00262{bottom:0.000000pt;}
.y5_c00262{bottom:4.480000pt;}
.y1_c00262{bottom:11.320000pt;}
.y3_c00262{bottom:40.360000pt;}
.y4_c00262{bottom:47.200000pt;}
.y21_c00262{bottom:99.240000pt;}
.y20_c00262{bottom:131.240000pt;}
.y1f_c00262{bottom:163.240000pt;}
.y1e_c00262{bottom:195.240000pt;}
.y1d_c00262{bottom:227.240000pt;}
.y1c_c00262{bottom:259.240000pt;}
.y1b_c00262{bottom:291.240000pt;}
.y1a_c00262{bottom:323.240000pt;}
.y19_c00262{bottom:355.240000pt;}
.y18_c00262{bottom:387.240000pt;}
.y17_c00262{bottom:419.240000pt;}
.y16_c00262{bottom:451.240000pt;}
.y15_c00262{bottom:483.240000pt;}
.y14_c00262{bottom:515.240000pt;}
.y13_c00262{bottom:547.240000pt;}
.y12_c00262{bottom:579.240000pt;}
.y11_c00262{bottom:611.240000pt;}
.y10_c00262{bottom:643.240000pt;}
.yf_c00262{bottom:675.240000pt;}
.ye_c00262{bottom:707.240000pt;}
.yd_c00262{bottom:739.240000pt;}
.yc_c00262{bottom:771.240000pt;}
.yb_c00262{bottom:803.240000pt;}
.ya_c00262{bottom:835.240000pt;}
.y9_c00262{bottom:867.240000pt;}
.y8_c00262{bottom:899.240000pt;}
.y7_c00262{bottom:931.240000pt;}
.y6_c00262{bottom:963.240000pt;}
.y2_c00262{bottom:1035.560000pt;}
.h4_c00262{height:18.560000pt;}
.h5_c00262{height:62.781250pt;}
.h3_c00262{height:62.812500pt;}
.h2_c00262{height:1099.880000pt;}
.h0_c00262{height:1122.520000pt;}
.h1_c00262{height:1122.666667pt;}
.w3_c00262{width:24.320000pt;}
.w2_c00262{width:771.080000pt;}
.w0_c00262{width:793.720000pt;}
.w1_c00262{width:794.000000pt;}
.x0_c00262{left:0.000000pt;}
.x1_c00262{left:11.320000pt;}
.x3_c00262{left:84.797333pt;}
.x5_c00262{left:132.800133pt;}
.x4_c00262{left:384.760000pt;}
.x2_c00262{left:782.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_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_e32baa7eec2e87e9c778bbdd.woff2')format("woff");}.ff1_c00263{font-family:ff1_c00263;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00263{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00263{vertical-align:0.000000px;}
.ls0_c00263{letter-spacing:0.000000px;}
.sc__c00263{text-shadow:none;}
.sc0_c00263{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00263{-webkit-text-stroke:0px transparent;}
.sc0_c00263{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00263{word-spacing:0.000000px;}
._3_c00263{width:1.692000px;}
._2_c00263{width:3.636000px;}
._0_c00263{width:4.759200px;}
._1_c00263{width:5.774400px;}
._5_c00263{width:8.488800px;}
._8_c00263{width:9.993600px;}
._9_c00263{width:11.001600px;}
._7_c00263{width:13.219200px;}
._6_c00263{width:14.673600px;}
._a_c00263{width:15.681600px;}
._4_c00263{width:28.396800px;}
.fc1_c00263{color:transparent;}
.fc0_c00263{color:rgb(0,0,0);}
.fs0_c00263{font-size:72.000000px;}
.y0_c00263{bottom:0.000000px;}
.y5_c00263{bottom:5.040000px;}
.y1_c00263{bottom:12.735000px;}
.y3_c00263{bottom:45.405000px;}
.y4_c00263{bottom:53.100000px;}
.y21_c00263{bottom:111.645000px;}
.y20_c00263{bottom:147.645000px;}
.y1f_c00263{bottom:183.645000px;}
.y1e_c00263{bottom:219.645000px;}
.y1d_c00263{bottom:255.645000px;}
.y1c_c00263{bottom:291.645000px;}
.y1b_c00263{bottom:327.645000px;}
.y1a_c00263{bottom:363.645000px;}
.y19_c00263{bottom:399.645000px;}
.y18_c00263{bottom:435.645000px;}
.y17_c00263{bottom:471.645000px;}
.y16_c00263{bottom:507.645000px;}
.y15_c00263{bottom:543.645000px;}
.y14_c00263{bottom:579.645000px;}
.y13_c00263{bottom:615.645000px;}
.y12_c00263{bottom:651.645000px;}
.y11_c00263{bottom:687.645000px;}
.y10_c00263{bottom:723.645000px;}
.yf_c00263{bottom:759.645000px;}
.ye_c00263{bottom:795.645000px;}
.yd_c00263{bottom:831.645000px;}
.yc_c00263{bottom:867.645000px;}
.yb_c00263{bottom:903.645000px;}
.ya_c00263{bottom:939.645000px;}
.y9_c00263{bottom:975.645000px;}
.y8_c00263{bottom:1011.645000px;}
.y7_c00263{bottom:1047.645000px;}
.y6_c00263{bottom:1083.645000px;}
.y2_c00263{bottom:1165.005000px;}
.h4_c00263{height:20.880000px;}
.h3_c00263{height:70.664062px;}
.h2_c00263{height:1237.365000px;}
.h0_c00263{height:1262.835000px;}
.h1_c00263{height:1263.000000px;}
.w3_c00263{width:27.360000px;}
.w2_c00263{width:867.465000px;}
.w0_c00263{width:892.935000px;}
.w1_c00263{width:893.250000px;}
.x0_c00263{left:0.000000px;}
.x1_c00263{left:12.735000px;}
.x3_c00263{left:95.394300px;}
.x5_c00263{left:149.400150px;}
.x4_c00263{left:432.855000px;}
.x2_c00263{left:880.050300px;}
@media print{
.v0_c00263{vertical-align:0.000000pt;}
.ls0_c00263{letter-spacing:0.000000pt;}
.ws0_c00263{word-spacing:0.000000pt;}
._3_c00263{width:1.504000pt;}
._2_c00263{width:3.232000pt;}
._0_c00263{width:4.230400pt;}
._1_c00263{width:5.132800pt;}
._5_c00263{width:7.545600pt;}
._8_c00263{width:8.883200pt;}
._9_c00263{width:9.779200pt;}
._7_c00263{width:11.750400pt;}
._6_c00263{width:13.043200pt;}
._a_c00263{width:13.939200pt;}
._4_c00263{width:25.241600pt;}
.fs0_c00263{font-size:64.000000pt;}
.y0_c00263{bottom:0.000000pt;}
.y5_c00263{bottom:4.480000pt;}
.y1_c00263{bottom:11.320000pt;}
.y3_c00263{bottom:40.360000pt;}
.y4_c00263{bottom:47.200000pt;}
.y21_c00263{bottom:99.240000pt;}
.y20_c00263{bottom:131.240000pt;}
.y1f_c00263{bottom:163.240000pt;}
.y1e_c00263{bottom:195.240000pt;}
.y1d_c00263{bottom:227.240000pt;}
.y1c_c00263{bottom:259.240000pt;}
.y1b_c00263{bottom:291.240000pt;}
.y1a_c00263{bottom:323.240000pt;}
.y19_c00263{bottom:355.240000pt;}
.y18_c00263{bottom:387.240000pt;}
.y17_c00263{bottom:419.240000pt;}
.y16_c00263{bottom:451.240000pt;}
.y15_c00263{bottom:483.240000pt;}
.y14_c00263{bottom:515.240000pt;}
.y13_c00263{bottom:547.240000pt;}
.y12_c00263{bottom:579.240000pt;}
.y11_c00263{bottom:611.240000pt;}
.y10_c00263{bottom:643.240000pt;}
.yf_c00263{bottom:675.240000pt;}
.ye_c00263{bottom:707.240000pt;}
.yd_c00263{bottom:739.240000pt;}
.yc_c00263{bottom:771.240000pt;}
.yb_c00263{bottom:803.240000pt;}
.ya_c00263{bottom:835.240000pt;}
.y9_c00263{bottom:867.240000pt;}
.y8_c00263{bottom:899.240000pt;}
.y7_c00263{bottom:931.240000pt;}
.y6_c00263{bottom:963.240000pt;}
.y2_c00263{bottom:1035.560000pt;}
.h4_c00263{height:18.560000pt;}
.h3_c00263{height:62.812500pt;}
.h2_c00263{height:1099.880000pt;}
.h0_c00263{height:1122.520000pt;}
.h1_c00263{height:1122.666667pt;}
.w3_c00263{width:24.320000pt;}
.w2_c00263{width:771.080000pt;}
.w0_c00263{width:793.720000pt;}
.w1_c00263{width:794.000000pt;}
.x0_c00263{left:0.000000pt;}
.x1_c00263{left:11.320000pt;}
.x3_c00263{left:84.794933pt;}
.x5_c00263{left:132.800133pt;}
.x4_c00263{left:384.760000pt;}
.x2_c00263{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8ee25808d622e9e123c6ca9.woff2')format("woff");}.ff1_c00264{font-family:ff1_c00264;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00264{letter-spacing:0.000000px;}
.sc__c00264{text-shadow:none;}
.sc0_c00264{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00264{-webkit-text-stroke:0px transparent;}
.sc0_c00264{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00264{word-spacing:0.000000px;}
._4_c00264{width:1.850400px;}
._0_c00264{width:3.088800px;}
._2_c00264{width:4.536000px;}
._1_c00264{width:5.997600px;}
._9_c00264{width:7.437600px;}
._5_c00264{width:9.158400px;}
._d_c00264{width:12.751200px;}
._a_c00264{width:14.767200px;}
._6_c00264{width:15.847200px;}
._b_c00264{width:19.670400px;}
._7_c00264{width:21.981600px;}
._3_c00264{width:24.984000px;}
._8_c00264{width:28.778400px;}
._c_c00264{width:30.376800px;}
.fc1_c00264{color:transparent;}
.fc0_c00264{color:rgb(0,0,0);}
.fs0_c00264{font-size:72.000000px;}
.y0_c00264{bottom:0.000000px;}
.y5_c00264{bottom:5.040000px;}
.y1_c00264{bottom:12.735000px;}
.y3_c00264{bottom:45.405000px;}
.y4_c00264{bottom:53.100000px;}
.y21_c00264{bottom:111.645000px;}
.y20_c00264{bottom:147.645000px;}
.y1f_c00264{bottom:183.645000px;}
.y1e_c00264{bottom:219.645000px;}
.y1d_c00264{bottom:255.645000px;}
.y1c_c00264{bottom:291.645000px;}
.y1b_c00264{bottom:327.645000px;}
.y1a_c00264{bottom:363.645000px;}
.y19_c00264{bottom:399.645000px;}
.y18_c00264{bottom:435.645000px;}
.y17_c00264{bottom:471.645000px;}
.y16_c00264{bottom:507.645000px;}
.y15_c00264{bottom:543.645000px;}
.y14_c00264{bottom:579.645000px;}
.y13_c00264{bottom:615.645000px;}
.y12_c00264{bottom:651.645000px;}
.y11_c00264{bottom:687.645000px;}
.y10_c00264{bottom:723.645000px;}
.yf_c00264{bottom:759.645000px;}
.ye_c00264{bottom:795.645000px;}
.yd_c00264{bottom:831.645000px;}
.yc_c00264{bottom:867.645000px;}
.yb_c00264{bottom:903.645000px;}
.ya_c00264{bottom:939.645000px;}
.y9_c00264{bottom:975.645000px;}
.y8_c00264{bottom:1011.645000px;}
.y7_c00264{bottom:1047.645000px;}
.y6_c00264{bottom:1083.645000px;}
.y2_c00264{bottom:1165.005000px;}
.h4_c00264{height:20.880000px;}
.h3_c00264{height:70.664062px;}
.h2_c00264{height:1237.365000px;}
.h0_c00264{height:1262.835000px;}
.h1_c00264{height:1263.000000px;}
.w3_c00264{width:27.360000px;}
.w2_c00264{width:867.465000px;}
.w0_c00264{width:892.935000px;}
.w1_c00264{width:893.250000px;}
.x0_c00264{left:0.000000px;}
.x1_c00264{left:12.735000px;}
.x3_c00264{left:95.397000px;}
.x5_c00264{left:149.400150px;}
.x4_c00264{left:432.855000px;}
.x2_c00264{left:880.125000px;}
@media print{
.v0_c00264{vertical-align:0.000000pt;}
.ls0_c00264{letter-spacing:0.000000pt;}
.ws0_c00264{word-spacing:0.000000pt;}
._4_c00264{width:1.644800pt;}
._0_c00264{width:2.745600pt;}
._2_c00264{width:4.032000pt;}
._1_c00264{width:5.331200pt;}
._9_c00264{width:6.611200pt;}
._5_c00264{width:8.140800pt;}
._d_c00264{width:11.334400pt;}
._a_c00264{width:13.126400pt;}
._6_c00264{width:14.086400pt;}
._b_c00264{width:17.484800pt;}
._7_c00264{width:19.539200pt;}
._3_c00264{width:22.208000pt;}
._8_c00264{width:25.580800pt;}
._c_c00264{width:27.001600pt;}
.fs0_c00264{font-size:64.000000pt;}
.y0_c00264{bottom:0.000000pt;}
.y5_c00264{bottom:4.480000pt;}
.y1_c00264{bottom:11.320000pt;}
.y3_c00264{bottom:40.360000pt;}
.y4_c00264{bottom:47.200000pt;}
.y21_c00264{bottom:99.240000pt;}
.y20_c00264{bottom:131.240000pt;}
.y1f_c00264{bottom:163.240000pt;}
.y1e_c00264{bottom:195.240000pt;}
.y1d_c00264{bottom:227.240000pt;}
.y1c_c00264{bottom:259.240000pt;}
.y1b_c00264{bottom:291.240000pt;}
.y1a_c00264{bottom:323.240000pt;}
.y19_c00264{bottom:355.240000pt;}
.y18_c00264{bottom:387.240000pt;}
.y17_c00264{bottom:419.240000pt;}
.y16_c00264{bottom:451.240000pt;}
.y15_c00264{bottom:483.240000pt;}
.y14_c00264{bottom:515.240000pt;}
.y13_c00264{bottom:547.240000pt;}
.y12_c00264{bottom:579.240000pt;}
.y11_c00264{bottom:611.240000pt;}
.y10_c00264{bottom:643.240000pt;}
.yf_c00264{bottom:675.240000pt;}
.ye_c00264{bottom:707.240000pt;}
.yd_c00264{bottom:739.240000pt;}
.yc_c00264{bottom:771.240000pt;}
.yb_c00264{bottom:803.240000pt;}
.ya_c00264{bottom:835.240000pt;}
.y9_c00264{bottom:867.240000pt;}
.y8_c00264{bottom:899.240000pt;}
.y7_c00264{bottom:931.240000pt;}
.y6_c00264{bottom:963.240000pt;}
.y2_c00264{bottom:1035.560000pt;}
.h4_c00264{height:18.560000pt;}
.h3_c00264{height:62.812500pt;}
.h2_c00264{height:1099.880000pt;}
.h0_c00264{height:1122.520000pt;}
.h1_c00264{height:1122.666667pt;}
.w3_c00264{width:24.320000pt;}
.w2_c00264{width:771.080000pt;}
.w0_c00264{width:793.720000pt;}
.w1_c00264{width:794.000000pt;}
.x0_c00264{left:0.000000pt;}
.x1_c00264{left:11.320000pt;}
.x3_c00264{left:84.797333pt;}
.x5_c00264{left:132.800133pt;}
.x4_c00264{left:384.760000pt;}
.x2_c00264{left:782.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_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_f6b5ef6536ef86f957ac515c.woff2')format("woff");}.ff1_c00265{font-family:ff1_c00265;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.014400px;}
.ls0_c00265{letter-spacing:0.000000px;}
.sc__c00265{text-shadow:none;}
.sc0_c00265{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00265{-webkit-text-stroke:0px transparent;}
.sc0_c00265{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00265{word-spacing:0.000000px;}
._6_c00265{width:1.094400px;}
._2_c00265{width:2.743200px;}
._a_c00265{width:3.996000px;}
._1_c00265{width:5.097600px;}
._5_c00265{width:6.328800px;}
._7_c00265{width:7.855200px;}
._b_c00265{width:11.577600px;}
._0_c00265{width:14.335200px;}
._4_c00265{width:19.497600px;}
._9_c00265{width:21.513600px;}
._8_c00265{width:24.148800px;}
._c_c00265{width:25.156800px;}
._3_c00265{width:27.201600px;}
.fc1_c00265{color:transparent;}
.fc0_c00265{color:rgb(0,0,0);}
.fs0_c00265{font-size:72.000000px;}
.y0_c00265{bottom:0.000000px;}
.y5_c00265{bottom:5.040000px;}
.y1_c00265{bottom:12.735000px;}
.y3_c00265{bottom:45.405000px;}
.y4_c00265{bottom:53.100000px;}
.y20_c00265{bottom:147.645000px;}
.y1f_c00265{bottom:183.645000px;}
.y1e_c00265{bottom:219.645000px;}
.y1d_c00265{bottom:255.645000px;}
.y1c_c00265{bottom:291.645000px;}
.y1b_c00265{bottom:327.645000px;}
.y1a_c00265{bottom:363.645000px;}
.y19_c00265{bottom:399.645000px;}
.y18_c00265{bottom:435.645000px;}
.y17_c00265{bottom:471.645000px;}
.y16_c00265{bottom:507.645000px;}
.y15_c00265{bottom:543.645000px;}
.y14_c00265{bottom:579.645000px;}
.y13_c00265{bottom:615.645000px;}
.y12_c00265{bottom:651.645000px;}
.y11_c00265{bottom:687.645000px;}
.y10_c00265{bottom:723.645000px;}
.yf_c00265{bottom:759.645000px;}
.ye_c00265{bottom:795.645000px;}
.yd_c00265{bottom:831.645000px;}
.yc_c00265{bottom:867.645000px;}
.yb_c00265{bottom:903.645000px;}
.ya_c00265{bottom:939.645000px;}
.y9_c00265{bottom:975.645000px;}
.y8_c00265{bottom:1011.645000px;}
.y7_c00265{bottom:1047.645000px;}
.y6_c00265{bottom:1083.645000px;}
.y2_c00265{bottom:1165.005000px;}
.h4_c00265{height:20.880000px;}
.h3_c00265{height:70.664062px;}
.h2_c00265{height:1237.365000px;}
.h0_c00265{height:1262.835000px;}
.h1_c00265{height:1263.000000px;}
.w3_c00265{width:27.360000px;}
.w2_c00265{width:867.465000px;}
.w0_c00265{width:892.935000px;}
.w1_c00265{width:893.250000px;}
.x0_c00265{left:0.000000px;}
.x1_c00265{left:12.735000px;}
.x3_c00265{left:95.394300px;}
.x5_c00265{left:149.400150px;}
.x4_c00265{left:432.855000px;}
.x2_c00265{left:880.050300px;}
@media print{
.v0_c00265{vertical-align:0.000000pt;}
.ls1_c00265{letter-spacing:-0.012800pt;}
.ls0_c00265{letter-spacing:0.000000pt;}
.ws0_c00265{word-spacing:0.000000pt;}
._6_c00265{width:0.972800pt;}
._2_c00265{width:2.438400pt;}
._a_c00265{width:3.552000pt;}
._1_c00265{width:4.531200pt;}
._5_c00265{width:5.625600pt;}
._7_c00265{width:6.982400pt;}
._b_c00265{width:10.291200pt;}
._0_c00265{width:12.742400pt;}
._4_c00265{width:17.331200pt;}
._9_c00265{width:19.123200pt;}
._8_c00265{width:21.465600pt;}
._c_c00265{width:22.361600pt;}
._3_c00265{width:24.179200pt;}
.fs0_c00265{font-size:64.000000pt;}
.y0_c00265{bottom:0.000000pt;}
.y5_c00265{bottom:4.480000pt;}
.y1_c00265{bottom:11.320000pt;}
.y3_c00265{bottom:40.360000pt;}
.y4_c00265{bottom:47.200000pt;}
.y20_c00265{bottom:131.240000pt;}
.y1f_c00265{bottom:163.240000pt;}
.y1e_c00265{bottom:195.240000pt;}
.y1d_c00265{bottom:227.240000pt;}
.y1c_c00265{bottom:259.240000pt;}
.y1b_c00265{bottom:291.240000pt;}
.y1a_c00265{bottom:323.240000pt;}
.y19_c00265{bottom:355.240000pt;}
.y18_c00265{bottom:387.240000pt;}
.y17_c00265{bottom:419.240000pt;}
.y16_c00265{bottom:451.240000pt;}
.y15_c00265{bottom:483.240000pt;}
.y14_c00265{bottom:515.240000pt;}
.y13_c00265{bottom:547.240000pt;}
.y12_c00265{bottom:579.240000pt;}
.y11_c00265{bottom:611.240000pt;}
.y10_c00265{bottom:643.240000pt;}
.yf_c00265{bottom:675.240000pt;}
.ye_c00265{bottom:707.240000pt;}
.yd_c00265{bottom:739.240000pt;}
.yc_c00265{bottom:771.240000pt;}
.yb_c00265{bottom:803.240000pt;}
.ya_c00265{bottom:835.240000pt;}
.y9_c00265{bottom:867.240000pt;}
.y8_c00265{bottom:899.240000pt;}
.y7_c00265{bottom:931.240000pt;}
.y6_c00265{bottom:963.240000pt;}
.y2_c00265{bottom:1035.560000pt;}
.h4_c00265{height:18.560000pt;}
.h3_c00265{height:62.812500pt;}
.h2_c00265{height:1099.880000pt;}
.h0_c00265{height:1122.520000pt;}
.h1_c00265{height:1122.666667pt;}
.w3_c00265{width:24.320000pt;}
.w2_c00265{width:771.080000pt;}
.w0_c00265{width:793.720000pt;}
.w1_c00265{width:794.000000pt;}
.x0_c00265{left:0.000000pt;}
.x1_c00265{left:11.320000pt;}
.x3_c00265{left:84.794933pt;}
.x5_c00265{left:132.800133pt;}
.x4_c00265{left:384.760000pt;}
.x2_c00265{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_13bdf65cba3096ff57552e9e.woff2')format("woff");}.ff1_c00266{font-family:ff1_c00266;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00266;src:url('chunks/assets/font_0c0a98f804a25bb9f9dccb65.woff2')format("woff");}.ff2_c00266{font-family:ff2_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:ff3_c00266;src:url('chunks/assets/font_6f34370e2fe22afe64c8476c.woff2')format("woff");}.ff3_c00266{font-family:ff3_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;}
.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;}
.ls0_c00266{letter-spacing:0.000000px;}
.sc__c00266{text-shadow:none;}
.sc0_c00266{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00266{-webkit-text-stroke:0px transparent;}
.sc0_c00266{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00266{word-spacing:0.000000px;}
._0_c00266{width:1.843200px;}
._4_c00266{width:2.880000px;}
._1_c00266{width:4.010400px;}
._2_c00266{width:5.666400px;}
._7_c00266{width:6.861600px;}
._8_c00266{width:8.834400px;}
._b_c00266{width:9.993600px;}
._9_c00266{width:12.290400px;}
._3_c00266{width:13.348800px;}
._6_c00266{width:15.249600px;}
._a_c00266{width:21.643200px;}
._d_c00266{width:28.303200px;}
._5_c00266{width:29.800800px;}
._c_c00266{width:35.582400px;}
.fc1_c00266{color:transparent;}
.fc0_c00266{color:rgb(0,0,0);}
.fs0_c00266{font-size:72.000000px;}
.y0_c00266{bottom:0.000000px;}
.y5_c00266{bottom:5.040000px;}
.y1_c00266{bottom:12.735000px;}
.y3_c00266{bottom:45.405000px;}
.y4_c00266{bottom:53.100000px;}
.y21_c00266{bottom:111.645000px;}
.y20_c00266{bottom:147.645000px;}
.y1f_c00266{bottom:183.645000px;}
.y1e_c00266{bottom:219.645000px;}
.y1d_c00266{bottom:255.645000px;}
.y1c_c00266{bottom:291.645000px;}
.y1b_c00266{bottom:327.645000px;}
.y1a_c00266{bottom:363.645000px;}
.y19_c00266{bottom:399.645000px;}
.y18_c00266{bottom:435.645000px;}
.y17_c00266{bottom:471.645000px;}
.y16_c00266{bottom:507.645000px;}
.y15_c00266{bottom:543.645000px;}
.y14_c00266{bottom:579.645000px;}
.y13_c00266{bottom:615.645000px;}
.y12_c00266{bottom:651.645000px;}
.y11_c00266{bottom:687.645000px;}
.y10_c00266{bottom:723.645000px;}
.yf_c00266{bottom:759.645000px;}
.ye_c00266{bottom:795.645000px;}
.yd_c00266{bottom:831.645000px;}
.yc_c00266{bottom:867.645000px;}
.yb_c00266{bottom:903.645000px;}
.ya_c00266{bottom:939.645000px;}
.y9_c00266{bottom:975.645000px;}
.y8_c00266{bottom:1011.645000px;}
.y7_c00266{bottom:1047.645000px;}
.y6_c00266{bottom:1083.645000px;}
.y2_c00266{bottom:1165.005000px;}
.h4_c00266{height:20.880000px;}
.h5_c00266{height:70.628906px;}
.h3_c00266{height:70.664062px;}
.h2_c00266{height:1237.365000px;}
.h0_c00266{height:1262.835000px;}
.h1_c00266{height:1263.000000px;}
.w3_c00266{width:27.360000px;}
.w2_c00266{width:867.465000px;}
.w0_c00266{width:892.935000px;}
.w1_c00266{width:893.250000px;}
.x0_c00266{left:0.000000px;}
.x1_c00266{left:12.735000px;}
.x3_c00266{left:95.397000px;}
.x6_c00266{left:117.468150px;}
.x5_c00266{left:149.400150px;}
.x4_c00266{left:432.855000px;}
.x2_c00266{left:880.125000px;}
@media print{
.v0_c00266{vertical-align:0.000000pt;}
.ls0_c00266{letter-spacing:0.000000pt;}
.ws0_c00266{word-spacing:0.000000pt;}
._0_c00266{width:1.638400pt;}
._4_c00266{width:2.560000pt;}
._1_c00266{width:3.564800pt;}
._2_c00266{width:5.036800pt;}
._7_c00266{width:6.099200pt;}
._8_c00266{width:7.852800pt;}
._b_c00266{width:8.883200pt;}
._9_c00266{width:10.924800pt;}
._3_c00266{width:11.865600pt;}
._6_c00266{width:13.555200pt;}
._a_c00266{width:19.238400pt;}
._d_c00266{width:25.158400pt;}
._5_c00266{width:26.489600pt;}
._c_c00266{width:31.628800pt;}
.fs0_c00266{font-size:64.000000pt;}
.y0_c00266{bottom:0.000000pt;}
.y5_c00266{bottom:4.480000pt;}
.y1_c00266{bottom:11.320000pt;}
.y3_c00266{bottom:40.360000pt;}
.y4_c00266{bottom:47.200000pt;}
.y21_c00266{bottom:99.240000pt;}
.y20_c00266{bottom:131.240000pt;}
.y1f_c00266{bottom:163.240000pt;}
.y1e_c00266{bottom:195.240000pt;}
.y1d_c00266{bottom:227.240000pt;}
.y1c_c00266{bottom:259.240000pt;}
.y1b_c00266{bottom:291.240000pt;}
.y1a_c00266{bottom:323.240000pt;}
.y19_c00266{bottom:355.240000pt;}
.y18_c00266{bottom:387.240000pt;}
.y17_c00266{bottom:419.240000pt;}
.y16_c00266{bottom:451.240000pt;}
.y15_c00266{bottom:483.240000pt;}
.y14_c00266{bottom:515.240000pt;}
.y13_c00266{bottom:547.240000pt;}
.y12_c00266{bottom:579.240000pt;}
.y11_c00266{bottom:611.240000pt;}
.y10_c00266{bottom:643.240000pt;}
.yf_c00266{bottom:675.240000pt;}
.ye_c00266{bottom:707.240000pt;}
.yd_c00266{bottom:739.240000pt;}
.yc_c00266{bottom:771.240000pt;}
.yb_c00266{bottom:803.240000pt;}
.ya_c00266{bottom:835.240000pt;}
.y9_c00266{bottom:867.240000pt;}
.y8_c00266{bottom:899.240000pt;}
.y7_c00266{bottom:931.240000pt;}
.y6_c00266{bottom:963.240000pt;}
.y2_c00266{bottom:1035.560000pt;}
.h4_c00266{height:18.560000pt;}
.h5_c00266{height:62.781250pt;}
.h3_c00266{height:62.812500pt;}
.h2_c00266{height:1099.880000pt;}
.h0_c00266{height:1122.520000pt;}
.h1_c00266{height:1122.666667pt;}
.w3_c00266{width:24.320000pt;}
.w2_c00266{width:771.080000pt;}
.w0_c00266{width:793.720000pt;}
.w1_c00266{width:794.000000pt;}
.x0_c00266{left:0.000000pt;}
.x1_c00266{left:11.320000pt;}
.x3_c00266{left:84.797333pt;}
.x6_c00266{left:104.416133pt;}
.x5_c00266{left:132.800133pt;}
.x4_c00266{left:384.760000pt;}
.x2_c00266{left:782.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_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_b070b7bed04b50cd35257154.woff2')format("woff");}.ff1_c00267{font-family:ff1_c00267;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00267{letter-spacing:0.000000px;}
.sc__c00267{text-shadow:none;}
.sc0_c00267{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00267{-webkit-text-stroke:0px transparent;}
.sc0_c00267{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00267{word-spacing:0.000000px;}
._a_c00267{width:1.065600px;}
._6_c00267{width:4.003200px;}
._0_c00267{width:5.349600px;}
._5_c00267{width:6.840000px;}
._1_c00267{width:7.855200px;}
._2_c00267{width:9.194400px;}
._7_c00267{width:10.792800px;}
._9_c00267{width:11.995200px;}
._3_c00267{width:13.852800px;}
._4_c00267{width:16.948800px;}
._b_c00267{width:25.603200px;}
._8_c00267{width:28.296000px;}
.fc1_c00267{color:transparent;}
.fc0_c00267{color:rgb(0,0,0);}
.fs0_c00267{font-size:72.000000px;}
.y0_c00267{bottom:0.000000px;}
.y5_c00267{bottom:5.040000px;}
.y1_c00267{bottom:12.735000px;}
.y3_c00267{bottom:45.405000px;}
.y4_c00267{bottom:53.100000px;}
.y21_c00267{bottom:111.645000px;}
.y20_c00267{bottom:147.645000px;}
.y1f_c00267{bottom:183.645000px;}
.y1e_c00267{bottom:219.645000px;}
.y1d_c00267{bottom:255.645000px;}
.y1c_c00267{bottom:291.645000px;}
.y1b_c00267{bottom:327.645000px;}
.y1a_c00267{bottom:363.645000px;}
.y19_c00267{bottom:399.645000px;}
.y18_c00267{bottom:435.645000px;}
.y17_c00267{bottom:471.645000px;}
.y16_c00267{bottom:507.645000px;}
.y15_c00267{bottom:543.645000px;}
.y14_c00267{bottom:579.645000px;}
.y13_c00267{bottom:615.645000px;}
.y12_c00267{bottom:651.645000px;}
.y11_c00267{bottom:687.645000px;}
.y10_c00267{bottom:723.645000px;}
.yf_c00267{bottom:759.645000px;}
.ye_c00267{bottom:795.645000px;}
.yd_c00267{bottom:831.645000px;}
.yc_c00267{bottom:867.645000px;}
.yb_c00267{bottom:903.645000px;}
.ya_c00267{bottom:939.645000px;}
.y9_c00267{bottom:975.645000px;}
.y8_c00267{bottom:1011.645000px;}
.y7_c00267{bottom:1047.645000px;}
.y6_c00267{bottom:1083.645000px;}
.y2_c00267{bottom:1165.005000px;}
.h4_c00267{height:20.880000px;}
.h3_c00267{height:70.664062px;}
.h2_c00267{height:1237.365000px;}
.h0_c00267{height:1262.835000px;}
.h1_c00267{height:1263.000000px;}
.w3_c00267{width:27.360000px;}
.w2_c00267{width:867.465000px;}
.w0_c00267{width:892.935000px;}
.w1_c00267{width:893.250000px;}
.x0_c00267{left:0.000000px;}
.x1_c00267{left:12.735000px;}
.x3_c00267{left:95.394300px;}
.x5_c00267{left:149.400150px;}
.x4_c00267{left:432.855000px;}
.x2_c00267{left:880.050300px;}
@media print{
.v0_c00267{vertical-align:0.000000pt;}
.ls0_c00267{letter-spacing:0.000000pt;}
.ws0_c00267{word-spacing:0.000000pt;}
._a_c00267{width:0.947200pt;}
._6_c00267{width:3.558400pt;}
._0_c00267{width:4.755200pt;}
._5_c00267{width:6.080000pt;}
._1_c00267{width:6.982400pt;}
._2_c00267{width:8.172800pt;}
._7_c00267{width:9.593600pt;}
._9_c00267{width:10.662400pt;}
._3_c00267{width:12.313600pt;}
._4_c00267{width:15.065600pt;}
._b_c00267{width:22.758400pt;}
._8_c00267{width:25.152000pt;}
.fs0_c00267{font-size:64.000000pt;}
.y0_c00267{bottom:0.000000pt;}
.y5_c00267{bottom:4.480000pt;}
.y1_c00267{bottom:11.320000pt;}
.y3_c00267{bottom:40.360000pt;}
.y4_c00267{bottom:47.200000pt;}
.y21_c00267{bottom:99.240000pt;}
.y20_c00267{bottom:131.240000pt;}
.y1f_c00267{bottom:163.240000pt;}
.y1e_c00267{bottom:195.240000pt;}
.y1d_c00267{bottom:227.240000pt;}
.y1c_c00267{bottom:259.240000pt;}
.y1b_c00267{bottom:291.240000pt;}
.y1a_c00267{bottom:323.240000pt;}
.y19_c00267{bottom:355.240000pt;}
.y18_c00267{bottom:387.240000pt;}
.y17_c00267{bottom:419.240000pt;}
.y16_c00267{bottom:451.240000pt;}
.y15_c00267{bottom:483.240000pt;}
.y14_c00267{bottom:515.240000pt;}
.y13_c00267{bottom:547.240000pt;}
.y12_c00267{bottom:579.240000pt;}
.y11_c00267{bottom:611.240000pt;}
.y10_c00267{bottom:643.240000pt;}
.yf_c00267{bottom:675.240000pt;}
.ye_c00267{bottom:707.240000pt;}
.yd_c00267{bottom:739.240000pt;}
.yc_c00267{bottom:771.240000pt;}
.yb_c00267{bottom:803.240000pt;}
.ya_c00267{bottom:835.240000pt;}
.y9_c00267{bottom:867.240000pt;}
.y8_c00267{bottom:899.240000pt;}
.y7_c00267{bottom:931.240000pt;}
.y6_c00267{bottom:963.240000pt;}
.y2_c00267{bottom:1035.560000pt;}
.h4_c00267{height:18.560000pt;}
.h3_c00267{height:62.812500pt;}
.h2_c00267{height:1099.880000pt;}
.h0_c00267{height:1122.520000pt;}
.h1_c00267{height:1122.666667pt;}
.w3_c00267{width:24.320000pt;}
.w2_c00267{width:771.080000pt;}
.w0_c00267{width:793.720000pt;}
.w1_c00267{width:794.000000pt;}
.x0_c00267{left:0.000000pt;}
.x1_c00267{left:11.320000pt;}
.x3_c00267{left:84.794933pt;}
.x5_c00267{left:132.800133pt;}
.x4_c00267{left:384.760000pt;}
.x2_c00267{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cef4dccc5689807a3f410479.woff2')format("woff");}.ff1_c00268{font-family:ff1_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;}
.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;}
.ls0_c00268{letter-spacing:0.000000px;}
.sc__c00268{text-shadow:none;}
.sc0_c00268{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00268{-webkit-text-stroke:0px transparent;}
.sc0_c00268{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00268{word-spacing:0.000000px;}
._5_c00268{width:1.425600px;}
._1_c00268{width:2.887200px;}
._3_c00268{width:3.967200px;}
._8_c00268{width:5.407200px;}
._7_c00268{width:7.250400px;}
._4_c00268{width:8.272800px;}
._2_c00268{width:10.195200px;}
._b_c00268{width:11.520000px;}
._e_c00268{width:12.664800px;}
._a_c00268{width:13.701600px;}
._f_c00268{width:16.185600px;}
._d_c00268{width:19.101600px;}
._6_c00268{width:21.996000px;}
._c_c00268{width:23.385600px;}
._0_c00268{width:27.086400px;}
._9_c00268{width:28.620000px;}
.fc1_c00268{color:transparent;}
.fc0_c00268{color:rgb(0,0,0);}
.fs0_c00268{font-size:72.000000px;}
.y0_c00268{bottom:0.000000px;}
.y5_c00268{bottom:5.040000px;}
.y1_c00268{bottom:12.735000px;}
.y3_c00268{bottom:45.405000px;}
.y4_c00268{bottom:53.100000px;}
.y21_c00268{bottom:111.645000px;}
.y20_c00268{bottom:147.645000px;}
.y1f_c00268{bottom:183.645000px;}
.y1e_c00268{bottom:219.645000px;}
.y1d_c00268{bottom:255.645000px;}
.y1c_c00268{bottom:291.645000px;}
.y1b_c00268{bottom:327.645000px;}
.y1a_c00268{bottom:363.645000px;}
.y19_c00268{bottom:399.645000px;}
.y18_c00268{bottom:435.645000px;}
.y17_c00268{bottom:471.645000px;}
.y16_c00268{bottom:507.645000px;}
.y15_c00268{bottom:543.645000px;}
.y14_c00268{bottom:579.645000px;}
.y13_c00268{bottom:615.645000px;}
.y12_c00268{bottom:651.645000px;}
.y11_c00268{bottom:687.645000px;}
.y10_c00268{bottom:723.645000px;}
.yf_c00268{bottom:759.645000px;}
.ye_c00268{bottom:795.645000px;}
.yd_c00268{bottom:831.645000px;}
.yc_c00268{bottom:867.645000px;}
.yb_c00268{bottom:903.645000px;}
.ya_c00268{bottom:939.645000px;}
.y9_c00268{bottom:975.645000px;}
.y8_c00268{bottom:1011.645000px;}
.y7_c00268{bottom:1047.645000px;}
.y6_c00268{bottom:1083.645000px;}
.y2_c00268{bottom:1165.005000px;}
.h4_c00268{height:20.880000px;}
.h3_c00268{height:70.664062px;}
.h2_c00268{height:1237.365000px;}
.h0_c00268{height:1262.835000px;}
.h1_c00268{height:1263.000000px;}
.w3_c00268{width:27.360000px;}
.w2_c00268{width:867.465000px;}
.w0_c00268{width:892.935000px;}
.w1_c00268{width:893.250000px;}
.x0_c00268{left:0.000000px;}
.x1_c00268{left:12.735000px;}
.x3_c00268{left:95.397000px;}
.x5_c00268{left:149.400150px;}
.x4_c00268{left:432.855000px;}
.x2_c00268{left:880.125000px;}
@media print{
.v0_c00268{vertical-align:0.000000pt;}
.ls0_c00268{letter-spacing:0.000000pt;}
.ws0_c00268{word-spacing:0.000000pt;}
._5_c00268{width:1.267200pt;}
._1_c00268{width:2.566400pt;}
._3_c00268{width:3.526400pt;}
._8_c00268{width:4.806400pt;}
._7_c00268{width:6.444800pt;}
._4_c00268{width:7.353600pt;}
._2_c00268{width:9.062400pt;}
._b_c00268{width:10.240000pt;}
._e_c00268{width:11.257600pt;}
._a_c00268{width:12.179200pt;}
._f_c00268{width:14.387200pt;}
._d_c00268{width:16.979200pt;}
._6_c00268{width:19.552000pt;}
._c_c00268{width:20.787200pt;}
._0_c00268{width:24.076800pt;}
._9_c00268{width:25.440000pt;}
.fs0_c00268{font-size:64.000000pt;}
.y0_c00268{bottom:0.000000pt;}
.y5_c00268{bottom:4.480000pt;}
.y1_c00268{bottom:11.320000pt;}
.y3_c00268{bottom:40.360000pt;}
.y4_c00268{bottom:47.200000pt;}
.y21_c00268{bottom:99.240000pt;}
.y20_c00268{bottom:131.240000pt;}
.y1f_c00268{bottom:163.240000pt;}
.y1e_c00268{bottom:195.240000pt;}
.y1d_c00268{bottom:227.240000pt;}
.y1c_c00268{bottom:259.240000pt;}
.y1b_c00268{bottom:291.240000pt;}
.y1a_c00268{bottom:323.240000pt;}
.y19_c00268{bottom:355.240000pt;}
.y18_c00268{bottom:387.240000pt;}
.y17_c00268{bottom:419.240000pt;}
.y16_c00268{bottom:451.240000pt;}
.y15_c00268{bottom:483.240000pt;}
.y14_c00268{bottom:515.240000pt;}
.y13_c00268{bottom:547.240000pt;}
.y12_c00268{bottom:579.240000pt;}
.y11_c00268{bottom:611.240000pt;}
.y10_c00268{bottom:643.240000pt;}
.yf_c00268{bottom:675.240000pt;}
.ye_c00268{bottom:707.240000pt;}
.yd_c00268{bottom:739.240000pt;}
.yc_c00268{bottom:771.240000pt;}
.yb_c00268{bottom:803.240000pt;}
.ya_c00268{bottom:835.240000pt;}
.y9_c00268{bottom:867.240000pt;}
.y8_c00268{bottom:899.240000pt;}
.y7_c00268{bottom:931.240000pt;}
.y6_c00268{bottom:963.240000pt;}
.y2_c00268{bottom:1035.560000pt;}
.h4_c00268{height:18.560000pt;}
.h3_c00268{height:62.812500pt;}
.h2_c00268{height:1099.880000pt;}
.h0_c00268{height:1122.520000pt;}
.h1_c00268{height:1122.666667pt;}
.w3_c00268{width:24.320000pt;}
.w2_c00268{width:771.080000pt;}
.w0_c00268{width:793.720000pt;}
.w1_c00268{width:794.000000pt;}
.x0_c00268{left:0.000000pt;}
.x1_c00268{left:11.320000pt;}
.x3_c00268{left:84.797333pt;}
.x5_c00268{left:132.800133pt;}
.x4_c00268{left:384.760000pt;}
.x2_c00268{left:782.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_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_44db4c035c15f08f593cdb27.woff2')format("woff");}.ff1_c00269{font-family:ff1_c00269;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00269{letter-spacing:0.000000px;}
.ls0_c00269{letter-spacing:0.014400px;}
.sc__c00269{text-shadow:none;}
.sc0_c00269{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00269{-webkit-text-stroke:0px transparent;}
.sc0_c00269{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00269{word-spacing:-18.014400px;}
.ws1_c00269{word-spacing:0.000000px;}
._8_c00269{width:1.238400px;}
._4_c00269{width:2.246400px;}
._0_c00269{width:4.132800px;}
._7_c00269{width:5.774400px;}
._2_c00269{width:7.272000px;}
._5_c00269{width:9.014400px;}
._3_c00269{width:10.785600px;}
._6_c00269{width:11.851200px;}
._1_c00269{width:13.514400px;}
._b_c00269{width:15.314400px;}
._9_c00269{width:16.660800px;}
._a_c00269{width:41.695200px;}
.fc1_c00269{color:transparent;}
.fc0_c00269{color:rgb(0,0,0);}
.fs0_c00269{font-size:72.000000px;}
.y0_c00269{bottom:0.000000px;}
.y5_c00269{bottom:5.040000px;}
.y1_c00269{bottom:12.735000px;}
.y3_c00269{bottom:45.405000px;}
.y4_c00269{bottom:53.100000px;}
.y21_c00269{bottom:111.645000px;}
.y20_c00269{bottom:147.645000px;}
.y1f_c00269{bottom:183.645000px;}
.y1e_c00269{bottom:219.645000px;}
.y1d_c00269{bottom:255.645000px;}
.y1c_c00269{bottom:291.645000px;}
.y1b_c00269{bottom:327.645000px;}
.y1a_c00269{bottom:363.645000px;}
.y19_c00269{bottom:399.645000px;}
.y18_c00269{bottom:435.645000px;}
.y17_c00269{bottom:471.645000px;}
.y16_c00269{bottom:507.645000px;}
.y15_c00269{bottom:543.645000px;}
.y14_c00269{bottom:579.645000px;}
.y13_c00269{bottom:615.645000px;}
.y12_c00269{bottom:651.645000px;}
.y11_c00269{bottom:687.645000px;}
.y10_c00269{bottom:723.645000px;}
.yf_c00269{bottom:759.645000px;}
.ye_c00269{bottom:795.645000px;}
.yd_c00269{bottom:831.645000px;}
.yc_c00269{bottom:867.645000px;}
.yb_c00269{bottom:903.645000px;}
.ya_c00269{bottom:939.645000px;}
.y9_c00269{bottom:975.645000px;}
.y8_c00269{bottom:1011.645000px;}
.y7_c00269{bottom:1047.645000px;}
.y6_c00269{bottom:1083.645000px;}
.y2_c00269{bottom:1165.005000px;}
.h4_c00269{height:20.880000px;}
.h3_c00269{height:70.664062px;}
.h2_c00269{height:1237.365000px;}
.h0_c00269{height:1262.835000px;}
.h1_c00269{height:1263.000000px;}
.w3_c00269{width:27.360000px;}
.w2_c00269{width:867.465000px;}
.w0_c00269{width:892.935000px;}
.w1_c00269{width:893.250000px;}
.x0_c00269{left:0.000000px;}
.x1_c00269{left:12.735000px;}
.x3_c00269{left:95.394300px;}
.x5_c00269{left:149.400150px;}
.x4_c00269{left:432.855000px;}
.x2_c00269{left:880.050300px;}
@media print{
.v0_c00269{vertical-align:0.000000pt;}
.ls1_c00269{letter-spacing:0.000000pt;}
.ls0_c00269{letter-spacing:0.012800pt;}
.ws0_c00269{word-spacing:-16.012800pt;}
.ws1_c00269{word-spacing:0.000000pt;}
._8_c00269{width:1.100800pt;}
._4_c00269{width:1.996800pt;}
._0_c00269{width:3.673600pt;}
._7_c00269{width:5.132800pt;}
._2_c00269{width:6.464000pt;}
._5_c00269{width:8.012800pt;}
._3_c00269{width:9.587200pt;}
._6_c00269{width:10.534400pt;}
._1_c00269{width:12.012800pt;}
._b_c00269{width:13.612800pt;}
._9_c00269{width:14.809600pt;}
._a_c00269{width:37.062400pt;}
.fs0_c00269{font-size:64.000000pt;}
.y0_c00269{bottom:0.000000pt;}
.y5_c00269{bottom:4.480000pt;}
.y1_c00269{bottom:11.320000pt;}
.y3_c00269{bottom:40.360000pt;}
.y4_c00269{bottom:47.200000pt;}
.y21_c00269{bottom:99.240000pt;}
.y20_c00269{bottom:131.240000pt;}
.y1f_c00269{bottom:163.240000pt;}
.y1e_c00269{bottom:195.240000pt;}
.y1d_c00269{bottom:227.240000pt;}
.y1c_c00269{bottom:259.240000pt;}
.y1b_c00269{bottom:291.240000pt;}
.y1a_c00269{bottom:323.240000pt;}
.y19_c00269{bottom:355.240000pt;}
.y18_c00269{bottom:387.240000pt;}
.y17_c00269{bottom:419.240000pt;}
.y16_c00269{bottom:451.240000pt;}
.y15_c00269{bottom:483.240000pt;}
.y14_c00269{bottom:515.240000pt;}
.y13_c00269{bottom:547.240000pt;}
.y12_c00269{bottom:579.240000pt;}
.y11_c00269{bottom:611.240000pt;}
.y10_c00269{bottom:643.240000pt;}
.yf_c00269{bottom:675.240000pt;}
.ye_c00269{bottom:707.240000pt;}
.yd_c00269{bottom:739.240000pt;}
.yc_c00269{bottom:771.240000pt;}
.yb_c00269{bottom:803.240000pt;}
.ya_c00269{bottom:835.240000pt;}
.y9_c00269{bottom:867.240000pt;}
.y8_c00269{bottom:899.240000pt;}
.y7_c00269{bottom:931.240000pt;}
.y6_c00269{bottom:963.240000pt;}
.y2_c00269{bottom:1035.560000pt;}
.h4_c00269{height:18.560000pt;}
.h3_c00269{height:62.812500pt;}
.h2_c00269{height:1099.880000pt;}
.h0_c00269{height:1122.520000pt;}
.h1_c00269{height:1122.666667pt;}
.w3_c00269{width:24.320000pt;}
.w2_c00269{width:771.080000pt;}
.w0_c00269{width:793.720000pt;}
.w1_c00269{width:794.000000pt;}
.x0_c00269{left:0.000000pt;}
.x1_c00269{left:11.320000pt;}
.x3_c00269{left:84.794933pt;}
.x5_c00269{left:132.800133pt;}
.x4_c00269{left:384.760000pt;}
.x2_c00269{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fd0f83bc93e29abc7c42f295.woff2')format("woff");}.ff1_c00270{font-family:ff1_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:ff2_c00270;src:url('chunks/assets/font_7461f323e3748d9341823d97.woff2')format("woff");}.ff2_c00270{font-family:ff2_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;}
.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;}
.ls1_c00270{letter-spacing:-0.014400px;}
.ls0_c00270{letter-spacing:0.000000px;}
.sc__c00270{text-shadow:none;}
.sc0_c00270{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00270{-webkit-text-stroke:0px transparent;}
.sc0_c00270{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00270{word-spacing:0.000000px;}
._0_c00270{width:1.209600px;}
._2_c00270{width:2.239200px;}
._4_c00270{width:3.679200px;}
._b_c00270{width:5.176800px;}
._9_c00270{width:6.199200px;}
._1_c00270{width:7.336800px;}
._e_c00270{width:11.102400px;}
._3_c00270{width:12.312000px;}
._c_c00270{width:14.925600px;}
._d_c00270{width:16.005600px;}
._a_c00270{width:19.209600px;}
._5_c00270{width:20.858400px;}
._7_c00270{width:23.126400px;}
._6_c00270{width:28.224000px;}
._8_c00270{width:29.347200px;}
.fc1_c00270{color:transparent;}
.fc0_c00270{color:rgb(0,0,0);}
.fs0_c00270{font-size:72.000000px;}
.y0_c00270{bottom:0.000000px;}
.y5_c00270{bottom:5.040000px;}
.y1_c00270{bottom:12.735000px;}
.y3_c00270{bottom:45.405000px;}
.y4_c00270{bottom:53.100000px;}
.y21_c00270{bottom:111.645000px;}
.y20_c00270{bottom:147.645000px;}
.y1f_c00270{bottom:183.645000px;}
.y1e_c00270{bottom:219.645000px;}
.y1d_c00270{bottom:255.645000px;}
.y1c_c00270{bottom:291.645000px;}
.y1b_c00270{bottom:327.645000px;}
.y1a_c00270{bottom:363.645000px;}
.y19_c00270{bottom:399.645000px;}
.y18_c00270{bottom:435.645000px;}
.y17_c00270{bottom:471.645000px;}
.y16_c00270{bottom:507.645000px;}
.y15_c00270{bottom:543.645000px;}
.y14_c00270{bottom:579.645000px;}
.y13_c00270{bottom:615.645000px;}
.y12_c00270{bottom:651.645000px;}
.y11_c00270{bottom:687.645000px;}
.y10_c00270{bottom:723.645000px;}
.yf_c00270{bottom:759.645000px;}
.ye_c00270{bottom:795.645000px;}
.yd_c00270{bottom:831.645000px;}
.yc_c00270{bottom:867.645000px;}
.yb_c00270{bottom:903.645000px;}
.ya_c00270{bottom:939.645000px;}
.y9_c00270{bottom:975.645000px;}
.y8_c00270{bottom:1011.645000px;}
.y7_c00270{bottom:1047.645000px;}
.y6_c00270{bottom:1083.645000px;}
.y2_c00270{bottom:1165.005000px;}
.h4_c00270{height:20.880000px;}
.h5_c00270{height:70.628906px;}
.h3_c00270{height:70.664062px;}
.h2_c00270{height:1237.365000px;}
.h0_c00270{height:1262.835000px;}
.h1_c00270{height:1263.000000px;}
.w3_c00270{width:27.360000px;}
.w2_c00270{width:867.465000px;}
.w0_c00270{width:892.935000px;}
.w1_c00270{width:893.250000px;}
.x0_c00270{left:0.000000px;}
.x1_c00270{left:12.735000px;}
.x3_c00270{left:95.397000px;}
.x6_c00270{left:149.400000px;}
.x5_c00270{left:180.450000px;}
.x4_c00270{left:432.855000px;}
.x2_c00270{left:880.125000px;}
@media print{
.v0_c00270{vertical-align:0.000000pt;}
.ls1_c00270{letter-spacing:-0.012800pt;}
.ls0_c00270{letter-spacing:0.000000pt;}
.ws0_c00270{word-spacing:0.000000pt;}
._0_c00270{width:1.075200pt;}
._2_c00270{width:1.990400pt;}
._4_c00270{width:3.270400pt;}
._b_c00270{width:4.601600pt;}
._9_c00270{width:5.510400pt;}
._1_c00270{width:6.521600pt;}
._e_c00270{width:9.868800pt;}
._3_c00270{width:10.944000pt;}
._c_c00270{width:13.267200pt;}
._d_c00270{width:14.227200pt;}
._a_c00270{width:17.075200pt;}
._5_c00270{width:18.540800pt;}
._7_c00270{width:20.556800pt;}
._6_c00270{width:25.088000pt;}
._8_c00270{width:26.086400pt;}
.fs0_c00270{font-size:64.000000pt;}
.y0_c00270{bottom:0.000000pt;}
.y5_c00270{bottom:4.480000pt;}
.y1_c00270{bottom:11.320000pt;}
.y3_c00270{bottom:40.360000pt;}
.y4_c00270{bottom:47.200000pt;}
.y21_c00270{bottom:99.240000pt;}
.y20_c00270{bottom:131.240000pt;}
.y1f_c00270{bottom:163.240000pt;}
.y1e_c00270{bottom:195.240000pt;}
.y1d_c00270{bottom:227.240000pt;}
.y1c_c00270{bottom:259.240000pt;}
.y1b_c00270{bottom:291.240000pt;}
.y1a_c00270{bottom:323.240000pt;}
.y19_c00270{bottom:355.240000pt;}
.y18_c00270{bottom:387.240000pt;}
.y17_c00270{bottom:419.240000pt;}
.y16_c00270{bottom:451.240000pt;}
.y15_c00270{bottom:483.240000pt;}
.y14_c00270{bottom:515.240000pt;}
.y13_c00270{bottom:547.240000pt;}
.y12_c00270{bottom:579.240000pt;}
.y11_c00270{bottom:611.240000pt;}
.y10_c00270{bottom:643.240000pt;}
.yf_c00270{bottom:675.240000pt;}
.ye_c00270{bottom:707.240000pt;}
.yd_c00270{bottom:739.240000pt;}
.yc_c00270{bottom:771.240000pt;}
.yb_c00270{bottom:803.240000pt;}
.ya_c00270{bottom:835.240000pt;}
.y9_c00270{bottom:867.240000pt;}
.y8_c00270{bottom:899.240000pt;}
.y7_c00270{bottom:931.240000pt;}
.y6_c00270{bottom:963.240000pt;}
.y2_c00270{bottom:1035.560000pt;}
.h4_c00270{height:18.560000pt;}
.h5_c00270{height:62.781250pt;}
.h3_c00270{height:62.812500pt;}
.h2_c00270{height:1099.880000pt;}
.h0_c00270{height:1122.520000pt;}
.h1_c00270{height:1122.666667pt;}
.w3_c00270{width:24.320000pt;}
.w2_c00270{width:771.080000pt;}
.w0_c00270{width:793.720000pt;}
.w1_c00270{width:794.000000pt;}
.x0_c00270{left:0.000000pt;}
.x1_c00270{left:11.320000pt;}
.x3_c00270{left:84.797333pt;}
.x6_c00270{left:132.800000pt;}
.x5_c00270{left:160.400000pt;}
.x4_c00270{left:384.760000pt;}
.x2_c00270{left:782.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_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_21ab41b1ebde9b324fdeef09.woff2')format("woff");}.ff1_c00271{font-family:ff1_c00271;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00271;src:url('chunks/assets/font_2cf05561e6282d44b6ff1313.woff2')format("woff");}.ff2_c00271{font-family:ff2_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;}
.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;}
.ls1_c00271{letter-spacing:-0.014400px;}
.ls0_c00271{letter-spacing:0.000000px;}
.sc__c00271{text-shadow:none;}
.sc0_c00271{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00271{-webkit-text-stroke:0px transparent;}
.sc0_c00271{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00271{word-spacing:0.000000px;}
._4_c00271{width:1.850400px;}
._6_c00271{width:3.060000px;}
._7_c00271{width:5.421600px;}
._b_c00271{width:6.832800px;}
._3_c00271{width:8.301600px;}
._c_c00271{width:10.353600px;}
._5_c00271{width:11.491200px;}
._2_c00271{width:13.060800px;}
._1_c00271{width:15.112800px;}
._0_c00271{width:16.293600px;}
._9_c00271{width:19.490400px;}
._8_c00271{width:28.245600px;}
._a_c00271{width:29.570400px;}
._d_c00271{width:43.092000px;}
.fc1_c00271{color:transparent;}
.fc0_c00271{color:rgb(0,0,0);}
.fs0_c00271{font-size:72.000000px;}
.y0_c00271{bottom:0.000000px;}
.y5_c00271{bottom:5.040000px;}
.y1_c00271{bottom:12.735000px;}
.y3_c00271{bottom:45.405000px;}
.y4_c00271{bottom:53.100000px;}
.y21_c00271{bottom:111.645000px;}
.y20_c00271{bottom:147.645000px;}
.y1f_c00271{bottom:183.645000px;}
.y1e_c00271{bottom:219.645000px;}
.y1d_c00271{bottom:255.645000px;}
.y1c_c00271{bottom:291.645000px;}
.y1b_c00271{bottom:327.645000px;}
.y1a_c00271{bottom:363.645000px;}
.y19_c00271{bottom:399.645000px;}
.y18_c00271{bottom:435.645000px;}
.y17_c00271{bottom:471.645000px;}
.y16_c00271{bottom:507.645000px;}
.y15_c00271{bottom:543.645000px;}
.y14_c00271{bottom:579.645000px;}
.y13_c00271{bottom:615.645000px;}
.y12_c00271{bottom:651.645000px;}
.y11_c00271{bottom:687.645000px;}
.y10_c00271{bottom:723.645000px;}
.yf_c00271{bottom:759.645000px;}
.ye_c00271{bottom:795.645000px;}
.yd_c00271{bottom:831.645000px;}
.yc_c00271{bottom:867.645000px;}
.yb_c00271{bottom:903.645000px;}
.ya_c00271{bottom:939.645000px;}
.y9_c00271{bottom:975.645000px;}
.y8_c00271{bottom:1011.645000px;}
.y7_c00271{bottom:1047.645000px;}
.y6_c00271{bottom:1083.645000px;}
.y2_c00271{bottom:1165.005000px;}
.h4_c00271{height:20.880000px;}
.h3_c00271{height:70.664062px;}
.h2_c00271{height:1237.365000px;}
.h0_c00271{height:1262.835000px;}
.h1_c00271{height:1263.000000px;}
.w3_c00271{width:27.360000px;}
.w2_c00271{width:867.465000px;}
.w0_c00271{width:892.935000px;}
.w1_c00271{width:893.250000px;}
.x0_c00271{left:0.000000px;}
.x1_c00271{left:12.735000px;}
.x3_c00271{left:95.394300px;}
.x5_c00271{left:149.400150px;}
.x4_c00271{left:432.855000px;}
.x2_c00271{left:880.050300px;}
@media print{
.v0_c00271{vertical-align:0.000000pt;}
.ls1_c00271{letter-spacing:-0.012800pt;}
.ls0_c00271{letter-spacing:0.000000pt;}
.ws0_c00271{word-spacing:0.000000pt;}
._4_c00271{width:1.644800pt;}
._6_c00271{width:2.720000pt;}
._7_c00271{width:4.819200pt;}
._b_c00271{width:6.073600pt;}
._3_c00271{width:7.379200pt;}
._c_c00271{width:9.203200pt;}
._5_c00271{width:10.214400pt;}
._2_c00271{width:11.609600pt;}
._1_c00271{width:13.433600pt;}
._0_c00271{width:14.483200pt;}
._9_c00271{width:17.324800pt;}
._8_c00271{width:25.107200pt;}
._a_c00271{width:26.284800pt;}
._d_c00271{width:38.304000pt;}
.fs0_c00271{font-size:64.000000pt;}
.y0_c00271{bottom:0.000000pt;}
.y5_c00271{bottom:4.480000pt;}
.y1_c00271{bottom:11.320000pt;}
.y3_c00271{bottom:40.360000pt;}
.y4_c00271{bottom:47.200000pt;}
.y21_c00271{bottom:99.240000pt;}
.y20_c00271{bottom:131.240000pt;}
.y1f_c00271{bottom:163.240000pt;}
.y1e_c00271{bottom:195.240000pt;}
.y1d_c00271{bottom:227.240000pt;}
.y1c_c00271{bottom:259.240000pt;}
.y1b_c00271{bottom:291.240000pt;}
.y1a_c00271{bottom:323.240000pt;}
.y19_c00271{bottom:355.240000pt;}
.y18_c00271{bottom:387.240000pt;}
.y17_c00271{bottom:419.240000pt;}
.y16_c00271{bottom:451.240000pt;}
.y15_c00271{bottom:483.240000pt;}
.y14_c00271{bottom:515.240000pt;}
.y13_c00271{bottom:547.240000pt;}
.y12_c00271{bottom:579.240000pt;}
.y11_c00271{bottom:611.240000pt;}
.y10_c00271{bottom:643.240000pt;}
.yf_c00271{bottom:675.240000pt;}
.ye_c00271{bottom:707.240000pt;}
.yd_c00271{bottom:739.240000pt;}
.yc_c00271{bottom:771.240000pt;}
.yb_c00271{bottom:803.240000pt;}
.ya_c00271{bottom:835.240000pt;}
.y9_c00271{bottom:867.240000pt;}
.y8_c00271{bottom:899.240000pt;}
.y7_c00271{bottom:931.240000pt;}
.y6_c00271{bottom:963.240000pt;}
.y2_c00271{bottom:1035.560000pt;}
.h4_c00271{height:18.560000pt;}
.h3_c00271{height:62.812500pt;}
.h2_c00271{height:1099.880000pt;}
.h0_c00271{height:1122.520000pt;}
.h1_c00271{height:1122.666667pt;}
.w3_c00271{width:24.320000pt;}
.w2_c00271{width:771.080000pt;}
.w0_c00271{width:793.720000pt;}
.w1_c00271{width:794.000000pt;}
.x0_c00271{left:0.000000pt;}
.x1_c00271{left:11.320000pt;}
.x3_c00271{left:84.794933pt;}
.x5_c00271{left:132.800133pt;}
.x4_c00271{left:384.760000pt;}
.x2_c00271{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_88bd9104f2934bde28cb9d93.woff2')format("woff");}.ff1_c00272{font-family:ff1_c00272;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00272;src:url('chunks/assets/font_543d65aa5d286cb546e56c2b.woff2')format("woff");}.ff2_c00272{font-family:ff2_c00272;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00272{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00272{vertical-align:0.000000px;}
.ls2_c00272{letter-spacing:-0.014400px;}
.ls1_c00272{letter-spacing:0.000000px;}
.ls0_c00272{letter-spacing:17.208000px;}
.sc__c00272{text-shadow:none;}
.sc0_c00272{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00272{-webkit-text-stroke:0px transparent;}
.sc0_c00272{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00272{word-spacing:-17.985600px;}
.ws1_c00272{word-spacing:0.000000px;}
._2_c00272{width:1.634400px;}
._a_c00272{width:3.348000px;}
._5_c00272{width:4.478400px;}
._0_c00272{width:5.688000px;}
._3_c00272{width:7.084800px;}
._6_c00272{width:9.072000px;}
._1_c00272{width:10.584000px;}
._9_c00272{width:12.528000px;}
._4_c00272{width:14.508000px;}
._7_c00272{width:16.444800px;}
._8_c00272{width:20.296800px;}
.fc1_c00272{color:transparent;}
.fc0_c00272{color:rgb(0,0,0);}
.fs0_c00272{font-size:72.000000px;}
.y0_c00272{bottom:0.000000px;}
.y5_c00272{bottom:5.040000px;}
.y1_c00272{bottom:12.735000px;}
.y3_c00272{bottom:45.405000px;}
.y4_c00272{bottom:53.100000px;}
.y21_c00272{bottom:111.645000px;}
.y20_c00272{bottom:147.645000px;}
.y1f_c00272{bottom:183.645000px;}
.y1e_c00272{bottom:219.645000px;}
.y1d_c00272{bottom:255.645000px;}
.y1c_c00272{bottom:291.645000px;}
.y1b_c00272{bottom:327.645000px;}
.y1a_c00272{bottom:363.645000px;}
.y19_c00272{bottom:399.645000px;}
.y18_c00272{bottom:435.645000px;}
.y17_c00272{bottom:471.645000px;}
.y16_c00272{bottom:507.645000px;}
.y15_c00272{bottom:543.645000px;}
.y14_c00272{bottom:579.645000px;}
.y13_c00272{bottom:615.645000px;}
.y12_c00272{bottom:651.645000px;}
.y11_c00272{bottom:687.645000px;}
.y10_c00272{bottom:723.645000px;}
.yf_c00272{bottom:759.645000px;}
.ye_c00272{bottom:795.645000px;}
.yd_c00272{bottom:831.645000px;}
.yc_c00272{bottom:867.645000px;}
.yb_c00272{bottom:903.645000px;}
.ya_c00272{bottom:939.645000px;}
.y9_c00272{bottom:975.645000px;}
.y8_c00272{bottom:1011.645000px;}
.y7_c00272{bottom:1047.645000px;}
.y6_c00272{bottom:1083.645000px;}
.y2_c00272{bottom:1165.005000px;}
.h4_c00272{height:20.880000px;}
.h5_c00272{height:70.628906px;}
.h3_c00272{height:70.664062px;}
.h2_c00272{height:1237.365000px;}
.h0_c00272{height:1262.835000px;}
.h1_c00272{height:1263.000000px;}
.w3_c00272{width:27.360000px;}
.w2_c00272{width:867.465000px;}
.w0_c00272{width:892.935000px;}
.w1_c00272{width:893.250000px;}
.x0_c00272{left:0.000000px;}
.x1_c00272{left:12.735000px;}
.x3_c00272{left:95.397000px;}
.x5_c00272{left:149.400150px;}
.x4_c00272{left:432.855000px;}
.x2_c00272{left:880.125000px;}
@media print{
.v0_c00272{vertical-align:0.000000pt;}
.ls2_c00272{letter-spacing:-0.012800pt;}
.ls1_c00272{letter-spacing:0.000000pt;}
.ls0_c00272{letter-spacing:15.296000pt;}
.ws0_c00272{word-spacing:-15.987200pt;}
.ws1_c00272{word-spacing:0.000000pt;}
._2_c00272{width:1.452800pt;}
._a_c00272{width:2.976000pt;}
._5_c00272{width:3.980800pt;}
._0_c00272{width:5.056000pt;}
._3_c00272{width:6.297600pt;}
._6_c00272{width:8.064000pt;}
._1_c00272{width:9.408000pt;}
._9_c00272{width:11.136000pt;}
._4_c00272{width:12.896000pt;}
._7_c00272{width:14.617600pt;}
._8_c00272{width:18.041600pt;}
.fs0_c00272{font-size:64.000000pt;}
.y0_c00272{bottom:0.000000pt;}
.y5_c00272{bottom:4.480000pt;}
.y1_c00272{bottom:11.320000pt;}
.y3_c00272{bottom:40.360000pt;}
.y4_c00272{bottom:47.200000pt;}
.y21_c00272{bottom:99.240000pt;}
.y20_c00272{bottom:131.240000pt;}
.y1f_c00272{bottom:163.240000pt;}
.y1e_c00272{bottom:195.240000pt;}
.y1d_c00272{bottom:227.240000pt;}
.y1c_c00272{bottom:259.240000pt;}
.y1b_c00272{bottom:291.240000pt;}
.y1a_c00272{bottom:323.240000pt;}
.y19_c00272{bottom:355.240000pt;}
.y18_c00272{bottom:387.240000pt;}
.y17_c00272{bottom:419.240000pt;}
.y16_c00272{bottom:451.240000pt;}
.y15_c00272{bottom:483.240000pt;}
.y14_c00272{bottom:515.240000pt;}
.y13_c00272{bottom:547.240000pt;}
.y12_c00272{bottom:579.240000pt;}
.y11_c00272{bottom:611.240000pt;}
.y10_c00272{bottom:643.240000pt;}
.yf_c00272{bottom:675.240000pt;}
.ye_c00272{bottom:707.240000pt;}
.yd_c00272{bottom:739.240000pt;}
.yc_c00272{bottom:771.240000pt;}
.yb_c00272{bottom:803.240000pt;}
.ya_c00272{bottom:835.240000pt;}
.y9_c00272{bottom:867.240000pt;}
.y8_c00272{bottom:899.240000pt;}
.y7_c00272{bottom:931.240000pt;}
.y6_c00272{bottom:963.240000pt;}
.y2_c00272{bottom:1035.560000pt;}
.h4_c00272{height:18.560000pt;}
.h5_c00272{height:62.781250pt;}
.h3_c00272{height:62.812500pt;}
.h2_c00272{height:1099.880000pt;}
.h0_c00272{height:1122.520000pt;}
.h1_c00272{height:1122.666667pt;}
.w3_c00272{width:24.320000pt;}
.w2_c00272{width:771.080000pt;}
.w0_c00272{width:793.720000pt;}
.w1_c00272{width:794.000000pt;}
.x0_c00272{left:0.000000pt;}
.x1_c00272{left:11.320000pt;}
.x3_c00272{left:84.797333pt;}
.x5_c00272{left:132.800133pt;}
.x4_c00272{left:384.760000pt;}
.x2_c00272{left:782.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_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_b6731355bd1d4890b6acf816.woff2')format("woff");}.ff1_c00273{font-family:ff1_c00273;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00273;src:url('chunks/assets/font_0618f226b29d84f3d57e9f98.woff2')format("woff");}.ff2_c00273{font-family:ff2_c00273;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00273{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00273{vertical-align:0.000000px;}
.ls0_c00273{letter-spacing:0.000000px;}
.sc__c00273{text-shadow:none;}
.sc0_c00273{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00273{-webkit-text-stroke:0px transparent;}
.sc0_c00273{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00273{word-spacing:0.000000px;}
._0_c00273{width:1.756800px;}
._2_c00273{width:3.960000px;}
._3_c00273{width:5.961600px;}
._5_c00273{width:7.797600px;}
._6_c00273{width:8.978400px;}
._8_c00273{width:11.592000px;}
._4_c00273{width:12.974400px;}
._9_c00273{width:14.407200px;}
._7_c00273{width:16.963200px;}
._1_c00273{width:19.656000px;}
.fc1_c00273{color:transparent;}
.fc0_c00273{color:rgb(0,0,0);}
.fs0_c00273{font-size:72.000000px;}
.y0_c00273{bottom:0.000000px;}
.y5_c00273{bottom:5.040000px;}
.y1_c00273{bottom:12.735000px;}
.y3_c00273{bottom:45.405000px;}
.y4_c00273{bottom:53.100000px;}
.y21_c00273{bottom:111.645000px;}
.y20_c00273{bottom:147.645000px;}
.y1f_c00273{bottom:183.645000px;}
.y1e_c00273{bottom:219.645000px;}
.y1d_c00273{bottom:255.645000px;}
.y1c_c00273{bottom:291.645000px;}
.y1b_c00273{bottom:327.645000px;}
.y1a_c00273{bottom:363.645000px;}
.y19_c00273{bottom:399.645000px;}
.y18_c00273{bottom:435.645000px;}
.y17_c00273{bottom:471.645000px;}
.y16_c00273{bottom:507.645000px;}
.y15_c00273{bottom:543.645000px;}
.y14_c00273{bottom:579.645000px;}
.y13_c00273{bottom:615.645000px;}
.y12_c00273{bottom:651.645000px;}
.y11_c00273{bottom:687.645000px;}
.y10_c00273{bottom:723.645000px;}
.yf_c00273{bottom:759.645000px;}
.ye_c00273{bottom:795.645000px;}
.yd_c00273{bottom:831.645000px;}
.yc_c00273{bottom:867.645000px;}
.yb_c00273{bottom:903.645000px;}
.ya_c00273{bottom:939.645000px;}
.y9_c00273{bottom:975.645000px;}
.y8_c00273{bottom:1011.645000px;}
.y7_c00273{bottom:1047.645000px;}
.y6_c00273{bottom:1083.645000px;}
.y2_c00273{bottom:1165.005000px;}
.h4_c00273{height:20.880000px;}
.h5_c00273{height:70.628906px;}
.h3_c00273{height:70.664062px;}
.h2_c00273{height:1237.365000px;}
.h0_c00273{height:1262.835000px;}
.h1_c00273{height:1263.000000px;}
.w3_c00273{width:27.360000px;}
.w2_c00273{width:867.465000px;}
.w0_c00273{width:892.935000px;}
.w1_c00273{width:893.250000px;}
.x0_c00273{left:0.000000px;}
.x1_c00273{left:12.735000px;}
.x3_c00273{left:95.394300px;}
.x5_c00273{left:149.400150px;}
.x4_c00273{left:432.855000px;}
.x2_c00273{left:880.050300px;}
@media print{
.v0_c00273{vertical-align:0.000000pt;}
.ls0_c00273{letter-spacing:0.000000pt;}
.ws0_c00273{word-spacing:0.000000pt;}
._0_c00273{width:1.561600pt;}
._2_c00273{width:3.520000pt;}
._3_c00273{width:5.299200pt;}
._5_c00273{width:6.931200pt;}
._6_c00273{width:7.980800pt;}
._8_c00273{width:10.304000pt;}
._4_c00273{width:11.532800pt;}
._9_c00273{width:12.806400pt;}
._7_c00273{width:15.078400pt;}
._1_c00273{width:17.472000pt;}
.fs0_c00273{font-size:64.000000pt;}
.y0_c00273{bottom:0.000000pt;}
.y5_c00273{bottom:4.480000pt;}
.y1_c00273{bottom:11.320000pt;}
.y3_c00273{bottom:40.360000pt;}
.y4_c00273{bottom:47.200000pt;}
.y21_c00273{bottom:99.240000pt;}
.y20_c00273{bottom:131.240000pt;}
.y1f_c00273{bottom:163.240000pt;}
.y1e_c00273{bottom:195.240000pt;}
.y1d_c00273{bottom:227.240000pt;}
.y1c_c00273{bottom:259.240000pt;}
.y1b_c00273{bottom:291.240000pt;}
.y1a_c00273{bottom:323.240000pt;}
.y19_c00273{bottom:355.240000pt;}
.y18_c00273{bottom:387.240000pt;}
.y17_c00273{bottom:419.240000pt;}
.y16_c00273{bottom:451.240000pt;}
.y15_c00273{bottom:483.240000pt;}
.y14_c00273{bottom:515.240000pt;}
.y13_c00273{bottom:547.240000pt;}
.y12_c00273{bottom:579.240000pt;}
.y11_c00273{bottom:611.240000pt;}
.y10_c00273{bottom:643.240000pt;}
.yf_c00273{bottom:675.240000pt;}
.ye_c00273{bottom:707.240000pt;}
.yd_c00273{bottom:739.240000pt;}
.yc_c00273{bottom:771.240000pt;}
.yb_c00273{bottom:803.240000pt;}
.ya_c00273{bottom:835.240000pt;}
.y9_c00273{bottom:867.240000pt;}
.y8_c00273{bottom:899.240000pt;}
.y7_c00273{bottom:931.240000pt;}
.y6_c00273{bottom:963.240000pt;}
.y2_c00273{bottom:1035.560000pt;}
.h4_c00273{height:18.560000pt;}
.h5_c00273{height:62.781250pt;}
.h3_c00273{height:62.812500pt;}
.h2_c00273{height:1099.880000pt;}
.h0_c00273{height:1122.520000pt;}
.h1_c00273{height:1122.666667pt;}
.w3_c00273{width:24.320000pt;}
.w2_c00273{width:771.080000pt;}
.w0_c00273{width:793.720000pt;}
.w1_c00273{width:794.000000pt;}
.x0_c00273{left:0.000000pt;}
.x1_c00273{left:11.320000pt;}
.x3_c00273{left:84.794933pt;}
.x5_c00273{left:132.800133pt;}
.x4_c00273{left:384.760000pt;}
.x2_c00273{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d142e6869140d09acd412dce.woff2')format("woff");}.ff1_c00274{font-family:ff1_c00274;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00274;src:url('chunks/assets/font_55575772726fb0af76149f42.woff2')format("woff");}.ff2_c00274{font-family:ff2_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;}
.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;}
.ls1_c00274{letter-spacing:0.000000px;}
.ls0_c00274{letter-spacing:5.832000px;}
.sc__c00274{text-shadow:none;}
.sc0_c00274{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00274{-webkit-text-stroke:0px transparent;}
.sc0_c00274{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00274{word-spacing:0.000000px;}
._7_c00274{width:1.533600px;}
._2_c00274{width:2.959200px;}
._6_c00274{width:4.262400px;}
._1_c00274{width:5.623200px;}
._3_c00274{width:6.897600px;}
._4_c00274{width:8.784000px;}
._8_c00274{width:10.065600px;}
._0_c00274{width:11.102400px;}
._5_c00274{width:12.576600px;}
._9_c00274{width:13.975200px;}
._a_c00274{width:16.279200px;}
.fc1_c00274{color:transparent;}
.fc0_c00274{color:rgb(0,0,0);}
.fs0_c00274{font-size:72.000000px;}
.y0_c00274{bottom:0.000000px;}
.y5_c00274{bottom:5.040000px;}
.y1_c00274{bottom:12.735000px;}
.y3_c00274{bottom:45.405000px;}
.y4_c00274{bottom:53.100000px;}
.y21_c00274{bottom:111.645000px;}
.y20_c00274{bottom:147.645000px;}
.y1f_c00274{bottom:183.645000px;}
.y1e_c00274{bottom:219.645000px;}
.y1d_c00274{bottom:255.645000px;}
.y1c_c00274{bottom:291.645000px;}
.y1b_c00274{bottom:327.645000px;}
.y1a_c00274{bottom:363.645000px;}
.y19_c00274{bottom:399.645000px;}
.y18_c00274{bottom:435.645000px;}
.y17_c00274{bottom:471.645000px;}
.y16_c00274{bottom:507.645000px;}
.y15_c00274{bottom:543.645000px;}
.y14_c00274{bottom:579.645000px;}
.y13_c00274{bottom:615.645000px;}
.y12_c00274{bottom:651.645000px;}
.y11_c00274{bottom:687.645000px;}
.y10_c00274{bottom:723.645000px;}
.yf_c00274{bottom:759.645000px;}
.ye_c00274{bottom:795.645000px;}
.yd_c00274{bottom:831.645000px;}
.yc_c00274{bottom:867.645000px;}
.yb_c00274{bottom:903.645000px;}
.ya_c00274{bottom:939.645000px;}
.y9_c00274{bottom:975.645000px;}
.y8_c00274{bottom:1011.645000px;}
.y7_c00274{bottom:1047.645000px;}
.y6_c00274{bottom:1083.645000px;}
.y2_c00274{bottom:1165.005000px;}
.h4_c00274{height:20.880000px;}
.h5_c00274{height:70.628906px;}
.h3_c00274{height:70.664062px;}
.h2_c00274{height:1237.365000px;}
.h0_c00274{height:1262.835000px;}
.h1_c00274{height:1263.000000px;}
.w3_c00274{width:27.360000px;}
.w2_c00274{width:867.465000px;}
.w0_c00274{width:892.935000px;}
.w1_c00274{width:893.250000px;}
.x0_c00274{left:0.000000px;}
.x1_c00274{left:12.735000px;}
.x3_c00274{left:95.397000px;}
.x5_c00274{left:149.400150px;}
.x4_c00274{left:432.855000px;}
.x2_c00274{left:880.125000px;}
@media print{
.v0_c00274{vertical-align:0.000000pt;}
.ls1_c00274{letter-spacing:0.000000pt;}
.ls0_c00274{letter-spacing:5.184000pt;}
.ws0_c00274{word-spacing:0.000000pt;}
._7_c00274{width:1.363200pt;}
._2_c00274{width:2.630400pt;}
._6_c00274{width:3.788800pt;}
._1_c00274{width:4.998400pt;}
._3_c00274{width:6.131200pt;}
._4_c00274{width:7.808000pt;}
._8_c00274{width:8.947200pt;}
._0_c00274{width:9.868800pt;}
._5_c00274{width:11.179200pt;}
._9_c00274{width:12.422400pt;}
._a_c00274{width:14.470400pt;}
.fs0_c00274{font-size:64.000000pt;}
.y0_c00274{bottom:0.000000pt;}
.y5_c00274{bottom:4.480000pt;}
.y1_c00274{bottom:11.320000pt;}
.y3_c00274{bottom:40.360000pt;}
.y4_c00274{bottom:47.200000pt;}
.y21_c00274{bottom:99.240000pt;}
.y20_c00274{bottom:131.240000pt;}
.y1f_c00274{bottom:163.240000pt;}
.y1e_c00274{bottom:195.240000pt;}
.y1d_c00274{bottom:227.240000pt;}
.y1c_c00274{bottom:259.240000pt;}
.y1b_c00274{bottom:291.240000pt;}
.y1a_c00274{bottom:323.240000pt;}
.y19_c00274{bottom:355.240000pt;}
.y18_c00274{bottom:387.240000pt;}
.y17_c00274{bottom:419.240000pt;}
.y16_c00274{bottom:451.240000pt;}
.y15_c00274{bottom:483.240000pt;}
.y14_c00274{bottom:515.240000pt;}
.y13_c00274{bottom:547.240000pt;}
.y12_c00274{bottom:579.240000pt;}
.y11_c00274{bottom:611.240000pt;}
.y10_c00274{bottom:643.240000pt;}
.yf_c00274{bottom:675.240000pt;}
.ye_c00274{bottom:707.240000pt;}
.yd_c00274{bottom:739.240000pt;}
.yc_c00274{bottom:771.240000pt;}
.yb_c00274{bottom:803.240000pt;}
.ya_c00274{bottom:835.240000pt;}
.y9_c00274{bottom:867.240000pt;}
.y8_c00274{bottom:899.240000pt;}
.y7_c00274{bottom:931.240000pt;}
.y6_c00274{bottom:963.240000pt;}
.y2_c00274{bottom:1035.560000pt;}
.h4_c00274{height:18.560000pt;}
.h5_c00274{height:62.781250pt;}
.h3_c00274{height:62.812500pt;}
.h2_c00274{height:1099.880000pt;}
.h0_c00274{height:1122.520000pt;}
.h1_c00274{height:1122.666667pt;}
.w3_c00274{width:24.320000pt;}
.w2_c00274{width:771.080000pt;}
.w0_c00274{width:793.720000pt;}
.w1_c00274{width:794.000000pt;}
.x0_c00274{left:0.000000pt;}
.x1_c00274{left:11.320000pt;}
.x3_c00274{left:84.797333pt;}
.x5_c00274{left:132.800133pt;}
.x4_c00274{left:384.760000pt;}
.x2_c00274{left:782.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_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_1674cd5e37db7287d6fabe26.woff2')format("woff");}.ff1_c00275{font-family:ff1_c00275;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00275;src:url('chunks/assets/font_da5b74c73f45807ff6f144f0.woff2')format("woff");}.ff2_c00275{font-family:ff2_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;}
.m0_c00275{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00275{vertical-align:0.000000px;}
.ls1_c00275{letter-spacing:-0.014400px;}
.ls0_c00275{letter-spacing:0.000000px;}
.sc__c00275{text-shadow:none;}
.sc0_c00275{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00275{-webkit-text-stroke:0px transparent;}
.sc0_c00275{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00275{word-spacing:0.000000px;}
._2_c00275{width:2.138400px;}
._3_c00275{width:3.664800px;}
._9_c00275{width:5.450400px;}
._4_c00275{width:9.360000px;}
._7_c00275{width:10.612800px;}
._6_c00275{width:12.117600px;}
._8_c00275{width:14.004000px;}
._5_c00275{width:15.552000px;}
._a_c00275{width:20.851200px;}
._0_c00275{width:23.947200px;}
._1_c00275{width:27.453600px;}
.fc1_c00275{color:transparent;}
.fc0_c00275{color:rgb(0,0,0);}
.fs0_c00275{font-size:72.000000px;}
.y0_c00275{bottom:0.000000px;}
.y5_c00275{bottom:5.040000px;}
.y1_c00275{bottom:12.735000px;}
.y3_c00275{bottom:45.405000px;}
.y4_c00275{bottom:53.100000px;}
.y21_c00275{bottom:111.645000px;}
.y20_c00275{bottom:147.645000px;}
.y1f_c00275{bottom:183.645000px;}
.y1e_c00275{bottom:219.645000px;}
.y1d_c00275{bottom:255.645000px;}
.y1c_c00275{bottom:291.645000px;}
.y1b_c00275{bottom:327.645000px;}
.y1a_c00275{bottom:363.645000px;}
.y19_c00275{bottom:399.645000px;}
.y18_c00275{bottom:435.645000px;}
.y17_c00275{bottom:471.645000px;}
.y16_c00275{bottom:507.645000px;}
.y15_c00275{bottom:543.645000px;}
.y14_c00275{bottom:579.645000px;}
.y13_c00275{bottom:615.645000px;}
.y12_c00275{bottom:651.645000px;}
.y11_c00275{bottom:687.645000px;}
.y10_c00275{bottom:723.645000px;}
.yf_c00275{bottom:759.645000px;}
.ye_c00275{bottom:795.645000px;}
.yd_c00275{bottom:831.645000px;}
.yc_c00275{bottom:867.645000px;}
.yb_c00275{bottom:903.645000px;}
.ya_c00275{bottom:939.645000px;}
.y9_c00275{bottom:975.645000px;}
.y8_c00275{bottom:1011.645000px;}
.y7_c00275{bottom:1047.645000px;}
.y6_c00275{bottom:1083.645000px;}
.y2_c00275{bottom:1165.005000px;}
.h4_c00275{height:20.880000px;}
.h5_c00275{height:70.628906px;}
.h3_c00275{height:70.664062px;}
.h2_c00275{height:1237.365000px;}
.h0_c00275{height:1262.835000px;}
.h1_c00275{height:1263.000000px;}
.w3_c00275{width:27.360000px;}
.w2_c00275{width:867.465000px;}
.w0_c00275{width:892.935000px;}
.w1_c00275{width:893.250000px;}
.x0_c00275{left:0.000000px;}
.x1_c00275{left:12.735000px;}
.x3_c00275{left:95.394300px;}
.x5_c00275{left:149.400150px;}
.x4_c00275{left:432.855000px;}
.x2_c00275{left:880.050300px;}
@media print{
.v0_c00275{vertical-align:0.000000pt;}
.ls1_c00275{letter-spacing:-0.012800pt;}
.ls0_c00275{letter-spacing:0.000000pt;}
.ws0_c00275{word-spacing:0.000000pt;}
._2_c00275{width:1.900800pt;}
._3_c00275{width:3.257600pt;}
._9_c00275{width:4.844800pt;}
._4_c00275{width:8.320000pt;}
._7_c00275{width:9.433600pt;}
._6_c00275{width:10.771200pt;}
._8_c00275{width:12.448000pt;}
._5_c00275{width:13.824000pt;}
._a_c00275{width:18.534400pt;}
._0_c00275{width:21.286400pt;}
._1_c00275{width:24.403200pt;}
.fs0_c00275{font-size:64.000000pt;}
.y0_c00275{bottom:0.000000pt;}
.y5_c00275{bottom:4.480000pt;}
.y1_c00275{bottom:11.320000pt;}
.y3_c00275{bottom:40.360000pt;}
.y4_c00275{bottom:47.200000pt;}
.y21_c00275{bottom:99.240000pt;}
.y20_c00275{bottom:131.240000pt;}
.y1f_c00275{bottom:163.240000pt;}
.y1e_c00275{bottom:195.240000pt;}
.y1d_c00275{bottom:227.240000pt;}
.y1c_c00275{bottom:259.240000pt;}
.y1b_c00275{bottom:291.240000pt;}
.y1a_c00275{bottom:323.240000pt;}
.y19_c00275{bottom:355.240000pt;}
.y18_c00275{bottom:387.240000pt;}
.y17_c00275{bottom:419.240000pt;}
.y16_c00275{bottom:451.240000pt;}
.y15_c00275{bottom:483.240000pt;}
.y14_c00275{bottom:515.240000pt;}
.y13_c00275{bottom:547.240000pt;}
.y12_c00275{bottom:579.240000pt;}
.y11_c00275{bottom:611.240000pt;}
.y10_c00275{bottom:643.240000pt;}
.yf_c00275{bottom:675.240000pt;}
.ye_c00275{bottom:707.240000pt;}
.yd_c00275{bottom:739.240000pt;}
.yc_c00275{bottom:771.240000pt;}
.yb_c00275{bottom:803.240000pt;}
.ya_c00275{bottom:835.240000pt;}
.y9_c00275{bottom:867.240000pt;}
.y8_c00275{bottom:899.240000pt;}
.y7_c00275{bottom:931.240000pt;}
.y6_c00275{bottom:963.240000pt;}
.y2_c00275{bottom:1035.560000pt;}
.h4_c00275{height:18.560000pt;}
.h5_c00275{height:62.781250pt;}
.h3_c00275{height:62.812500pt;}
.h2_c00275{height:1099.880000pt;}
.h0_c00275{height:1122.520000pt;}
.h1_c00275{height:1122.666667pt;}
.w3_c00275{width:24.320000pt;}
.w2_c00275{width:771.080000pt;}
.w0_c00275{width:793.720000pt;}
.w1_c00275{width:794.000000pt;}
.x0_c00275{left:0.000000pt;}
.x1_c00275{left:11.320000pt;}
.x3_c00275{left:84.794933pt;}
.x5_c00275{left:132.800133pt;}
.x4_c00275{left:384.760000pt;}
.x2_c00275{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7c6449225876f6973a8edef.woff2')format("woff");}.ff1_c00276{font-family:ff1_c00276;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00276;src:url('chunks/assets/font_07bbb0fcfd8394633a009fe2.woff2')format("woff");}.ff2_c00276{font-family:ff2_c00276;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00276{letter-spacing:0.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;}
}
.ws0_c00276{word-spacing:0.000000px;}
._1_c00276{width:1.396800px;}
._b_c00276{width:2.606400px;}
._7_c00276{width:3.686400px;}
._e_c00276{width:5.011200px;}
._3_c00276{width:7.776000px;}
._5_c00276{width:9.590400px;}
._2_c00276{width:11.181600px;}
._8_c00276{width:12.326400px;}
._9_c00276{width:14.284800px;}
._d_c00276{width:15.364800px;}
._6_c00276{width:20.988000px;}
._0_c00276{width:22.658400px;}
._c_c00276{width:24.832800px;}
._4_c00276{width:26.316000px;}
._a_c00276{width:29.743200px;}
.fc1_c00276{color:transparent;}
.fc0_c00276{color:rgb(0,0,0);}
.fs0_c00276{font-size:72.000000px;}
.y0_c00276{bottom:0.000000px;}
.y5_c00276{bottom:5.040000px;}
.y1_c00276{bottom:12.735000px;}
.y3_c00276{bottom:45.405000px;}
.y4_c00276{bottom:53.100000px;}
.y21_c00276{bottom:111.645000px;}
.y20_c00276{bottom:147.645000px;}
.y1f_c00276{bottom:183.645000px;}
.y1e_c00276{bottom:219.645000px;}
.y1d_c00276{bottom:255.645000px;}
.y1c_c00276{bottom:291.645000px;}
.y1b_c00276{bottom:327.645000px;}
.y1a_c00276{bottom:363.645000px;}
.y19_c00276{bottom:399.645000px;}
.y18_c00276{bottom:435.645000px;}
.y17_c00276{bottom:471.645000px;}
.y16_c00276{bottom:507.645000px;}
.y15_c00276{bottom:543.645000px;}
.y14_c00276{bottom:579.645000px;}
.y13_c00276{bottom:615.645000px;}
.y12_c00276{bottom:651.645000px;}
.y11_c00276{bottom:687.645000px;}
.y10_c00276{bottom:723.645000px;}
.yf_c00276{bottom:759.645000px;}
.ye_c00276{bottom:795.645000px;}
.yd_c00276{bottom:831.645000px;}
.yc_c00276{bottom:867.645000px;}
.yb_c00276{bottom:903.645000px;}
.ya_c00276{bottom:939.645000px;}
.y9_c00276{bottom:975.645000px;}
.y8_c00276{bottom:1011.645000px;}
.y7_c00276{bottom:1047.645000px;}
.y6_c00276{bottom:1083.645000px;}
.y2_c00276{bottom:1165.005000px;}
.h4_c00276{height:20.880000px;}
.h5_c00276{height:70.628906px;}
.h3_c00276{height:70.664062px;}
.h2_c00276{height:1237.365000px;}
.h0_c00276{height:1262.835000px;}
.h1_c00276{height:1263.000000px;}
.w3_c00276{width:27.360000px;}
.w2_c00276{width:867.465000px;}
.w0_c00276{width:892.935000px;}
.w1_c00276{width:893.250000px;}
.x0_c00276{left:0.000000px;}
.x1_c00276{left:12.735000px;}
.x3_c00276{left:95.397000px;}
.x5_c00276{left:149.400150px;}
.x4_c00276{left:432.855000px;}
.x2_c00276{left:880.125000px;}
@media print{
.v0_c00276{vertical-align:0.000000pt;}
.ls0_c00276{letter-spacing:0.000000pt;}
.ws0_c00276{word-spacing:0.000000pt;}
._1_c00276{width:1.241600pt;}
._b_c00276{width:2.316800pt;}
._7_c00276{width:3.276800pt;}
._e_c00276{width:4.454400pt;}
._3_c00276{width:6.912000pt;}
._5_c00276{width:8.524800pt;}
._2_c00276{width:9.939200pt;}
._8_c00276{width:10.956800pt;}
._9_c00276{width:12.697600pt;}
._d_c00276{width:13.657600pt;}
._6_c00276{width:18.656000pt;}
._0_c00276{width:20.140800pt;}
._c_c00276{width:22.073600pt;}
._4_c00276{width:23.392000pt;}
._a_c00276{width:26.438400pt;}
.fs0_c00276{font-size:64.000000pt;}
.y0_c00276{bottom:0.000000pt;}
.y5_c00276{bottom:4.480000pt;}
.y1_c00276{bottom:11.320000pt;}
.y3_c00276{bottom:40.360000pt;}
.y4_c00276{bottom:47.200000pt;}
.y21_c00276{bottom:99.240000pt;}
.y20_c00276{bottom:131.240000pt;}
.y1f_c00276{bottom:163.240000pt;}
.y1e_c00276{bottom:195.240000pt;}
.y1d_c00276{bottom:227.240000pt;}
.y1c_c00276{bottom:259.240000pt;}
.y1b_c00276{bottom:291.240000pt;}
.y1a_c00276{bottom:323.240000pt;}
.y19_c00276{bottom:355.240000pt;}
.y18_c00276{bottom:387.240000pt;}
.y17_c00276{bottom:419.240000pt;}
.y16_c00276{bottom:451.240000pt;}
.y15_c00276{bottom:483.240000pt;}
.y14_c00276{bottom:515.240000pt;}
.y13_c00276{bottom:547.240000pt;}
.y12_c00276{bottom:579.240000pt;}
.y11_c00276{bottom:611.240000pt;}
.y10_c00276{bottom:643.240000pt;}
.yf_c00276{bottom:675.240000pt;}
.ye_c00276{bottom:707.240000pt;}
.yd_c00276{bottom:739.240000pt;}
.yc_c00276{bottom:771.240000pt;}
.yb_c00276{bottom:803.240000pt;}
.ya_c00276{bottom:835.240000pt;}
.y9_c00276{bottom:867.240000pt;}
.y8_c00276{bottom:899.240000pt;}
.y7_c00276{bottom:931.240000pt;}
.y6_c00276{bottom:963.240000pt;}
.y2_c00276{bottom:1035.560000pt;}
.h4_c00276{height:18.560000pt;}
.h5_c00276{height:62.781250pt;}
.h3_c00276{height:62.812500pt;}
.h2_c00276{height:1099.880000pt;}
.h0_c00276{height:1122.520000pt;}
.h1_c00276{height:1122.666667pt;}
.w3_c00276{width:24.320000pt;}
.w2_c00276{width:771.080000pt;}
.w0_c00276{width:793.720000pt;}
.w1_c00276{width:794.000000pt;}
.x0_c00276{left:0.000000pt;}
.x1_c00276{left:11.320000pt;}
.x3_c00276{left:84.797333pt;}
.x5_c00276{left:132.800133pt;}
.x4_c00276{left:384.760000pt;}
.x2_c00276{left:782.333333pt;}
}





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

.ir_c00277:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00277{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00277;src:url('chunks/assets/font_51b73cea7fe43536d3ac0927.woff2')format("woff");}.ff1_c00277{font-family:ff1_c00277;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00277;src:url('chunks/assets/font_718f21b500315d74b720bd66.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;}
.m0_c00277{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00277{vertical-align:0.000000px;}
.ls0_c00277{letter-spacing:0.000000px;}
.sc__c00277{text-shadow:none;}
.sc0_c00277{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00277{-webkit-text-stroke:0px transparent;}
.sc0_c00277{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00277{word-spacing:0.000000px;}
._0_c00277{width:1.252800px;}
._4_c00277{width:3.247200px;}
._3_c00277{width:4.759200px;}
._6_c00277{width:6.530400px;}
._2_c00277{width:8.517600px;}
._5_c00277{width:10.152000px;}
._7_c00277{width:11.289600px;}
._1_c00277{width:12.844800px;}
._b_c00277{width:13.968000px;}
._a_c00277{width:15.343200px;}
._9_c00277{width:16.531200px;}
._8_c00277{width:35.467200px;}
.fc1_c00277{color:transparent;}
.fc0_c00277{color:rgb(0,0,0);}
.fs0_c00277{font-size:72.000000px;}
.y0_c00277{bottom:0.000000px;}
.y5_c00277{bottom:5.040000px;}
.y1_c00277{bottom:12.735000px;}
.y3_c00277{bottom:45.405000px;}
.y4_c00277{bottom:53.100000px;}
.y21_c00277{bottom:111.645000px;}
.y20_c00277{bottom:147.645000px;}
.y1f_c00277{bottom:183.645000px;}
.y1e_c00277{bottom:219.645000px;}
.y1d_c00277{bottom:255.645000px;}
.y1c_c00277{bottom:291.645000px;}
.y1b_c00277{bottom:327.645000px;}
.y1a_c00277{bottom:363.645000px;}
.y19_c00277{bottom:399.645000px;}
.y18_c00277{bottom:435.645000px;}
.y17_c00277{bottom:471.645000px;}
.y16_c00277{bottom:507.645000px;}
.y15_c00277{bottom:543.645000px;}
.y14_c00277{bottom:579.645000px;}
.y13_c00277{bottom:615.645000px;}
.y12_c00277{bottom:651.645000px;}
.y11_c00277{bottom:687.645000px;}
.y10_c00277{bottom:723.645000px;}
.yf_c00277{bottom:759.645000px;}
.ye_c00277{bottom:795.645000px;}
.yd_c00277{bottom:831.645000px;}
.yc_c00277{bottom:867.645000px;}
.yb_c00277{bottom:903.645000px;}
.ya_c00277{bottom:939.645000px;}
.y9_c00277{bottom:975.645000px;}
.y8_c00277{bottom:1011.645000px;}
.y7_c00277{bottom:1047.645000px;}
.y6_c00277{bottom:1083.645000px;}
.y2_c00277{bottom:1165.005000px;}
.h4_c00277{height:20.880000px;}
.h5_c00277{height:70.628906px;}
.h3_c00277{height:70.664062px;}
.h2_c00277{height:1237.365000px;}
.h0_c00277{height:1262.835000px;}
.h1_c00277{height:1263.000000px;}
.w3_c00277{width:27.360000px;}
.w2_c00277{width:867.465000px;}
.w0_c00277{width:892.935000px;}
.w1_c00277{width:893.250000px;}
.x0_c00277{left:0.000000px;}
.x1_c00277{left:12.735000px;}
.x8_c00277{left:63.450150px;}
.x3_c00277{left:95.394300px;}
.x7_c00277{left:117.450150px;}
.x5_c00277{left:149.400150px;}
.x6_c00277{left:180.450150px;}
.x4_c00277{left:432.855000px;}
.x2_c00277{left:880.050300px;}
@media print{
.v0_c00277{vertical-align:0.000000pt;}
.ls0_c00277{letter-spacing:0.000000pt;}
.ws0_c00277{word-spacing:0.000000pt;}
._0_c00277{width:1.113600pt;}
._4_c00277{width:2.886400pt;}
._3_c00277{width:4.230400pt;}
._6_c00277{width:5.804800pt;}
._2_c00277{width:7.571200pt;}
._5_c00277{width:9.024000pt;}
._7_c00277{width:10.035200pt;}
._1_c00277{width:11.417600pt;}
._b_c00277{width:12.416000pt;}
._a_c00277{width:13.638400pt;}
._9_c00277{width:14.694400pt;}
._8_c00277{width:31.526400pt;}
.fs0_c00277{font-size:64.000000pt;}
.y0_c00277{bottom:0.000000pt;}
.y5_c00277{bottom:4.480000pt;}
.y1_c00277{bottom:11.320000pt;}
.y3_c00277{bottom:40.360000pt;}
.y4_c00277{bottom:47.200000pt;}
.y21_c00277{bottom:99.240000pt;}
.y20_c00277{bottom:131.240000pt;}
.y1f_c00277{bottom:163.240000pt;}
.y1e_c00277{bottom:195.240000pt;}
.y1d_c00277{bottom:227.240000pt;}
.y1c_c00277{bottom:259.240000pt;}
.y1b_c00277{bottom:291.240000pt;}
.y1a_c00277{bottom:323.240000pt;}
.y19_c00277{bottom:355.240000pt;}
.y18_c00277{bottom:387.240000pt;}
.y17_c00277{bottom:419.240000pt;}
.y16_c00277{bottom:451.240000pt;}
.y15_c00277{bottom:483.240000pt;}
.y14_c00277{bottom:515.240000pt;}
.y13_c00277{bottom:547.240000pt;}
.y12_c00277{bottom:579.240000pt;}
.y11_c00277{bottom:611.240000pt;}
.y10_c00277{bottom:643.240000pt;}
.yf_c00277{bottom:675.240000pt;}
.ye_c00277{bottom:707.240000pt;}
.yd_c00277{bottom:739.240000pt;}
.yc_c00277{bottom:771.240000pt;}
.yb_c00277{bottom:803.240000pt;}
.ya_c00277{bottom:835.240000pt;}
.y9_c00277{bottom:867.240000pt;}
.y8_c00277{bottom:899.240000pt;}
.y7_c00277{bottom:931.240000pt;}
.y6_c00277{bottom:963.240000pt;}
.y2_c00277{bottom:1035.560000pt;}
.h4_c00277{height:18.560000pt;}
.h5_c00277{height:62.781250pt;}
.h3_c00277{height:62.812500pt;}
.h2_c00277{height:1099.880000pt;}
.h0_c00277{height:1122.520000pt;}
.h1_c00277{height:1122.666667pt;}
.w3_c00277{width:24.320000pt;}
.w2_c00277{width:771.080000pt;}
.w0_c00277{width:793.720000pt;}
.w1_c00277{width:794.000000pt;}
.x0_c00277{left:0.000000pt;}
.x1_c00277{left:11.320000pt;}
.x8_c00277{left:56.400133pt;}
.x3_c00277{left:84.794933pt;}
.x7_c00277{left:104.400133pt;}
.x5_c00277{left:132.800133pt;}
.x6_c00277{left:160.400133pt;}
.x4_c00277{left:384.760000pt;}
.x2_c00277{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a1636032c04c995c64bf36a9.woff2')format("woff");}.ff1_c00278{font-family:ff1_c00278;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00278{letter-spacing:0.000000px;}
.sc__c00278{text-shadow:none;}
.sc0_c00278{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00278{-webkit-text-stroke:0px transparent;}
.sc0_c00278{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00278{word-spacing:0.000000px;}
._4_c00278{width:1.123200px;}
._7_c00278{width:2.246400px;}
._9_c00278{width:4.384800px;}
._6_c00278{width:6.984000px;}
._8_c00278{width:8.704800px;}
._0_c00278{width:9.763200px;}
._1_c00278{width:11.714400px;}
._5_c00278{width:13.557600px;}
._3_c00278{width:14.644800px;}
._2_c00278{width:16.545600px;}
._a_c00278{width:27.100800px;}
.fc1_c00278{color:transparent;}
.fc0_c00278{color:rgb(0,0,0);}
.fs0_c00278{font-size:72.000000px;}
.y0_c00278{bottom:0.000000px;}
.y5_c00278{bottom:5.040000px;}
.y1_c00278{bottom:12.735000px;}
.y3_c00278{bottom:45.405000px;}
.y4_c00278{bottom:53.100000px;}
.y21_c00278{bottom:111.645000px;}
.y20_c00278{bottom:147.645000px;}
.y1f_c00278{bottom:183.645000px;}
.y1e_c00278{bottom:219.645000px;}
.y1d_c00278{bottom:255.645000px;}
.y1c_c00278{bottom:291.645000px;}
.y1b_c00278{bottom:327.645000px;}
.y1a_c00278{bottom:363.645000px;}
.y19_c00278{bottom:399.645000px;}
.y18_c00278{bottom:435.645000px;}
.y17_c00278{bottom:471.645000px;}
.y16_c00278{bottom:507.645000px;}
.y15_c00278{bottom:543.645000px;}
.y14_c00278{bottom:579.645000px;}
.y13_c00278{bottom:615.645000px;}
.y12_c00278{bottom:651.645000px;}
.y11_c00278{bottom:687.645000px;}
.y10_c00278{bottom:723.645000px;}
.yf_c00278{bottom:759.645000px;}
.ye_c00278{bottom:795.645000px;}
.yd_c00278{bottom:831.645000px;}
.yc_c00278{bottom:867.645000px;}
.yb_c00278{bottom:903.645000px;}
.ya_c00278{bottom:939.645000px;}
.y9_c00278{bottom:975.645000px;}
.y8_c00278{bottom:1011.645000px;}
.y7_c00278{bottom:1047.645000px;}
.y6_c00278{bottom:1083.645000px;}
.y2_c00278{bottom:1165.005000px;}
.h4_c00278{height:20.880000px;}
.h3_c00278{height:70.664062px;}
.h2_c00278{height:1237.365000px;}
.h0_c00278{height:1262.835000px;}
.h1_c00278{height:1263.000000px;}
.w3_c00278{width:27.360000px;}
.w2_c00278{width:867.465000px;}
.w0_c00278{width:892.935000px;}
.w1_c00278{width:893.250000px;}
.x0_c00278{left:0.000000px;}
.x1_c00278{left:12.735000px;}
.x6_c00278{left:63.450000px;}
.x3_c00278{left:95.397000px;}
.x5_c00278{left:117.450000px;}
.x4_c00278{left:432.855000px;}
.x2_c00278{left:880.125000px;}
@media print{
.v0_c00278{vertical-align:0.000000pt;}
.ls0_c00278{letter-spacing:0.000000pt;}
.ws0_c00278{word-spacing:0.000000pt;}
._4_c00278{width:0.998400pt;}
._7_c00278{width:1.996800pt;}
._9_c00278{width:3.897600pt;}
._6_c00278{width:6.208000pt;}
._8_c00278{width:7.737600pt;}
._0_c00278{width:8.678400pt;}
._1_c00278{width:10.412800pt;}
._5_c00278{width:12.051200pt;}
._3_c00278{width:13.017600pt;}
._2_c00278{width:14.707200pt;}
._a_c00278{width:24.089600pt;}
.fs0_c00278{font-size:64.000000pt;}
.y0_c00278{bottom:0.000000pt;}
.y5_c00278{bottom:4.480000pt;}
.y1_c00278{bottom:11.320000pt;}
.y3_c00278{bottom:40.360000pt;}
.y4_c00278{bottom:47.200000pt;}
.y21_c00278{bottom:99.240000pt;}
.y20_c00278{bottom:131.240000pt;}
.y1f_c00278{bottom:163.240000pt;}
.y1e_c00278{bottom:195.240000pt;}
.y1d_c00278{bottom:227.240000pt;}
.y1c_c00278{bottom:259.240000pt;}
.y1b_c00278{bottom:291.240000pt;}
.y1a_c00278{bottom:323.240000pt;}
.y19_c00278{bottom:355.240000pt;}
.y18_c00278{bottom:387.240000pt;}
.y17_c00278{bottom:419.240000pt;}
.y16_c00278{bottom:451.240000pt;}
.y15_c00278{bottom:483.240000pt;}
.y14_c00278{bottom:515.240000pt;}
.y13_c00278{bottom:547.240000pt;}
.y12_c00278{bottom:579.240000pt;}
.y11_c00278{bottom:611.240000pt;}
.y10_c00278{bottom:643.240000pt;}
.yf_c00278{bottom:675.240000pt;}
.ye_c00278{bottom:707.240000pt;}
.yd_c00278{bottom:739.240000pt;}
.yc_c00278{bottom:771.240000pt;}
.yb_c00278{bottom:803.240000pt;}
.ya_c00278{bottom:835.240000pt;}
.y9_c00278{bottom:867.240000pt;}
.y8_c00278{bottom:899.240000pt;}
.y7_c00278{bottom:931.240000pt;}
.y6_c00278{bottom:963.240000pt;}
.y2_c00278{bottom:1035.560000pt;}
.h4_c00278{height:18.560000pt;}
.h3_c00278{height:62.812500pt;}
.h2_c00278{height:1099.880000pt;}
.h0_c00278{height:1122.520000pt;}
.h1_c00278{height:1122.666667pt;}
.w3_c00278{width:24.320000pt;}
.w2_c00278{width:771.080000pt;}
.w0_c00278{width:793.720000pt;}
.w1_c00278{width:794.000000pt;}
.x0_c00278{left:0.000000pt;}
.x1_c00278{left:11.320000pt;}
.x6_c00278{left:56.400000pt;}
.x3_c00278{left:84.797333pt;}
.x5_c00278{left:104.400000pt;}
.x4_c00278{left:384.760000pt;}
.x2_c00278{left:782.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_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_a368776c480eb41523578f67.woff2')format("woff");}.ff1_c00279{font-family:ff1_c00279;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00279{letter-spacing:0.000000px;}
.sc__c00279{text-shadow:none;}
.sc0_c00279{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00279{-webkit-text-stroke:0px transparent;}
.sc0_c00279{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00279{word-spacing:0.000000px;}
._3_c00279{width:1.360800px;}
._0_c00279{width:2.397600px;}
._2_c00279{width:3.866400px;}
._c_c00279{width:4.910400px;}
._6_c00279{width:5.990400px;}
._9_c00279{width:8.128800px;}
._a_c00279{width:9.273600px;}
._b_c00279{width:10.303200px;}
._4_c00279{width:11.332800px;}
._7_c00279{width:12.520800px;}
._5_c00279{width:19.512000px;}
._8_c00279{width:24.991200px;}
._1_c00279{width:33.998400px;}
.fc1_c00279{color:transparent;}
.fc0_c00279{color:rgb(0,0,0);}
.fs0_c00279{font-size:72.000000px;}
.y0_c00279{bottom:0.000000px;}
.y5_c00279{bottom:5.040000px;}
.y1_c00279{bottom:12.735000px;}
.y3_c00279{bottom:45.405000px;}
.y4_c00279{bottom:53.100000px;}
.y20_c00279{bottom:147.645000px;}
.y1f_c00279{bottom:183.645000px;}
.y1e_c00279{bottom:219.645000px;}
.y1d_c00279{bottom:255.645000px;}
.y1c_c00279{bottom:291.645000px;}
.y1b_c00279{bottom:327.645000px;}
.y1a_c00279{bottom:363.645000px;}
.y19_c00279{bottom:399.645000px;}
.y18_c00279{bottom:435.645000px;}
.y17_c00279{bottom:471.645000px;}
.y16_c00279{bottom:507.645000px;}
.y15_c00279{bottom:543.645000px;}
.y14_c00279{bottom:579.645000px;}
.y13_c00279{bottom:615.645000px;}
.y12_c00279{bottom:651.645000px;}
.y11_c00279{bottom:687.645000px;}
.y10_c00279{bottom:723.645000px;}
.yf_c00279{bottom:759.645000px;}
.ye_c00279{bottom:795.645000px;}
.yd_c00279{bottom:831.645000px;}
.yc_c00279{bottom:867.645000px;}
.yb_c00279{bottom:903.645000px;}
.ya_c00279{bottom:939.645000px;}
.y9_c00279{bottom:975.645000px;}
.y8_c00279{bottom:1011.645000px;}
.y7_c00279{bottom:1047.645000px;}
.y6_c00279{bottom:1083.645000px;}
.y2_c00279{bottom:1165.005000px;}
.h4_c00279{height:20.880000px;}
.h3_c00279{height:70.664062px;}
.h2_c00279{height:1237.365000px;}
.h0_c00279{height:1262.835000px;}
.h1_c00279{height:1263.000000px;}
.w3_c00279{width:27.360000px;}
.w2_c00279{width:867.465000px;}
.w0_c00279{width:892.935000px;}
.w1_c00279{width:893.250000px;}
.x0_c00279{left:0.000000px;}
.x1_c00279{left:12.735000px;}
.x5_c00279{left:63.450150px;}
.x3_c00279{left:95.394300px;}
.x6_c00279{left:117.450150px;}
.x4_c00279{left:432.855000px;}
.x2_c00279{left:880.050300px;}
@media print{
.v0_c00279{vertical-align:0.000000pt;}
.ls0_c00279{letter-spacing:0.000000pt;}
.ws0_c00279{word-spacing:0.000000pt;}
._3_c00279{width:1.209600pt;}
._0_c00279{width:2.131200pt;}
._2_c00279{width:3.436800pt;}
._c_c00279{width:4.364800pt;}
._6_c00279{width:5.324800pt;}
._9_c00279{width:7.225600pt;}
._a_c00279{width:8.243200pt;}
._b_c00279{width:9.158400pt;}
._4_c00279{width:10.073600pt;}
._7_c00279{width:11.129600pt;}
._5_c00279{width:17.344000pt;}
._8_c00279{width:22.214400pt;}
._1_c00279{width:30.220800pt;}
.fs0_c00279{font-size:64.000000pt;}
.y0_c00279{bottom:0.000000pt;}
.y5_c00279{bottom:4.480000pt;}
.y1_c00279{bottom:11.320000pt;}
.y3_c00279{bottom:40.360000pt;}
.y4_c00279{bottom:47.200000pt;}
.y20_c00279{bottom:131.240000pt;}
.y1f_c00279{bottom:163.240000pt;}
.y1e_c00279{bottom:195.240000pt;}
.y1d_c00279{bottom:227.240000pt;}
.y1c_c00279{bottom:259.240000pt;}
.y1b_c00279{bottom:291.240000pt;}
.y1a_c00279{bottom:323.240000pt;}
.y19_c00279{bottom:355.240000pt;}
.y18_c00279{bottom:387.240000pt;}
.y17_c00279{bottom:419.240000pt;}
.y16_c00279{bottom:451.240000pt;}
.y15_c00279{bottom:483.240000pt;}
.y14_c00279{bottom:515.240000pt;}
.y13_c00279{bottom:547.240000pt;}
.y12_c00279{bottom:579.240000pt;}
.y11_c00279{bottom:611.240000pt;}
.y10_c00279{bottom:643.240000pt;}
.yf_c00279{bottom:675.240000pt;}
.ye_c00279{bottom:707.240000pt;}
.yd_c00279{bottom:739.240000pt;}
.yc_c00279{bottom:771.240000pt;}
.yb_c00279{bottom:803.240000pt;}
.ya_c00279{bottom:835.240000pt;}
.y9_c00279{bottom:867.240000pt;}
.y8_c00279{bottom:899.240000pt;}
.y7_c00279{bottom:931.240000pt;}
.y6_c00279{bottom:963.240000pt;}
.y2_c00279{bottom:1035.560000pt;}
.h4_c00279{height:18.560000pt;}
.h3_c00279{height:62.812500pt;}
.h2_c00279{height:1099.880000pt;}
.h0_c00279{height:1122.520000pt;}
.h1_c00279{height:1122.666667pt;}
.w3_c00279{width:24.320000pt;}
.w2_c00279{width:771.080000pt;}
.w0_c00279{width:793.720000pt;}
.w1_c00279{width:794.000000pt;}
.x0_c00279{left:0.000000pt;}
.x1_c00279{left:11.320000pt;}
.x5_c00279{left:56.400133pt;}
.x3_c00279{left:84.794933pt;}
.x6_c00279{left:104.400133pt;}
.x4_c00279{left:384.760000pt;}
.x2_c00279{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_94ba62e1a2cf9034dd1ad22b.woff2')format("woff");}.ff1_c00280{font-family:ff1_c00280;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00280;src:url('chunks/assets/font_e6a9318f3bb32cbadd45f9c4.woff2')format("woff");}.ff2_c00280{font-family:ff2_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:ff3_c00280;src:url('chunks/assets/font_786e76aef05eaebb17953526.woff2')format("woff");}.ff3_c00280{font-family:ff3_c00280;line-height:1.284180;font-style:normal;font-weight:normal;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_4b00a3d12f751ac77f918df2.woff2')format("woff");}.ff4_c00280{font-family:ff4_c00280;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.014400px;}
.ls3_c00280{letter-spacing:0.000000px;}
.ls1_c00280{letter-spacing:56.808000px;}
.ls2_c00280{letter-spacing:60.868800px;}
.ls0_c00280{letter-spacing:99.720000px;}
.sc__c00280{text-shadow:none;}
.sc0_c00280{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00280{-webkit-text-stroke:0px transparent;}
.sc0_c00280{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00280{word-spacing:0.000000px;}
._0_c00280{width:1.051200px;}
._5_c00280{width:2.059200px;}
._6_c00280{width:5.112000px;}
._3_c00280{width:6.134400px;}
._2_c00280{width:7.142400px;}
._7_c00280{width:10.202400px;}
._4_c00280{width:12.139200px;}
._1_c00280{width:20.280600px;}
.fc1_c00280{color:transparent;}
.fc0_c00280{color:rgb(0,0,0);}
.fs0_c00280{font-size:72.000000px;}
.y0_c00280{bottom:0.000000px;}
.y5_c00280{bottom:5.040000px;}
.y1_c00280{bottom:12.735000px;}
.y3_c00280{bottom:45.405000px;}
.y4_c00280{bottom:53.100000px;}
.y21_c00280{bottom:111.645000px;}
.y20_c00280{bottom:147.645000px;}
.y1f_c00280{bottom:183.645000px;}
.y1e_c00280{bottom:219.645000px;}
.y1d_c00280{bottom:255.645000px;}
.y1c_c00280{bottom:291.645000px;}
.y1b_c00280{bottom:327.645000px;}
.y1a_c00280{bottom:363.645000px;}
.y19_c00280{bottom:399.645000px;}
.y18_c00280{bottom:435.645000px;}
.y17_c00280{bottom:471.645000px;}
.y16_c00280{bottom:507.645000px;}
.y15_c00280{bottom:543.645000px;}
.y14_c00280{bottom:579.645000px;}
.y13_c00280{bottom:615.645000px;}
.y12_c00280{bottom:651.645000px;}
.y11_c00280{bottom:687.645000px;}
.y10_c00280{bottom:723.645000px;}
.yf_c00280{bottom:759.645000px;}
.ye_c00280{bottom:795.645000px;}
.yd_c00280{bottom:831.645000px;}
.yc_c00280{bottom:867.645000px;}
.yb_c00280{bottom:903.645000px;}
.ya_c00280{bottom:939.645000px;}
.y9_c00280{bottom:975.645000px;}
.y8_c00280{bottom:1011.645000px;}
.y7_c00280{bottom:1047.645000px;}
.y6_c00280{bottom:1083.645000px;}
.y2_c00280{bottom:1165.005000px;}
.h4_c00280{height:20.880000px;}
.h6_c00280{height:70.628906px;}
.h3_c00280{height:70.664062px;}
.h7_c00280{height:71.824219px;}
.h5_c00280{height:72.562500px;}
.h2_c00280{height:1237.365000px;}
.h0_c00280{height:1262.835000px;}
.h1_c00280{height:1263.000000px;}
.w3_c00280{width:27.360000px;}
.w2_c00280{width:867.465000px;}
.w0_c00280{width:892.935000px;}
.w1_c00280{width:893.250000px;}
.x0_c00280{left:0.000000px;}
.x1_c00280{left:12.735000px;}
.x5_c00280{left:63.450150px;}
.x3_c00280{left:95.397000px;}
.x8_c00280{left:105.961500px;}
.x6_c00280{left:117.450150px;}
.x7_c00280{left:149.400150px;}
.x4_c00280{left:432.855000px;}
.x2_c00280{left:880.125000px;}
@media print{
.v0_c00280{vertical-align:0.000000pt;}
.ls4_c00280{letter-spacing:-0.012800pt;}
.ls3_c00280{letter-spacing:0.000000pt;}
.ls1_c00280{letter-spacing:50.496000pt;}
.ls2_c00280{letter-spacing:54.105600pt;}
.ls0_c00280{letter-spacing:88.640000pt;}
.ws0_c00280{word-spacing:0.000000pt;}
._0_c00280{width:0.934400pt;}
._5_c00280{width:1.830400pt;}
._6_c00280{width:4.544000pt;}
._3_c00280{width:5.452800pt;}
._2_c00280{width:6.348800pt;}
._7_c00280{width:9.068800pt;}
._4_c00280{width:10.790400pt;}
._1_c00280{width:18.027200pt;}
.fs0_c00280{font-size:64.000000pt;}
.y0_c00280{bottom:0.000000pt;}
.y5_c00280{bottom:4.480000pt;}
.y1_c00280{bottom:11.320000pt;}
.y3_c00280{bottom:40.360000pt;}
.y4_c00280{bottom:47.200000pt;}
.y21_c00280{bottom:99.240000pt;}
.y20_c00280{bottom:131.240000pt;}
.y1f_c00280{bottom:163.240000pt;}
.y1e_c00280{bottom:195.240000pt;}
.y1d_c00280{bottom:227.240000pt;}
.y1c_c00280{bottom:259.240000pt;}
.y1b_c00280{bottom:291.240000pt;}
.y1a_c00280{bottom:323.240000pt;}
.y19_c00280{bottom:355.240000pt;}
.y18_c00280{bottom:387.240000pt;}
.y17_c00280{bottom:419.240000pt;}
.y16_c00280{bottom:451.240000pt;}
.y15_c00280{bottom:483.240000pt;}
.y14_c00280{bottom:515.240000pt;}
.y13_c00280{bottom:547.240000pt;}
.y12_c00280{bottom:579.240000pt;}
.y11_c00280{bottom:611.240000pt;}
.y10_c00280{bottom:643.240000pt;}
.yf_c00280{bottom:675.240000pt;}
.ye_c00280{bottom:707.240000pt;}
.yd_c00280{bottom:739.240000pt;}
.yc_c00280{bottom:771.240000pt;}
.yb_c00280{bottom:803.240000pt;}
.ya_c00280{bottom:835.240000pt;}
.y9_c00280{bottom:867.240000pt;}
.y8_c00280{bottom:899.240000pt;}
.y7_c00280{bottom:931.240000pt;}
.y6_c00280{bottom:963.240000pt;}
.y2_c00280{bottom:1035.560000pt;}
.h4_c00280{height:18.560000pt;}
.h6_c00280{height:62.781250pt;}
.h3_c00280{height:62.812500pt;}
.h7_c00280{height:63.843750pt;}
.h5_c00280{height:64.500000pt;}
.h2_c00280{height:1099.880000pt;}
.h0_c00280{height:1122.520000pt;}
.h1_c00280{height:1122.666667pt;}
.w3_c00280{width:24.320000pt;}
.w2_c00280{width:771.080000pt;}
.w0_c00280{width:793.720000pt;}
.w1_c00280{width:794.000000pt;}
.x0_c00280{left:0.000000pt;}
.x1_c00280{left:11.320000pt;}
.x5_c00280{left:56.400133pt;}
.x3_c00280{left:84.797333pt;}
.x8_c00280{left:94.188000pt;}
.x6_c00280{left:104.400133pt;}
.x7_c00280{left:132.800133pt;}
.x4_c00280{left:384.760000pt;}
.x2_c00280{left:782.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_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_2482d7d53a87230c314f0f71.woff2')format("woff");}.ff1_c00281{font-family:ff1_c00281;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00281;src:url('chunks/assets/font_cd791836e764767810fb2d69.woff2')format("woff");}.ff2_c00281{font-family:ff2_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:ff3_c00281;src:url('chunks/assets/font_7cd48d1e73842018b4c7f028.woff2')format("woff");}.ff3_c00281{font-family:ff3_c00281;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00281;src:url('chunks/assets/font_11dea9198f961b7e186bab9e.woff2')format("woff");}.ff4_c00281{font-family:ff4_c00281;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00281;src:url('chunks/assets/font_97f3af180ec4bec1f12aacc7.woff2')format("woff");}.ff5_c00281{font-family:ff5_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;}
.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;}
.ls4_c00281{letter-spacing:-0.014400px;}
.ls3_c00281{letter-spacing:0.000000px;}
.ls0_c00281{letter-spacing:56.808000px;}
.ls1_c00281{letter-spacing:60.868800px;}
.ls2_c00281{letter-spacing:99.360000px;}
.sc__c00281{text-shadow:none;}
.sc0_c00281{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00281{-webkit-text-stroke:0px transparent;}
.sc0_c00281{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00281{word-spacing:0.000000px;}
._3_c00281{width:3.024000px;}
._0_c00281{width:4.262400px;}
._1_c00281{width:5.385600px;}
._2_c00281{width:7.228800px;}
._6_c00281{width:8.251200px;}
._4_c00281{width:19.008000px;}
._5_c00281{width:25.394400px;}
.fc1_c00281{color:transparent;}
.fc0_c00281{color:rgb(0,0,0);}
.fs0_c00281{font-size:72.000000px;}
.y0_c00281{bottom:0.000000px;}
.y5_c00281{bottom:5.040000px;}
.y1_c00281{bottom:12.735000px;}
.y3_c00281{bottom:45.405000px;}
.y4_c00281{bottom:53.100000px;}
.y21_c00281{bottom:111.645000px;}
.y20_c00281{bottom:147.645000px;}
.y1f_c00281{bottom:183.645000px;}
.y1e_c00281{bottom:219.645000px;}
.y1d_c00281{bottom:255.645000px;}
.y1c_c00281{bottom:291.645000px;}
.y1b_c00281{bottom:327.645000px;}
.y1a_c00281{bottom:363.645000px;}
.y19_c00281{bottom:399.645000px;}
.y18_c00281{bottom:435.645000px;}
.y17_c00281{bottom:471.645000px;}
.y16_c00281{bottom:507.645000px;}
.y15_c00281{bottom:543.645000px;}
.y14_c00281{bottom:579.645000px;}
.y13_c00281{bottom:615.645000px;}
.y12_c00281{bottom:651.645000px;}
.y11_c00281{bottom:687.645000px;}
.y10_c00281{bottom:723.645000px;}
.yf_c00281{bottom:759.645000px;}
.ye_c00281{bottom:795.645000px;}
.yd_c00281{bottom:831.645000px;}
.yc_c00281{bottom:867.645000px;}
.yb_c00281{bottom:903.645000px;}
.ya_c00281{bottom:939.645000px;}
.y9_c00281{bottom:975.645000px;}
.y8_c00281{bottom:1011.645000px;}
.y7_c00281{bottom:1047.645000px;}
.y6_c00281{bottom:1083.645000px;}
.y2_c00281{bottom:1165.005000px;}
.h4_c00281{height:20.880000px;}
.h6_c00281{height:70.628906px;}
.h3_c00281{height:70.664062px;}
.h5_c00281{height:71.824219px;}
.h7_c00281{height:72.562500px;}
.h2_c00281{height:1237.365000px;}
.h0_c00281{height:1262.835000px;}
.h1_c00281{height:1263.000000px;}
.w3_c00281{width:27.360000px;}
.w2_c00281{width:867.465000px;}
.w0_c00281{width:892.935000px;}
.w1_c00281{width:893.250000px;}
.x0_c00281{left:0.000000px;}
.x1_c00281{left:12.735000px;}
.x7_c00281{left:63.456000px;}
.x3_c00281{left:95.394300px;}
.x6_c00281{left:106.062000px;}
.x5_c00281{left:116.700000px;}
.x8_c00281{left:149.406000px;}
.x4_c00281{left:432.855000px;}
.x2_c00281{left:880.050300px;}
@media print{
.v0_c00281{vertical-align:0.000000pt;}
.ls4_c00281{letter-spacing:-0.012800pt;}
.ls3_c00281{letter-spacing:0.000000pt;}
.ls0_c00281{letter-spacing:50.496000pt;}
.ls1_c00281{letter-spacing:54.105600pt;}
.ls2_c00281{letter-spacing:88.320000pt;}
.ws0_c00281{word-spacing:0.000000pt;}
._3_c00281{width:2.688000pt;}
._0_c00281{width:3.788800pt;}
._1_c00281{width:4.787200pt;}
._2_c00281{width:6.425600pt;}
._6_c00281{width:7.334400pt;}
._4_c00281{width:16.896000pt;}
._5_c00281{width:22.572800pt;}
.fs0_c00281{font-size:64.000000pt;}
.y0_c00281{bottom:0.000000pt;}
.y5_c00281{bottom:4.480000pt;}
.y1_c00281{bottom:11.320000pt;}
.y3_c00281{bottom:40.360000pt;}
.y4_c00281{bottom:47.200000pt;}
.y21_c00281{bottom:99.240000pt;}
.y20_c00281{bottom:131.240000pt;}
.y1f_c00281{bottom:163.240000pt;}
.y1e_c00281{bottom:195.240000pt;}
.y1d_c00281{bottom:227.240000pt;}
.y1c_c00281{bottom:259.240000pt;}
.y1b_c00281{bottom:291.240000pt;}
.y1a_c00281{bottom:323.240000pt;}
.y19_c00281{bottom:355.240000pt;}
.y18_c00281{bottom:387.240000pt;}
.y17_c00281{bottom:419.240000pt;}
.y16_c00281{bottom:451.240000pt;}
.y15_c00281{bottom:483.240000pt;}
.y14_c00281{bottom:515.240000pt;}
.y13_c00281{bottom:547.240000pt;}
.y12_c00281{bottom:579.240000pt;}
.y11_c00281{bottom:611.240000pt;}
.y10_c00281{bottom:643.240000pt;}
.yf_c00281{bottom:675.240000pt;}
.ye_c00281{bottom:707.240000pt;}
.yd_c00281{bottom:739.240000pt;}
.yc_c00281{bottom:771.240000pt;}
.yb_c00281{bottom:803.240000pt;}
.ya_c00281{bottom:835.240000pt;}
.y9_c00281{bottom:867.240000pt;}
.y8_c00281{bottom:899.240000pt;}
.y7_c00281{bottom:931.240000pt;}
.y6_c00281{bottom:963.240000pt;}
.y2_c00281{bottom:1035.560000pt;}
.h4_c00281{height:18.560000pt;}
.h6_c00281{height:62.781250pt;}
.h3_c00281{height:62.812500pt;}
.h5_c00281{height:63.843750pt;}
.h7_c00281{height:64.500000pt;}
.h2_c00281{height:1099.880000pt;}
.h0_c00281{height:1122.520000pt;}
.h1_c00281{height:1122.666667pt;}
.w3_c00281{width:24.320000pt;}
.w2_c00281{width:771.080000pt;}
.w0_c00281{width:793.720000pt;}
.w1_c00281{width:794.000000pt;}
.x0_c00281{left:0.000000pt;}
.x1_c00281{left:11.320000pt;}
.x7_c00281{left:56.405333pt;}
.x3_c00281{left:84.794933pt;}
.x6_c00281{left:94.277333pt;}
.x5_c00281{left:103.733333pt;}
.x8_c00281{left:132.805333pt;}
.x4_c00281{left:384.760000pt;}
.x2_c00281{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c7d78a20af7276637bb03f75.woff2')format("woff");}.ff1_c00282{font-family:ff1_c00282;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00282;src:url('chunks/assets/font_52652ef5bd89b406775220c1.woff2')format("woff");}.ff2_c00282{font-family:ff2_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:ff3_c00282;src:url('chunks/assets/font_1f6966bdad4ca513e283c04f.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_452e83a2223bdd06f5e3caa8.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;}
.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;}
.ls0_c00282{letter-spacing:0.000000px;}
.sc__c00282{text-shadow:none;}
.sc0_c00282{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00282{-webkit-text-stroke:0px transparent;}
.sc0_c00282{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00282{word-spacing:0.000000px;}
._0_c00282{width:1.180800px;}
._1_c00282{width:2.260800px;}
._3_c00282{width:3.981600px;}
._5_c00282{width:5.767200px;}
._4_c00282{width:7.812000px;}
._2_c00282{width:16.992000px;}
._6_c00282{width:19.764000px;}
.fc1_c00282{color:transparent;}
.fc0_c00282{color:rgb(0,0,0);}
.fs0_c00282{font-size:72.000000px;}
.y0_c00282{bottom:0.000000px;}
.y5_c00282{bottom:5.040000px;}
.y1_c00282{bottom:12.735000px;}
.y3_c00282{bottom:45.405000px;}
.y4_c00282{bottom:53.100000px;}
.y21_c00282{bottom:111.645000px;}
.y20_c00282{bottom:147.645000px;}
.y1f_c00282{bottom:183.645000px;}
.y1e_c00282{bottom:219.645000px;}
.y1d_c00282{bottom:255.645000px;}
.y1c_c00282{bottom:291.645000px;}
.y1b_c00282{bottom:327.645000px;}
.y1a_c00282{bottom:363.645000px;}
.y19_c00282{bottom:399.645000px;}
.y18_c00282{bottom:435.645000px;}
.y17_c00282{bottom:471.645000px;}
.y16_c00282{bottom:507.645000px;}
.y15_c00282{bottom:543.645000px;}
.y14_c00282{bottom:579.645000px;}
.y13_c00282{bottom:615.645000px;}
.y12_c00282{bottom:651.645000px;}
.y11_c00282{bottom:687.645000px;}
.y10_c00282{bottom:723.645000px;}
.yf_c00282{bottom:759.645000px;}
.ye_c00282{bottom:795.645000px;}
.yd_c00282{bottom:831.645000px;}
.yc_c00282{bottom:867.645000px;}
.yb_c00282{bottom:903.645000px;}
.ya_c00282{bottom:939.645000px;}
.y9_c00282{bottom:975.645000px;}
.y8_c00282{bottom:1011.645000px;}
.y7_c00282{bottom:1047.645000px;}
.y6_c00282{bottom:1083.645000px;}
.y2_c00282{bottom:1165.005000px;}
.h4_c00282{height:20.880000px;}
.h5_c00282{height:70.628906px;}
.h3_c00282{height:70.664062px;}
.h6_c00282{height:72.562500px;}
.h2_c00282{height:1237.365000px;}
.h0_c00282{height:1262.835000px;}
.h1_c00282{height:1263.000000px;}
.w3_c00282{width:27.360000px;}
.w2_c00282{width:867.465000px;}
.w0_c00282{width:892.935000px;}
.w1_c00282{width:893.250000px;}
.x0_c00282{left:0.000000px;}
.x1_c00282{left:12.735000px;}
.x3_c00282{left:95.397000px;}
.x5_c00282{left:117.450000px;}
.x6_c00282{left:149.400000px;}
.x4_c00282{left:432.855000px;}
.x2_c00282{left:880.125000px;}
@media print{
.v0_c00282{vertical-align:0.000000pt;}
.ls0_c00282{letter-spacing:0.000000pt;}
.ws0_c00282{word-spacing:0.000000pt;}
._0_c00282{width:1.049600pt;}
._1_c00282{width:2.009600pt;}
._3_c00282{width:3.539200pt;}
._5_c00282{width:5.126400pt;}
._4_c00282{width:6.944000pt;}
._2_c00282{width:15.104000pt;}
._6_c00282{width:17.568000pt;}
.fs0_c00282{font-size:64.000000pt;}
.y0_c00282{bottom:0.000000pt;}
.y5_c00282{bottom:4.480000pt;}
.y1_c00282{bottom:11.320000pt;}
.y3_c00282{bottom:40.360000pt;}
.y4_c00282{bottom:47.200000pt;}
.y21_c00282{bottom:99.240000pt;}
.y20_c00282{bottom:131.240000pt;}
.y1f_c00282{bottom:163.240000pt;}
.y1e_c00282{bottom:195.240000pt;}
.y1d_c00282{bottom:227.240000pt;}
.y1c_c00282{bottom:259.240000pt;}
.y1b_c00282{bottom:291.240000pt;}
.y1a_c00282{bottom:323.240000pt;}
.y19_c00282{bottom:355.240000pt;}
.y18_c00282{bottom:387.240000pt;}
.y17_c00282{bottom:419.240000pt;}
.y16_c00282{bottom:451.240000pt;}
.y15_c00282{bottom:483.240000pt;}
.y14_c00282{bottom:515.240000pt;}
.y13_c00282{bottom:547.240000pt;}
.y12_c00282{bottom:579.240000pt;}
.y11_c00282{bottom:611.240000pt;}
.y10_c00282{bottom:643.240000pt;}
.yf_c00282{bottom:675.240000pt;}
.ye_c00282{bottom:707.240000pt;}
.yd_c00282{bottom:739.240000pt;}
.yc_c00282{bottom:771.240000pt;}
.yb_c00282{bottom:803.240000pt;}
.ya_c00282{bottom:835.240000pt;}
.y9_c00282{bottom:867.240000pt;}
.y8_c00282{bottom:899.240000pt;}
.y7_c00282{bottom:931.240000pt;}
.y6_c00282{bottom:963.240000pt;}
.y2_c00282{bottom:1035.560000pt;}
.h4_c00282{height:18.560000pt;}
.h5_c00282{height:62.781250pt;}
.h3_c00282{height:62.812500pt;}
.h6_c00282{height:64.500000pt;}
.h2_c00282{height:1099.880000pt;}
.h0_c00282{height:1122.520000pt;}
.h1_c00282{height:1122.666667pt;}
.w3_c00282{width:24.320000pt;}
.w2_c00282{width:771.080000pt;}
.w0_c00282{width:793.720000pt;}
.w1_c00282{width:794.000000pt;}
.x0_c00282{left:0.000000pt;}
.x1_c00282{left:11.320000pt;}
.x3_c00282{left:84.797333pt;}
.x5_c00282{left:104.400000pt;}
.x6_c00282{left:132.800000pt;}
.x4_c00282{left:384.760000pt;}
.x2_c00282{left:782.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_e36c74b6ad679ec0f9570141.woff2')format("woff");}.ff1_c00283{font-family:ff1_c00283;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00283;src:url('chunks/assets/font_27904dbb338a39388a95a1ef.woff2')format("woff");}.ff2_c00283{font-family:ff2_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:ff3_c00283;src:url('chunks/assets/font_c4741043292e486778a2be4e.woff2')format("woff");}.ff3_c00283{font-family:ff3_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:ff4_c00283;src:url('chunks/assets/font_f4e2776f3802677bec41cb3b.woff2')format("woff");}.ff4_c00283{font-family:ff4_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;}
.m0_c00283{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00283{vertical-align:0.000000px;}
.ls0_c00283{letter-spacing:0.000000px;}
.sc__c00283{text-shadow:none;}
.sc0_c00283{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00283{-webkit-text-stroke:0px transparent;}
.sc0_c00283{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00283{word-spacing:0.000000px;}
._3_c00283{width:1.224000px;}
._2_c00283{width:2.383200px;}
._7_c00283{width:3.837600px;}
._1_c00283{width:11.138400px;}
._6_c00283{width:12.549600px;}
._8_c00283{width:14.450400px;}
._0_c00283{width:15.948000px;}
._4_c00283{width:19.432800px;}
._5_c00283{width:20.527200px;}
.fc1_c00283{color:transparent;}
.fc0_c00283{color:rgb(0,0,0);}
.fs0_c00283{font-size:72.000000px;}
.y0_c00283{bottom:0.000000px;}
.y5_c00283{bottom:5.040000px;}
.y1_c00283{bottom:12.735000px;}
.y3_c00283{bottom:45.405000px;}
.y4_c00283{bottom:53.100000px;}
.y21_c00283{bottom:111.645000px;}
.y20_c00283{bottom:147.645000px;}
.y1f_c00283{bottom:183.645000px;}
.y1e_c00283{bottom:219.645000px;}
.y1d_c00283{bottom:255.645000px;}
.y1c_c00283{bottom:291.645000px;}
.y1b_c00283{bottom:327.645000px;}
.y1a_c00283{bottom:363.645000px;}
.y19_c00283{bottom:399.645000px;}
.y18_c00283{bottom:435.645000px;}
.y17_c00283{bottom:471.645000px;}
.y16_c00283{bottom:507.645000px;}
.y15_c00283{bottom:543.645000px;}
.y14_c00283{bottom:579.645000px;}
.y13_c00283{bottom:615.645000px;}
.y12_c00283{bottom:651.645000px;}
.y11_c00283{bottom:687.645000px;}
.y10_c00283{bottom:723.645000px;}
.yf_c00283{bottom:759.645000px;}
.ye_c00283{bottom:795.645000px;}
.yd_c00283{bottom:831.645000px;}
.yc_c00283{bottom:867.645000px;}
.yb_c00283{bottom:903.645000px;}
.ya_c00283{bottom:939.645000px;}
.y9_c00283{bottom:975.645000px;}
.y8_c00283{bottom:1011.645000px;}
.y7_c00283{bottom:1047.645000px;}
.y6_c00283{bottom:1083.645000px;}
.y2_c00283{bottom:1165.005000px;}
.h4_c00283{height:20.880000px;}
.h5_c00283{height:70.628906px;}
.h3_c00283{height:70.664062px;}
.h6_c00283{height:72.562500px;}
.h2_c00283{height:1237.365000px;}
.h0_c00283{height:1262.835000px;}
.h1_c00283{height:1263.000000px;}
.w3_c00283{width:27.360000px;}
.w2_c00283{width:867.465000px;}
.w0_c00283{width:892.935000px;}
.w1_c00283{width:893.250000px;}
.x0_c00283{left:0.000000px;}
.x1_c00283{left:12.735000px;}
.x7_c00283{left:63.453000px;}
.x3_c00283{left:95.394300px;}
.x6_c00283{left:117.453000px;}
.x5_c00283{left:149.394150px;}
.x4_c00283{left:432.855000px;}
.x2_c00283{left:880.050300px;}
@media print{
.v0_c00283{vertical-align:0.000000pt;}
.ls0_c00283{letter-spacing:0.000000pt;}
.ws0_c00283{word-spacing:0.000000pt;}
._3_c00283{width:1.088000pt;}
._2_c00283{width:2.118400pt;}
._7_c00283{width:3.411200pt;}
._1_c00283{width:9.900800pt;}
._6_c00283{width:11.155200pt;}
._8_c00283{width:12.844800pt;}
._0_c00283{width:14.176000pt;}
._4_c00283{width:17.273600pt;}
._5_c00283{width:18.246400pt;}
.fs0_c00283{font-size:64.000000pt;}
.y0_c00283{bottom:0.000000pt;}
.y5_c00283{bottom:4.480000pt;}
.y1_c00283{bottom:11.320000pt;}
.y3_c00283{bottom:40.360000pt;}
.y4_c00283{bottom:47.200000pt;}
.y21_c00283{bottom:99.240000pt;}
.y20_c00283{bottom:131.240000pt;}
.y1f_c00283{bottom:163.240000pt;}
.y1e_c00283{bottom:195.240000pt;}
.y1d_c00283{bottom:227.240000pt;}
.y1c_c00283{bottom:259.240000pt;}
.y1b_c00283{bottom:291.240000pt;}
.y1a_c00283{bottom:323.240000pt;}
.y19_c00283{bottom:355.240000pt;}
.y18_c00283{bottom:387.240000pt;}
.y17_c00283{bottom:419.240000pt;}
.y16_c00283{bottom:451.240000pt;}
.y15_c00283{bottom:483.240000pt;}
.y14_c00283{bottom:515.240000pt;}
.y13_c00283{bottom:547.240000pt;}
.y12_c00283{bottom:579.240000pt;}
.y11_c00283{bottom:611.240000pt;}
.y10_c00283{bottom:643.240000pt;}
.yf_c00283{bottom:675.240000pt;}
.ye_c00283{bottom:707.240000pt;}
.yd_c00283{bottom:739.240000pt;}
.yc_c00283{bottom:771.240000pt;}
.yb_c00283{bottom:803.240000pt;}
.ya_c00283{bottom:835.240000pt;}
.y9_c00283{bottom:867.240000pt;}
.y8_c00283{bottom:899.240000pt;}
.y7_c00283{bottom:931.240000pt;}
.y6_c00283{bottom:963.240000pt;}
.y2_c00283{bottom:1035.560000pt;}
.h4_c00283{height:18.560000pt;}
.h5_c00283{height:62.781250pt;}
.h3_c00283{height:62.812500pt;}
.h6_c00283{height:64.500000pt;}
.h2_c00283{height:1099.880000pt;}
.h0_c00283{height:1122.520000pt;}
.h1_c00283{height:1122.666667pt;}
.w3_c00283{width:24.320000pt;}
.w2_c00283{width:771.080000pt;}
.w0_c00283{width:793.720000pt;}
.w1_c00283{width:794.000000pt;}
.x0_c00283{left:0.000000pt;}
.x1_c00283{left:11.320000pt;}
.x7_c00283{left:56.402667pt;}
.x3_c00283{left:84.794933pt;}
.x6_c00283{left:104.402667pt;}
.x5_c00283{left:132.794800pt;}
.x4_c00283{left:384.760000pt;}
.x2_c00283{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0b406b0072248d2171167401.woff2')format("woff");}.ff1_c00284{font-family:ff1_c00284;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00284;src:url('chunks/assets/font_b9e069ba7726dd144fcf52ae.woff2')format("woff");}.ff2_c00284{font-family:ff2_c00284;line-height:1.284180;font-style:normal;font-weight:normal;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_9453384c8d203bd6317b9c3b.woff2')format("woff");}.ff3_c00284{font-family:ff3_c00284;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00284{letter-spacing:-0.014400px;}
.ls0_c00284{letter-spacing:0.000000px;}
.sc__c00284{text-shadow:none;}
.sc0_c00284{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00284{-webkit-text-stroke:0px transparent;}
.sc0_c00284{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00284{word-spacing:0.000000px;}
._5_c00284{width:1.641600px;}
._9_c00284{width:3.542400px;}
._7_c00284{width:4.910400px;}
._3_c00284{width:8.834400px;}
._6_c00284{width:10.137600px;}
._8_c00284{width:11.296800px;}
._4_c00284{width:12.405600px;}
._a_c00284{width:16.603200px;}
._1_c00284{width:20.779200px;}
._2_c00284{width:21.974400px;}
._0_c00284{width:27.424800px;}
.fc1_c00284{color:transparent;}
.fc0_c00284{color:rgb(0,0,0);}
.fs0_c00284{font-size:72.000000px;}
.y0_c00284{bottom:0.000000px;}
.y5_c00284{bottom:5.040000px;}
.y1_c00284{bottom:12.735000px;}
.y3_c00284{bottom:45.405000px;}
.y4_c00284{bottom:53.100000px;}
.y21_c00284{bottom:111.645000px;}
.y20_c00284{bottom:147.645000px;}
.y1f_c00284{bottom:183.645000px;}
.y1e_c00284{bottom:219.645000px;}
.y1d_c00284{bottom:255.645000px;}
.y1c_c00284{bottom:291.645000px;}
.y1b_c00284{bottom:327.645000px;}
.y1a_c00284{bottom:363.645000px;}
.y19_c00284{bottom:399.645000px;}
.y18_c00284{bottom:435.645000px;}
.y17_c00284{bottom:471.645000px;}
.y16_c00284{bottom:507.645000px;}
.y15_c00284{bottom:543.645000px;}
.y14_c00284{bottom:579.645000px;}
.y13_c00284{bottom:615.645000px;}
.y12_c00284{bottom:651.645000px;}
.y11_c00284{bottom:687.645000px;}
.y10_c00284{bottom:723.645000px;}
.yf_c00284{bottom:759.645000px;}
.ye_c00284{bottom:795.645000px;}
.yd_c00284{bottom:831.645000px;}
.yc_c00284{bottom:867.645000px;}
.yb_c00284{bottom:903.645000px;}
.ya_c00284{bottom:939.645000px;}
.y9_c00284{bottom:975.645000px;}
.y8_c00284{bottom:1011.645000px;}
.y7_c00284{bottom:1047.645000px;}
.y6_c00284{bottom:1083.645000px;}
.y2_c00284{bottom:1165.005000px;}
.h4_c00284{height:20.880000px;}
.h5_c00284{height:70.628906px;}
.h3_c00284{height:70.664062px;}
.h6_c00284{height:72.562500px;}
.h2_c00284{height:1237.365000px;}
.h0_c00284{height:1262.835000px;}
.h1_c00284{height:1263.000000px;}
.w3_c00284{width:27.360000px;}
.w2_c00284{width:867.465000px;}
.w0_c00284{width:892.935000px;}
.w1_c00284{width:893.250000px;}
.x0_c00284{left:0.000000px;}
.x1_c00284{left:12.735000px;}
.x3_c00284{left:95.397000px;}
.x6_c00284{left:117.444600px;}
.x5_c00284{left:149.400150px;}
.x4_c00284{left:432.855000px;}
.x2_c00284{left:880.125000px;}
@media print{
.v0_c00284{vertical-align:0.000000pt;}
.ls1_c00284{letter-spacing:-0.012800pt;}
.ls0_c00284{letter-spacing:0.000000pt;}
.ws0_c00284{word-spacing:0.000000pt;}
._5_c00284{width:1.459200pt;}
._9_c00284{width:3.148800pt;}
._7_c00284{width:4.364800pt;}
._3_c00284{width:7.852800pt;}
._6_c00284{width:9.011200pt;}
._8_c00284{width:10.041600pt;}
._4_c00284{width:11.027200pt;}
._a_c00284{width:14.758400pt;}
._1_c00284{width:18.470400pt;}
._2_c00284{width:19.532800pt;}
._0_c00284{width:24.377600pt;}
.fs0_c00284{font-size:64.000000pt;}
.y0_c00284{bottom:0.000000pt;}
.y5_c00284{bottom:4.480000pt;}
.y1_c00284{bottom:11.320000pt;}
.y3_c00284{bottom:40.360000pt;}
.y4_c00284{bottom:47.200000pt;}
.y21_c00284{bottom:99.240000pt;}
.y20_c00284{bottom:131.240000pt;}
.y1f_c00284{bottom:163.240000pt;}
.y1e_c00284{bottom:195.240000pt;}
.y1d_c00284{bottom:227.240000pt;}
.y1c_c00284{bottom:259.240000pt;}
.y1b_c00284{bottom:291.240000pt;}
.y1a_c00284{bottom:323.240000pt;}
.y19_c00284{bottom:355.240000pt;}
.y18_c00284{bottom:387.240000pt;}
.y17_c00284{bottom:419.240000pt;}
.y16_c00284{bottom:451.240000pt;}
.y15_c00284{bottom:483.240000pt;}
.y14_c00284{bottom:515.240000pt;}
.y13_c00284{bottom:547.240000pt;}
.y12_c00284{bottom:579.240000pt;}
.y11_c00284{bottom:611.240000pt;}
.y10_c00284{bottom:643.240000pt;}
.yf_c00284{bottom:675.240000pt;}
.ye_c00284{bottom:707.240000pt;}
.yd_c00284{bottom:739.240000pt;}
.yc_c00284{bottom:771.240000pt;}
.yb_c00284{bottom:803.240000pt;}
.ya_c00284{bottom:835.240000pt;}
.y9_c00284{bottom:867.240000pt;}
.y8_c00284{bottom:899.240000pt;}
.y7_c00284{bottom:931.240000pt;}
.y6_c00284{bottom:963.240000pt;}
.y2_c00284{bottom:1035.560000pt;}
.h4_c00284{height:18.560000pt;}
.h5_c00284{height:62.781250pt;}
.h3_c00284{height:62.812500pt;}
.h6_c00284{height:64.500000pt;}
.h2_c00284{height:1099.880000pt;}
.h0_c00284{height:1122.520000pt;}
.h1_c00284{height:1122.666667pt;}
.w3_c00284{width:24.320000pt;}
.w2_c00284{width:771.080000pt;}
.w0_c00284{width:793.720000pt;}
.w1_c00284{width:794.000000pt;}
.x0_c00284{left:0.000000pt;}
.x1_c00284{left:11.320000pt;}
.x3_c00284{left:84.797333pt;}
.x6_c00284{left:104.395200pt;}
.x5_c00284{left:132.800133pt;}
.x4_c00284{left:384.760000pt;}
.x2_c00284{left:782.333333pt;}
}





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

.ir_c00285:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00285{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00285;src:url('chunks/assets/font_da7d1a913474f0c8ae244a06.woff2')format("woff");}.ff1_c00285{font-family:ff1_c00285;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00285;src:url('chunks/assets/font_9875f8b8a44fd15b4f77e396.woff2')format("woff");}.ff2_c00285{font-family:ff2_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;}
.m0_c00285{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00285{vertical-align:0.000000px;}
.ls0_c00285{letter-spacing:0.000000px;}
.sc__c00285{text-shadow:none;}
.sc0_c00285{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00285{-webkit-text-stroke:0px transparent;}
.sc0_c00285{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00285{word-spacing:0.000000px;}
._3_c00285{width:1.965600px;}
._7_c00285{width:3.045600px;}
._0_c00285{width:5.500800px;}
._2_c00285{width:8.265600px;}
._4_c00285{width:9.518400px;}
._9_c00285{width:11.721600px;}
._5_c00285{width:13.190400px;}
._1_c00285{width:14.875200px;}
._8_c00285{width:15.955200px;}
._c_c00285{width:16.984800px;}
._b_c00285{width:19.137600px;}
._6_c00285{width:23.673600px;}
._a_c00285{width:25.041600px;}
.fc1_c00285{color:transparent;}
.fc0_c00285{color:rgb(0,0,0);}
.fs0_c00285{font-size:72.000000px;}
.y0_c00285{bottom:0.000000px;}
.y5_c00285{bottom:5.040000px;}
.y1_c00285{bottom:12.735000px;}
.y3_c00285{bottom:45.405000px;}
.y4_c00285{bottom:53.100000px;}
.y21_c00285{bottom:111.645000px;}
.y20_c00285{bottom:147.645000px;}
.y1f_c00285{bottom:183.645000px;}
.y1e_c00285{bottom:219.645000px;}
.y1d_c00285{bottom:255.645000px;}
.y1c_c00285{bottom:291.645000px;}
.y1b_c00285{bottom:327.645000px;}
.y1a_c00285{bottom:363.645000px;}
.y19_c00285{bottom:399.645000px;}
.y18_c00285{bottom:435.645000px;}
.y17_c00285{bottom:471.645000px;}
.y16_c00285{bottom:507.645000px;}
.y15_c00285{bottom:543.645000px;}
.y14_c00285{bottom:579.645000px;}
.y13_c00285{bottom:615.645000px;}
.y12_c00285{bottom:651.645000px;}
.y11_c00285{bottom:687.645000px;}
.y10_c00285{bottom:723.645000px;}
.yf_c00285{bottom:759.645000px;}
.ye_c00285{bottom:795.645000px;}
.yd_c00285{bottom:831.645000px;}
.yc_c00285{bottom:867.645000px;}
.yb_c00285{bottom:903.645000px;}
.ya_c00285{bottom:939.645000px;}
.y9_c00285{bottom:975.645000px;}
.y8_c00285{bottom:1011.645000px;}
.y7_c00285{bottom:1047.645000px;}
.y6_c00285{bottom:1083.645000px;}
.y2_c00285{bottom:1165.005000px;}
.h4_c00285{height:20.880000px;}
.h5_c00285{height:70.628906px;}
.h3_c00285{height:70.664062px;}
.h2_c00285{height:1237.365000px;}
.h0_c00285{height:1262.835000px;}
.h1_c00285{height:1263.000000px;}
.w3_c00285{width:27.360000px;}
.w2_c00285{width:867.465000px;}
.w0_c00285{width:892.935000px;}
.w1_c00285{width:893.250000px;}
.x0_c00285{left:0.000000px;}
.x1_c00285{left:12.735000px;}
.x3_c00285{left:95.394300px;}
.x6_c00285{left:117.454050px;}
.x5_c00285{left:149.400150px;}
.x4_c00285{left:432.855000px;}
.x2_c00285{left:880.050300px;}
@media print{
.v0_c00285{vertical-align:0.000000pt;}
.ls0_c00285{letter-spacing:0.000000pt;}
.ws0_c00285{word-spacing:0.000000pt;}
._3_c00285{width:1.747200pt;}
._7_c00285{width:2.707200pt;}
._0_c00285{width:4.889600pt;}
._2_c00285{width:7.347200pt;}
._4_c00285{width:8.460800pt;}
._9_c00285{width:10.419200pt;}
._5_c00285{width:11.724800pt;}
._1_c00285{width:13.222400pt;}
._8_c00285{width:14.182400pt;}
._c_c00285{width:15.097600pt;}
._b_c00285{width:17.011200pt;}
._6_c00285{width:21.043200pt;}
._a_c00285{width:22.259200pt;}
.fs0_c00285{font-size:64.000000pt;}
.y0_c00285{bottom:0.000000pt;}
.y5_c00285{bottom:4.480000pt;}
.y1_c00285{bottom:11.320000pt;}
.y3_c00285{bottom:40.360000pt;}
.y4_c00285{bottom:47.200000pt;}
.y21_c00285{bottom:99.240000pt;}
.y20_c00285{bottom:131.240000pt;}
.y1f_c00285{bottom:163.240000pt;}
.y1e_c00285{bottom:195.240000pt;}
.y1d_c00285{bottom:227.240000pt;}
.y1c_c00285{bottom:259.240000pt;}
.y1b_c00285{bottom:291.240000pt;}
.y1a_c00285{bottom:323.240000pt;}
.y19_c00285{bottom:355.240000pt;}
.y18_c00285{bottom:387.240000pt;}
.y17_c00285{bottom:419.240000pt;}
.y16_c00285{bottom:451.240000pt;}
.y15_c00285{bottom:483.240000pt;}
.y14_c00285{bottom:515.240000pt;}
.y13_c00285{bottom:547.240000pt;}
.y12_c00285{bottom:579.240000pt;}
.y11_c00285{bottom:611.240000pt;}
.y10_c00285{bottom:643.240000pt;}
.yf_c00285{bottom:675.240000pt;}
.ye_c00285{bottom:707.240000pt;}
.yd_c00285{bottom:739.240000pt;}
.yc_c00285{bottom:771.240000pt;}
.yb_c00285{bottom:803.240000pt;}
.ya_c00285{bottom:835.240000pt;}
.y9_c00285{bottom:867.240000pt;}
.y8_c00285{bottom:899.240000pt;}
.y7_c00285{bottom:931.240000pt;}
.y6_c00285{bottom:963.240000pt;}
.y2_c00285{bottom:1035.560000pt;}
.h4_c00285{height:18.560000pt;}
.h5_c00285{height:62.781250pt;}
.h3_c00285{height:62.812500pt;}
.h2_c00285{height:1099.880000pt;}
.h0_c00285{height:1122.520000pt;}
.h1_c00285{height:1122.666667pt;}
.w3_c00285{width:24.320000pt;}
.w2_c00285{width:771.080000pt;}
.w0_c00285{width:793.720000pt;}
.w1_c00285{width:794.000000pt;}
.x0_c00285{left:0.000000pt;}
.x1_c00285{left:11.320000pt;}
.x3_c00285{left:84.794933pt;}
.x6_c00285{left:104.403600pt;}
.x5_c00285{left:132.800133pt;}
.x4_c00285{left:384.760000pt;}
.x2_c00285{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_938756846b969a484d2dbb2f.woff2')format("woff");}.ff1_c00286{font-family:ff1_c00286;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00286;src:url('chunks/assets/font_f786c04a4d47b4acbed86466.woff2')format("woff");}.ff2_c00286{font-family:ff2_c00286;line-height:1.284180;font-style: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;}
.ls0_c00286{letter-spacing:0.000000px;}
.sc__c00286{text-shadow:none;}
.sc0_c00286{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00286{-webkit-text-stroke:0px transparent;}
.sc0_c00286{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00286{word-spacing:0.000000px;}
._4_c00286{margin-left:-1.224000px;}
._7_c00286{width:1.123200px;}
._1_c00286{width:2.419200px;}
._3_c00286{width:3.722400px;}
._d_c00286{width:5.263200px;}
._a_c00286{width:7.063200px;}
._6_c00286{width:8.323200px;}
._2_c00286{width:10.281600px;}
._b_c00286{width:11.397600px;}
._9_c00286{width:13.500000px;}
._8_c00286{width:16.992000px;}
._0_c00286{width:19.058400px;}
._e_c00286{width:20.844000px;}
._5_c00286{width:24.552000px;}
._c_c00286{width:29.700000px;}
.fc1_c00286{color:transparent;}
.fc0_c00286{color:rgb(0,0,0);}
.fs0_c00286{font-size:72.000000px;}
.y0_c00286{bottom:0.000000px;}
.y5_c00286{bottom:5.040000px;}
.y1_c00286{bottom:12.735000px;}
.y3_c00286{bottom:45.405000px;}
.y4_c00286{bottom:53.100000px;}
.y21_c00286{bottom:111.645000px;}
.y20_c00286{bottom:147.645000px;}
.y1f_c00286{bottom:183.645000px;}
.y1e_c00286{bottom:219.645000px;}
.y1d_c00286{bottom:255.645000px;}
.y1c_c00286{bottom:291.645000px;}
.y1b_c00286{bottom:327.645000px;}
.y1a_c00286{bottom:363.645000px;}
.y19_c00286{bottom:399.645000px;}
.y18_c00286{bottom:435.645000px;}
.y17_c00286{bottom:471.645000px;}
.y16_c00286{bottom:507.645000px;}
.y15_c00286{bottom:543.645000px;}
.y14_c00286{bottom:579.645000px;}
.y13_c00286{bottom:615.645000px;}
.y12_c00286{bottom:651.645000px;}
.y11_c00286{bottom:687.645000px;}
.y10_c00286{bottom:723.645000px;}
.yf_c00286{bottom:759.645000px;}
.ye_c00286{bottom:795.645000px;}
.yd_c00286{bottom:831.645000px;}
.yc_c00286{bottom:867.645000px;}
.yb_c00286{bottom:903.645000px;}
.ya_c00286{bottom:939.645000px;}
.y9_c00286{bottom:975.645000px;}
.y8_c00286{bottom:1011.645000px;}
.y7_c00286{bottom:1047.645000px;}
.y6_c00286{bottom:1083.645000px;}
.y2_c00286{bottom:1165.005000px;}
.h4_c00286{height:20.880000px;}
.h3_c00286{height:70.664062px;}
.h2_c00286{height:1237.365000px;}
.h0_c00286{height:1262.835000px;}
.h1_c00286{height:1263.000000px;}
.w3_c00286{width:27.360000px;}
.w2_c00286{width:867.465000px;}
.w0_c00286{width:892.935000px;}
.w1_c00286{width:893.250000px;}
.x0_c00286{left:0.000000px;}
.x1_c00286{left:12.735000px;}
.x3_c00286{left:95.397000px;}
.x5_c00286{left:149.400150px;}
.x4_c00286{left:432.855000px;}
.x2_c00286{left:880.125000px;}
@media print{
.v0_c00286{vertical-align:0.000000pt;}
.ls0_c00286{letter-spacing:0.000000pt;}
.ws0_c00286{word-spacing:0.000000pt;}
._4_c00286{margin-left:-1.088000pt;}
._7_c00286{width:0.998400pt;}
._1_c00286{width:2.150400pt;}
._3_c00286{width:3.308800pt;}
._d_c00286{width:4.678400pt;}
._a_c00286{width:6.278400pt;}
._6_c00286{width:7.398400pt;}
._2_c00286{width:9.139200pt;}
._b_c00286{width:10.131200pt;}
._9_c00286{width:12.000000pt;}
._8_c00286{width:15.104000pt;}
._0_c00286{width:16.940800pt;}
._e_c00286{width:18.528000pt;}
._5_c00286{width:21.824000pt;}
._c_c00286{width:26.400000pt;}
.fs0_c00286{font-size:64.000000pt;}
.y0_c00286{bottom:0.000000pt;}
.y5_c00286{bottom:4.480000pt;}
.y1_c00286{bottom:11.320000pt;}
.y3_c00286{bottom:40.360000pt;}
.y4_c00286{bottom:47.200000pt;}
.y21_c00286{bottom:99.240000pt;}
.y20_c00286{bottom:131.240000pt;}
.y1f_c00286{bottom:163.240000pt;}
.y1e_c00286{bottom:195.240000pt;}
.y1d_c00286{bottom:227.240000pt;}
.y1c_c00286{bottom:259.240000pt;}
.y1b_c00286{bottom:291.240000pt;}
.y1a_c00286{bottom:323.240000pt;}
.y19_c00286{bottom:355.240000pt;}
.y18_c00286{bottom:387.240000pt;}
.y17_c00286{bottom:419.240000pt;}
.y16_c00286{bottom:451.240000pt;}
.y15_c00286{bottom:483.240000pt;}
.y14_c00286{bottom:515.240000pt;}
.y13_c00286{bottom:547.240000pt;}
.y12_c00286{bottom:579.240000pt;}
.y11_c00286{bottom:611.240000pt;}
.y10_c00286{bottom:643.240000pt;}
.yf_c00286{bottom:675.240000pt;}
.ye_c00286{bottom:707.240000pt;}
.yd_c00286{bottom:739.240000pt;}
.yc_c00286{bottom:771.240000pt;}
.yb_c00286{bottom:803.240000pt;}
.ya_c00286{bottom:835.240000pt;}
.y9_c00286{bottom:867.240000pt;}
.y8_c00286{bottom:899.240000pt;}
.y7_c00286{bottom:931.240000pt;}
.y6_c00286{bottom:963.240000pt;}
.y2_c00286{bottom:1035.560000pt;}
.h4_c00286{height:18.560000pt;}
.h3_c00286{height:62.812500pt;}
.h2_c00286{height:1099.880000pt;}
.h0_c00286{height:1122.520000pt;}
.h1_c00286{height:1122.666667pt;}
.w3_c00286{width:24.320000pt;}
.w2_c00286{width:771.080000pt;}
.w0_c00286{width:793.720000pt;}
.w1_c00286{width:794.000000pt;}
.x0_c00286{left:0.000000pt;}
.x1_c00286{left:11.320000pt;}
.x3_c00286{left:84.797333pt;}
.x5_c00286{left:132.800133pt;}
.x4_c00286{left:384.760000pt;}
.x2_c00286{left:782.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_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_5ca3fd3b96a87d3242cd01a6.woff2')format("woff");}.ff1_c00287{font-family:ff1_c00287;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00287{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00287{vertical-align:0.000000px;}
.ls0_c00287{letter-spacing:0.000000px;}
.sc__c00287{text-shadow:none;}
.sc0_c00287{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00287{-webkit-text-stroke:0px transparent;}
.sc0_c00287{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00287{word-spacing:0.000000px;}
._8_c00287{width:1.152000px;}
._0_c00287{width:2.275200px;}
._3_c00287{width:3.348000px;}
._1_c00287{width:4.773600px;}
._a_c00287{width:7.135200px;}
._4_c00287{width:8.589600px;}
._6_c00287{width:10.512000px;}
._5_c00287{width:12.844800px;}
._9_c00287{width:14.616000px;}
._7_c00287{width:16.833600px;}
._2_c00287{width:21.103200px;}
._b_c00287{width:24.530400px;}
.fc1_c00287{color:transparent;}
.fc0_c00287{color:rgb(0,0,0);}
.fs0_c00287{font-size:72.000000px;}
.y0_c00287{bottom:0.000000px;}
.y5_c00287{bottom:5.040000px;}
.y1_c00287{bottom:12.735000px;}
.y3_c00287{bottom:45.405000px;}
.y4_c00287{bottom:53.100000px;}
.y21_c00287{bottom:111.645000px;}
.y20_c00287{bottom:147.645000px;}
.y1f_c00287{bottom:183.645000px;}
.y1e_c00287{bottom:219.645000px;}
.y1d_c00287{bottom:255.645000px;}
.y1c_c00287{bottom:291.645000px;}
.y1b_c00287{bottom:327.645000px;}
.y1a_c00287{bottom:363.645000px;}
.y19_c00287{bottom:399.645000px;}
.y18_c00287{bottom:435.645000px;}
.y17_c00287{bottom:471.645000px;}
.y16_c00287{bottom:507.645000px;}
.y15_c00287{bottom:543.645000px;}
.y14_c00287{bottom:579.645000px;}
.y13_c00287{bottom:615.645000px;}
.y12_c00287{bottom:651.645000px;}
.y11_c00287{bottom:687.645000px;}
.y10_c00287{bottom:723.645000px;}
.yf_c00287{bottom:759.645000px;}
.ye_c00287{bottom:795.645000px;}
.yd_c00287{bottom:831.645000px;}
.yc_c00287{bottom:867.645000px;}
.yb_c00287{bottom:903.645000px;}
.ya_c00287{bottom:939.645000px;}
.y9_c00287{bottom:975.645000px;}
.y8_c00287{bottom:1011.645000px;}
.y7_c00287{bottom:1047.645000px;}
.y6_c00287{bottom:1083.645000px;}
.y2_c00287{bottom:1165.005000px;}
.h4_c00287{height:20.880000px;}
.h3_c00287{height:70.664062px;}
.h2_c00287{height:1237.365000px;}
.h0_c00287{height:1262.835000px;}
.h1_c00287{height:1263.000000px;}
.w3_c00287{width:27.360000px;}
.w2_c00287{width:867.465000px;}
.w0_c00287{width:892.935000px;}
.w1_c00287{width:893.250000px;}
.x0_c00287{left:0.000000px;}
.x1_c00287{left:12.735000px;}
.x3_c00287{left:95.394300px;}
.x5_c00287{left:149.400150px;}
.x4_c00287{left:432.855000px;}
.x2_c00287{left:880.050300px;}
@media print{
.v0_c00287{vertical-align:0.000000pt;}
.ls0_c00287{letter-spacing:0.000000pt;}
.ws0_c00287{word-spacing:0.000000pt;}
._8_c00287{width:1.024000pt;}
._0_c00287{width:2.022400pt;}
._3_c00287{width:2.976000pt;}
._1_c00287{width:4.243200pt;}
._a_c00287{width:6.342400pt;}
._4_c00287{width:7.635200pt;}
._6_c00287{width:9.344000pt;}
._5_c00287{width:11.417600pt;}
._9_c00287{width:12.992000pt;}
._7_c00287{width:14.963200pt;}
._2_c00287{width:18.758400pt;}
._b_c00287{width:21.804800pt;}
.fs0_c00287{font-size:64.000000pt;}
.y0_c00287{bottom:0.000000pt;}
.y5_c00287{bottom:4.480000pt;}
.y1_c00287{bottom:11.320000pt;}
.y3_c00287{bottom:40.360000pt;}
.y4_c00287{bottom:47.200000pt;}
.y21_c00287{bottom:99.240000pt;}
.y20_c00287{bottom:131.240000pt;}
.y1f_c00287{bottom:163.240000pt;}
.y1e_c00287{bottom:195.240000pt;}
.y1d_c00287{bottom:227.240000pt;}
.y1c_c00287{bottom:259.240000pt;}
.y1b_c00287{bottom:291.240000pt;}
.y1a_c00287{bottom:323.240000pt;}
.y19_c00287{bottom:355.240000pt;}
.y18_c00287{bottom:387.240000pt;}
.y17_c00287{bottom:419.240000pt;}
.y16_c00287{bottom:451.240000pt;}
.y15_c00287{bottom:483.240000pt;}
.y14_c00287{bottom:515.240000pt;}
.y13_c00287{bottom:547.240000pt;}
.y12_c00287{bottom:579.240000pt;}
.y11_c00287{bottom:611.240000pt;}
.y10_c00287{bottom:643.240000pt;}
.yf_c00287{bottom:675.240000pt;}
.ye_c00287{bottom:707.240000pt;}
.yd_c00287{bottom:739.240000pt;}
.yc_c00287{bottom:771.240000pt;}
.yb_c00287{bottom:803.240000pt;}
.ya_c00287{bottom:835.240000pt;}
.y9_c00287{bottom:867.240000pt;}
.y8_c00287{bottom:899.240000pt;}
.y7_c00287{bottom:931.240000pt;}
.y6_c00287{bottom:963.240000pt;}
.y2_c00287{bottom:1035.560000pt;}
.h4_c00287{height:18.560000pt;}
.h3_c00287{height:62.812500pt;}
.h2_c00287{height:1099.880000pt;}
.h0_c00287{height:1122.520000pt;}
.h1_c00287{height:1122.666667pt;}
.w3_c00287{width:24.320000pt;}
.w2_c00287{width:771.080000pt;}
.w0_c00287{width:793.720000pt;}
.w1_c00287{width:794.000000pt;}
.x0_c00287{left:0.000000pt;}
.x1_c00287{left:11.320000pt;}
.x3_c00287{left:84.794933pt;}
.x5_c00287{left:132.800133pt;}
.x4_c00287{left:384.760000pt;}
.x2_c00287{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_045f4bfe0b17ec92096c1f35.woff2')format("woff");}.ff1_c00288{font-family:ff1_c00288;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00288{letter-spacing:0.000000px;}
.sc__c00288{text-shadow:none;}
.sc0_c00288{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00288{-webkit-text-stroke:0px transparent;}
.sc0_c00288{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00288{word-spacing:0.000000px;}
._2_c00288{width:1.504800px;}
._9_c00288{width:2.570400px;}
._4_c00288{width:3.715200px;}
._5_c00288{width:4.716000px;}
._7_c00288{width:6.516000px;}
._8_c00288{width:8.287200px;}
._3_c00288{width:10.368000px;}
._0_c00288{width:11.671200px;}
._1_c00288{width:15.177600px;}
._6_c00288{width:16.610400px;}
._b_c00288{width:19.015200px;}
._a_c00288{width:26.611200px;}
.fc1_c00288{color:transparent;}
.fc0_c00288{color:rgb(0,0,0);}
.fs0_c00288{font-size:72.000000px;}
.y0_c00288{bottom:0.000000px;}
.y5_c00288{bottom:5.040000px;}
.y1_c00288{bottom:12.735000px;}
.y3_c00288{bottom:45.405000px;}
.y4_c00288{bottom:53.100000px;}
.y21_c00288{bottom:111.645000px;}
.y20_c00288{bottom:147.645000px;}
.y1f_c00288{bottom:183.645000px;}
.y1e_c00288{bottom:219.645000px;}
.y1d_c00288{bottom:255.645000px;}
.y1c_c00288{bottom:291.645000px;}
.y1b_c00288{bottom:327.645000px;}
.y1a_c00288{bottom:363.645000px;}
.y19_c00288{bottom:399.645000px;}
.y18_c00288{bottom:435.645000px;}
.y17_c00288{bottom:471.645000px;}
.y16_c00288{bottom:507.645000px;}
.y15_c00288{bottom:543.645000px;}
.y14_c00288{bottom:579.645000px;}
.y13_c00288{bottom:615.645000px;}
.y12_c00288{bottom:651.645000px;}
.y11_c00288{bottom:687.645000px;}
.y10_c00288{bottom:723.645000px;}
.yf_c00288{bottom:759.645000px;}
.ye_c00288{bottom:795.645000px;}
.yd_c00288{bottom:831.645000px;}
.yc_c00288{bottom:867.645000px;}
.yb_c00288{bottom:903.645000px;}
.ya_c00288{bottom:939.645000px;}
.y9_c00288{bottom:975.645000px;}
.y8_c00288{bottom:1011.645000px;}
.y7_c00288{bottom:1047.645000px;}
.y6_c00288{bottom:1083.645000px;}
.y2_c00288{bottom:1165.005000px;}
.h4_c00288{height:20.880000px;}
.h3_c00288{height:70.664062px;}
.h2_c00288{height:1237.365000px;}
.h0_c00288{height:1262.835000px;}
.h1_c00288{height:1263.000000px;}
.w3_c00288{width:27.360000px;}
.w2_c00288{width:867.465000px;}
.w0_c00288{width:892.935000px;}
.w1_c00288{width:893.250000px;}
.x0_c00288{left:0.000000px;}
.x1_c00288{left:12.735000px;}
.x3_c00288{left:95.397000px;}
.x5_c00288{left:149.400150px;}
.x4_c00288{left:432.855000px;}
.x2_c00288{left:880.125000px;}
@media print{
.v0_c00288{vertical-align:0.000000pt;}
.ls0_c00288{letter-spacing:0.000000pt;}
.ws0_c00288{word-spacing:0.000000pt;}
._2_c00288{width:1.337600pt;}
._9_c00288{width:2.284800pt;}
._4_c00288{width:3.302400pt;}
._5_c00288{width:4.192000pt;}
._7_c00288{width:5.792000pt;}
._8_c00288{width:7.366400pt;}
._3_c00288{width:9.216000pt;}
._0_c00288{width:10.374400pt;}
._1_c00288{width:13.491200pt;}
._6_c00288{width:14.764800pt;}
._b_c00288{width:16.902400pt;}
._a_c00288{width:23.654400pt;}
.fs0_c00288{font-size:64.000000pt;}
.y0_c00288{bottom:0.000000pt;}
.y5_c00288{bottom:4.480000pt;}
.y1_c00288{bottom:11.320000pt;}
.y3_c00288{bottom:40.360000pt;}
.y4_c00288{bottom:47.200000pt;}
.y21_c00288{bottom:99.240000pt;}
.y20_c00288{bottom:131.240000pt;}
.y1f_c00288{bottom:163.240000pt;}
.y1e_c00288{bottom:195.240000pt;}
.y1d_c00288{bottom:227.240000pt;}
.y1c_c00288{bottom:259.240000pt;}
.y1b_c00288{bottom:291.240000pt;}
.y1a_c00288{bottom:323.240000pt;}
.y19_c00288{bottom:355.240000pt;}
.y18_c00288{bottom:387.240000pt;}
.y17_c00288{bottom:419.240000pt;}
.y16_c00288{bottom:451.240000pt;}
.y15_c00288{bottom:483.240000pt;}
.y14_c00288{bottom:515.240000pt;}
.y13_c00288{bottom:547.240000pt;}
.y12_c00288{bottom:579.240000pt;}
.y11_c00288{bottom:611.240000pt;}
.y10_c00288{bottom:643.240000pt;}
.yf_c00288{bottom:675.240000pt;}
.ye_c00288{bottom:707.240000pt;}
.yd_c00288{bottom:739.240000pt;}
.yc_c00288{bottom:771.240000pt;}
.yb_c00288{bottom:803.240000pt;}
.ya_c00288{bottom:835.240000pt;}
.y9_c00288{bottom:867.240000pt;}
.y8_c00288{bottom:899.240000pt;}
.y7_c00288{bottom:931.240000pt;}
.y6_c00288{bottom:963.240000pt;}
.y2_c00288{bottom:1035.560000pt;}
.h4_c00288{height:18.560000pt;}
.h3_c00288{height:62.812500pt;}
.h2_c00288{height:1099.880000pt;}
.h0_c00288{height:1122.520000pt;}
.h1_c00288{height:1122.666667pt;}
.w3_c00288{width:24.320000pt;}
.w2_c00288{width:771.080000pt;}
.w0_c00288{width:793.720000pt;}
.w1_c00288{width:794.000000pt;}
.x0_c00288{left:0.000000pt;}
.x1_c00288{left:11.320000pt;}
.x3_c00288{left:84.797333pt;}
.x5_c00288{left:132.800133pt;}
.x4_c00288{left:384.760000pt;}
.x2_c00288{left:782.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_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_0d9ec74dea15c8c022a9b8f8.woff2')format("woff");}.ff1_c00289{font-family:ff1_c00289;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00289{letter-spacing:0.000000px;}
.sc__c00289{text-shadow:none;}
.sc0_c00289{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00289{-webkit-text-stroke:0px transparent;}
.sc0_c00289{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00289{word-spacing:0.000000px;}
._6_c00289{width:1.987200px;}
._5_c00289{width:3.542400px;}
._7_c00289{width:4.615200px;}
._1_c00289{width:6.400800px;}
._0_c00289{width:7.610400px;}
._4_c00289{width:10.015200px;}
._2_c00289{width:11.440800px;}
._8_c00289{width:12.801600px;}
._b_c00289{width:13.860000px;}
._9_c00289{width:15.141600px;}
._a_c00289{width:16.416000px;}
._3_c00289{width:31.363200px;}
.fc1_c00289{color:transparent;}
.fc0_c00289{color:rgb(0,0,0);}
.fs0_c00289{font-size:72.000000px;}
.y0_c00289{bottom:0.000000px;}
.y5_c00289{bottom:5.040000px;}
.y1_c00289{bottom:12.735000px;}
.y3_c00289{bottom:45.405000px;}
.y4_c00289{bottom:53.100000px;}
.y20_c00289{bottom:147.645000px;}
.y1f_c00289{bottom:183.645000px;}
.y1e_c00289{bottom:219.645000px;}
.y1d_c00289{bottom:255.645000px;}
.y1c_c00289{bottom:291.645000px;}
.y1b_c00289{bottom:327.645000px;}
.y1a_c00289{bottom:363.645000px;}
.y19_c00289{bottom:399.645000px;}
.y18_c00289{bottom:435.645000px;}
.y17_c00289{bottom:471.645000px;}
.y16_c00289{bottom:507.645000px;}
.y15_c00289{bottom:543.645000px;}
.y14_c00289{bottom:579.645000px;}
.y13_c00289{bottom:615.645000px;}
.y12_c00289{bottom:651.645000px;}
.y11_c00289{bottom:687.645000px;}
.y10_c00289{bottom:723.645000px;}
.yf_c00289{bottom:759.645000px;}
.ye_c00289{bottom:795.645000px;}
.yd_c00289{bottom:831.645000px;}
.yc_c00289{bottom:867.645000px;}
.yb_c00289{bottom:903.645000px;}
.ya_c00289{bottom:939.645000px;}
.y9_c00289{bottom:975.645000px;}
.y8_c00289{bottom:1011.645000px;}
.y7_c00289{bottom:1047.645000px;}
.y6_c00289{bottom:1083.645000px;}
.y2_c00289{bottom:1165.005000px;}
.h4_c00289{height:20.880000px;}
.h3_c00289{height:70.664062px;}
.h2_c00289{height:1237.365000px;}
.h0_c00289{height:1262.835000px;}
.h1_c00289{height:1263.000000px;}
.w3_c00289{width:27.360000px;}
.w2_c00289{width:867.465000px;}
.w0_c00289{width:892.935000px;}
.w1_c00289{width:893.250000px;}
.x0_c00289{left:0.000000px;}
.x1_c00289{left:12.735000px;}
.x3_c00289{left:95.394300px;}
.x5_c00289{left:149.400150px;}
.x4_c00289{left:432.855000px;}
.x2_c00289{left:880.050300px;}
@media print{
.v0_c00289{vertical-align:0.000000pt;}
.ls0_c00289{letter-spacing:0.000000pt;}
.ws0_c00289{word-spacing:0.000000pt;}
._6_c00289{width:1.766400pt;}
._5_c00289{width:3.148800pt;}
._7_c00289{width:4.102400pt;}
._1_c00289{width:5.689600pt;}
._0_c00289{width:6.764800pt;}
._4_c00289{width:8.902400pt;}
._2_c00289{width:10.169600pt;}
._8_c00289{width:11.379200pt;}
._b_c00289{width:12.320000pt;}
._9_c00289{width:13.459200pt;}
._a_c00289{width:14.592000pt;}
._3_c00289{width:27.878400pt;}
.fs0_c00289{font-size:64.000000pt;}
.y0_c00289{bottom:0.000000pt;}
.y5_c00289{bottom:4.480000pt;}
.y1_c00289{bottom:11.320000pt;}
.y3_c00289{bottom:40.360000pt;}
.y4_c00289{bottom:47.200000pt;}
.y20_c00289{bottom:131.240000pt;}
.y1f_c00289{bottom:163.240000pt;}
.y1e_c00289{bottom:195.240000pt;}
.y1d_c00289{bottom:227.240000pt;}
.y1c_c00289{bottom:259.240000pt;}
.y1b_c00289{bottom:291.240000pt;}
.y1a_c00289{bottom:323.240000pt;}
.y19_c00289{bottom:355.240000pt;}
.y18_c00289{bottom:387.240000pt;}
.y17_c00289{bottom:419.240000pt;}
.y16_c00289{bottom:451.240000pt;}
.y15_c00289{bottom:483.240000pt;}
.y14_c00289{bottom:515.240000pt;}
.y13_c00289{bottom:547.240000pt;}
.y12_c00289{bottom:579.240000pt;}
.y11_c00289{bottom:611.240000pt;}
.y10_c00289{bottom:643.240000pt;}
.yf_c00289{bottom:675.240000pt;}
.ye_c00289{bottom:707.240000pt;}
.yd_c00289{bottom:739.240000pt;}
.yc_c00289{bottom:771.240000pt;}
.yb_c00289{bottom:803.240000pt;}
.ya_c00289{bottom:835.240000pt;}
.y9_c00289{bottom:867.240000pt;}
.y8_c00289{bottom:899.240000pt;}
.y7_c00289{bottom:931.240000pt;}
.y6_c00289{bottom:963.240000pt;}
.y2_c00289{bottom:1035.560000pt;}
.h4_c00289{height:18.560000pt;}
.h3_c00289{height:62.812500pt;}
.h2_c00289{height:1099.880000pt;}
.h0_c00289{height:1122.520000pt;}
.h1_c00289{height:1122.666667pt;}
.w3_c00289{width:24.320000pt;}
.w2_c00289{width:771.080000pt;}
.w0_c00289{width:793.720000pt;}
.w1_c00289{width:794.000000pt;}
.x0_c00289{left:0.000000pt;}
.x1_c00289{left:11.320000pt;}
.x3_c00289{left:84.794933pt;}
.x5_c00289{left:132.800133pt;}
.x4_c00289{left:384.760000pt;}
.x2_c00289{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c628fb4d2046819b93d89c78.woff2')format("woff");}.ff1_c00290{font-family:ff1_c00290;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00290{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00290{vertical-align:0.000000px;}
.ls0_c00290{letter-spacing:0.000000px;}
.sc__c00290{text-shadow:none;}
.sc0_c00290{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00290{-webkit-text-stroke:0px transparent;}
.sc0_c00290{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00290{word-spacing:0.000000px;}
._d_c00290{width:2.728800px;}
._c_c00290{width:4.017600px;}
._7_c00290{width:5.709600px;}
._0_c00290{width:8.143200px;}
._4_c00290{width:9.194400px;}
._6_c00290{width:10.281600px;}
._2_c00290{width:11.318400px;}
._3_c00290{width:14.313600px;}
._e_c00290{width:15.933600px;}
._9_c00290{width:19.929600px;}
._8_c00290{width:20.995200px;}
._f_c00290{width:22.010400px;}
._a_c00290{width:23.162400px;}
._1_c00290{width:28.598400px;}
._b_c00290{width:34.912800px;}
._5_c00290{width:42.804000px;}
.fc1_c00290{color:transparent;}
.fc0_c00290{color:rgb(0,0,0);}
.fs0_c00290{font-size:72.000000px;}
.y0_c00290{bottom:0.000000px;}
.y5_c00290{bottom:5.040000px;}
.y1_c00290{bottom:12.735000px;}
.y3_c00290{bottom:45.405000px;}
.y4_c00290{bottom:53.100000px;}
.y21_c00290{bottom:111.645000px;}
.y20_c00290{bottom:147.645000px;}
.y1f_c00290{bottom:183.645000px;}
.y1e_c00290{bottom:219.645000px;}
.y1d_c00290{bottom:255.645000px;}
.y1c_c00290{bottom:291.645000px;}
.y1b_c00290{bottom:327.645000px;}
.y1a_c00290{bottom:363.645000px;}
.y19_c00290{bottom:399.645000px;}
.y18_c00290{bottom:435.645000px;}
.y17_c00290{bottom:471.645000px;}
.y16_c00290{bottom:507.645000px;}
.y15_c00290{bottom:543.645000px;}
.y14_c00290{bottom:579.645000px;}
.y13_c00290{bottom:615.645000px;}
.y12_c00290{bottom:651.645000px;}
.y11_c00290{bottom:687.645000px;}
.y10_c00290{bottom:723.645000px;}
.yf_c00290{bottom:759.645000px;}
.ye_c00290{bottom:795.645000px;}
.yd_c00290{bottom:831.645000px;}
.yc_c00290{bottom:867.645000px;}
.yb_c00290{bottom:903.645000px;}
.ya_c00290{bottom:939.645000px;}
.y9_c00290{bottom:975.645000px;}
.y8_c00290{bottom:1011.645000px;}
.y7_c00290{bottom:1047.645000px;}
.y6_c00290{bottom:1083.645000px;}
.y2_c00290{bottom:1165.005000px;}
.h4_c00290{height:20.880000px;}
.h3_c00290{height:70.664062px;}
.h2_c00290{height:1237.365000px;}
.h0_c00290{height:1262.835000px;}
.h1_c00290{height:1263.000000px;}
.w3_c00290{width:27.360000px;}
.w2_c00290{width:867.465000px;}
.w0_c00290{width:892.935000px;}
.w1_c00290{width:893.250000px;}
.x0_c00290{left:0.000000px;}
.x1_c00290{left:12.735000px;}
.x3_c00290{left:95.397000px;}
.x5_c00290{left:149.400150px;}
.x4_c00290{left:432.855000px;}
.x2_c00290{left:880.125000px;}
@media print{
.v0_c00290{vertical-align:0.000000pt;}
.ls0_c00290{letter-spacing:0.000000pt;}
.ws0_c00290{word-spacing:0.000000pt;}
._d_c00290{width:2.425600pt;}
._c_c00290{width:3.571200pt;}
._7_c00290{width:5.075200pt;}
._0_c00290{width:7.238400pt;}
._4_c00290{width:8.172800pt;}
._6_c00290{width:9.139200pt;}
._2_c00290{width:10.060800pt;}
._3_c00290{width:12.723200pt;}
._e_c00290{width:14.163200pt;}
._9_c00290{width:17.715200pt;}
._8_c00290{width:18.662400pt;}
._f_c00290{width:19.564800pt;}
._a_c00290{width:20.588800pt;}
._1_c00290{width:25.420800pt;}
._b_c00290{width:31.033600pt;}
._5_c00290{width:38.048000pt;}
.fs0_c00290{font-size:64.000000pt;}
.y0_c00290{bottom:0.000000pt;}
.y5_c00290{bottom:4.480000pt;}
.y1_c00290{bottom:11.320000pt;}
.y3_c00290{bottom:40.360000pt;}
.y4_c00290{bottom:47.200000pt;}
.y21_c00290{bottom:99.240000pt;}
.y20_c00290{bottom:131.240000pt;}
.y1f_c00290{bottom:163.240000pt;}
.y1e_c00290{bottom:195.240000pt;}
.y1d_c00290{bottom:227.240000pt;}
.y1c_c00290{bottom:259.240000pt;}
.y1b_c00290{bottom:291.240000pt;}
.y1a_c00290{bottom:323.240000pt;}
.y19_c00290{bottom:355.240000pt;}
.y18_c00290{bottom:387.240000pt;}
.y17_c00290{bottom:419.240000pt;}
.y16_c00290{bottom:451.240000pt;}
.y15_c00290{bottom:483.240000pt;}
.y14_c00290{bottom:515.240000pt;}
.y13_c00290{bottom:547.240000pt;}
.y12_c00290{bottom:579.240000pt;}
.y11_c00290{bottom:611.240000pt;}
.y10_c00290{bottom:643.240000pt;}
.yf_c00290{bottom:675.240000pt;}
.ye_c00290{bottom:707.240000pt;}
.yd_c00290{bottom:739.240000pt;}
.yc_c00290{bottom:771.240000pt;}
.yb_c00290{bottom:803.240000pt;}
.ya_c00290{bottom:835.240000pt;}
.y9_c00290{bottom:867.240000pt;}
.y8_c00290{bottom:899.240000pt;}
.y7_c00290{bottom:931.240000pt;}
.y6_c00290{bottom:963.240000pt;}
.y2_c00290{bottom:1035.560000pt;}
.h4_c00290{height:18.560000pt;}
.h3_c00290{height:62.812500pt;}
.h2_c00290{height:1099.880000pt;}
.h0_c00290{height:1122.520000pt;}
.h1_c00290{height:1122.666667pt;}
.w3_c00290{width:24.320000pt;}
.w2_c00290{width:771.080000pt;}
.w0_c00290{width:793.720000pt;}
.w1_c00290{width:794.000000pt;}
.x0_c00290{left:0.000000pt;}
.x1_c00290{left:11.320000pt;}
.x3_c00290{left:84.797333pt;}
.x5_c00290{left:132.800133pt;}
.x4_c00290{left:384.760000pt;}
.x2_c00290{left:782.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_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_f78a8cb4e0e96e85ccfc2e39.woff2')format("woff");}.ff1_c00291{font-family:ff1_c00291;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00291;src:url('chunks/assets/font_8af8d8ff3ed19562dba30c67.woff2')format("woff");}.ff2_c00291{font-family:ff2_c00291;line-height:1.284180;font-style: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;}
.ls0_c00291{letter-spacing:0.000000px;}
.ls1_c00291{letter-spacing:0.014400px;}
.sc__c00291{text-shadow:none;}
.sc0_c00291{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00291{-webkit-text-stroke:0px transparent;}
.sc0_c00291{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00291{word-spacing:0.000000px;}
._7_c00291{width:1.209600px;}
._9_c00291{width:2.793600px;}
._0_c00291{width:4.334400px;}
._4_c00291{width:5.846400px;}
._8_c00291{width:6.940800px;}
._6_c00291{width:8.935200px;}
._1_c00291{width:10.339200px;}
._5_c00291{width:11.527200px;}
._3_c00291{width:14.148000px;}
._b_c00291{width:19.670400px;}
._2_c00291{width:22.010400px;}
._a_c00291{width:23.839200px;}
.fc1_c00291{color:transparent;}
.fc0_c00291{color:rgb(0,0,0);}
.fs0_c00291{font-size:72.000000px;}
.y0_c00291{bottom:0.000000px;}
.y5_c00291{bottom:5.040000px;}
.y1_c00291{bottom:12.735000px;}
.y3_c00291{bottom:45.405000px;}
.y4_c00291{bottom:53.100000px;}
.y21_c00291{bottom:111.645000px;}
.y20_c00291{bottom:147.645000px;}
.y1f_c00291{bottom:183.645000px;}
.y1e_c00291{bottom:219.645000px;}
.y1d_c00291{bottom:255.645000px;}
.y1c_c00291{bottom:291.645000px;}
.y1b_c00291{bottom:327.645000px;}
.y1a_c00291{bottom:363.645000px;}
.y19_c00291{bottom:399.645000px;}
.y18_c00291{bottom:435.645000px;}
.y17_c00291{bottom:471.645000px;}
.y16_c00291{bottom:507.645000px;}
.y15_c00291{bottom:543.645000px;}
.y14_c00291{bottom:579.645000px;}
.y13_c00291{bottom:615.645000px;}
.y12_c00291{bottom:651.645000px;}
.y11_c00291{bottom:687.645000px;}
.y10_c00291{bottom:723.645000px;}
.yf_c00291{bottom:759.645000px;}
.ye_c00291{bottom:795.645000px;}
.yd_c00291{bottom:831.645000px;}
.yc_c00291{bottom:867.645000px;}
.yb_c00291{bottom:903.645000px;}
.ya_c00291{bottom:939.645000px;}
.y9_c00291{bottom:975.645000px;}
.y8_c00291{bottom:1011.645000px;}
.y7_c00291{bottom:1047.645000px;}
.y6_c00291{bottom:1083.645000px;}
.y2_c00291{bottom:1165.005000px;}
.h4_c00291{height:20.880000px;}
.h5_c00291{height:70.628906px;}
.h3_c00291{height:70.664062px;}
.h2_c00291{height:1237.365000px;}
.h0_c00291{height:1262.835000px;}
.h1_c00291{height:1263.000000px;}
.w3_c00291{width:27.360000px;}
.w2_c00291{width:867.465000px;}
.w0_c00291{width:892.935000px;}
.w1_c00291{width:893.250000px;}
.x0_c00291{left:0.000000px;}
.x1_c00291{left:12.735000px;}
.x3_c00291{left:95.394300px;}
.x6_c00291{left:117.450150px;}
.x5_c00291{left:149.400150px;}
.x7_c00291{left:180.450150px;}
.x4_c00291{left:432.855000px;}
.x2_c00291{left:880.050300px;}
@media print{
.v0_c00291{vertical-align:0.000000pt;}
.ls0_c00291{letter-spacing:0.000000pt;}
.ls1_c00291{letter-spacing:0.012800pt;}
.ws0_c00291{word-spacing:0.000000pt;}
._7_c00291{width:1.075200pt;}
._9_c00291{width:2.483200pt;}
._0_c00291{width:3.852800pt;}
._4_c00291{width:5.196800pt;}
._8_c00291{width:6.169600pt;}
._6_c00291{width:7.942400pt;}
._1_c00291{width:9.190400pt;}
._5_c00291{width:10.246400pt;}
._3_c00291{width:12.576000pt;}
._b_c00291{width:17.484800pt;}
._2_c00291{width:19.564800pt;}
._a_c00291{width:21.190400pt;}
.fs0_c00291{font-size:64.000000pt;}
.y0_c00291{bottom:0.000000pt;}
.y5_c00291{bottom:4.480000pt;}
.y1_c00291{bottom:11.320000pt;}
.y3_c00291{bottom:40.360000pt;}
.y4_c00291{bottom:47.200000pt;}
.y21_c00291{bottom:99.240000pt;}
.y20_c00291{bottom:131.240000pt;}
.y1f_c00291{bottom:163.240000pt;}
.y1e_c00291{bottom:195.240000pt;}
.y1d_c00291{bottom:227.240000pt;}
.y1c_c00291{bottom:259.240000pt;}
.y1b_c00291{bottom:291.240000pt;}
.y1a_c00291{bottom:323.240000pt;}
.y19_c00291{bottom:355.240000pt;}
.y18_c00291{bottom:387.240000pt;}
.y17_c00291{bottom:419.240000pt;}
.y16_c00291{bottom:451.240000pt;}
.y15_c00291{bottom:483.240000pt;}
.y14_c00291{bottom:515.240000pt;}
.y13_c00291{bottom:547.240000pt;}
.y12_c00291{bottom:579.240000pt;}
.y11_c00291{bottom:611.240000pt;}
.y10_c00291{bottom:643.240000pt;}
.yf_c00291{bottom:675.240000pt;}
.ye_c00291{bottom:707.240000pt;}
.yd_c00291{bottom:739.240000pt;}
.yc_c00291{bottom:771.240000pt;}
.yb_c00291{bottom:803.240000pt;}
.ya_c00291{bottom:835.240000pt;}
.y9_c00291{bottom:867.240000pt;}
.y8_c00291{bottom:899.240000pt;}
.y7_c00291{bottom:931.240000pt;}
.y6_c00291{bottom:963.240000pt;}
.y2_c00291{bottom:1035.560000pt;}
.h4_c00291{height:18.560000pt;}
.h5_c00291{height:62.781250pt;}
.h3_c00291{height:62.812500pt;}
.h2_c00291{height:1099.880000pt;}
.h0_c00291{height:1122.520000pt;}
.h1_c00291{height:1122.666667pt;}
.w3_c00291{width:24.320000pt;}
.w2_c00291{width:771.080000pt;}
.w0_c00291{width:793.720000pt;}
.w1_c00291{width:794.000000pt;}
.x0_c00291{left:0.000000pt;}
.x1_c00291{left:11.320000pt;}
.x3_c00291{left:84.794933pt;}
.x6_c00291{left:104.400133pt;}
.x5_c00291{left:132.800133pt;}
.x7_c00291{left:160.400133pt;}
.x4_c00291{left:384.760000pt;}
.x2_c00291{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_336c7d4f7e7301f9309e2f9e.woff2')format("woff");}.ff1_c00292{font-family:ff1_c00292;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00292;src:url('chunks/assets/font_0a5ab72c068ed2006b9a5370.woff2')format("woff");}.ff2_c00292{font-family:ff2_c00292;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00292{letter-spacing:-0.014400px;}
.ls0_c00292{letter-spacing:0.000000px;}
.sc__c00292{text-shadow:none;}
.sc0_c00292{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00292{-webkit-text-stroke:0px transparent;}
.sc0_c00292{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00292{word-spacing:0.000000px;}
._3_c00292{width:1.504800px;}
._4_c00292{width:3.088800px;}
._5_c00292{width:4.449600px;}
._0_c00292{width:5.659200px;}
._8_c00292{width:6.796800px;}
._9_c00292{width:9.072000px;}
._2_c00292{width:11.073600px;}
._a_c00292{width:13.140000px;}
._7_c00292{width:14.479200px;}
._b_c00292{width:15.602400px;}
._6_c00292{width:16.833600px;}
._1_c00292{width:23.817600px;}
._c_c00292{width:34.005600px;}
._d_c00292{width:35.150400px;}
.fc1_c00292{color:transparent;}
.fc0_c00292{color:rgb(0,0,0);}
.fs0_c00292{font-size:72.000000px;}
.y0_c00292{bottom:0.000000px;}
.y5_c00292{bottom:5.040000px;}
.y1_c00292{bottom:12.735000px;}
.y3_c00292{bottom:45.405000px;}
.y4_c00292{bottom:53.100000px;}
.y20_c00292{bottom:147.645000px;}
.y1f_c00292{bottom:183.645000px;}
.y1e_c00292{bottom:219.645000px;}
.y1d_c00292{bottom:255.645000px;}
.y1c_c00292{bottom:291.645000px;}
.y1b_c00292{bottom:327.645000px;}
.y1a_c00292{bottom:363.645000px;}
.y19_c00292{bottom:399.645000px;}
.y18_c00292{bottom:435.645000px;}
.y17_c00292{bottom:471.645000px;}
.y16_c00292{bottom:507.645000px;}
.y15_c00292{bottom:543.645000px;}
.y14_c00292{bottom:579.645000px;}
.y13_c00292{bottom:615.645000px;}
.y12_c00292{bottom:651.645000px;}
.y11_c00292{bottom:687.645000px;}
.y10_c00292{bottom:723.645000px;}
.yf_c00292{bottom:759.645000px;}
.ye_c00292{bottom:795.645000px;}
.yd_c00292{bottom:831.645000px;}
.yc_c00292{bottom:867.645000px;}
.yb_c00292{bottom:903.645000px;}
.ya_c00292{bottom:939.645000px;}
.y9_c00292{bottom:975.645000px;}
.y8_c00292{bottom:1011.645000px;}
.y7_c00292{bottom:1047.645000px;}
.y6_c00292{bottom:1083.645000px;}
.y2_c00292{bottom:1165.005000px;}
.h4_c00292{height:20.880000px;}
.h3_c00292{height:70.664062px;}
.h2_c00292{height:1237.365000px;}
.h0_c00292{height:1262.835000px;}
.h1_c00292{height:1263.000000px;}
.w3_c00292{width:27.360000px;}
.w2_c00292{width:867.465000px;}
.w0_c00292{width:892.935000px;}
.w1_c00292{width:893.250000px;}
.x0_c00292{left:0.000000px;}
.x1_c00292{left:12.735000px;}
.x3_c00292{left:95.397000px;}
.x5_c00292{left:149.400150px;}
.x4_c00292{left:432.855000px;}
.x2_c00292{left:880.125000px;}
@media print{
.v0_c00292{vertical-align:0.000000pt;}
.ls1_c00292{letter-spacing:-0.012800pt;}
.ls0_c00292{letter-spacing:0.000000pt;}
.ws0_c00292{word-spacing:0.000000pt;}
._3_c00292{width:1.337600pt;}
._4_c00292{width:2.745600pt;}
._5_c00292{width:3.955200pt;}
._0_c00292{width:5.030400pt;}
._8_c00292{width:6.041600pt;}
._9_c00292{width:8.064000pt;}
._2_c00292{width:9.843200pt;}
._a_c00292{width:11.680000pt;}
._7_c00292{width:12.870400pt;}
._b_c00292{width:13.868800pt;}
._6_c00292{width:14.963200pt;}
._1_c00292{width:21.171200pt;}
._c_c00292{width:30.227200pt;}
._d_c00292{width:31.244800pt;}
.fs0_c00292{font-size:64.000000pt;}
.y0_c00292{bottom:0.000000pt;}
.y5_c00292{bottom:4.480000pt;}
.y1_c00292{bottom:11.320000pt;}
.y3_c00292{bottom:40.360000pt;}
.y4_c00292{bottom:47.200000pt;}
.y20_c00292{bottom:131.240000pt;}
.y1f_c00292{bottom:163.240000pt;}
.y1e_c00292{bottom:195.240000pt;}
.y1d_c00292{bottom:227.240000pt;}
.y1c_c00292{bottom:259.240000pt;}
.y1b_c00292{bottom:291.240000pt;}
.y1a_c00292{bottom:323.240000pt;}
.y19_c00292{bottom:355.240000pt;}
.y18_c00292{bottom:387.240000pt;}
.y17_c00292{bottom:419.240000pt;}
.y16_c00292{bottom:451.240000pt;}
.y15_c00292{bottom:483.240000pt;}
.y14_c00292{bottom:515.240000pt;}
.y13_c00292{bottom:547.240000pt;}
.y12_c00292{bottom:579.240000pt;}
.y11_c00292{bottom:611.240000pt;}
.y10_c00292{bottom:643.240000pt;}
.yf_c00292{bottom:675.240000pt;}
.ye_c00292{bottom:707.240000pt;}
.yd_c00292{bottom:739.240000pt;}
.yc_c00292{bottom:771.240000pt;}
.yb_c00292{bottom:803.240000pt;}
.ya_c00292{bottom:835.240000pt;}
.y9_c00292{bottom:867.240000pt;}
.y8_c00292{bottom:899.240000pt;}
.y7_c00292{bottom:931.240000pt;}
.y6_c00292{bottom:963.240000pt;}
.y2_c00292{bottom:1035.560000pt;}
.h4_c00292{height:18.560000pt;}
.h3_c00292{height:62.812500pt;}
.h2_c00292{height:1099.880000pt;}
.h0_c00292{height:1122.520000pt;}
.h1_c00292{height:1122.666667pt;}
.w3_c00292{width:24.320000pt;}
.w2_c00292{width:771.080000pt;}
.w0_c00292{width:793.720000pt;}
.w1_c00292{width:794.000000pt;}
.x0_c00292{left:0.000000pt;}
.x1_c00292{left:11.320000pt;}
.x3_c00292{left:84.797333pt;}
.x5_c00292{left:132.800133pt;}
.x4_c00292{left:384.760000pt;}
.x2_c00292{left:782.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_6146694c8fe7f808541a53c6.woff2')format("woff");}.ff1_c00293{font-family:ff1_c00293;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00293{letter-spacing:0.000000px;}
.sc__c00293{text-shadow:none;}
.sc0_c00293{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00293{-webkit-text-stroke:0px transparent;}
.sc0_c00293{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00293{word-spacing:0.000000px;}
._b_c00293{width:1.094400px;}
._a_c00293{width:2.692800px;}
._7_c00293{width:3.988800px;}
._1_c00293{width:5.061600px;}
._e_c00293{width:6.184800px;}
._3_c00293{width:9.000000px;}
._4_c00293{width:10.080000px;}
._6_c00293{width:11.390400px;}
._9_c00293{width:12.643200px;}
._2_c00293{width:13.788000px;}
._f_c00293{width:15.379200px;}
._8_c00293{width:21.002400px;}
._5_c00293{width:22.010400px;}
._c_c00293{width:23.263200px;}
._0_c00293{width:29.260800px;}
._d_c00293{width:30.787200px;}
.fc1_c00293{color:transparent;}
.fc0_c00293{color:rgb(0,0,0);}
.fs0_c00293{font-size:72.000000px;}
.y0_c00293{bottom:0.000000px;}
.y5_c00293{bottom:5.040000px;}
.y1_c00293{bottom:12.735000px;}
.y3_c00293{bottom:45.405000px;}
.y4_c00293{bottom:53.100000px;}
.y21_c00293{bottom:111.645000px;}
.y20_c00293{bottom:147.645000px;}
.y1f_c00293{bottom:183.645000px;}
.y1e_c00293{bottom:219.645000px;}
.y1d_c00293{bottom:255.645000px;}
.y1c_c00293{bottom:291.645000px;}
.y1b_c00293{bottom:327.645000px;}
.y1a_c00293{bottom:363.645000px;}
.y19_c00293{bottom:399.645000px;}
.y18_c00293{bottom:435.645000px;}
.y17_c00293{bottom:471.645000px;}
.y16_c00293{bottom:507.645000px;}
.y15_c00293{bottom:543.645000px;}
.y14_c00293{bottom:579.645000px;}
.y13_c00293{bottom:615.645000px;}
.y12_c00293{bottom:651.645000px;}
.y11_c00293{bottom:687.645000px;}
.y10_c00293{bottom:723.645000px;}
.yf_c00293{bottom:759.645000px;}
.ye_c00293{bottom:795.645000px;}
.yd_c00293{bottom:831.645000px;}
.yc_c00293{bottom:867.645000px;}
.yb_c00293{bottom:903.645000px;}
.ya_c00293{bottom:939.645000px;}
.y9_c00293{bottom:975.645000px;}
.y8_c00293{bottom:1011.645000px;}
.y7_c00293{bottom:1047.645000px;}
.y6_c00293{bottom:1083.645000px;}
.y2_c00293{bottom:1165.005000px;}
.h4_c00293{height:20.880000px;}
.h3_c00293{height:70.664062px;}
.h2_c00293{height:1237.365000px;}
.h0_c00293{height:1262.835000px;}
.h1_c00293{height:1263.000000px;}
.w3_c00293{width:27.360000px;}
.w2_c00293{width:867.465000px;}
.w0_c00293{width:892.935000px;}
.w1_c00293{width:893.250000px;}
.x0_c00293{left:0.000000px;}
.x1_c00293{left:12.735000px;}
.x3_c00293{left:95.394300px;}
.x5_c00293{left:149.400150px;}
.x4_c00293{left:432.855000px;}
.x2_c00293{left:880.050300px;}
@media print{
.v0_c00293{vertical-align:0.000000pt;}
.ls0_c00293{letter-spacing:0.000000pt;}
.ws0_c00293{word-spacing:0.000000pt;}
._b_c00293{width:0.972800pt;}
._a_c00293{width:2.393600pt;}
._7_c00293{width:3.545600pt;}
._1_c00293{width:4.499200pt;}
._e_c00293{width:5.497600pt;}
._3_c00293{width:8.000000pt;}
._4_c00293{width:8.960000pt;}
._6_c00293{width:10.124800pt;}
._9_c00293{width:11.238400pt;}
._2_c00293{width:12.256000pt;}
._f_c00293{width:13.670400pt;}
._8_c00293{width:18.668800pt;}
._5_c00293{width:19.564800pt;}
._c_c00293{width:20.678400pt;}
._0_c00293{width:26.009600pt;}
._d_c00293{width:27.366400pt;}
.fs0_c00293{font-size:64.000000pt;}
.y0_c00293{bottom:0.000000pt;}
.y5_c00293{bottom:4.480000pt;}
.y1_c00293{bottom:11.320000pt;}
.y3_c00293{bottom:40.360000pt;}
.y4_c00293{bottom:47.200000pt;}
.y21_c00293{bottom:99.240000pt;}
.y20_c00293{bottom:131.240000pt;}
.y1f_c00293{bottom:163.240000pt;}
.y1e_c00293{bottom:195.240000pt;}
.y1d_c00293{bottom:227.240000pt;}
.y1c_c00293{bottom:259.240000pt;}
.y1b_c00293{bottom:291.240000pt;}
.y1a_c00293{bottom:323.240000pt;}
.y19_c00293{bottom:355.240000pt;}
.y18_c00293{bottom:387.240000pt;}
.y17_c00293{bottom:419.240000pt;}
.y16_c00293{bottom:451.240000pt;}
.y15_c00293{bottom:483.240000pt;}
.y14_c00293{bottom:515.240000pt;}
.y13_c00293{bottom:547.240000pt;}
.y12_c00293{bottom:579.240000pt;}
.y11_c00293{bottom:611.240000pt;}
.y10_c00293{bottom:643.240000pt;}
.yf_c00293{bottom:675.240000pt;}
.ye_c00293{bottom:707.240000pt;}
.yd_c00293{bottom:739.240000pt;}
.yc_c00293{bottom:771.240000pt;}
.yb_c00293{bottom:803.240000pt;}
.ya_c00293{bottom:835.240000pt;}
.y9_c00293{bottom:867.240000pt;}
.y8_c00293{bottom:899.240000pt;}
.y7_c00293{bottom:931.240000pt;}
.y6_c00293{bottom:963.240000pt;}
.y2_c00293{bottom:1035.560000pt;}
.h4_c00293{height:18.560000pt;}
.h3_c00293{height:62.812500pt;}
.h2_c00293{height:1099.880000pt;}
.h0_c00293{height:1122.520000pt;}
.h1_c00293{height:1122.666667pt;}
.w3_c00293{width:24.320000pt;}
.w2_c00293{width:771.080000pt;}
.w0_c00293{width:793.720000pt;}
.w1_c00293{width:794.000000pt;}
.x0_c00293{left:0.000000pt;}
.x1_c00293{left:11.320000pt;}
.x3_c00293{left:84.794933pt;}
.x5_c00293{left:132.800133pt;}
.x4_c00293{left:384.760000pt;}
.x2_c00293{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_afbd64571e69e5b4f5453ec1.woff2')format("woff");}.ff1_c00294{font-family:ff1_c00294;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00294{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00294{vertical-align:0.000000px;}
.ls0_c00294{letter-spacing:0.000000px;}
.sc__c00294{text-shadow:none;}
.sc0_c00294{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00294{-webkit-text-stroke:0px transparent;}
.sc0_c00294{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00294{word-spacing:0.000000px;}
._1_c00294{width:1.245600px;}
._0_c00294{width:2.282400px;}
._3_c00294{width:4.132800px;}
._2_c00294{width:5.508000px;}
._5_c00294{width:7.063200px;}
._b_c00294{width:10.785600px;}
._6_c00294{width:12.153600px;}
._8_c00294{width:13.168800px;}
._7_c00294{width:14.839200px;}
._4_c00294{width:16.466400px;}
._a_c00294{width:19.159200px;}
._9_c00294{width:20.160000px;}
._c_c00294{width:22.831200px;}
.fc1_c00294{color:transparent;}
.fc0_c00294{color:rgb(0,0,0);}
.fs0_c00294{font-size:72.000000px;}
.y0_c00294{bottom:0.000000px;}
.y5_c00294{bottom:5.040000px;}
.y1_c00294{bottom:12.735000px;}
.y3_c00294{bottom:45.405000px;}
.y4_c00294{bottom:53.100000px;}
.y21_c00294{bottom:111.645000px;}
.y20_c00294{bottom:147.645000px;}
.y1f_c00294{bottom:183.645000px;}
.y1e_c00294{bottom:219.645000px;}
.y1d_c00294{bottom:255.645000px;}
.y1c_c00294{bottom:291.645000px;}
.y1b_c00294{bottom:327.645000px;}
.y1a_c00294{bottom:363.645000px;}
.y19_c00294{bottom:399.645000px;}
.y18_c00294{bottom:435.645000px;}
.y17_c00294{bottom:471.645000px;}
.y16_c00294{bottom:507.645000px;}
.y15_c00294{bottom:543.645000px;}
.y14_c00294{bottom:579.645000px;}
.y13_c00294{bottom:615.645000px;}
.y12_c00294{bottom:651.645000px;}
.y11_c00294{bottom:687.645000px;}
.y10_c00294{bottom:723.645000px;}
.yf_c00294{bottom:759.645000px;}
.ye_c00294{bottom:795.645000px;}
.yd_c00294{bottom:831.645000px;}
.yc_c00294{bottom:867.645000px;}
.yb_c00294{bottom:903.645000px;}
.ya_c00294{bottom:939.645000px;}
.y9_c00294{bottom:975.645000px;}
.y8_c00294{bottom:1011.645000px;}
.y7_c00294{bottom:1047.645000px;}
.y6_c00294{bottom:1083.645000px;}
.y2_c00294{bottom:1165.005000px;}
.h4_c00294{height:20.880000px;}
.h3_c00294{height:70.664062px;}
.h2_c00294{height:1237.365000px;}
.h0_c00294{height:1262.835000px;}
.h1_c00294{height:1263.000000px;}
.w3_c00294{width:27.360000px;}
.w2_c00294{width:867.465000px;}
.w0_c00294{width:892.935000px;}
.w1_c00294{width:893.250000px;}
.x0_c00294{left:0.000000px;}
.x1_c00294{left:12.735000px;}
.x3_c00294{left:95.397000px;}
.x6_c00294{left:117.468150px;}
.x5_c00294{left:149.400150px;}
.x4_c00294{left:432.855000px;}
.x2_c00294{left:880.125000px;}
@media print{
.v0_c00294{vertical-align:0.000000pt;}
.ls0_c00294{letter-spacing:0.000000pt;}
.ws0_c00294{word-spacing:0.000000pt;}
._1_c00294{width:1.107200pt;}
._0_c00294{width:2.028800pt;}
._3_c00294{width:3.673600pt;}
._2_c00294{width:4.896000pt;}
._5_c00294{width:6.278400pt;}
._b_c00294{width:9.587200pt;}
._6_c00294{width:10.803200pt;}
._8_c00294{width:11.705600pt;}
._7_c00294{width:13.190400pt;}
._4_c00294{width:14.636800pt;}
._a_c00294{width:17.030400pt;}
._9_c00294{width:17.920000pt;}
._c_c00294{width:20.294400pt;}
.fs0_c00294{font-size:64.000000pt;}
.y0_c00294{bottom:0.000000pt;}
.y5_c00294{bottom:4.480000pt;}
.y1_c00294{bottom:11.320000pt;}
.y3_c00294{bottom:40.360000pt;}
.y4_c00294{bottom:47.200000pt;}
.y21_c00294{bottom:99.240000pt;}
.y20_c00294{bottom:131.240000pt;}
.y1f_c00294{bottom:163.240000pt;}
.y1e_c00294{bottom:195.240000pt;}
.y1d_c00294{bottom:227.240000pt;}
.y1c_c00294{bottom:259.240000pt;}
.y1b_c00294{bottom:291.240000pt;}
.y1a_c00294{bottom:323.240000pt;}
.y19_c00294{bottom:355.240000pt;}
.y18_c00294{bottom:387.240000pt;}
.y17_c00294{bottom:419.240000pt;}
.y16_c00294{bottom:451.240000pt;}
.y15_c00294{bottom:483.240000pt;}
.y14_c00294{bottom:515.240000pt;}
.y13_c00294{bottom:547.240000pt;}
.y12_c00294{bottom:579.240000pt;}
.y11_c00294{bottom:611.240000pt;}
.y10_c00294{bottom:643.240000pt;}
.yf_c00294{bottom:675.240000pt;}
.ye_c00294{bottom:707.240000pt;}
.yd_c00294{bottom:739.240000pt;}
.yc_c00294{bottom:771.240000pt;}
.yb_c00294{bottom:803.240000pt;}
.ya_c00294{bottom:835.240000pt;}
.y9_c00294{bottom:867.240000pt;}
.y8_c00294{bottom:899.240000pt;}
.y7_c00294{bottom:931.240000pt;}
.y6_c00294{bottom:963.240000pt;}
.y2_c00294{bottom:1035.560000pt;}
.h4_c00294{height:18.560000pt;}
.h3_c00294{height:62.812500pt;}
.h2_c00294{height:1099.880000pt;}
.h0_c00294{height:1122.520000pt;}
.h1_c00294{height:1122.666667pt;}
.w3_c00294{width:24.320000pt;}
.w2_c00294{width:771.080000pt;}
.w0_c00294{width:793.720000pt;}
.w1_c00294{width:794.000000pt;}
.x0_c00294{left:0.000000pt;}
.x1_c00294{left:11.320000pt;}
.x3_c00294{left:84.797333pt;}
.x6_c00294{left:104.416133pt;}
.x5_c00294{left:132.800133pt;}
.x4_c00294{left:384.760000pt;}
.x2_c00294{left:782.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_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_81f19e1d2ca20d4ed353712f.woff2')format("woff");}.ff1_c00295{font-family:ff1_c00295;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00295;src:url('chunks/assets/font_6455bc666bcbc927185a24d3.woff2')format("woff");}.ff2_c00295{font-family:ff2_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;}
.m0_c00295{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00295{vertical-align:0.000000px;}
.ls0_c00295{letter-spacing:0.000000px;}
.sc__c00295{text-shadow:none;}
.sc0_c00295{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00295{-webkit-text-stroke:0px transparent;}
.sc0_c00295{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00295{word-spacing:0.000000px;}
._2_c00295{width:1.447200px;}
._3_c00295{width:3.016800px;}
._9_c00295{width:4.233600px;}
._8_c00295{width:5.608800px;}
._a_c00295{width:7.351200px;}
._0_c00295{width:8.553600px;}
._4_c00295{width:9.849600px;}
._5_c00295{width:11.649600px;}
._7_c00295{width:12.801600px;}
._6_c00295{width:13.845600px;}
._1_c00295{width:14.954400px;}
._c_c00295{width:16.164000px;}
._b_c00295{width:19.929600px;}
.fc1_c00295{color:transparent;}
.fc0_c00295{color:rgb(0,0,0);}
.fs0_c00295{font-size:72.000000px;}
.y0_c00295{bottom:0.000000px;}
.y5_c00295{bottom:5.040000px;}
.y1_c00295{bottom:12.735000px;}
.y3_c00295{bottom:45.405000px;}
.y4_c00295{bottom:53.100000px;}
.y21_c00295{bottom:111.645000px;}
.y20_c00295{bottom:147.645000px;}
.y1f_c00295{bottom:183.645000px;}
.y1e_c00295{bottom:219.645000px;}
.y1d_c00295{bottom:255.645000px;}
.y1c_c00295{bottom:291.645000px;}
.y1b_c00295{bottom:327.645000px;}
.y1a_c00295{bottom:363.645000px;}
.y19_c00295{bottom:399.645000px;}
.y18_c00295{bottom:435.645000px;}
.y17_c00295{bottom:471.645000px;}
.y16_c00295{bottom:507.645000px;}
.y15_c00295{bottom:543.645000px;}
.y14_c00295{bottom:579.645000px;}
.y13_c00295{bottom:615.645000px;}
.y12_c00295{bottom:651.645000px;}
.y11_c00295{bottom:687.645000px;}
.y10_c00295{bottom:723.645000px;}
.yf_c00295{bottom:759.645000px;}
.ye_c00295{bottom:795.645000px;}
.yd_c00295{bottom:831.645000px;}
.yc_c00295{bottom:867.645000px;}
.yb_c00295{bottom:903.645000px;}
.ya_c00295{bottom:939.645000px;}
.y9_c00295{bottom:975.645000px;}
.y8_c00295{bottom:1011.645000px;}
.y7_c00295{bottom:1047.645000px;}
.y6_c00295{bottom:1083.645000px;}
.y2_c00295{bottom:1165.005000px;}
.h4_c00295{height:20.880000px;}
.h5_c00295{height:70.628906px;}
.h3_c00295{height:70.664062px;}
.h2_c00295{height:1237.365000px;}
.h0_c00295{height:1262.835000px;}
.h1_c00295{height:1263.000000px;}
.w3_c00295{width:27.360000px;}
.w2_c00295{width:867.465000px;}
.w0_c00295{width:892.935000px;}
.w1_c00295{width:893.250000px;}
.x0_c00295{left:0.000000px;}
.x1_c00295{left:12.735000px;}
.x3_c00295{left:95.394300px;}
.x5_c00295{left:149.400150px;}
.x4_c00295{left:432.855000px;}
.x2_c00295{left:880.050300px;}
@media print{
.v0_c00295{vertical-align:0.000000pt;}
.ls0_c00295{letter-spacing:0.000000pt;}
.ws0_c00295{word-spacing:0.000000pt;}
._2_c00295{width:1.286400pt;}
._3_c00295{width:2.681600pt;}
._9_c00295{width:3.763200pt;}
._8_c00295{width:4.985600pt;}
._a_c00295{width:6.534400pt;}
._0_c00295{width:7.603200pt;}
._4_c00295{width:8.755200pt;}
._5_c00295{width:10.355200pt;}
._7_c00295{width:11.379200pt;}
._6_c00295{width:12.307200pt;}
._1_c00295{width:13.292800pt;}
._c_c00295{width:14.368000pt;}
._b_c00295{width:17.715200pt;}
.fs0_c00295{font-size:64.000000pt;}
.y0_c00295{bottom:0.000000pt;}
.y5_c00295{bottom:4.480000pt;}
.y1_c00295{bottom:11.320000pt;}
.y3_c00295{bottom:40.360000pt;}
.y4_c00295{bottom:47.200000pt;}
.y21_c00295{bottom:99.240000pt;}
.y20_c00295{bottom:131.240000pt;}
.y1f_c00295{bottom:163.240000pt;}
.y1e_c00295{bottom:195.240000pt;}
.y1d_c00295{bottom:227.240000pt;}
.y1c_c00295{bottom:259.240000pt;}
.y1b_c00295{bottom:291.240000pt;}
.y1a_c00295{bottom:323.240000pt;}
.y19_c00295{bottom:355.240000pt;}
.y18_c00295{bottom:387.240000pt;}
.y17_c00295{bottom:419.240000pt;}
.y16_c00295{bottom:451.240000pt;}
.y15_c00295{bottom:483.240000pt;}
.y14_c00295{bottom:515.240000pt;}
.y13_c00295{bottom:547.240000pt;}
.y12_c00295{bottom:579.240000pt;}
.y11_c00295{bottom:611.240000pt;}
.y10_c00295{bottom:643.240000pt;}
.yf_c00295{bottom:675.240000pt;}
.ye_c00295{bottom:707.240000pt;}
.yd_c00295{bottom:739.240000pt;}
.yc_c00295{bottom:771.240000pt;}
.yb_c00295{bottom:803.240000pt;}
.ya_c00295{bottom:835.240000pt;}
.y9_c00295{bottom:867.240000pt;}
.y8_c00295{bottom:899.240000pt;}
.y7_c00295{bottom:931.240000pt;}
.y6_c00295{bottom:963.240000pt;}
.y2_c00295{bottom:1035.560000pt;}
.h4_c00295{height:18.560000pt;}
.h5_c00295{height:62.781250pt;}
.h3_c00295{height:62.812500pt;}
.h2_c00295{height:1099.880000pt;}
.h0_c00295{height:1122.520000pt;}
.h1_c00295{height:1122.666667pt;}
.w3_c00295{width:24.320000pt;}
.w2_c00295{width:771.080000pt;}
.w0_c00295{width:793.720000pt;}
.w1_c00295{width:794.000000pt;}
.x0_c00295{left:0.000000pt;}
.x1_c00295{left:11.320000pt;}
.x3_c00295{left:84.794933pt;}
.x5_c00295{left:132.800133pt;}
.x4_c00295{left:384.760000pt;}
.x2_c00295{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5dc9f3cc55bc92b63fa2f33d.woff2')format("woff");}.ff1_c00296{font-family:ff1_c00296;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00296;src:url('chunks/assets/font_d188a113e610b197ff6c26bd.woff2')format("woff");}.ff2_c00296{font-family:ff2_c00296;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00296{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00296{vertical-align:0.000000px;}
.ls0_c00296{letter-spacing:0.000000px;}
.sc__c00296{text-shadow:none;}
.sc0_c00296{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00296{-webkit-text-stroke:0px transparent;}
.sc0_c00296{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00296{word-spacing:0.000000px;}
._1_c00296{width:1.166400px;}
._b_c00296{width:2.361600px;}
._7_c00296{width:3.456000px;}
._0_c00296{width:5.155200px;}
._8_c00296{width:6.163200px;}
._4_c00296{width:8.856000px;}
._6_c00296{width:9.950400px;}
._3_c00296{width:13.478400px;}
._a_c00296{width:14.889600px;}
._5_c00296{width:16.228800px;}
._9_c00296{width:35.604000px;}
._2_c00296{width:38.138400px;}
.fc1_c00296{color:transparent;}
.fc0_c00296{color:rgb(0,0,0);}
.fs0_c00296{font-size:72.000000px;}
.y0_c00296{bottom:0.000000px;}
.y5_c00296{bottom:5.040000px;}
.y1_c00296{bottom:12.735000px;}
.y3_c00296{bottom:45.405000px;}
.y4_c00296{bottom:53.100000px;}
.y21_c00296{bottom:111.645000px;}
.y20_c00296{bottom:147.645000px;}
.y1f_c00296{bottom:183.645000px;}
.y1e_c00296{bottom:219.645000px;}
.y1d_c00296{bottom:255.645000px;}
.y1c_c00296{bottom:291.645000px;}
.y1b_c00296{bottom:327.645000px;}
.y1a_c00296{bottom:363.645000px;}
.y19_c00296{bottom:399.645000px;}
.y18_c00296{bottom:435.645000px;}
.y17_c00296{bottom:471.645000px;}
.y16_c00296{bottom:507.645000px;}
.y15_c00296{bottom:543.645000px;}
.y14_c00296{bottom:579.645000px;}
.y13_c00296{bottom:615.645000px;}
.y12_c00296{bottom:651.645000px;}
.y11_c00296{bottom:687.645000px;}
.y10_c00296{bottom:723.645000px;}
.yf_c00296{bottom:759.645000px;}
.ye_c00296{bottom:795.645000px;}
.yd_c00296{bottom:831.645000px;}
.yc_c00296{bottom:867.645000px;}
.yb_c00296{bottom:903.645000px;}
.ya_c00296{bottom:939.645000px;}
.y9_c00296{bottom:975.645000px;}
.y8_c00296{bottom:1011.645000px;}
.y7_c00296{bottom:1047.645000px;}
.y6_c00296{bottom:1083.645000px;}
.y2_c00296{bottom:1165.005000px;}
.h4_c00296{height:20.880000px;}
.h5_c00296{height:70.628906px;}
.h3_c00296{height:70.664062px;}
.h2_c00296{height:1237.365000px;}
.h0_c00296{height:1262.835000px;}
.h1_c00296{height:1263.000000px;}
.w3_c00296{width:27.360000px;}
.w2_c00296{width:867.465000px;}
.w0_c00296{width:892.935000px;}
.w1_c00296{width:893.250000px;}
.x0_c00296{left:0.000000px;}
.x1_c00296{left:12.735000px;}
.x8_c00296{left:63.450150px;}
.x3_c00296{left:95.397000px;}
.x6_c00296{left:117.450150px;}
.x5_c00296{left:149.400150px;}
.x7_c00296{left:180.450150px;}
.x4_c00296{left:432.855000px;}
.x2_c00296{left:880.125000px;}
@media print{
.v0_c00296{vertical-align:0.000000pt;}
.ls0_c00296{letter-spacing:0.000000pt;}
.ws0_c00296{word-spacing:0.000000pt;}
._1_c00296{width:1.036800pt;}
._b_c00296{width:2.099200pt;}
._7_c00296{width:3.072000pt;}
._0_c00296{width:4.582400pt;}
._8_c00296{width:5.478400pt;}
._4_c00296{width:7.872000pt;}
._6_c00296{width:8.844800pt;}
._3_c00296{width:11.980800pt;}
._a_c00296{width:13.235200pt;}
._5_c00296{width:14.425600pt;}
._9_c00296{width:31.648000pt;}
._2_c00296{width:33.900800pt;}
.fs0_c00296{font-size:64.000000pt;}
.y0_c00296{bottom:0.000000pt;}
.y5_c00296{bottom:4.480000pt;}
.y1_c00296{bottom:11.320000pt;}
.y3_c00296{bottom:40.360000pt;}
.y4_c00296{bottom:47.200000pt;}
.y21_c00296{bottom:99.240000pt;}
.y20_c00296{bottom:131.240000pt;}
.y1f_c00296{bottom:163.240000pt;}
.y1e_c00296{bottom:195.240000pt;}
.y1d_c00296{bottom:227.240000pt;}
.y1c_c00296{bottom:259.240000pt;}
.y1b_c00296{bottom:291.240000pt;}
.y1a_c00296{bottom:323.240000pt;}
.y19_c00296{bottom:355.240000pt;}
.y18_c00296{bottom:387.240000pt;}
.y17_c00296{bottom:419.240000pt;}
.y16_c00296{bottom:451.240000pt;}
.y15_c00296{bottom:483.240000pt;}
.y14_c00296{bottom:515.240000pt;}
.y13_c00296{bottom:547.240000pt;}
.y12_c00296{bottom:579.240000pt;}
.y11_c00296{bottom:611.240000pt;}
.y10_c00296{bottom:643.240000pt;}
.yf_c00296{bottom:675.240000pt;}
.ye_c00296{bottom:707.240000pt;}
.yd_c00296{bottom:739.240000pt;}
.yc_c00296{bottom:771.240000pt;}
.yb_c00296{bottom:803.240000pt;}
.ya_c00296{bottom:835.240000pt;}
.y9_c00296{bottom:867.240000pt;}
.y8_c00296{bottom:899.240000pt;}
.y7_c00296{bottom:931.240000pt;}
.y6_c00296{bottom:963.240000pt;}
.y2_c00296{bottom:1035.560000pt;}
.h4_c00296{height:18.560000pt;}
.h5_c00296{height:62.781250pt;}
.h3_c00296{height:62.812500pt;}
.h2_c00296{height:1099.880000pt;}
.h0_c00296{height:1122.520000pt;}
.h1_c00296{height:1122.666667pt;}
.w3_c00296{width:24.320000pt;}
.w2_c00296{width:771.080000pt;}
.w0_c00296{width:793.720000pt;}
.w1_c00296{width:794.000000pt;}
.x0_c00296{left:0.000000pt;}
.x1_c00296{left:11.320000pt;}
.x8_c00296{left:56.400133pt;}
.x3_c00296{left:84.797333pt;}
.x6_c00296{left:104.400133pt;}
.x5_c00296{left:132.800133pt;}
.x7_c00296{left:160.400133pt;}
.x4_c00296{left:384.760000pt;}
.x2_c00296{left:782.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_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_41686a5dc4693dcb3d610dab.woff2')format("woff");}.ff1_c00297{font-family:ff1_c00297;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00297;src:url('chunks/assets/font_179d929a22e56406e32459e2.woff2')format("woff");}.ff2_c00297{font-family:ff2_c00297;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00297{letter-spacing:0.000000px;}
.ls1_c00297{letter-spacing:0.167040px;}
.ls0_c00297{letter-spacing:0.242208px;}
.ls4_c00297{letter-spacing:0.317376px;}
.ls3_c00297{letter-spacing:0.359136px;}
.sc__c00297{text-shadow:none;}
.sc0_c00297{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00297{-webkit-text-stroke:0px transparent;}
.sc0_c00297{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00297{word-spacing:-21.239136px;}
.ws1_c00297{word-spacing:0.000000px;}
._0_c00297{margin-left:-1.027296px;}
._1_c00297{width:1.879200px;}
._5_c00297{width:3.376800px;}
._8_c00297{width:5.112000px;}
._6_c00297{width:6.170400px;}
._4_c00297{width:7.344000px;}
._3_c00297{width:9.864000px;}
._2_c00297{width:13.017600px;}
._9_c00297{width:14.796000px;}
._7_c00297{width:16.704000px;}
.fc2_c00297{color:transparent;}
.fc1_c00297{color:rgb(127,127,127);}
.fc0_c00297{color:rgb(0,0,0);}
.fs0_c00297{font-size:72.000000px;}
.fs1_c00297{font-size:83.520000px;}
.y0_c00297{bottom:0.000000px;}
.y5_c00297{bottom:5.040000px;}
.y1_c00297{bottom:12.735000px;}
.y3_c00297{bottom:45.405000px;}
.y4_c00297{bottom:53.100000px;}
.y21_c00297{bottom:111.645000px;}
.y20_c00297{bottom:147.645000px;}
.y1f_c00297{bottom:183.645000px;}
.y1e_c00297{bottom:219.645000px;}
.y1d_c00297{bottom:255.645000px;}
.y1c_c00297{bottom:291.645000px;}
.y1b_c00297{bottom:327.645000px;}
.y1a_c00297{bottom:363.645000px;}
.y19_c00297{bottom:399.645000px;}
.y18_c00297{bottom:435.645000px;}
.y17_c00297{bottom:471.645000px;}
.y16_c00297{bottom:507.645000px;}
.y15_c00297{bottom:543.645000px;}
.y14_c00297{bottom:579.645000px;}
.y13_c00297{bottom:615.645000px;}
.y12_c00297{bottom:651.645000px;}
.y11_c00297{bottom:687.645000px;}
.y10_c00297{bottom:723.645000px;}
.yf_c00297{bottom:759.645000px;}
.ye_c00297{bottom:795.645000px;}
.yd_c00297{bottom:831.645000px;}
.yc_c00297{bottom:867.645000px;}
.yb_c00297{bottom:903.645000px;}
.ya_c00297{bottom:939.645000px;}
.y9_c00297{bottom:975.645000px;}
.y8_c00297{bottom:1011.645000px;}
.y7_c00297{bottom:1047.645000px;}
.y6_c00297{bottom:1084.365000px;}
.y2_c00297{bottom:1165.005000px;}
.h4_c00297{height:20.880000px;}
.h6_c00297{height:70.628906px;}
.h3_c00297{height:70.664062px;}
.h5_c00297{height:81.929531px;}
.h2_c00297{height:1237.365000px;}
.h0_c00297{height:1262.835000px;}
.h1_c00297{height:1263.000000px;}
.w3_c00297{width:27.360000px;}
.w2_c00297{width:867.465000px;}
.w0_c00297{width:892.935000px;}
.w1_c00297{width:893.250000px;}
.x0_c00297{left:0.000000px;}
.x1_c00297{left:12.735000px;}
.x3_c00297{left:95.394300px;}
.x5_c00297{left:117.450000px;}
.x6_c00297{left:148.572000px;}
.x4_c00297{left:432.855000px;}
.x2_c00297{left:880.050300px;}
@media print{
.v0_c00297{vertical-align:0.000000pt;}
.ls2_c00297{letter-spacing:0.000000pt;}
.ls1_c00297{letter-spacing:0.148480pt;}
.ls0_c00297{letter-spacing:0.215296pt;}
.ls4_c00297{letter-spacing:0.282112pt;}
.ls3_c00297{letter-spacing:0.319232pt;}
.ws0_c00297{word-spacing:-18.879232pt;}
.ws1_c00297{word-spacing:0.000000pt;}
._0_c00297{margin-left:-0.913152pt;}
._1_c00297{width:1.670400pt;}
._5_c00297{width:3.001600pt;}
._8_c00297{width:4.544000pt;}
._6_c00297{width:5.484800pt;}
._4_c00297{width:6.528000pt;}
._3_c00297{width:8.768000pt;}
._2_c00297{width:11.571200pt;}
._9_c00297{width:13.152000pt;}
._7_c00297{width:14.848000pt;}
.fs0_c00297{font-size:64.000000pt;}
.fs1_c00297{font-size:74.240000pt;}
.y0_c00297{bottom:0.000000pt;}
.y5_c00297{bottom:4.480000pt;}
.y1_c00297{bottom:11.320000pt;}
.y3_c00297{bottom:40.360000pt;}
.y4_c00297{bottom:47.200000pt;}
.y21_c00297{bottom:99.240000pt;}
.y20_c00297{bottom:131.240000pt;}
.y1f_c00297{bottom:163.240000pt;}
.y1e_c00297{bottom:195.240000pt;}
.y1d_c00297{bottom:227.240000pt;}
.y1c_c00297{bottom:259.240000pt;}
.y1b_c00297{bottom:291.240000pt;}
.y1a_c00297{bottom:323.240000pt;}
.y19_c00297{bottom:355.240000pt;}
.y18_c00297{bottom:387.240000pt;}
.y17_c00297{bottom:419.240000pt;}
.y16_c00297{bottom:451.240000pt;}
.y15_c00297{bottom:483.240000pt;}
.y14_c00297{bottom:515.240000pt;}
.y13_c00297{bottom:547.240000pt;}
.y12_c00297{bottom:579.240000pt;}
.y11_c00297{bottom:611.240000pt;}
.y10_c00297{bottom:643.240000pt;}
.yf_c00297{bottom:675.240000pt;}
.ye_c00297{bottom:707.240000pt;}
.yd_c00297{bottom:739.240000pt;}
.yc_c00297{bottom:771.240000pt;}
.yb_c00297{bottom:803.240000pt;}
.ya_c00297{bottom:835.240000pt;}
.y9_c00297{bottom:867.240000pt;}
.y8_c00297{bottom:899.240000pt;}
.y7_c00297{bottom:931.240000pt;}
.y6_c00297{bottom:963.880000pt;}
.y2_c00297{bottom:1035.560000pt;}
.h4_c00297{height:18.560000pt;}
.h6_c00297{height:62.781250pt;}
.h3_c00297{height:62.812500pt;}
.h5_c00297{height:72.826250pt;}
.h2_c00297{height:1099.880000pt;}
.h0_c00297{height:1122.520000pt;}
.h1_c00297{height:1122.666667pt;}
.w3_c00297{width:24.320000pt;}
.w2_c00297{width:771.080000pt;}
.w0_c00297{width:793.720000pt;}
.w1_c00297{width:794.000000pt;}
.x0_c00297{left:0.000000pt;}
.x1_c00297{left:11.320000pt;}
.x3_c00297{left:84.794933pt;}
.x5_c00297{left:104.400000pt;}
.x6_c00297{left:132.064000pt;}
.x4_c00297{left:384.760000pt;}
.x2_c00297{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2eb3df96f14d1527b5cffe1a.woff2')format("woff");}.ff1_c00298{font-family:ff1_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:ff2_c00298;src:url('chunks/assets/font_ed8d642e1655da69f0061d9c.woff2')format("woff");}.ff2_c00298{font-family:ff2_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;}
.m0_c00298{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00298{vertical-align:0.000000px;}
.ls1_c00298{letter-spacing:-0.014400px;}
.ls0_c00298{letter-spacing:0.000000px;}
.sc__c00298{text-shadow:none;}
.sc0_c00298{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00298{-webkit-text-stroke:0px transparent;}
.sc0_c00298{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00298{word-spacing:0.000000px;}
._2_c00298{width:1.411200px;}
._3_c00298{width:2.505600px;}
._6_c00298{width:3.549600px;}
._4_c00298{width:5.493600px;}
._a_c00298{width:7.408800px;}
._b_c00298{width:9.136800px;}
._8_c00298{width:10.850400px;}
._1_c00298{width:12.376800px;}
._9_c00298{width:14.673600px;}
._7_c00298{width:16.675200px;}
._5_c00298{width:26.920800px;}
._0_c00298{width:34.380000px;}
.fc1_c00298{color:transparent;}
.fc0_c00298{color:rgb(0,0,0);}
.fs0_c00298{font-size:72.000000px;}
.y0_c00298{bottom:0.000000px;}
.y5_c00298{bottom:5.040000px;}
.y1_c00298{bottom:12.735000px;}
.y3_c00298{bottom:45.405000px;}
.y4_c00298{bottom:53.100000px;}
.y21_c00298{bottom:111.645000px;}
.y20_c00298{bottom:147.645000px;}
.y1f_c00298{bottom:183.645000px;}
.y1e_c00298{bottom:219.645000px;}
.y1d_c00298{bottom:255.645000px;}
.y1c_c00298{bottom:291.645000px;}
.y1b_c00298{bottom:327.645000px;}
.y1a_c00298{bottom:363.645000px;}
.y19_c00298{bottom:399.645000px;}
.y18_c00298{bottom:435.645000px;}
.y17_c00298{bottom:471.645000px;}
.y16_c00298{bottom:507.645000px;}
.y15_c00298{bottom:543.645000px;}
.y14_c00298{bottom:579.645000px;}
.y13_c00298{bottom:615.645000px;}
.y12_c00298{bottom:651.645000px;}
.y11_c00298{bottom:687.645000px;}
.y10_c00298{bottom:723.645000px;}
.yf_c00298{bottom:759.645000px;}
.ye_c00298{bottom:795.645000px;}
.yd_c00298{bottom:831.645000px;}
.yc_c00298{bottom:867.645000px;}
.yb_c00298{bottom:903.645000px;}
.ya_c00298{bottom:939.645000px;}
.y9_c00298{bottom:975.645000px;}
.y8_c00298{bottom:1011.645000px;}
.y7_c00298{bottom:1047.645000px;}
.y6_c00298{bottom:1083.645000px;}
.y2_c00298{bottom:1165.005000px;}
.h4_c00298{height:20.880000px;}
.h3_c00298{height:70.664062px;}
.h2_c00298{height:1237.365000px;}
.h0_c00298{height:1262.835000px;}
.h1_c00298{height:1263.000000px;}
.w3_c00298{width:27.360000px;}
.w2_c00298{width:867.465000px;}
.w0_c00298{width:892.935000px;}
.w1_c00298{width:893.250000px;}
.x0_c00298{left:0.000000px;}
.x1_c00298{left:12.735000px;}
.x3_c00298{left:95.397000px;}
.x5_c00298{left:149.400150px;}
.x4_c00298{left:432.855000px;}
.x2_c00298{left:880.125000px;}
@media print{
.v0_c00298{vertical-align:0.000000pt;}
.ls1_c00298{letter-spacing:-0.012800pt;}
.ls0_c00298{letter-spacing:0.000000pt;}
.ws0_c00298{word-spacing:0.000000pt;}
._2_c00298{width:1.254400pt;}
._3_c00298{width:2.227200pt;}
._6_c00298{width:3.155200pt;}
._4_c00298{width:4.883200pt;}
._a_c00298{width:6.585600pt;}
._b_c00298{width:8.121600pt;}
._8_c00298{width:9.644800pt;}
._1_c00298{width:11.001600pt;}
._9_c00298{width:13.043200pt;}
._7_c00298{width:14.822400pt;}
._5_c00298{width:23.929600pt;}
._0_c00298{width:30.560000pt;}
.fs0_c00298{font-size:64.000000pt;}
.y0_c00298{bottom:0.000000pt;}
.y5_c00298{bottom:4.480000pt;}
.y1_c00298{bottom:11.320000pt;}
.y3_c00298{bottom:40.360000pt;}
.y4_c00298{bottom:47.200000pt;}
.y21_c00298{bottom:99.240000pt;}
.y20_c00298{bottom:131.240000pt;}
.y1f_c00298{bottom:163.240000pt;}
.y1e_c00298{bottom:195.240000pt;}
.y1d_c00298{bottom:227.240000pt;}
.y1c_c00298{bottom:259.240000pt;}
.y1b_c00298{bottom:291.240000pt;}
.y1a_c00298{bottom:323.240000pt;}
.y19_c00298{bottom:355.240000pt;}
.y18_c00298{bottom:387.240000pt;}
.y17_c00298{bottom:419.240000pt;}
.y16_c00298{bottom:451.240000pt;}
.y15_c00298{bottom:483.240000pt;}
.y14_c00298{bottom:515.240000pt;}
.y13_c00298{bottom:547.240000pt;}
.y12_c00298{bottom:579.240000pt;}
.y11_c00298{bottom:611.240000pt;}
.y10_c00298{bottom:643.240000pt;}
.yf_c00298{bottom:675.240000pt;}
.ye_c00298{bottom:707.240000pt;}
.yd_c00298{bottom:739.240000pt;}
.yc_c00298{bottom:771.240000pt;}
.yb_c00298{bottom:803.240000pt;}
.ya_c00298{bottom:835.240000pt;}
.y9_c00298{bottom:867.240000pt;}
.y8_c00298{bottom:899.240000pt;}
.y7_c00298{bottom:931.240000pt;}
.y6_c00298{bottom:963.240000pt;}
.y2_c00298{bottom:1035.560000pt;}
.h4_c00298{height:18.560000pt;}
.h3_c00298{height:62.812500pt;}
.h2_c00298{height:1099.880000pt;}
.h0_c00298{height:1122.520000pt;}
.h1_c00298{height:1122.666667pt;}
.w3_c00298{width:24.320000pt;}
.w2_c00298{width:771.080000pt;}
.w0_c00298{width:793.720000pt;}
.w1_c00298{width:794.000000pt;}
.x0_c00298{left:0.000000pt;}
.x1_c00298{left:11.320000pt;}
.x3_c00298{left:84.797333pt;}
.x5_c00298{left:132.800133pt;}
.x4_c00298{left:384.760000pt;}
.x2_c00298{left:782.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_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_902e51135210ef940ff16ef2.woff2')format("woff");}.ff1_c00299{font-family:ff1_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:ff2_c00299;src:url('chunks/assets/font_9b02733381cc2f452851ad32.woff2')format("woff");}.ff2_c00299{font-family:ff2_c00299;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00299{letter-spacing:0.000000px;}
.sc__c00299{text-shadow:none;}
.sc0_c00299{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00299{-webkit-text-stroke:0px transparent;}
.sc0_c00299{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00299{word-spacing:0.000000px;}
._2_c00299{width:1.152000px;}
._6_c00299{width:2.793600px;}
._9_c00299{width:4.492800px;}
._a_c00299{width:5.565600px;}
._5_c00299{width:6.962400px;}
._3_c00299{width:8.013600px;}
._1_c00299{width:9.079200px;}
._8_c00299{width:10.324800px;}
._7_c00299{width:11.995200px;}
._4_c00299{width:14.392800px;}
._0_c00299{width:16.020000px;}
._c_c00299{width:20.995200px;}
._b_c00299{width:24.609600px;}
.fc1_c00299{color:transparent;}
.fc0_c00299{color:rgb(0,0,0);}
.fs0_c00299{font-size:72.000000px;}
.y0_c00299{bottom:0.000000px;}
.y5_c00299{bottom:5.040000px;}
.y1_c00299{bottom:12.735000px;}
.y3_c00299{bottom:45.405000px;}
.y4_c00299{bottom:53.100000px;}
.y21_c00299{bottom:111.645000px;}
.y20_c00299{bottom:147.645000px;}
.y1f_c00299{bottom:183.645000px;}
.y1e_c00299{bottom:219.645000px;}
.y1d_c00299{bottom:255.645000px;}
.y1c_c00299{bottom:291.645000px;}
.y1b_c00299{bottom:327.645000px;}
.y1a_c00299{bottom:363.645000px;}
.y19_c00299{bottom:399.645000px;}
.y18_c00299{bottom:435.645000px;}
.y17_c00299{bottom:471.645000px;}
.y16_c00299{bottom:507.645000px;}
.y15_c00299{bottom:543.645000px;}
.y14_c00299{bottom:579.645000px;}
.y13_c00299{bottom:615.645000px;}
.y12_c00299{bottom:651.645000px;}
.y11_c00299{bottom:687.645000px;}
.y10_c00299{bottom:723.645000px;}
.yf_c00299{bottom:759.645000px;}
.ye_c00299{bottom:795.645000px;}
.yd_c00299{bottom:831.645000px;}
.yc_c00299{bottom:867.645000px;}
.yb_c00299{bottom:903.645000px;}
.ya_c00299{bottom:939.645000px;}
.y9_c00299{bottom:975.645000px;}
.y8_c00299{bottom:1011.645000px;}
.y7_c00299{bottom:1047.645000px;}
.y6_c00299{bottom:1083.645000px;}
.y2_c00299{bottom:1165.005000px;}
.h4_c00299{height:20.880000px;}
.h3_c00299{height:70.664062px;}
.h2_c00299{height:1237.365000px;}
.h0_c00299{height:1262.835000px;}
.h1_c00299{height:1263.000000px;}
.w3_c00299{width:27.360000px;}
.w2_c00299{width:867.465000px;}
.w0_c00299{width:892.935000px;}
.w1_c00299{width:893.250000px;}
.x0_c00299{left:0.000000px;}
.x1_c00299{left:12.735000px;}
.x3_c00299{left:95.394300px;}
.x5_c00299{left:149.400150px;}
.x4_c00299{left:432.855000px;}
.x2_c00299{left:880.050300px;}
@media print{
.v0_c00299{vertical-align:0.000000pt;}
.ls0_c00299{letter-spacing:0.000000pt;}
.ws0_c00299{word-spacing:0.000000pt;}
._2_c00299{width:1.024000pt;}
._6_c00299{width:2.483200pt;}
._9_c00299{width:3.993600pt;}
._a_c00299{width:4.947200pt;}
._5_c00299{width:6.188800pt;}
._3_c00299{width:7.123200pt;}
._1_c00299{width:8.070400pt;}
._8_c00299{width:9.177600pt;}
._7_c00299{width:10.662400pt;}
._4_c00299{width:12.793600pt;}
._0_c00299{width:14.240000pt;}
._c_c00299{width:18.662400pt;}
._b_c00299{width:21.875200pt;}
.fs0_c00299{font-size:64.000000pt;}
.y0_c00299{bottom:0.000000pt;}
.y5_c00299{bottom:4.480000pt;}
.y1_c00299{bottom:11.320000pt;}
.y3_c00299{bottom:40.360000pt;}
.y4_c00299{bottom:47.200000pt;}
.y21_c00299{bottom:99.240000pt;}
.y20_c00299{bottom:131.240000pt;}
.y1f_c00299{bottom:163.240000pt;}
.y1e_c00299{bottom:195.240000pt;}
.y1d_c00299{bottom:227.240000pt;}
.y1c_c00299{bottom:259.240000pt;}
.y1b_c00299{bottom:291.240000pt;}
.y1a_c00299{bottom:323.240000pt;}
.y19_c00299{bottom:355.240000pt;}
.y18_c00299{bottom:387.240000pt;}
.y17_c00299{bottom:419.240000pt;}
.y16_c00299{bottom:451.240000pt;}
.y15_c00299{bottom:483.240000pt;}
.y14_c00299{bottom:515.240000pt;}
.y13_c00299{bottom:547.240000pt;}
.y12_c00299{bottom:579.240000pt;}
.y11_c00299{bottom:611.240000pt;}
.y10_c00299{bottom:643.240000pt;}
.yf_c00299{bottom:675.240000pt;}
.ye_c00299{bottom:707.240000pt;}
.yd_c00299{bottom:739.240000pt;}
.yc_c00299{bottom:771.240000pt;}
.yb_c00299{bottom:803.240000pt;}
.ya_c00299{bottom:835.240000pt;}
.y9_c00299{bottom:867.240000pt;}
.y8_c00299{bottom:899.240000pt;}
.y7_c00299{bottom:931.240000pt;}
.y6_c00299{bottom:963.240000pt;}
.y2_c00299{bottom:1035.560000pt;}
.h4_c00299{height:18.560000pt;}
.h3_c00299{height:62.812500pt;}
.h2_c00299{height:1099.880000pt;}
.h0_c00299{height:1122.520000pt;}
.h1_c00299{height:1122.666667pt;}
.w3_c00299{width:24.320000pt;}
.w2_c00299{width:771.080000pt;}
.w0_c00299{width:793.720000pt;}
.w1_c00299{width:794.000000pt;}
.x0_c00299{left:0.000000pt;}
.x1_c00299{left:11.320000pt;}
.x3_c00299{left:84.794933pt;}
.x5_c00299{left:132.800133pt;}
.x4_c00299{left:384.760000pt;}
.x2_c00299{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_077446e3858f76bc9ee661a8.woff2')format("woff");}.ff1_c00300{font-family:ff1_c00300;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00300;src:url('chunks/assets/font_92f0a18ef08a1caea53b0646.woff2')format("woff");}.ff2_c00300{font-family:ff2_c00300;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00300{letter-spacing:-0.014400px;}
.ls0_c00300{letter-spacing:0.000000px;}
.sc__c00300{text-shadow:none;}
.sc0_c00300{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00300{-webkit-text-stroke:0px transparent;}
.sc0_c00300{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00300{word-spacing:0.000000px;}
._c_c00300{width:2.167200px;}
._1_c00300{width:3.247200px;}
._7_c00300{width:4.795200px;}
._4_c00300{width:5.954400px;}
._3_c00300{width:7.596000px;}
._0_c00300{width:9.021600px;}
._6_c00300{width:10.072800px;}
._b_c00300{width:11.210400px;}
._5_c00300{width:12.333600px;}
._9_c00300{width:15.660000px;}
._2_c00300{width:19.065600px;}
._a_c00300{width:20.102400px;}
._8_c00300{width:21.988800px;}
._d_c00300{width:35.611200px;}
._e_c00300{width:38.808000px;}
.fc1_c00300{color:transparent;}
.fc0_c00300{color:rgb(0,0,0);}
.fs0_c00300{font-size:72.000000px;}
.y0_c00300{bottom:0.000000px;}
.y5_c00300{bottom:5.040000px;}
.y1_c00300{bottom:12.735000px;}
.y3_c00300{bottom:45.405000px;}
.y4_c00300{bottom:53.100000px;}
.y21_c00300{bottom:111.645000px;}
.y20_c00300{bottom:147.645000px;}
.y1f_c00300{bottom:183.645000px;}
.y1e_c00300{bottom:219.645000px;}
.y1d_c00300{bottom:255.645000px;}
.y1c_c00300{bottom:291.645000px;}
.y1b_c00300{bottom:327.645000px;}
.y1a_c00300{bottom:363.645000px;}
.y19_c00300{bottom:399.645000px;}
.y18_c00300{bottom:435.645000px;}
.y17_c00300{bottom:471.645000px;}
.y16_c00300{bottom:507.645000px;}
.y15_c00300{bottom:543.645000px;}
.y14_c00300{bottom:579.645000px;}
.y13_c00300{bottom:615.645000px;}
.y12_c00300{bottom:651.645000px;}
.y11_c00300{bottom:687.645000px;}
.y10_c00300{bottom:723.645000px;}
.yf_c00300{bottom:759.645000px;}
.ye_c00300{bottom:795.645000px;}
.yd_c00300{bottom:831.645000px;}
.yc_c00300{bottom:867.645000px;}
.yb_c00300{bottom:903.645000px;}
.ya_c00300{bottom:939.645000px;}
.y9_c00300{bottom:975.645000px;}
.y8_c00300{bottom:1011.645000px;}
.y7_c00300{bottom:1047.645000px;}
.y6_c00300{bottom:1083.645000px;}
.y2_c00300{bottom:1165.005000px;}
.h4_c00300{height:20.880000px;}
.h3_c00300{height:70.664062px;}
.h2_c00300{height:1237.365000px;}
.h0_c00300{height:1262.835000px;}
.h1_c00300{height:1263.000000px;}
.w3_c00300{width:27.360000px;}
.w2_c00300{width:867.465000px;}
.w0_c00300{width:892.935000px;}
.w1_c00300{width:893.250000px;}
.x0_c00300{left:0.000000px;}
.x1_c00300{left:12.735000px;}
.x3_c00300{left:95.397000px;}
.x5_c00300{left:149.400150px;}
.x4_c00300{left:432.855000px;}
.x2_c00300{left:880.125000px;}
@media print{
.v0_c00300{vertical-align:0.000000pt;}
.ls1_c00300{letter-spacing:-0.012800pt;}
.ls0_c00300{letter-spacing:0.000000pt;}
.ws0_c00300{word-spacing:0.000000pt;}
._c_c00300{width:1.926400pt;}
._1_c00300{width:2.886400pt;}
._7_c00300{width:4.262400pt;}
._4_c00300{width:5.292800pt;}
._3_c00300{width:6.752000pt;}
._0_c00300{width:8.019200pt;}
._6_c00300{width:8.953600pt;}
._b_c00300{width:9.964800pt;}
._5_c00300{width:10.963200pt;}
._9_c00300{width:13.920000pt;}
._2_c00300{width:16.947200pt;}
._a_c00300{width:17.868800pt;}
._8_c00300{width:19.545600pt;}
._d_c00300{width:31.654400pt;}
._e_c00300{width:34.496000pt;}
.fs0_c00300{font-size:64.000000pt;}
.y0_c00300{bottom:0.000000pt;}
.y5_c00300{bottom:4.480000pt;}
.y1_c00300{bottom:11.320000pt;}
.y3_c00300{bottom:40.360000pt;}
.y4_c00300{bottom:47.200000pt;}
.y21_c00300{bottom:99.240000pt;}
.y20_c00300{bottom:131.240000pt;}
.y1f_c00300{bottom:163.240000pt;}
.y1e_c00300{bottom:195.240000pt;}
.y1d_c00300{bottom:227.240000pt;}
.y1c_c00300{bottom:259.240000pt;}
.y1b_c00300{bottom:291.240000pt;}
.y1a_c00300{bottom:323.240000pt;}
.y19_c00300{bottom:355.240000pt;}
.y18_c00300{bottom:387.240000pt;}
.y17_c00300{bottom:419.240000pt;}
.y16_c00300{bottom:451.240000pt;}
.y15_c00300{bottom:483.240000pt;}
.y14_c00300{bottom:515.240000pt;}
.y13_c00300{bottom:547.240000pt;}
.y12_c00300{bottom:579.240000pt;}
.y11_c00300{bottom:611.240000pt;}
.y10_c00300{bottom:643.240000pt;}
.yf_c00300{bottom:675.240000pt;}
.ye_c00300{bottom:707.240000pt;}
.yd_c00300{bottom:739.240000pt;}
.yc_c00300{bottom:771.240000pt;}
.yb_c00300{bottom:803.240000pt;}
.ya_c00300{bottom:835.240000pt;}
.y9_c00300{bottom:867.240000pt;}
.y8_c00300{bottom:899.240000pt;}
.y7_c00300{bottom:931.240000pt;}
.y6_c00300{bottom:963.240000pt;}
.y2_c00300{bottom:1035.560000pt;}
.h4_c00300{height:18.560000pt;}
.h3_c00300{height:62.812500pt;}
.h2_c00300{height:1099.880000pt;}
.h0_c00300{height:1122.520000pt;}
.h1_c00300{height:1122.666667pt;}
.w3_c00300{width:24.320000pt;}
.w2_c00300{width:771.080000pt;}
.w0_c00300{width:793.720000pt;}
.w1_c00300{width:794.000000pt;}
.x0_c00300{left:0.000000pt;}
.x1_c00300{left:11.320000pt;}
.x3_c00300{left:84.797333pt;}
.x5_c00300{left:132.800133pt;}
.x4_c00300{left:384.760000pt;}
.x2_c00300{left:782.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_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_8eb60082ee340910e7da4ff6.woff2')format("woff");}.ff1_c00301{font-family:ff1_c00301;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00301{letter-spacing:0.000000px;}
.sc__c00301{text-shadow:none;}
.sc0_c00301{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00301{-webkit-text-stroke:0px transparent;}
.sc0_c00301{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00301{word-spacing:0.000000px;}
._1_c00301{width:3.614400px;}
._0_c00301{width:4.665600px;}
._8_c00301{width:6.098400px;}
._7_c00301{width:7.142400px;}
._9_c00301{width:8.553600px;}
._c_c00301{width:9.720000px;}
._2_c00301{width:12.002400px;}
._b_c00301{width:13.082400px;}
._4_c00301{width:14.846400px;}
._a_c00301{width:16.833600px;}
._6_c00301{width:22.809600px;}
._3_c00301{width:24.350400px;}
._5_c00301{width:31.392000px;}
._d_c00301{width:37.807200px;}
.fc1_c00301{color:transparent;}
.fc0_c00301{color:rgb(0,0,0);}
.fs0_c00301{font-size:72.000000px;}
.y0_c00301{bottom:0.000000px;}
.y5_c00301{bottom:5.040000px;}
.y1_c00301{bottom:12.735000px;}
.y3_c00301{bottom:45.405000px;}
.y4_c00301{bottom:53.100000px;}
.y21_c00301{bottom:111.645000px;}
.y20_c00301{bottom:147.645000px;}
.y1f_c00301{bottom:183.645000px;}
.y1e_c00301{bottom:219.645000px;}
.y1d_c00301{bottom:255.645000px;}
.y1c_c00301{bottom:291.645000px;}
.y1b_c00301{bottom:327.645000px;}
.y1a_c00301{bottom:363.645000px;}
.y19_c00301{bottom:399.645000px;}
.y18_c00301{bottom:435.645000px;}
.y17_c00301{bottom:471.645000px;}
.y16_c00301{bottom:507.645000px;}
.y15_c00301{bottom:543.645000px;}
.y14_c00301{bottom:579.645000px;}
.y13_c00301{bottom:615.645000px;}
.y12_c00301{bottom:651.645000px;}
.y11_c00301{bottom:687.645000px;}
.y10_c00301{bottom:723.645000px;}
.yf_c00301{bottom:759.645000px;}
.ye_c00301{bottom:795.645000px;}
.yd_c00301{bottom:831.645000px;}
.yc_c00301{bottom:867.645000px;}
.yb_c00301{bottom:903.645000px;}
.ya_c00301{bottom:939.645000px;}
.y9_c00301{bottom:975.645000px;}
.y8_c00301{bottom:1011.645000px;}
.y7_c00301{bottom:1047.645000px;}
.y6_c00301{bottom:1083.645000px;}
.y2_c00301{bottom:1165.005000px;}
.h4_c00301{height:20.880000px;}
.h3_c00301{height:70.664062px;}
.h2_c00301{height:1237.365000px;}
.h0_c00301{height:1262.835000px;}
.h1_c00301{height:1263.000000px;}
.w3_c00301{width:27.360000px;}
.w2_c00301{width:867.465000px;}
.w0_c00301{width:892.935000px;}
.w1_c00301{width:893.250000px;}
.x0_c00301{left:0.000000px;}
.x1_c00301{left:12.735000px;}
.x3_c00301{left:95.394300px;}
.x5_c00301{left:149.400150px;}
.x4_c00301{left:432.855000px;}
.x2_c00301{left:880.050300px;}
@media print{
.v0_c00301{vertical-align:0.000000pt;}
.ls0_c00301{letter-spacing:0.000000pt;}
.ws0_c00301{word-spacing:0.000000pt;}
._1_c00301{width:3.212800pt;}
._0_c00301{width:4.147200pt;}
._8_c00301{width:5.420800pt;}
._7_c00301{width:6.348800pt;}
._9_c00301{width:7.603200pt;}
._c_c00301{width:8.640000pt;}
._2_c00301{width:10.668800pt;}
._b_c00301{width:11.628800pt;}
._4_c00301{width:13.196800pt;}
._a_c00301{width:14.963200pt;}
._6_c00301{width:20.275200pt;}
._3_c00301{width:21.644800pt;}
._5_c00301{width:27.904000pt;}
._d_c00301{width:33.606400pt;}
.fs0_c00301{font-size:64.000000pt;}
.y0_c00301{bottom:0.000000pt;}
.y5_c00301{bottom:4.480000pt;}
.y1_c00301{bottom:11.320000pt;}
.y3_c00301{bottom:40.360000pt;}
.y4_c00301{bottom:47.200000pt;}
.y21_c00301{bottom:99.240000pt;}
.y20_c00301{bottom:131.240000pt;}
.y1f_c00301{bottom:163.240000pt;}
.y1e_c00301{bottom:195.240000pt;}
.y1d_c00301{bottom:227.240000pt;}
.y1c_c00301{bottom:259.240000pt;}
.y1b_c00301{bottom:291.240000pt;}
.y1a_c00301{bottom:323.240000pt;}
.y19_c00301{bottom:355.240000pt;}
.y18_c00301{bottom:387.240000pt;}
.y17_c00301{bottom:419.240000pt;}
.y16_c00301{bottom:451.240000pt;}
.y15_c00301{bottom:483.240000pt;}
.y14_c00301{bottom:515.240000pt;}
.y13_c00301{bottom:547.240000pt;}
.y12_c00301{bottom:579.240000pt;}
.y11_c00301{bottom:611.240000pt;}
.y10_c00301{bottom:643.240000pt;}
.yf_c00301{bottom:675.240000pt;}
.ye_c00301{bottom:707.240000pt;}
.yd_c00301{bottom:739.240000pt;}
.yc_c00301{bottom:771.240000pt;}
.yb_c00301{bottom:803.240000pt;}
.ya_c00301{bottom:835.240000pt;}
.y9_c00301{bottom:867.240000pt;}
.y8_c00301{bottom:899.240000pt;}
.y7_c00301{bottom:931.240000pt;}
.y6_c00301{bottom:963.240000pt;}
.y2_c00301{bottom:1035.560000pt;}
.h4_c00301{height:18.560000pt;}
.h3_c00301{height:62.812500pt;}
.h2_c00301{height:1099.880000pt;}
.h0_c00301{height:1122.520000pt;}
.h1_c00301{height:1122.666667pt;}
.w3_c00301{width:24.320000pt;}
.w2_c00301{width:771.080000pt;}
.w0_c00301{width:793.720000pt;}
.w1_c00301{width:794.000000pt;}
.x0_c00301{left:0.000000pt;}
.x1_c00301{left:11.320000pt;}
.x3_c00301{left:84.794933pt;}
.x5_c00301{left:132.800133pt;}
.x4_c00301{left:384.760000pt;}
.x2_c00301{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8f0ec3d7581726b12eda9c38.woff2')format("woff");}.ff1_c00302{font-family:ff1_c00302;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00302;src:url('chunks/assets/font_1b9aa7eb846898c551f9a13e.woff2')format("woff");}.ff2_c00302{font-family:ff2_c00302;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00302{letter-spacing:-0.014400px;}
.ls0_c00302{letter-spacing:0.000000px;}
.sc__c00302{text-shadow:none;}
.sc0_c00302{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00302{-webkit-text-stroke:0px transparent;}
.sc0_c00302{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00302{word-spacing:0.000000px;}
._1_c00302{margin-left:-1.044000px;}
._3_c00302{width:1.008000px;}
._2_c00302{width:2.728800px;}
._7_c00302{width:3.866400px;}
._9_c00302{width:4.881600px;}
._6_c00302{width:6.760800px;}
._8_c00302{width:8.136000px;}
._0_c00302{width:9.943200px;}
._5_c00302{width:11.613600px;}
._b_c00302{width:12.664800px;}
._a_c00302{width:14.162400px;}
._d_c00302{width:15.674400px;}
._c_c00302{width:16.927200px;}
._4_c00302{width:20.937600px;}
.fc1_c00302{color:transparent;}
.fc0_c00302{color:rgb(0,0,0);}
.fs0_c00302{font-size:72.000000px;}
.y0_c00302{bottom:0.000000px;}
.y5_c00302{bottom:5.040000px;}
.y1_c00302{bottom:12.735000px;}
.y3_c00302{bottom:45.405000px;}
.y4_c00302{bottom:53.100000px;}
.y21_c00302{bottom:111.645000px;}
.y20_c00302{bottom:147.645000px;}
.y1f_c00302{bottom:183.645000px;}
.y1e_c00302{bottom:219.645000px;}
.y1d_c00302{bottom:255.645000px;}
.y1c_c00302{bottom:291.645000px;}
.y1b_c00302{bottom:327.645000px;}
.y1a_c00302{bottom:363.645000px;}
.y19_c00302{bottom:399.645000px;}
.y18_c00302{bottom:435.645000px;}
.y17_c00302{bottom:471.645000px;}
.y16_c00302{bottom:507.645000px;}
.y15_c00302{bottom:543.645000px;}
.y14_c00302{bottom:579.645000px;}
.y13_c00302{bottom:615.645000px;}
.y12_c00302{bottom:651.645000px;}
.y11_c00302{bottom:687.645000px;}
.y10_c00302{bottom:723.645000px;}
.yf_c00302{bottom:759.645000px;}
.ye_c00302{bottom:795.645000px;}
.yd_c00302{bottom:831.645000px;}
.yc_c00302{bottom:867.645000px;}
.yb_c00302{bottom:903.645000px;}
.ya_c00302{bottom:939.645000px;}
.y9_c00302{bottom:975.645000px;}
.y8_c00302{bottom:1011.645000px;}
.y7_c00302{bottom:1047.645000px;}
.y6_c00302{bottom:1083.645000px;}
.y2_c00302{bottom:1165.005000px;}
.h4_c00302{height:20.880000px;}
.h3_c00302{height:70.664062px;}
.h2_c00302{height:1237.365000px;}
.h0_c00302{height:1262.835000px;}
.h1_c00302{height:1263.000000px;}
.w3_c00302{width:27.360000px;}
.w2_c00302{width:867.465000px;}
.w0_c00302{width:892.935000px;}
.w1_c00302{width:893.250000px;}
.x0_c00302{left:0.000000px;}
.x1_c00302{left:12.735000px;}
.x3_c00302{left:95.397000px;}
.x5_c00302{left:149.400150px;}
.x4_c00302{left:432.855000px;}
.x2_c00302{left:880.125000px;}
@media print{
.v0_c00302{vertical-align:0.000000pt;}
.ls1_c00302{letter-spacing:-0.012800pt;}
.ls0_c00302{letter-spacing:0.000000pt;}
.ws0_c00302{word-spacing:0.000000pt;}
._1_c00302{margin-left:-0.928000pt;}
._3_c00302{width:0.896000pt;}
._2_c00302{width:2.425600pt;}
._7_c00302{width:3.436800pt;}
._9_c00302{width:4.339200pt;}
._6_c00302{width:6.009600pt;}
._8_c00302{width:7.232000pt;}
._0_c00302{width:8.838400pt;}
._5_c00302{width:10.323200pt;}
._b_c00302{width:11.257600pt;}
._a_c00302{width:12.588800pt;}
._d_c00302{width:13.932800pt;}
._c_c00302{width:15.046400pt;}
._4_c00302{width:18.611200pt;}
.fs0_c00302{font-size:64.000000pt;}
.y0_c00302{bottom:0.000000pt;}
.y5_c00302{bottom:4.480000pt;}
.y1_c00302{bottom:11.320000pt;}
.y3_c00302{bottom:40.360000pt;}
.y4_c00302{bottom:47.200000pt;}
.y21_c00302{bottom:99.240000pt;}
.y20_c00302{bottom:131.240000pt;}
.y1f_c00302{bottom:163.240000pt;}
.y1e_c00302{bottom:195.240000pt;}
.y1d_c00302{bottom:227.240000pt;}
.y1c_c00302{bottom:259.240000pt;}
.y1b_c00302{bottom:291.240000pt;}
.y1a_c00302{bottom:323.240000pt;}
.y19_c00302{bottom:355.240000pt;}
.y18_c00302{bottom:387.240000pt;}
.y17_c00302{bottom:419.240000pt;}
.y16_c00302{bottom:451.240000pt;}
.y15_c00302{bottom:483.240000pt;}
.y14_c00302{bottom:515.240000pt;}
.y13_c00302{bottom:547.240000pt;}
.y12_c00302{bottom:579.240000pt;}
.y11_c00302{bottom:611.240000pt;}
.y10_c00302{bottom:643.240000pt;}
.yf_c00302{bottom:675.240000pt;}
.ye_c00302{bottom:707.240000pt;}
.yd_c00302{bottom:739.240000pt;}
.yc_c00302{bottom:771.240000pt;}
.yb_c00302{bottom:803.240000pt;}
.ya_c00302{bottom:835.240000pt;}
.y9_c00302{bottom:867.240000pt;}
.y8_c00302{bottom:899.240000pt;}
.y7_c00302{bottom:931.240000pt;}
.y6_c00302{bottom:963.240000pt;}
.y2_c00302{bottom:1035.560000pt;}
.h4_c00302{height:18.560000pt;}
.h3_c00302{height:62.812500pt;}
.h2_c00302{height:1099.880000pt;}
.h0_c00302{height:1122.520000pt;}
.h1_c00302{height:1122.666667pt;}
.w3_c00302{width:24.320000pt;}
.w2_c00302{width:771.080000pt;}
.w0_c00302{width:793.720000pt;}
.w1_c00302{width:794.000000pt;}
.x0_c00302{left:0.000000pt;}
.x1_c00302{left:11.320000pt;}
.x3_c00302{left:84.797333pt;}
.x5_c00302{left:132.800133pt;}
.x4_c00302{left:384.760000pt;}
.x2_c00302{left:782.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_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_c086f98bccd83e388732925e.woff2')format("woff");}.ff1_c00303{font-family:ff1_c00303;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00303;src:url('chunks/assets/font_3813092d029d1b4198c849b4.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;}
.m0_c00303{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00303{vertical-align:0.000000px;}
.ls0_c00303{letter-spacing:0.000000px;}
.sc__c00303{text-shadow:none;}
.sc0_c00303{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00303{-webkit-text-stroke:0px transparent;}
.sc0_c00303{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00303{word-spacing:0.000000px;}
._0_c00303{width:1.576800px;}
._3_c00303{width:3.016800px;}
._4_c00303{width:4.593600px;}
._1_c00303{width:5.731200px;}
._5_c00303{width:7.272000px;}
._2_c00303{width:8.726400px;}
._7_c00303{width:16.351200px;}
._8_c00303{width:19.022400px;}
._9_c00303{width:21.362400px;}
._6_c00303{width:33.192000px;}
.fc1_c00303{color:transparent;}
.fc0_c00303{color:rgb(0,0,0);}
.fs0_c00303{font-size:72.000000px;}
.y0_c00303{bottom:0.000000px;}
.y5_c00303{bottom:5.040000px;}
.y1_c00303{bottom:12.735000px;}
.y3_c00303{bottom:45.405000px;}
.y4_c00303{bottom:53.100000px;}
.y21_c00303{bottom:111.645000px;}
.y20_c00303{bottom:147.645000px;}
.y1f_c00303{bottom:183.645000px;}
.y1e_c00303{bottom:219.645000px;}
.y1d_c00303{bottom:255.645000px;}
.y1c_c00303{bottom:291.645000px;}
.y1b_c00303{bottom:327.645000px;}
.y1a_c00303{bottom:363.645000px;}
.y19_c00303{bottom:399.645000px;}
.y18_c00303{bottom:435.645000px;}
.y17_c00303{bottom:471.645000px;}
.y16_c00303{bottom:507.645000px;}
.y15_c00303{bottom:543.645000px;}
.y14_c00303{bottom:579.645000px;}
.y13_c00303{bottom:615.645000px;}
.y12_c00303{bottom:651.645000px;}
.y11_c00303{bottom:687.645000px;}
.y10_c00303{bottom:723.645000px;}
.yf_c00303{bottom:759.645000px;}
.ye_c00303{bottom:795.645000px;}
.yd_c00303{bottom:831.645000px;}
.yc_c00303{bottom:867.645000px;}
.yb_c00303{bottom:903.645000px;}
.ya_c00303{bottom:939.645000px;}
.y9_c00303{bottom:975.645000px;}
.y8_c00303{bottom:1011.645000px;}
.y7_c00303{bottom:1047.645000px;}
.y6_c00303{bottom:1083.645000px;}
.y2_c00303{bottom:1165.005000px;}
.h4_c00303{height:20.880000px;}
.h3_c00303{height:70.664062px;}
.h2_c00303{height:1237.365000px;}
.h0_c00303{height:1262.835000px;}
.h1_c00303{height:1263.000000px;}
.w3_c00303{width:27.360000px;}
.w2_c00303{width:867.465000px;}
.w0_c00303{width:892.935000px;}
.w1_c00303{width:893.250000px;}
.x0_c00303{left:0.000000px;}
.x1_c00303{left:12.735000px;}
.x3_c00303{left:95.394300px;}
.x5_c00303{left:149.400150px;}
.x4_c00303{left:432.855000px;}
.x2_c00303{left:880.050300px;}
@media print{
.v0_c00303{vertical-align:0.000000pt;}
.ls0_c00303{letter-spacing:0.000000pt;}
.ws0_c00303{word-spacing:0.000000pt;}
._0_c00303{width:1.401600pt;}
._3_c00303{width:2.681600pt;}
._4_c00303{width:4.083200pt;}
._1_c00303{width:5.094400pt;}
._5_c00303{width:6.464000pt;}
._2_c00303{width:7.756800pt;}
._7_c00303{width:14.534400pt;}
._8_c00303{width:16.908800pt;}
._9_c00303{width:18.988800pt;}
._6_c00303{width:29.504000pt;}
.fs0_c00303{font-size:64.000000pt;}
.y0_c00303{bottom:0.000000pt;}
.y5_c00303{bottom:4.480000pt;}
.y1_c00303{bottom:11.320000pt;}
.y3_c00303{bottom:40.360000pt;}
.y4_c00303{bottom:47.200000pt;}
.y21_c00303{bottom:99.240000pt;}
.y20_c00303{bottom:131.240000pt;}
.y1f_c00303{bottom:163.240000pt;}
.y1e_c00303{bottom:195.240000pt;}
.y1d_c00303{bottom:227.240000pt;}
.y1c_c00303{bottom:259.240000pt;}
.y1b_c00303{bottom:291.240000pt;}
.y1a_c00303{bottom:323.240000pt;}
.y19_c00303{bottom:355.240000pt;}
.y18_c00303{bottom:387.240000pt;}
.y17_c00303{bottom:419.240000pt;}
.y16_c00303{bottom:451.240000pt;}
.y15_c00303{bottom:483.240000pt;}
.y14_c00303{bottom:515.240000pt;}
.y13_c00303{bottom:547.240000pt;}
.y12_c00303{bottom:579.240000pt;}
.y11_c00303{bottom:611.240000pt;}
.y10_c00303{bottom:643.240000pt;}
.yf_c00303{bottom:675.240000pt;}
.ye_c00303{bottom:707.240000pt;}
.yd_c00303{bottom:739.240000pt;}
.yc_c00303{bottom:771.240000pt;}
.yb_c00303{bottom:803.240000pt;}
.ya_c00303{bottom:835.240000pt;}
.y9_c00303{bottom:867.240000pt;}
.y8_c00303{bottom:899.240000pt;}
.y7_c00303{bottom:931.240000pt;}
.y6_c00303{bottom:963.240000pt;}
.y2_c00303{bottom:1035.560000pt;}
.h4_c00303{height:18.560000pt;}
.h3_c00303{height:62.812500pt;}
.h2_c00303{height:1099.880000pt;}
.h0_c00303{height:1122.520000pt;}
.h1_c00303{height:1122.666667pt;}
.w3_c00303{width:24.320000pt;}
.w2_c00303{width:771.080000pt;}
.w0_c00303{width:793.720000pt;}
.w1_c00303{width:794.000000pt;}
.x0_c00303{left:0.000000pt;}
.x1_c00303{left:11.320000pt;}
.x3_c00303{left:84.794933pt;}
.x5_c00303{left:132.800133pt;}
.x4_c00303{left:384.760000pt;}
.x2_c00303{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_15bba593e1bd14bbd02c16cd.woff2')format("woff");}.ff1_c00304{font-family:ff1_c00304;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00304;src:url('chunks/assets/font_b650cd643b0ea1b97b8755e7.woff2')format("woff");}.ff2_c00304{font-family:ff2_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;}
.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;}
.ls1_c00304{letter-spacing:-0.014400px;}
.ls0_c00304{letter-spacing:0.000000px;}
.sc__c00304{text-shadow:none;}
.sc0_c00304{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00304{-webkit-text-stroke:0px transparent;}
.sc0_c00304{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00304{word-spacing:0.000000px;}
._3_c00304{margin-left:-1.044000px;}
._1_c00304{width:2.412000px;}
._2_c00304{width:4.557600px;}
._5_c00304{width:5.724000px;}
._6_c00304{width:6.919200px;}
._0_c00304{width:8.013600px;}
._9_c00304{width:9.504000px;}
._b_c00304{width:12.535200px;}
._7_c00304{width:13.802400px;}
._a_c00304{width:14.889600px;}
._8_c00304{width:16.416000px;}
._d_c00304{width:19.238400px;}
._e_c00304{width:20.808000px;}
._4_c00304{width:27.194400px;}
._c_c00304{width:42.883200px;}
.fc1_c00304{color:transparent;}
.fc0_c00304{color:rgb(0,0,0);}
.fs0_c00304{font-size:72.000000px;}
.y0_c00304{bottom:0.000000px;}
.y5_c00304{bottom:5.040000px;}
.y1_c00304{bottom:12.735000px;}
.y3_c00304{bottom:45.405000px;}
.y4_c00304{bottom:53.100000px;}
.y21_c00304{bottom:111.645000px;}
.y20_c00304{bottom:147.645000px;}
.y1f_c00304{bottom:183.645000px;}
.y1e_c00304{bottom:219.645000px;}
.y1d_c00304{bottom:255.645000px;}
.y1c_c00304{bottom:291.645000px;}
.y1b_c00304{bottom:327.645000px;}
.y1a_c00304{bottom:363.645000px;}
.y19_c00304{bottom:399.645000px;}
.y18_c00304{bottom:435.645000px;}
.y17_c00304{bottom:471.645000px;}
.y16_c00304{bottom:507.645000px;}
.y15_c00304{bottom:543.645000px;}
.y14_c00304{bottom:579.645000px;}
.y13_c00304{bottom:615.645000px;}
.y12_c00304{bottom:651.645000px;}
.y11_c00304{bottom:687.645000px;}
.y10_c00304{bottom:723.645000px;}
.yf_c00304{bottom:759.645000px;}
.ye_c00304{bottom:795.645000px;}
.yd_c00304{bottom:831.645000px;}
.yc_c00304{bottom:867.645000px;}
.yb_c00304{bottom:903.645000px;}
.ya_c00304{bottom:939.645000px;}
.y9_c00304{bottom:975.645000px;}
.y8_c00304{bottom:1011.645000px;}
.y7_c00304{bottom:1047.645000px;}
.y6_c00304{bottom:1083.645000px;}
.y2_c00304{bottom:1165.005000px;}
.h4_c00304{height:20.880000px;}
.h5_c00304{height:70.628906px;}
.h3_c00304{height:70.664062px;}
.h2_c00304{height:1237.365000px;}
.h0_c00304{height:1262.835000px;}
.h1_c00304{height:1263.000000px;}
.w3_c00304{width:27.360000px;}
.w2_c00304{width:867.465000px;}
.w0_c00304{width:892.935000px;}
.w1_c00304{width:893.250000px;}
.x0_c00304{left:0.000000px;}
.x1_c00304{left:12.735000px;}
.x3_c00304{left:95.397000px;}
.x5_c00304{left:149.400150px;}
.x4_c00304{left:432.855000px;}
.x2_c00304{left:880.125000px;}
@media print{
.v0_c00304{vertical-align:0.000000pt;}
.ls1_c00304{letter-spacing:-0.012800pt;}
.ls0_c00304{letter-spacing:0.000000pt;}
.ws0_c00304{word-spacing:0.000000pt;}
._3_c00304{margin-left:-0.928000pt;}
._1_c00304{width:2.144000pt;}
._2_c00304{width:4.051200pt;}
._5_c00304{width:5.088000pt;}
._6_c00304{width:6.150400pt;}
._0_c00304{width:7.123200pt;}
._9_c00304{width:8.448000pt;}
._b_c00304{width:11.142400pt;}
._7_c00304{width:12.268800pt;}
._a_c00304{width:13.235200pt;}
._8_c00304{width:14.592000pt;}
._d_c00304{width:17.100800pt;}
._e_c00304{width:18.496000pt;}
._4_c00304{width:24.172800pt;}
._c_c00304{width:38.118400pt;}
.fs0_c00304{font-size:64.000000pt;}
.y0_c00304{bottom:0.000000pt;}
.y5_c00304{bottom:4.480000pt;}
.y1_c00304{bottom:11.320000pt;}
.y3_c00304{bottom:40.360000pt;}
.y4_c00304{bottom:47.200000pt;}
.y21_c00304{bottom:99.240000pt;}
.y20_c00304{bottom:131.240000pt;}
.y1f_c00304{bottom:163.240000pt;}
.y1e_c00304{bottom:195.240000pt;}
.y1d_c00304{bottom:227.240000pt;}
.y1c_c00304{bottom:259.240000pt;}
.y1b_c00304{bottom:291.240000pt;}
.y1a_c00304{bottom:323.240000pt;}
.y19_c00304{bottom:355.240000pt;}
.y18_c00304{bottom:387.240000pt;}
.y17_c00304{bottom:419.240000pt;}
.y16_c00304{bottom:451.240000pt;}
.y15_c00304{bottom:483.240000pt;}
.y14_c00304{bottom:515.240000pt;}
.y13_c00304{bottom:547.240000pt;}
.y12_c00304{bottom:579.240000pt;}
.y11_c00304{bottom:611.240000pt;}
.y10_c00304{bottom:643.240000pt;}
.yf_c00304{bottom:675.240000pt;}
.ye_c00304{bottom:707.240000pt;}
.yd_c00304{bottom:739.240000pt;}
.yc_c00304{bottom:771.240000pt;}
.yb_c00304{bottom:803.240000pt;}
.ya_c00304{bottom:835.240000pt;}
.y9_c00304{bottom:867.240000pt;}
.y8_c00304{bottom:899.240000pt;}
.y7_c00304{bottom:931.240000pt;}
.y6_c00304{bottom:963.240000pt;}
.y2_c00304{bottom:1035.560000pt;}
.h4_c00304{height:18.560000pt;}
.h5_c00304{height:62.781250pt;}
.h3_c00304{height:62.812500pt;}
.h2_c00304{height:1099.880000pt;}
.h0_c00304{height:1122.520000pt;}
.h1_c00304{height:1122.666667pt;}
.w3_c00304{width:24.320000pt;}
.w2_c00304{width:771.080000pt;}
.w0_c00304{width:793.720000pt;}
.w1_c00304{width:794.000000pt;}
.x0_c00304{left:0.000000pt;}
.x1_c00304{left:11.320000pt;}
.x3_c00304{left:84.797333pt;}
.x5_c00304{left:132.800133pt;}
.x4_c00304{left:384.760000pt;}
.x2_c00304{left:782.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_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_719050d6f9b75aab1e027ef4.woff2')format("woff");}.ff1_c00305{font-family:ff1_c00305;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00305;src:url('chunks/assets/font_407d6f2f6e88a48c50c41798.woff2')format("woff");}.ff2_c00305{font-family:ff2_c00305;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00305{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00305{vertical-align:0.000000px;}
.ls2_c00305{letter-spacing:-0.014400px;}
.ls1_c00305{letter-spacing:0.000000px;}
.ls0_c00305{letter-spacing:0.014400px;}
.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:-0.086400px;}
.ws1_c00305{word-spacing:0.000000px;}
._5_c00305{width:1.008000px;}
._9_c00305{width:2.656800px;}
._8_c00305{width:3.801600px;}
._1_c00305{width:4.910400px;}
._6_c00305{width:6.156000px;}
._a_c00305{width:8.596800px;}
._4_c00305{width:9.626400px;}
._2_c00305{width:11.001600px;}
._b_c00305{width:16.488000px;}
._7_c00305{width:24.350400px;}
._0_c00305{width:27.360000px;}
._3_c00305{width:29.347200px;}
.fc1_c00305{color:transparent;}
.fc0_c00305{color:rgb(0,0,0);}
.fs0_c00305{font-size:72.000000px;}
.y0_c00305{bottom:0.000000px;}
.y5_c00305{bottom:5.040000px;}
.y1_c00305{bottom:12.735000px;}
.y3_c00305{bottom:45.405000px;}
.y4_c00305{bottom:53.100000px;}
.y21_c00305{bottom:111.645000px;}
.y20_c00305{bottom:147.645000px;}
.y1f_c00305{bottom:183.645000px;}
.y1e_c00305{bottom:219.645000px;}
.y1d_c00305{bottom:255.645000px;}
.y1c_c00305{bottom:291.645000px;}
.y1b_c00305{bottom:327.645000px;}
.y1a_c00305{bottom:363.645000px;}
.y19_c00305{bottom:399.645000px;}
.y18_c00305{bottom:435.645000px;}
.y17_c00305{bottom:471.645000px;}
.y16_c00305{bottom:507.645000px;}
.y15_c00305{bottom:543.645000px;}
.y14_c00305{bottom:579.645000px;}
.y13_c00305{bottom:615.645000px;}
.y12_c00305{bottom:651.645000px;}
.y11_c00305{bottom:687.645000px;}
.y10_c00305{bottom:723.645000px;}
.yf_c00305{bottom:759.645000px;}
.ye_c00305{bottom:795.645000px;}
.yd_c00305{bottom:831.645000px;}
.yc_c00305{bottom:867.645000px;}
.yb_c00305{bottom:903.645000px;}
.ya_c00305{bottom:939.645000px;}
.y9_c00305{bottom:975.645000px;}
.y8_c00305{bottom:1011.645000px;}
.y7_c00305{bottom:1047.645000px;}
.y6_c00305{bottom:1083.645000px;}
.y2_c00305{bottom:1165.005000px;}
.h4_c00305{height:20.880000px;}
.h3_c00305{height:70.664062px;}
.h2_c00305{height:1237.365000px;}
.h0_c00305{height:1262.835000px;}
.h1_c00305{height:1263.000000px;}
.w3_c00305{width:27.360000px;}
.w2_c00305{width:867.465000px;}
.w0_c00305{width:892.935000px;}
.w1_c00305{width:893.250000px;}
.x0_c00305{left:0.000000px;}
.x1_c00305{left:12.735000px;}
.x3_c00305{left:95.394300px;}
.x5_c00305{left:149.400150px;}
.x4_c00305{left:432.855000px;}
.x2_c00305{left:880.050300px;}
@media print{
.v0_c00305{vertical-align:0.000000pt;}
.ls2_c00305{letter-spacing:-0.012800pt;}
.ls1_c00305{letter-spacing:0.000000pt;}
.ls0_c00305{letter-spacing:0.012800pt;}
.ws0_c00305{word-spacing:-0.076800pt;}
.ws1_c00305{word-spacing:0.000000pt;}
._5_c00305{width:0.896000pt;}
._9_c00305{width:2.361600pt;}
._8_c00305{width:3.379200pt;}
._1_c00305{width:4.364800pt;}
._6_c00305{width:5.472000pt;}
._a_c00305{width:7.641600pt;}
._4_c00305{width:8.556800pt;}
._2_c00305{width:9.779200pt;}
._b_c00305{width:14.656000pt;}
._7_c00305{width:21.644800pt;}
._0_c00305{width:24.320000pt;}
._3_c00305{width:26.086400pt;}
.fs0_c00305{font-size:64.000000pt;}
.y0_c00305{bottom:0.000000pt;}
.y5_c00305{bottom:4.480000pt;}
.y1_c00305{bottom:11.320000pt;}
.y3_c00305{bottom:40.360000pt;}
.y4_c00305{bottom:47.200000pt;}
.y21_c00305{bottom:99.240000pt;}
.y20_c00305{bottom:131.240000pt;}
.y1f_c00305{bottom:163.240000pt;}
.y1e_c00305{bottom:195.240000pt;}
.y1d_c00305{bottom:227.240000pt;}
.y1c_c00305{bottom:259.240000pt;}
.y1b_c00305{bottom:291.240000pt;}
.y1a_c00305{bottom:323.240000pt;}
.y19_c00305{bottom:355.240000pt;}
.y18_c00305{bottom:387.240000pt;}
.y17_c00305{bottom:419.240000pt;}
.y16_c00305{bottom:451.240000pt;}
.y15_c00305{bottom:483.240000pt;}
.y14_c00305{bottom:515.240000pt;}
.y13_c00305{bottom:547.240000pt;}
.y12_c00305{bottom:579.240000pt;}
.y11_c00305{bottom:611.240000pt;}
.y10_c00305{bottom:643.240000pt;}
.yf_c00305{bottom:675.240000pt;}
.ye_c00305{bottom:707.240000pt;}
.yd_c00305{bottom:739.240000pt;}
.yc_c00305{bottom:771.240000pt;}
.yb_c00305{bottom:803.240000pt;}
.ya_c00305{bottom:835.240000pt;}
.y9_c00305{bottom:867.240000pt;}
.y8_c00305{bottom:899.240000pt;}
.y7_c00305{bottom:931.240000pt;}
.y6_c00305{bottom:963.240000pt;}
.y2_c00305{bottom:1035.560000pt;}
.h4_c00305{height:18.560000pt;}
.h3_c00305{height:62.812500pt;}
.h2_c00305{height:1099.880000pt;}
.h0_c00305{height:1122.520000pt;}
.h1_c00305{height:1122.666667pt;}
.w3_c00305{width:24.320000pt;}
.w2_c00305{width:771.080000pt;}
.w0_c00305{width:793.720000pt;}
.w1_c00305{width:794.000000pt;}
.x0_c00305{left:0.000000pt;}
.x1_c00305{left:11.320000pt;}
.x3_c00305{left:84.794933pt;}
.x5_c00305{left:132.800133pt;}
.x4_c00305{left:384.760000pt;}
.x2_c00305{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_cfa67fe99efe0fd4d609e3fe.woff2')format("woff");}.ff1_c00306{font-family:ff1_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;}
.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;}
.ls0_c00306{letter-spacing:0.000000px;}
.sc__c00306{text-shadow:none;}
.sc0_c00306{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00306{-webkit-text-stroke:0px transparent;}
.sc0_c00306{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00306{word-spacing:0.000000px;}
._1_c00306{width:1.245600px;}
._0_c00306{width:3.031200px;}
._7_c00306{width:4.629600px;}
._3_c00306{width:5.680800px;}
._4_c00306{width:6.991200px;}
._5_c00306{width:8.431200px;}
._9_c00306{width:10.159200px;}
._a_c00306{width:11.167200px;}
._2_c00306{width:12.463200px;}
._6_c00306{width:13.816800px;}
._8_c00306{width:19.209600px;}
.fc1_c00306{color:transparent;}
.fc0_c00306{color:rgb(0,0,0);}
.fs0_c00306{font-size:72.000000px;}
.y0_c00306{bottom:0.000000px;}
.y5_c00306{bottom:5.040000px;}
.y1_c00306{bottom:12.735000px;}
.y3_c00306{bottom:45.405000px;}
.y4_c00306{bottom:53.100000px;}
.y21_c00306{bottom:111.645000px;}
.y20_c00306{bottom:147.645000px;}
.y1f_c00306{bottom:183.645000px;}
.y1e_c00306{bottom:219.645000px;}
.y1d_c00306{bottom:255.645000px;}
.y1c_c00306{bottom:291.645000px;}
.y1b_c00306{bottom:327.645000px;}
.y1a_c00306{bottom:363.645000px;}
.y19_c00306{bottom:399.645000px;}
.y18_c00306{bottom:435.645000px;}
.y17_c00306{bottom:471.645000px;}
.y16_c00306{bottom:507.645000px;}
.y15_c00306{bottom:543.645000px;}
.y14_c00306{bottom:579.645000px;}
.y13_c00306{bottom:615.645000px;}
.y12_c00306{bottom:651.645000px;}
.y11_c00306{bottom:687.645000px;}
.y10_c00306{bottom:723.645000px;}
.yf_c00306{bottom:759.645000px;}
.ye_c00306{bottom:795.645000px;}
.yd_c00306{bottom:831.645000px;}
.yc_c00306{bottom:867.645000px;}
.yb_c00306{bottom:903.645000px;}
.ya_c00306{bottom:939.645000px;}
.y9_c00306{bottom:975.645000px;}
.y8_c00306{bottom:1011.645000px;}
.y7_c00306{bottom:1047.645000px;}
.y6_c00306{bottom:1083.645000px;}
.y2_c00306{bottom:1165.005000px;}
.h4_c00306{height:20.880000px;}
.h3_c00306{height:70.664062px;}
.h2_c00306{height:1237.365000px;}
.h0_c00306{height:1262.835000px;}
.h1_c00306{height:1263.000000px;}
.w3_c00306{width:27.360000px;}
.w2_c00306{width:867.465000px;}
.w0_c00306{width:892.935000px;}
.w1_c00306{width:893.250000px;}
.x0_c00306{left:0.000000px;}
.x1_c00306{left:12.735000px;}
.x3_c00306{left:95.397000px;}
.x5_c00306{left:149.400150px;}
.x4_c00306{left:432.855000px;}
.x2_c00306{left:880.125000px;}
@media print{
.v0_c00306{vertical-align:0.000000pt;}
.ls0_c00306{letter-spacing:0.000000pt;}
.ws0_c00306{word-spacing:0.000000pt;}
._1_c00306{width:1.107200pt;}
._0_c00306{width:2.694400pt;}
._7_c00306{width:4.115200pt;}
._3_c00306{width:5.049600pt;}
._4_c00306{width:6.214400pt;}
._5_c00306{width:7.494400pt;}
._9_c00306{width:9.030400pt;}
._a_c00306{width:9.926400pt;}
._2_c00306{width:11.078400pt;}
._6_c00306{width:12.281600pt;}
._8_c00306{width:17.075200pt;}
.fs0_c00306{font-size:64.000000pt;}
.y0_c00306{bottom:0.000000pt;}
.y5_c00306{bottom:4.480000pt;}
.y1_c00306{bottom:11.320000pt;}
.y3_c00306{bottom:40.360000pt;}
.y4_c00306{bottom:47.200000pt;}
.y21_c00306{bottom:99.240000pt;}
.y20_c00306{bottom:131.240000pt;}
.y1f_c00306{bottom:163.240000pt;}
.y1e_c00306{bottom:195.240000pt;}
.y1d_c00306{bottom:227.240000pt;}
.y1c_c00306{bottom:259.240000pt;}
.y1b_c00306{bottom:291.240000pt;}
.y1a_c00306{bottom:323.240000pt;}
.y19_c00306{bottom:355.240000pt;}
.y18_c00306{bottom:387.240000pt;}
.y17_c00306{bottom:419.240000pt;}
.y16_c00306{bottom:451.240000pt;}
.y15_c00306{bottom:483.240000pt;}
.y14_c00306{bottom:515.240000pt;}
.y13_c00306{bottom:547.240000pt;}
.y12_c00306{bottom:579.240000pt;}
.y11_c00306{bottom:611.240000pt;}
.y10_c00306{bottom:643.240000pt;}
.yf_c00306{bottom:675.240000pt;}
.ye_c00306{bottom:707.240000pt;}
.yd_c00306{bottom:739.240000pt;}
.yc_c00306{bottom:771.240000pt;}
.yb_c00306{bottom:803.240000pt;}
.ya_c00306{bottom:835.240000pt;}
.y9_c00306{bottom:867.240000pt;}
.y8_c00306{bottom:899.240000pt;}
.y7_c00306{bottom:931.240000pt;}
.y6_c00306{bottom:963.240000pt;}
.y2_c00306{bottom:1035.560000pt;}
.h4_c00306{height:18.560000pt;}
.h3_c00306{height:62.812500pt;}
.h2_c00306{height:1099.880000pt;}
.h0_c00306{height:1122.520000pt;}
.h1_c00306{height:1122.666667pt;}
.w3_c00306{width:24.320000pt;}
.w2_c00306{width:771.080000pt;}
.w0_c00306{width:793.720000pt;}
.w1_c00306{width:794.000000pt;}
.x0_c00306{left:0.000000pt;}
.x1_c00306{left:11.320000pt;}
.x3_c00306{left:84.797333pt;}
.x5_c00306{left:132.800133pt;}
.x4_c00306{left:384.760000pt;}
.x2_c00306{left:782.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_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_4a2a265c3c52c2dca84d3774.woff2')format("woff");}.ff1_c00307{font-family:ff1_c00307;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00307{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00307{vertical-align:0.000000px;}
.ls1_c00307{letter-spacing:-0.014400px;}
.ls0_c00307{letter-spacing:0.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;}
}
.ws0_c00307{word-spacing:0.000000px;}
._7_c00307{width:1.620000px;}
._e_c00307{width:2.923200px;}
._5_c00307{width:4.111200px;}
._1_c00307{width:5.248800px;}
._a_c00307{width:6.285600px;}
._6_c00307{width:7.387200px;}
._9_c00307{width:8.913600px;}
._4_c00307{width:10.015200px;}
._c_c00307{width:11.512800px;}
._d_c00307{width:14.421600px;}
._3_c00307{width:19.000800px;}
._8_c00307{width:23.126400px;}
._0_c00307{width:26.827200px;}
._2_c00307{width:28.303200px;}
._b_c00307{width:33.580800px;}
.fc1_c00307{color:transparent;}
.fc0_c00307{color:rgb(0,0,0);}
.fs0_c00307{font-size:72.000000px;}
.y0_c00307{bottom:0.000000px;}
.y5_c00307{bottom:5.040000px;}
.y1_c00307{bottom:12.735000px;}
.y3_c00307{bottom:45.405000px;}
.y4_c00307{bottom:53.100000px;}
.y20_c00307{bottom:147.645000px;}
.y1f_c00307{bottom:183.645000px;}
.y1e_c00307{bottom:219.645000px;}
.y1d_c00307{bottom:255.645000px;}
.y1c_c00307{bottom:291.645000px;}
.y1b_c00307{bottom:327.645000px;}
.y1a_c00307{bottom:363.645000px;}
.y19_c00307{bottom:399.645000px;}
.y18_c00307{bottom:435.645000px;}
.y17_c00307{bottom:471.645000px;}
.y16_c00307{bottom:507.645000px;}
.y15_c00307{bottom:543.645000px;}
.y14_c00307{bottom:579.645000px;}
.y13_c00307{bottom:615.645000px;}
.y12_c00307{bottom:651.645000px;}
.y11_c00307{bottom:687.645000px;}
.y10_c00307{bottom:723.645000px;}
.yf_c00307{bottom:759.645000px;}
.ye_c00307{bottom:795.645000px;}
.yd_c00307{bottom:831.645000px;}
.yc_c00307{bottom:867.645000px;}
.yb_c00307{bottom:903.645000px;}
.ya_c00307{bottom:939.645000px;}
.y9_c00307{bottom:975.645000px;}
.y8_c00307{bottom:1011.645000px;}
.y7_c00307{bottom:1047.645000px;}
.y6_c00307{bottom:1083.645000px;}
.y2_c00307{bottom:1165.005000px;}
.h4_c00307{height:20.880000px;}
.h3_c00307{height:70.664062px;}
.h2_c00307{height:1237.365000px;}
.h0_c00307{height:1262.835000px;}
.h1_c00307{height:1263.000000px;}
.w3_c00307{width:27.360000px;}
.w2_c00307{width:867.465000px;}
.w0_c00307{width:892.935000px;}
.w1_c00307{width:893.250000px;}
.x0_c00307{left:0.000000px;}
.x1_c00307{left:12.735000px;}
.x3_c00307{left:95.394300px;}
.x5_c00307{left:149.400150px;}
.x4_c00307{left:432.855000px;}
.x2_c00307{left:880.050300px;}
@media print{
.v0_c00307{vertical-align:0.000000pt;}
.ls1_c00307{letter-spacing:-0.012800pt;}
.ls0_c00307{letter-spacing:0.000000pt;}
.ws0_c00307{word-spacing:0.000000pt;}
._7_c00307{width:1.440000pt;}
._e_c00307{width:2.598400pt;}
._5_c00307{width:3.654400pt;}
._1_c00307{width:4.665600pt;}
._a_c00307{width:5.587200pt;}
._6_c00307{width:6.566400pt;}
._9_c00307{width:7.923200pt;}
._4_c00307{width:8.902400pt;}
._c_c00307{width:10.233600pt;}
._d_c00307{width:12.819200pt;}
._3_c00307{width:16.889600pt;}
._8_c00307{width:20.556800pt;}
._0_c00307{width:23.846400pt;}
._2_c00307{width:25.158400pt;}
._b_c00307{width:29.849600pt;}
.fs0_c00307{font-size:64.000000pt;}
.y0_c00307{bottom:0.000000pt;}
.y5_c00307{bottom:4.480000pt;}
.y1_c00307{bottom:11.320000pt;}
.y3_c00307{bottom:40.360000pt;}
.y4_c00307{bottom:47.200000pt;}
.y20_c00307{bottom:131.240000pt;}
.y1f_c00307{bottom:163.240000pt;}
.y1e_c00307{bottom:195.240000pt;}
.y1d_c00307{bottom:227.240000pt;}
.y1c_c00307{bottom:259.240000pt;}
.y1b_c00307{bottom:291.240000pt;}
.y1a_c00307{bottom:323.240000pt;}
.y19_c00307{bottom:355.240000pt;}
.y18_c00307{bottom:387.240000pt;}
.y17_c00307{bottom:419.240000pt;}
.y16_c00307{bottom:451.240000pt;}
.y15_c00307{bottom:483.240000pt;}
.y14_c00307{bottom:515.240000pt;}
.y13_c00307{bottom:547.240000pt;}
.y12_c00307{bottom:579.240000pt;}
.y11_c00307{bottom:611.240000pt;}
.y10_c00307{bottom:643.240000pt;}
.yf_c00307{bottom:675.240000pt;}
.ye_c00307{bottom:707.240000pt;}
.yd_c00307{bottom:739.240000pt;}
.yc_c00307{bottom:771.240000pt;}
.yb_c00307{bottom:803.240000pt;}
.ya_c00307{bottom:835.240000pt;}
.y9_c00307{bottom:867.240000pt;}
.y8_c00307{bottom:899.240000pt;}
.y7_c00307{bottom:931.240000pt;}
.y6_c00307{bottom:963.240000pt;}
.y2_c00307{bottom:1035.560000pt;}
.h4_c00307{height:18.560000pt;}
.h3_c00307{height:62.812500pt;}
.h2_c00307{height:1099.880000pt;}
.h0_c00307{height:1122.520000pt;}
.h1_c00307{height:1122.666667pt;}
.w3_c00307{width:24.320000pt;}
.w2_c00307{width:771.080000pt;}
.w0_c00307{width:793.720000pt;}
.w1_c00307{width:794.000000pt;}
.x0_c00307{left:0.000000pt;}
.x1_c00307{left:11.320000pt;}
.x3_c00307{left:84.794933pt;}
.x5_c00307{left:132.800133pt;}
.x4_c00307{left:384.760000pt;}
.x2_c00307{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e2841b4e529400c5e6acfac.woff2')format("woff");}.ff1_c00308{font-family:ff1_c00308;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00308;src:url('chunks/assets/font_4db9df30564440871e1d7177.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;}
.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;}
.ls0_c00308{letter-spacing:0.000000px;}
.sc__c00308{text-shadow:none;}
.sc0_c00308{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00308{-webkit-text-stroke:0px transparent;}
.sc0_c00308{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00308{word-spacing:0.000000px;}
._4_c00308{width:1.036800px;}
._8_c00308{width:2.174400px;}
._0_c00308{width:4.341600px;}
._3_c00308{width:6.040800px;}
._1_c00308{width:7.653600px;}
._5_c00308{width:10.144800px;}
._a_c00308{width:13.442400px;}
._7_c00308{width:15.789600px;}
._9_c00308{width:16.804800px;}
._2_c00308{width:19.454400px;}
._6_c00308{width:21.160800px;}
.fc1_c00308{color:transparent;}
.fc0_c00308{color:rgb(0,0,0);}
.fs0_c00308{font-size:72.000000px;}
.y0_c00308{bottom:0.000000px;}
.y5_c00308{bottom:5.040000px;}
.y1_c00308{bottom:12.735000px;}
.y3_c00308{bottom:45.405000px;}
.y4_c00308{bottom:53.100000px;}
.y21_c00308{bottom:111.645000px;}
.y20_c00308{bottom:147.645000px;}
.y1f_c00308{bottom:183.645000px;}
.y1e_c00308{bottom:219.645000px;}
.y1d_c00308{bottom:255.645000px;}
.y1c_c00308{bottom:291.645000px;}
.y1b_c00308{bottom:327.645000px;}
.y1a_c00308{bottom:363.645000px;}
.y19_c00308{bottom:399.645000px;}
.y18_c00308{bottom:435.645000px;}
.y17_c00308{bottom:471.645000px;}
.y16_c00308{bottom:507.645000px;}
.y15_c00308{bottom:543.645000px;}
.y14_c00308{bottom:579.645000px;}
.y13_c00308{bottom:615.645000px;}
.y12_c00308{bottom:651.645000px;}
.y11_c00308{bottom:687.645000px;}
.y10_c00308{bottom:723.645000px;}
.yf_c00308{bottom:759.645000px;}
.ye_c00308{bottom:795.645000px;}
.yd_c00308{bottom:831.645000px;}
.yc_c00308{bottom:867.645000px;}
.yb_c00308{bottom:903.645000px;}
.ya_c00308{bottom:939.645000px;}
.y9_c00308{bottom:975.645000px;}
.y8_c00308{bottom:1011.645000px;}
.y7_c00308{bottom:1047.645000px;}
.y6_c00308{bottom:1083.645000px;}
.y2_c00308{bottom:1165.005000px;}
.h4_c00308{height:20.880000px;}
.h3_c00308{height:70.664062px;}
.h2_c00308{height:1237.365000px;}
.h0_c00308{height:1262.835000px;}
.h1_c00308{height:1263.000000px;}
.w3_c00308{width:27.360000px;}
.w2_c00308{width:867.465000px;}
.w0_c00308{width:892.935000px;}
.w1_c00308{width:893.250000px;}
.x0_c00308{left:0.000000px;}
.x1_c00308{left:12.735000px;}
.x3_c00308{left:95.397000px;}
.x5_c00308{left:149.400150px;}
.x4_c00308{left:432.855000px;}
.x2_c00308{left:880.125000px;}
@media print{
.v0_c00308{vertical-align:0.000000pt;}
.ls0_c00308{letter-spacing:0.000000pt;}
.ws0_c00308{word-spacing:0.000000pt;}
._4_c00308{width:0.921600pt;}
._8_c00308{width:1.932800pt;}
._0_c00308{width:3.859200pt;}
._3_c00308{width:5.369600pt;}
._1_c00308{width:6.803200pt;}
._5_c00308{width:9.017600pt;}
._a_c00308{width:11.948800pt;}
._7_c00308{width:14.035200pt;}
._9_c00308{width:14.937600pt;}
._2_c00308{width:17.292800pt;}
._6_c00308{width:18.809600pt;}
.fs0_c00308{font-size:64.000000pt;}
.y0_c00308{bottom:0.000000pt;}
.y5_c00308{bottom:4.480000pt;}
.y1_c00308{bottom:11.320000pt;}
.y3_c00308{bottom:40.360000pt;}
.y4_c00308{bottom:47.200000pt;}
.y21_c00308{bottom:99.240000pt;}
.y20_c00308{bottom:131.240000pt;}
.y1f_c00308{bottom:163.240000pt;}
.y1e_c00308{bottom:195.240000pt;}
.y1d_c00308{bottom:227.240000pt;}
.y1c_c00308{bottom:259.240000pt;}
.y1b_c00308{bottom:291.240000pt;}
.y1a_c00308{bottom:323.240000pt;}
.y19_c00308{bottom:355.240000pt;}
.y18_c00308{bottom:387.240000pt;}
.y17_c00308{bottom:419.240000pt;}
.y16_c00308{bottom:451.240000pt;}
.y15_c00308{bottom:483.240000pt;}
.y14_c00308{bottom:515.240000pt;}
.y13_c00308{bottom:547.240000pt;}
.y12_c00308{bottom:579.240000pt;}
.y11_c00308{bottom:611.240000pt;}
.y10_c00308{bottom:643.240000pt;}
.yf_c00308{bottom:675.240000pt;}
.ye_c00308{bottom:707.240000pt;}
.yd_c00308{bottom:739.240000pt;}
.yc_c00308{bottom:771.240000pt;}
.yb_c00308{bottom:803.240000pt;}
.ya_c00308{bottom:835.240000pt;}
.y9_c00308{bottom:867.240000pt;}
.y8_c00308{bottom:899.240000pt;}
.y7_c00308{bottom:931.240000pt;}
.y6_c00308{bottom:963.240000pt;}
.y2_c00308{bottom:1035.560000pt;}
.h4_c00308{height:18.560000pt;}
.h3_c00308{height:62.812500pt;}
.h2_c00308{height:1099.880000pt;}
.h0_c00308{height:1122.520000pt;}
.h1_c00308{height:1122.666667pt;}
.w3_c00308{width:24.320000pt;}
.w2_c00308{width:771.080000pt;}
.w0_c00308{width:793.720000pt;}
.w1_c00308{width:794.000000pt;}
.x0_c00308{left:0.000000pt;}
.x1_c00308{left:11.320000pt;}
.x3_c00308{left:84.797333pt;}
.x5_c00308{left:132.800133pt;}
.x4_c00308{left:384.760000pt;}
.x2_c00308{left:782.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_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_ff1d31f2dc1cf9d108d8e3c3.woff2')format("woff");}.ff1_c00309{font-family:ff1_c00309;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00309;src:url('chunks/assets/font_a8e171d73f372e267caba6bc.woff2')format("woff");}.ff2_c00309{font-family:ff2_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;}
.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;}
.ls0_c00309{letter-spacing:0.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;}
}
.ws0_c00309{word-spacing:0.000000px;}
._3_c00309{width:1.008000px;}
._0_c00309{width:2.628000px;}
._2_c00309{width:4.341600px;}
._4_c00309{width:5.990400px;}
._9_c00309{width:7.128000px;}
._5_c00309{width:8.841600px;}
._8_c00309{width:10.022400px;}
._c_c00309{width:11.260800px;}
._1_c00309{width:12.744000px;}
._6_c00309{width:14.378400px;}
._a_c00309{width:16.048800px;}
._7_c00309{width:19.274400px;}
._b_c00309{width:21.016800px;}
.fc1_c00309{color:transparent;}
.fc0_c00309{color:rgb(0,0,0);}
.fs0_c00309{font-size:72.000000px;}
.y0_c00309{bottom:0.000000px;}
.y5_c00309{bottom:5.040000px;}
.y1_c00309{bottom:12.735000px;}
.y3_c00309{bottom:45.405000px;}
.y4_c00309{bottom:53.100000px;}
.y21_c00309{bottom:111.645000px;}
.y20_c00309{bottom:147.645000px;}
.y1f_c00309{bottom:183.645000px;}
.y1e_c00309{bottom:219.645000px;}
.y1d_c00309{bottom:255.645000px;}
.y1c_c00309{bottom:291.645000px;}
.y1b_c00309{bottom:327.645000px;}
.y1a_c00309{bottom:363.645000px;}
.y19_c00309{bottom:399.645000px;}
.y18_c00309{bottom:435.645000px;}
.y17_c00309{bottom:471.645000px;}
.y16_c00309{bottom:507.645000px;}
.y15_c00309{bottom:543.645000px;}
.y14_c00309{bottom:579.645000px;}
.y13_c00309{bottom:615.645000px;}
.y12_c00309{bottom:651.645000px;}
.y11_c00309{bottom:687.645000px;}
.y10_c00309{bottom:723.645000px;}
.yf_c00309{bottom:759.645000px;}
.ye_c00309{bottom:795.645000px;}
.yd_c00309{bottom:831.645000px;}
.yc_c00309{bottom:867.645000px;}
.yb_c00309{bottom:903.645000px;}
.ya_c00309{bottom:939.645000px;}
.y9_c00309{bottom:975.645000px;}
.y8_c00309{bottom:1011.645000px;}
.y7_c00309{bottom:1047.645000px;}
.y6_c00309{bottom:1083.645000px;}
.y2_c00309{bottom:1165.005000px;}
.h4_c00309{height:20.880000px;}
.h3_c00309{height:70.664062px;}
.h2_c00309{height:1237.365000px;}
.h0_c00309{height:1262.835000px;}
.h1_c00309{height:1263.000000px;}
.w3_c00309{width:27.360000px;}
.w2_c00309{width:867.465000px;}
.w0_c00309{width:892.935000px;}
.w1_c00309{width:893.250000px;}
.x0_c00309{left:0.000000px;}
.x1_c00309{left:12.735000px;}
.x3_c00309{left:95.394300px;}
.x5_c00309{left:149.400150px;}
.x4_c00309{left:432.855000px;}
.x2_c00309{left:880.050300px;}
@media print{
.v0_c00309{vertical-align:0.000000pt;}
.ls0_c00309{letter-spacing:0.000000pt;}
.ws0_c00309{word-spacing:0.000000pt;}
._3_c00309{width:0.896000pt;}
._0_c00309{width:2.336000pt;}
._2_c00309{width:3.859200pt;}
._4_c00309{width:5.324800pt;}
._9_c00309{width:6.336000pt;}
._5_c00309{width:7.859200pt;}
._8_c00309{width:8.908800pt;}
._c_c00309{width:10.009600pt;}
._1_c00309{width:11.328000pt;}
._6_c00309{width:12.780800pt;}
._a_c00309{width:14.265600pt;}
._7_c00309{width:17.132800pt;}
._b_c00309{width:18.681600pt;}
.fs0_c00309{font-size:64.000000pt;}
.y0_c00309{bottom:0.000000pt;}
.y5_c00309{bottom:4.480000pt;}
.y1_c00309{bottom:11.320000pt;}
.y3_c00309{bottom:40.360000pt;}
.y4_c00309{bottom:47.200000pt;}
.y21_c00309{bottom:99.240000pt;}
.y20_c00309{bottom:131.240000pt;}
.y1f_c00309{bottom:163.240000pt;}
.y1e_c00309{bottom:195.240000pt;}
.y1d_c00309{bottom:227.240000pt;}
.y1c_c00309{bottom:259.240000pt;}
.y1b_c00309{bottom:291.240000pt;}
.y1a_c00309{bottom:323.240000pt;}
.y19_c00309{bottom:355.240000pt;}
.y18_c00309{bottom:387.240000pt;}
.y17_c00309{bottom:419.240000pt;}
.y16_c00309{bottom:451.240000pt;}
.y15_c00309{bottom:483.240000pt;}
.y14_c00309{bottom:515.240000pt;}
.y13_c00309{bottom:547.240000pt;}
.y12_c00309{bottom:579.240000pt;}
.y11_c00309{bottom:611.240000pt;}
.y10_c00309{bottom:643.240000pt;}
.yf_c00309{bottom:675.240000pt;}
.ye_c00309{bottom:707.240000pt;}
.yd_c00309{bottom:739.240000pt;}
.yc_c00309{bottom:771.240000pt;}
.yb_c00309{bottom:803.240000pt;}
.ya_c00309{bottom:835.240000pt;}
.y9_c00309{bottom:867.240000pt;}
.y8_c00309{bottom:899.240000pt;}
.y7_c00309{bottom:931.240000pt;}
.y6_c00309{bottom:963.240000pt;}
.y2_c00309{bottom:1035.560000pt;}
.h4_c00309{height:18.560000pt;}
.h3_c00309{height:62.812500pt;}
.h2_c00309{height:1099.880000pt;}
.h0_c00309{height:1122.520000pt;}
.h1_c00309{height:1122.666667pt;}
.w3_c00309{width:24.320000pt;}
.w2_c00309{width:771.080000pt;}
.w0_c00309{width:793.720000pt;}
.w1_c00309{width:794.000000pt;}
.x0_c00309{left:0.000000pt;}
.x1_c00309{left:11.320000pt;}
.x3_c00309{left:84.794933pt;}
.x5_c00309{left:132.800133pt;}
.x4_c00309{left:384.760000pt;}
.x2_c00309{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0af49a01f5d0ed97a9c92e36.woff2')format("woff");}.ff1_c00310{font-family:ff1_c00310;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.014400px;}
.ls0_c00310{letter-spacing:0.000000px;}
.sc__c00310{text-shadow:none;}
.sc0_c00310{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00310{-webkit-text-stroke:0px transparent;}
.sc0_c00310{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00310{word-spacing:0.000000px;}
._4_c00310{width:1.000800px;}
._8_c00310{width:2.779200px;}
._9_c00310{width:4.147200px;}
._a_c00310{width:5.529600px;}
._5_c00310{width:7.272000px;}
._2_c00310{width:8.920800px;}
._3_c00310{width:10.008000px;}
._b_c00310{width:11.894400px;}
._7_c00310{width:13.032000px;}
._1_c00310{width:14.133600px;}
._6_c00310{width:16.279200px;}
._0_c00310{width:27.648000px;}
.fc1_c00310{color:transparent;}
.fc0_c00310{color:rgb(0,0,0);}
.fs0_c00310{font-size:72.000000px;}
.y0_c00310{bottom:0.000000px;}
.y5_c00310{bottom:5.040000px;}
.y1_c00310{bottom:12.735000px;}
.y3_c00310{bottom:45.405000px;}
.y4_c00310{bottom:53.100000px;}
.y21_c00310{bottom:111.645000px;}
.y20_c00310{bottom:147.645000px;}
.y1f_c00310{bottom:183.645000px;}
.y1e_c00310{bottom:219.645000px;}
.y1d_c00310{bottom:255.645000px;}
.y1c_c00310{bottom:291.645000px;}
.y1b_c00310{bottom:327.645000px;}
.y1a_c00310{bottom:363.645000px;}
.y19_c00310{bottom:399.645000px;}
.y18_c00310{bottom:435.645000px;}
.y17_c00310{bottom:471.645000px;}
.y16_c00310{bottom:507.645000px;}
.y15_c00310{bottom:543.645000px;}
.y14_c00310{bottom:579.645000px;}
.y13_c00310{bottom:615.645000px;}
.y12_c00310{bottom:651.645000px;}
.y11_c00310{bottom:687.645000px;}
.y10_c00310{bottom:723.645000px;}
.yf_c00310{bottom:759.645000px;}
.ye_c00310{bottom:795.645000px;}
.yd_c00310{bottom:831.645000px;}
.yc_c00310{bottom:867.645000px;}
.yb_c00310{bottom:903.645000px;}
.ya_c00310{bottom:939.645000px;}
.y9_c00310{bottom:975.645000px;}
.y8_c00310{bottom:1011.645000px;}
.y7_c00310{bottom:1047.645000px;}
.y6_c00310{bottom:1083.645000px;}
.y2_c00310{bottom:1165.005000px;}
.h4_c00310{height:20.880000px;}
.h3_c00310{height:70.664062px;}
.h2_c00310{height:1237.365000px;}
.h0_c00310{height:1262.835000px;}
.h1_c00310{height:1263.000000px;}
.w3_c00310{width:27.360000px;}
.w2_c00310{width:867.465000px;}
.w0_c00310{width:892.935000px;}
.w1_c00310{width:893.250000px;}
.x0_c00310{left:0.000000px;}
.x1_c00310{left:12.735000px;}
.x3_c00310{left:95.397000px;}
.x5_c00310{left:149.400150px;}
.x4_c00310{left:432.855000px;}
.x2_c00310{left:880.125000px;}
@media print{
.v0_c00310{vertical-align:0.000000pt;}
.ls1_c00310{letter-spacing:-0.012800pt;}
.ls0_c00310{letter-spacing:0.000000pt;}
.ws0_c00310{word-spacing:0.000000pt;}
._4_c00310{width:0.889600pt;}
._8_c00310{width:2.470400pt;}
._9_c00310{width:3.686400pt;}
._a_c00310{width:4.915200pt;}
._5_c00310{width:6.464000pt;}
._2_c00310{width:7.929600pt;}
._3_c00310{width:8.896000pt;}
._b_c00310{width:10.572800pt;}
._7_c00310{width:11.584000pt;}
._1_c00310{width:12.563200pt;}
._6_c00310{width:14.470400pt;}
._0_c00310{width:24.576000pt;}
.fs0_c00310{font-size:64.000000pt;}
.y0_c00310{bottom:0.000000pt;}
.y5_c00310{bottom:4.480000pt;}
.y1_c00310{bottom:11.320000pt;}
.y3_c00310{bottom:40.360000pt;}
.y4_c00310{bottom:47.200000pt;}
.y21_c00310{bottom:99.240000pt;}
.y20_c00310{bottom:131.240000pt;}
.y1f_c00310{bottom:163.240000pt;}
.y1e_c00310{bottom:195.240000pt;}
.y1d_c00310{bottom:227.240000pt;}
.y1c_c00310{bottom:259.240000pt;}
.y1b_c00310{bottom:291.240000pt;}
.y1a_c00310{bottom:323.240000pt;}
.y19_c00310{bottom:355.240000pt;}
.y18_c00310{bottom:387.240000pt;}
.y17_c00310{bottom:419.240000pt;}
.y16_c00310{bottom:451.240000pt;}
.y15_c00310{bottom:483.240000pt;}
.y14_c00310{bottom:515.240000pt;}
.y13_c00310{bottom:547.240000pt;}
.y12_c00310{bottom:579.240000pt;}
.y11_c00310{bottom:611.240000pt;}
.y10_c00310{bottom:643.240000pt;}
.yf_c00310{bottom:675.240000pt;}
.ye_c00310{bottom:707.240000pt;}
.yd_c00310{bottom:739.240000pt;}
.yc_c00310{bottom:771.240000pt;}
.yb_c00310{bottom:803.240000pt;}
.ya_c00310{bottom:835.240000pt;}
.y9_c00310{bottom:867.240000pt;}
.y8_c00310{bottom:899.240000pt;}
.y7_c00310{bottom:931.240000pt;}
.y6_c00310{bottom:963.240000pt;}
.y2_c00310{bottom:1035.560000pt;}
.h4_c00310{height:18.560000pt;}
.h3_c00310{height:62.812500pt;}
.h2_c00310{height:1099.880000pt;}
.h0_c00310{height:1122.520000pt;}
.h1_c00310{height:1122.666667pt;}
.w3_c00310{width:24.320000pt;}
.w2_c00310{width:771.080000pt;}
.w0_c00310{width:793.720000pt;}
.w1_c00310{width:794.000000pt;}
.x0_c00310{left:0.000000pt;}
.x1_c00310{left:11.320000pt;}
.x3_c00310{left:84.797333pt;}
.x5_c00310{left:132.800133pt;}
.x4_c00310{left:384.760000pt;}
.x2_c00310{left:782.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_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_6ae42060359d4b8786af7c5c.woff2')format("woff");}.ff1_c00311{font-family:ff1_c00311;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00311{letter-spacing:0.000000px;}
.sc__c00311{text-shadow:none;}
.sc0_c00311{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00311{-webkit-text-stroke:0px transparent;}
.sc0_c00311{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00311{word-spacing:0.000000px;}
._2_c00311{width:1.144800px;}
._7_c00311{width:2.599200px;}
._0_c00311{width:4.370400px;}
._a_c00311{width:5.515200px;}
._1_c00311{width:6.868800px;}
._9_c00311{width:8.323200px;}
._4_c00311{width:10.310400px;}
._8_c00311{width:12.146400px;}
._6_c00311{width:13.176000px;}
._3_c00311{width:16.696800px;}
._5_c00311{width:24.415200px;}
.fc1_c00311{color:transparent;}
.fc0_c00311{color:rgb(0,0,0);}
.fs0_c00311{font-size:72.000000px;}
.y0_c00311{bottom:0.000000px;}
.y5_c00311{bottom:5.040000px;}
.y1_c00311{bottom:12.735000px;}
.y3_c00311{bottom:45.405000px;}
.y4_c00311{bottom:53.100000px;}
.y21_c00311{bottom:111.645000px;}
.y20_c00311{bottom:147.645000px;}
.y1f_c00311{bottom:183.645000px;}
.y1e_c00311{bottom:219.645000px;}
.y1d_c00311{bottom:255.645000px;}
.y1c_c00311{bottom:291.645000px;}
.y1b_c00311{bottom:327.645000px;}
.y1a_c00311{bottom:363.645000px;}
.y19_c00311{bottom:399.645000px;}
.y18_c00311{bottom:435.645000px;}
.y17_c00311{bottom:471.645000px;}
.y16_c00311{bottom:507.645000px;}
.y15_c00311{bottom:543.645000px;}
.y14_c00311{bottom:579.645000px;}
.y13_c00311{bottom:615.645000px;}
.y12_c00311{bottom:651.645000px;}
.y11_c00311{bottom:687.645000px;}
.y10_c00311{bottom:723.645000px;}
.yf_c00311{bottom:759.645000px;}
.ye_c00311{bottom:795.645000px;}
.yd_c00311{bottom:831.645000px;}
.yc_c00311{bottom:867.645000px;}
.yb_c00311{bottom:903.645000px;}
.ya_c00311{bottom:939.645000px;}
.y9_c00311{bottom:975.645000px;}
.y8_c00311{bottom:1011.645000px;}
.y7_c00311{bottom:1047.645000px;}
.y6_c00311{bottom:1083.645000px;}
.y2_c00311{bottom:1165.005000px;}
.h4_c00311{height:20.880000px;}
.h3_c00311{height:70.664062px;}
.h2_c00311{height:1237.365000px;}
.h0_c00311{height:1262.835000px;}
.h1_c00311{height:1263.000000px;}
.w3_c00311{width:27.360000px;}
.w2_c00311{width:867.465000px;}
.w0_c00311{width:892.935000px;}
.w1_c00311{width:893.250000px;}
.x0_c00311{left:0.000000px;}
.x1_c00311{left:12.735000px;}
.x3_c00311{left:95.394300px;}
.x5_c00311{left:149.400150px;}
.x4_c00311{left:432.855000px;}
.x2_c00311{left:880.050300px;}
@media print{
.v0_c00311{vertical-align:0.000000pt;}
.ls0_c00311{letter-spacing:0.000000pt;}
.ws0_c00311{word-spacing:0.000000pt;}
._2_c00311{width:1.017600pt;}
._7_c00311{width:2.310400pt;}
._0_c00311{width:3.884800pt;}
._a_c00311{width:4.902400pt;}
._1_c00311{width:6.105600pt;}
._9_c00311{width:7.398400pt;}
._4_c00311{width:9.164800pt;}
._8_c00311{width:10.796800pt;}
._6_c00311{width:11.712000pt;}
._3_c00311{width:14.841600pt;}
._5_c00311{width:21.702400pt;}
.fs0_c00311{font-size:64.000000pt;}
.y0_c00311{bottom:0.000000pt;}
.y5_c00311{bottom:4.480000pt;}
.y1_c00311{bottom:11.320000pt;}
.y3_c00311{bottom:40.360000pt;}
.y4_c00311{bottom:47.200000pt;}
.y21_c00311{bottom:99.240000pt;}
.y20_c00311{bottom:131.240000pt;}
.y1f_c00311{bottom:163.240000pt;}
.y1e_c00311{bottom:195.240000pt;}
.y1d_c00311{bottom:227.240000pt;}
.y1c_c00311{bottom:259.240000pt;}
.y1b_c00311{bottom:291.240000pt;}
.y1a_c00311{bottom:323.240000pt;}
.y19_c00311{bottom:355.240000pt;}
.y18_c00311{bottom:387.240000pt;}
.y17_c00311{bottom:419.240000pt;}
.y16_c00311{bottom:451.240000pt;}
.y15_c00311{bottom:483.240000pt;}
.y14_c00311{bottom:515.240000pt;}
.y13_c00311{bottom:547.240000pt;}
.y12_c00311{bottom:579.240000pt;}
.y11_c00311{bottom:611.240000pt;}
.y10_c00311{bottom:643.240000pt;}
.yf_c00311{bottom:675.240000pt;}
.ye_c00311{bottom:707.240000pt;}
.yd_c00311{bottom:739.240000pt;}
.yc_c00311{bottom:771.240000pt;}
.yb_c00311{bottom:803.240000pt;}
.ya_c00311{bottom:835.240000pt;}
.y9_c00311{bottom:867.240000pt;}
.y8_c00311{bottom:899.240000pt;}
.y7_c00311{bottom:931.240000pt;}
.y6_c00311{bottom:963.240000pt;}
.y2_c00311{bottom:1035.560000pt;}
.h4_c00311{height:18.560000pt;}
.h3_c00311{height:62.812500pt;}
.h2_c00311{height:1099.880000pt;}
.h0_c00311{height:1122.520000pt;}
.h1_c00311{height:1122.666667pt;}
.w3_c00311{width:24.320000pt;}
.w2_c00311{width:771.080000pt;}
.w0_c00311{width:793.720000pt;}
.w1_c00311{width:794.000000pt;}
.x0_c00311{left:0.000000pt;}
.x1_c00311{left:11.320000pt;}
.x3_c00311{left:84.794933pt;}
.x5_c00311{left:132.800133pt;}
.x4_c00311{left:384.760000pt;}
.x2_c00311{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_baf9095f640f982458f2dd38.woff2')format("woff");}.ff1_c00312{font-family:ff1_c00312;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00312{letter-spacing:0.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;}
}
.ws0_c00312{word-spacing:0.000000px;}
._1_c00312{width:1.166400px;}
._3_c00312{width:2.332800px;}
._a_c00312{width:3.340800px;}
._9_c00312{width:4.492800px;}
._4_c00312{width:5.637600px;}
._7_c00312{width:7.473600px;}
._e_c00312{width:8.524800px;}
._b_c00312{width:10.130400px;}
._2_c00312{width:11.541600px;}
._5_c00312{width:12.902400px;}
._8_c00312{width:14.047200px;}
._c_c00312{width:15.501600px;}
._6_c00312{width:16.639200px;}
._d_c00312{width:22.348800px;}
._0_c00312{width:30.456000px;}
.fc1_c00312{color:transparent;}
.fc0_c00312{color:rgb(0,0,0);}
.fs0_c00312{font-size:72.000000px;}
.y0_c00312{bottom:0.000000px;}
.y5_c00312{bottom:5.040000px;}
.y1_c00312{bottom:12.735000px;}
.y3_c00312{bottom:45.405000px;}
.y4_c00312{bottom:53.100000px;}
.y21_c00312{bottom:111.645000px;}
.y20_c00312{bottom:147.645000px;}
.y1f_c00312{bottom:183.645000px;}
.y1e_c00312{bottom:219.645000px;}
.y1d_c00312{bottom:255.645000px;}
.y1c_c00312{bottom:291.645000px;}
.y1b_c00312{bottom:327.645000px;}
.y1a_c00312{bottom:363.645000px;}
.y19_c00312{bottom:399.645000px;}
.y18_c00312{bottom:435.645000px;}
.y17_c00312{bottom:471.645000px;}
.y16_c00312{bottom:507.645000px;}
.y15_c00312{bottom:543.645000px;}
.y14_c00312{bottom:579.645000px;}
.y13_c00312{bottom:615.645000px;}
.y12_c00312{bottom:651.645000px;}
.y11_c00312{bottom:687.645000px;}
.y10_c00312{bottom:723.645000px;}
.yf_c00312{bottom:759.645000px;}
.ye_c00312{bottom:795.645000px;}
.yd_c00312{bottom:831.645000px;}
.yc_c00312{bottom:867.645000px;}
.yb_c00312{bottom:903.645000px;}
.ya_c00312{bottom:939.645000px;}
.y9_c00312{bottom:975.645000px;}
.y8_c00312{bottom:1011.645000px;}
.y7_c00312{bottom:1047.645000px;}
.y6_c00312{bottom:1083.645000px;}
.y2_c00312{bottom:1165.005000px;}
.h4_c00312{height:20.880000px;}
.h3_c00312{height:70.664062px;}
.h2_c00312{height:1237.365000px;}
.h0_c00312{height:1262.835000px;}
.h1_c00312{height:1263.000000px;}
.w3_c00312{width:27.360000px;}
.w2_c00312{width:867.465000px;}
.w0_c00312{width:892.935000px;}
.w1_c00312{width:893.250000px;}
.x0_c00312{left:0.000000px;}
.x1_c00312{left:12.735000px;}
.x3_c00312{left:95.397000px;}
.x5_c00312{left:149.400150px;}
.x4_c00312{left:432.855000px;}
.x2_c00312{left:880.125000px;}
@media print{
.v0_c00312{vertical-align:0.000000pt;}
.ls0_c00312{letter-spacing:0.000000pt;}
.ws0_c00312{word-spacing:0.000000pt;}
._1_c00312{width:1.036800pt;}
._3_c00312{width:2.073600pt;}
._a_c00312{width:2.969600pt;}
._9_c00312{width:3.993600pt;}
._4_c00312{width:5.011200pt;}
._7_c00312{width:6.643200pt;}
._e_c00312{width:7.577600pt;}
._b_c00312{width:9.004800pt;}
._2_c00312{width:10.259200pt;}
._5_c00312{width:11.468800pt;}
._8_c00312{width:12.486400pt;}
._c_c00312{width:13.779200pt;}
._6_c00312{width:14.790400pt;}
._d_c00312{width:19.865600pt;}
._0_c00312{width:27.072000pt;}
.fs0_c00312{font-size:64.000000pt;}
.y0_c00312{bottom:0.000000pt;}
.y5_c00312{bottom:4.480000pt;}
.y1_c00312{bottom:11.320000pt;}
.y3_c00312{bottom:40.360000pt;}
.y4_c00312{bottom:47.200000pt;}
.y21_c00312{bottom:99.240000pt;}
.y20_c00312{bottom:131.240000pt;}
.y1f_c00312{bottom:163.240000pt;}
.y1e_c00312{bottom:195.240000pt;}
.y1d_c00312{bottom:227.240000pt;}
.y1c_c00312{bottom:259.240000pt;}
.y1b_c00312{bottom:291.240000pt;}
.y1a_c00312{bottom:323.240000pt;}
.y19_c00312{bottom:355.240000pt;}
.y18_c00312{bottom:387.240000pt;}
.y17_c00312{bottom:419.240000pt;}
.y16_c00312{bottom:451.240000pt;}
.y15_c00312{bottom:483.240000pt;}
.y14_c00312{bottom:515.240000pt;}
.y13_c00312{bottom:547.240000pt;}
.y12_c00312{bottom:579.240000pt;}
.y11_c00312{bottom:611.240000pt;}
.y10_c00312{bottom:643.240000pt;}
.yf_c00312{bottom:675.240000pt;}
.ye_c00312{bottom:707.240000pt;}
.yd_c00312{bottom:739.240000pt;}
.yc_c00312{bottom:771.240000pt;}
.yb_c00312{bottom:803.240000pt;}
.ya_c00312{bottom:835.240000pt;}
.y9_c00312{bottom:867.240000pt;}
.y8_c00312{bottom:899.240000pt;}
.y7_c00312{bottom:931.240000pt;}
.y6_c00312{bottom:963.240000pt;}
.y2_c00312{bottom:1035.560000pt;}
.h4_c00312{height:18.560000pt;}
.h3_c00312{height:62.812500pt;}
.h2_c00312{height:1099.880000pt;}
.h0_c00312{height:1122.520000pt;}
.h1_c00312{height:1122.666667pt;}
.w3_c00312{width:24.320000pt;}
.w2_c00312{width:771.080000pt;}
.w0_c00312{width:793.720000pt;}
.w1_c00312{width:794.000000pt;}
.x0_c00312{left:0.000000pt;}
.x1_c00312{left:11.320000pt;}
.x3_c00312{left:84.797333pt;}
.x5_c00312{left:132.800133pt;}
.x4_c00312{left:384.760000pt;}
.x2_c00312{left:782.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_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_4fb631baecede4f3512c2dd8.woff2')format("woff");}.ff1_c00313{font-family:ff1_c00313;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00313{letter-spacing:0.000000px;}
.sc__c00313{text-shadow:none;}
.sc0_c00313{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00313{-webkit-text-stroke:0px transparent;}
.sc0_c00313{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00313{word-spacing:0.000000px;}
._6_c00313{margin-left:-1.072800px;}
._0_c00313{width:1.497600px;}
._2_c00313{width:3.081600px;}
._9_c00313{width:4.104000px;}
._5_c00313{width:5.205600px;}
._c_c00313{width:7.034400px;}
._b_c00313{width:9.568800px;}
._3_c00313{width:10.684800px;}
._a_c00313{width:13.024800px;}
._d_c00313{width:14.198400px;}
._1_c00313{width:15.429600px;}
._8_c00313{width:16.689600px;}
._7_c00313{width:19.029600px;}
._4_c00313{width:23.140800px;}
._e_c00313{width:40.204800px;}
.fc1_c00313{color:transparent;}
.fc0_c00313{color:rgb(0,0,0);}
.fs0_c00313{font-size:72.000000px;}
.y0_c00313{bottom:0.000000px;}
.y5_c00313{bottom:5.040000px;}
.y1_c00313{bottom:12.735000px;}
.y3_c00313{bottom:45.405000px;}
.y4_c00313{bottom:53.100000px;}
.y21_c00313{bottom:111.645000px;}
.y20_c00313{bottom:147.645000px;}
.y1f_c00313{bottom:183.645000px;}
.y1e_c00313{bottom:219.645000px;}
.y1d_c00313{bottom:255.645000px;}
.y1c_c00313{bottom:291.645000px;}
.y1b_c00313{bottom:327.645000px;}
.y1a_c00313{bottom:363.645000px;}
.y19_c00313{bottom:399.645000px;}
.y18_c00313{bottom:435.645000px;}
.y17_c00313{bottom:471.645000px;}
.y16_c00313{bottom:507.645000px;}
.y15_c00313{bottom:543.645000px;}
.y14_c00313{bottom:579.645000px;}
.y13_c00313{bottom:615.645000px;}
.y12_c00313{bottom:651.645000px;}
.y11_c00313{bottom:687.645000px;}
.y10_c00313{bottom:723.645000px;}
.yf_c00313{bottom:759.645000px;}
.ye_c00313{bottom:795.645000px;}
.yd_c00313{bottom:831.645000px;}
.yc_c00313{bottom:867.645000px;}
.yb_c00313{bottom:903.645000px;}
.ya_c00313{bottom:939.645000px;}
.y9_c00313{bottom:975.645000px;}
.y8_c00313{bottom:1011.645000px;}
.y7_c00313{bottom:1047.645000px;}
.y6_c00313{bottom:1083.645000px;}
.y2_c00313{bottom:1165.005000px;}
.h4_c00313{height:20.880000px;}
.h3_c00313{height:70.664062px;}
.h2_c00313{height:1237.365000px;}
.h0_c00313{height:1262.835000px;}
.h1_c00313{height:1263.000000px;}
.w3_c00313{width:27.360000px;}
.w2_c00313{width:867.465000px;}
.w0_c00313{width:892.935000px;}
.w1_c00313{width:893.250000px;}
.x0_c00313{left:0.000000px;}
.x1_c00313{left:12.735000px;}
.x3_c00313{left:95.394300px;}
.x5_c00313{left:149.400150px;}
.x4_c00313{left:432.855000px;}
.x2_c00313{left:880.050300px;}
@media print{
.v0_c00313{vertical-align:0.000000pt;}
.ls0_c00313{letter-spacing:0.000000pt;}
.ws0_c00313{word-spacing:0.000000pt;}
._6_c00313{margin-left:-0.953600pt;}
._0_c00313{width:1.331200pt;}
._2_c00313{width:2.739200pt;}
._9_c00313{width:3.648000pt;}
._5_c00313{width:4.627200pt;}
._c_c00313{width:6.252800pt;}
._b_c00313{width:8.505600pt;}
._3_c00313{width:9.497600pt;}
._a_c00313{width:11.577600pt;}
._d_c00313{width:12.620800pt;}
._1_c00313{width:13.715200pt;}
._8_c00313{width:14.835200pt;}
._7_c00313{width:16.915200pt;}
._4_c00313{width:20.569600pt;}
._e_c00313{width:35.737600pt;}
.fs0_c00313{font-size:64.000000pt;}
.y0_c00313{bottom:0.000000pt;}
.y5_c00313{bottom:4.480000pt;}
.y1_c00313{bottom:11.320000pt;}
.y3_c00313{bottom:40.360000pt;}
.y4_c00313{bottom:47.200000pt;}
.y21_c00313{bottom:99.240000pt;}
.y20_c00313{bottom:131.240000pt;}
.y1f_c00313{bottom:163.240000pt;}
.y1e_c00313{bottom:195.240000pt;}
.y1d_c00313{bottom:227.240000pt;}
.y1c_c00313{bottom:259.240000pt;}
.y1b_c00313{bottom:291.240000pt;}
.y1a_c00313{bottom:323.240000pt;}
.y19_c00313{bottom:355.240000pt;}
.y18_c00313{bottom:387.240000pt;}
.y17_c00313{bottom:419.240000pt;}
.y16_c00313{bottom:451.240000pt;}
.y15_c00313{bottom:483.240000pt;}
.y14_c00313{bottom:515.240000pt;}
.y13_c00313{bottom:547.240000pt;}
.y12_c00313{bottom:579.240000pt;}
.y11_c00313{bottom:611.240000pt;}
.y10_c00313{bottom:643.240000pt;}
.yf_c00313{bottom:675.240000pt;}
.ye_c00313{bottom:707.240000pt;}
.yd_c00313{bottom:739.240000pt;}
.yc_c00313{bottom:771.240000pt;}
.yb_c00313{bottom:803.240000pt;}
.ya_c00313{bottom:835.240000pt;}
.y9_c00313{bottom:867.240000pt;}
.y8_c00313{bottom:899.240000pt;}
.y7_c00313{bottom:931.240000pt;}
.y6_c00313{bottom:963.240000pt;}
.y2_c00313{bottom:1035.560000pt;}
.h4_c00313{height:18.560000pt;}
.h3_c00313{height:62.812500pt;}
.h2_c00313{height:1099.880000pt;}
.h0_c00313{height:1122.520000pt;}
.h1_c00313{height:1122.666667pt;}
.w3_c00313{width:24.320000pt;}
.w2_c00313{width:771.080000pt;}
.w0_c00313{width:793.720000pt;}
.w1_c00313{width:794.000000pt;}
.x0_c00313{left:0.000000pt;}
.x1_c00313{left:11.320000pt;}
.x3_c00313{left:84.794933pt;}
.x5_c00313{left:132.800133pt;}
.x4_c00313{left:384.760000pt;}
.x2_c00313{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f5b1dd8a2925b3de28b27de5.woff2')format("woff");}.ff1_c00314{font-family:ff1_c00314;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00314{letter-spacing:-0.014400px;}
.ls0_c00314{letter-spacing:0.000000px;}
.sc__c00314{text-shadow:none;}
.sc0_c00314{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00314{-webkit-text-stroke:0px transparent;}
.sc0_c00314{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00314{word-spacing:0.000000px;}
._4_c00314{width:1.476000px;}
._2_c00314{width:3.369600px;}
._1_c00314{width:4.672800px;}
._7_c00314{width:5.738400px;}
._a_c00314{width:7.668000px;}
._9_c00314{width:9.100800px;}
._8_c00314{width:10.958400px;}
._6_c00314{width:12.520800px;}
._0_c00314{width:13.996800px;}
._3_c00314{width:16.315200px;}
._5_c00314{width:19.087200px;}
._b_c00314{width:20.174400px;}
._c_c00314{width:22.161600px;}
.fc1_c00314{color:transparent;}
.fc0_c00314{color:rgb(0,0,0);}
.fs0_c00314{font-size:72.000000px;}
.y0_c00314{bottom:0.000000px;}
.y5_c00314{bottom:5.040000px;}
.y1_c00314{bottom:12.735000px;}
.y3_c00314{bottom:45.405000px;}
.y4_c00314{bottom:53.100000px;}
.y21_c00314{bottom:111.645000px;}
.y20_c00314{bottom:147.645000px;}
.y1f_c00314{bottom:183.645000px;}
.y1e_c00314{bottom:219.645000px;}
.y1d_c00314{bottom:255.645000px;}
.y1c_c00314{bottom:291.645000px;}
.y1b_c00314{bottom:327.645000px;}
.y1a_c00314{bottom:363.645000px;}
.y19_c00314{bottom:399.645000px;}
.y18_c00314{bottom:435.645000px;}
.y17_c00314{bottom:471.645000px;}
.y16_c00314{bottom:507.645000px;}
.y15_c00314{bottom:543.645000px;}
.y14_c00314{bottom:579.645000px;}
.y13_c00314{bottom:615.645000px;}
.y12_c00314{bottom:651.645000px;}
.y11_c00314{bottom:687.645000px;}
.y10_c00314{bottom:723.645000px;}
.yf_c00314{bottom:759.645000px;}
.ye_c00314{bottom:795.645000px;}
.yd_c00314{bottom:831.645000px;}
.yc_c00314{bottom:867.645000px;}
.yb_c00314{bottom:903.645000px;}
.ya_c00314{bottom:939.645000px;}
.y9_c00314{bottom:975.645000px;}
.y8_c00314{bottom:1011.645000px;}
.y7_c00314{bottom:1047.645000px;}
.y6_c00314{bottom:1083.645000px;}
.y2_c00314{bottom:1165.005000px;}
.h4_c00314{height:20.880000px;}
.h3_c00314{height:70.664062px;}
.h2_c00314{height:1237.365000px;}
.h0_c00314{height:1262.835000px;}
.h1_c00314{height:1263.000000px;}
.w3_c00314{width:27.360000px;}
.w2_c00314{width:867.465000px;}
.w0_c00314{width:892.935000px;}
.w1_c00314{width:893.250000px;}
.x0_c00314{left:0.000000px;}
.x1_c00314{left:12.735000px;}
.x3_c00314{left:95.397000px;}
.x5_c00314{left:149.400150px;}
.x4_c00314{left:432.855000px;}
.x2_c00314{left:880.125000px;}
@media print{
.v0_c00314{vertical-align:0.000000pt;}
.ls1_c00314{letter-spacing:-0.012800pt;}
.ls0_c00314{letter-spacing:0.000000pt;}
.ws0_c00314{word-spacing:0.000000pt;}
._4_c00314{width:1.312000pt;}
._2_c00314{width:2.995200pt;}
._1_c00314{width:4.153600pt;}
._7_c00314{width:5.100800pt;}
._a_c00314{width:6.816000pt;}
._9_c00314{width:8.089600pt;}
._8_c00314{width:9.740800pt;}
._6_c00314{width:11.129600pt;}
._0_c00314{width:12.441600pt;}
._3_c00314{width:14.502400pt;}
._5_c00314{width:16.966400pt;}
._b_c00314{width:17.932800pt;}
._c_c00314{width:19.699200pt;}
.fs0_c00314{font-size:64.000000pt;}
.y0_c00314{bottom:0.000000pt;}
.y5_c00314{bottom:4.480000pt;}
.y1_c00314{bottom:11.320000pt;}
.y3_c00314{bottom:40.360000pt;}
.y4_c00314{bottom:47.200000pt;}
.y21_c00314{bottom:99.240000pt;}
.y20_c00314{bottom:131.240000pt;}
.y1f_c00314{bottom:163.240000pt;}
.y1e_c00314{bottom:195.240000pt;}
.y1d_c00314{bottom:227.240000pt;}
.y1c_c00314{bottom:259.240000pt;}
.y1b_c00314{bottom:291.240000pt;}
.y1a_c00314{bottom:323.240000pt;}
.y19_c00314{bottom:355.240000pt;}
.y18_c00314{bottom:387.240000pt;}
.y17_c00314{bottom:419.240000pt;}
.y16_c00314{bottom:451.240000pt;}
.y15_c00314{bottom:483.240000pt;}
.y14_c00314{bottom:515.240000pt;}
.y13_c00314{bottom:547.240000pt;}
.y12_c00314{bottom:579.240000pt;}
.y11_c00314{bottom:611.240000pt;}
.y10_c00314{bottom:643.240000pt;}
.yf_c00314{bottom:675.240000pt;}
.ye_c00314{bottom:707.240000pt;}
.yd_c00314{bottom:739.240000pt;}
.yc_c00314{bottom:771.240000pt;}
.yb_c00314{bottom:803.240000pt;}
.ya_c00314{bottom:835.240000pt;}
.y9_c00314{bottom:867.240000pt;}
.y8_c00314{bottom:899.240000pt;}
.y7_c00314{bottom:931.240000pt;}
.y6_c00314{bottom:963.240000pt;}
.y2_c00314{bottom:1035.560000pt;}
.h4_c00314{height:18.560000pt;}
.h3_c00314{height:62.812500pt;}
.h2_c00314{height:1099.880000pt;}
.h0_c00314{height:1122.520000pt;}
.h1_c00314{height:1122.666667pt;}
.w3_c00314{width:24.320000pt;}
.w2_c00314{width:771.080000pt;}
.w0_c00314{width:793.720000pt;}
.w1_c00314{width:794.000000pt;}
.x0_c00314{left:0.000000pt;}
.x1_c00314{left:11.320000pt;}
.x3_c00314{left:84.797333pt;}
.x5_c00314{left:132.800133pt;}
.x4_c00314{left:384.760000pt;}
.x2_c00314{left:782.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_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_0873988a14f8f89161d2d7a1.woff2')format("woff");}.ff1_c00315{font-family:ff1_c00315;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00315;src:url('chunks/assets/font_a8ab229c8a23382ac639f336.woff2')format("woff");}.ff2_c00315{font-family:ff2_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;}
.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;}
.ls0_c00315{letter-spacing:0.000000px;}
.sc__c00315{text-shadow:none;}
.sc0_c00315{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00315{-webkit-text-stroke:0px transparent;}
.sc0_c00315{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00315{word-spacing:0.000000px;}
._4_c00315{width:1.872000px;}
._7_c00315{width:2.916000px;}
._5_c00315{width:4.039200px;}
._0_c00315{width:5.594400px;}
._b_c00315{width:7.336800px;}
._a_c00315{width:8.431200px;}
._1_c00315{width:9.583200px;}
._3_c00315{width:10.836000px;}
._9_c00315{width:12.232800px;}
._2_c00315{width:13.471200px;}
._8_c00315{width:15.062400px;}
._d_c00315{width:19.569600px;}
._6_c00315{width:21.859200px;}
._c_c00315{width:24.991200px;}
.fc1_c00315{color:transparent;}
.fc0_c00315{color:rgb(0,0,0);}
.fs0_c00315{font-size:72.000000px;}
.y0_c00315{bottom:0.000000px;}
.y5_c00315{bottom:5.040000px;}
.y1_c00315{bottom:12.735000px;}
.y3_c00315{bottom:45.405000px;}
.y4_c00315{bottom:53.100000px;}
.y21_c00315{bottom:111.645000px;}
.y20_c00315{bottom:147.645000px;}
.y1f_c00315{bottom:183.645000px;}
.y1e_c00315{bottom:219.645000px;}
.y1d_c00315{bottom:255.645000px;}
.y1c_c00315{bottom:291.645000px;}
.y1b_c00315{bottom:327.645000px;}
.y1a_c00315{bottom:363.645000px;}
.y19_c00315{bottom:399.645000px;}
.y18_c00315{bottom:435.645000px;}
.y17_c00315{bottom:471.645000px;}
.y16_c00315{bottom:507.645000px;}
.y15_c00315{bottom:543.645000px;}
.y14_c00315{bottom:579.645000px;}
.y13_c00315{bottom:615.645000px;}
.y12_c00315{bottom:651.645000px;}
.y11_c00315{bottom:687.645000px;}
.y10_c00315{bottom:723.645000px;}
.yf_c00315{bottom:759.645000px;}
.ye_c00315{bottom:795.645000px;}
.yd_c00315{bottom:831.645000px;}
.yc_c00315{bottom:867.645000px;}
.yb_c00315{bottom:903.645000px;}
.ya_c00315{bottom:939.645000px;}
.y9_c00315{bottom:975.645000px;}
.y8_c00315{bottom:1011.645000px;}
.y7_c00315{bottom:1047.645000px;}
.y6_c00315{bottom:1083.645000px;}
.y2_c00315{bottom:1165.005000px;}
.h4_c00315{height:20.880000px;}
.h5_c00315{height:70.628906px;}
.h3_c00315{height:70.664062px;}
.h2_c00315{height:1237.365000px;}
.h0_c00315{height:1262.835000px;}
.h1_c00315{height:1263.000000px;}
.w3_c00315{width:27.360000px;}
.w2_c00315{width:867.465000px;}
.w0_c00315{width:892.935000px;}
.w1_c00315{width:893.250000px;}
.x0_c00315{left:0.000000px;}
.x1_c00315{left:12.735000px;}
.x7_c00315{left:63.455400px;}
.x3_c00315{left:95.394300px;}
.x5_c00315{left:117.450150px;}
.x6_c00315{left:148.572150px;}
.x4_c00315{left:432.855000px;}
.x2_c00315{left:880.050300px;}
@media print{
.v0_c00315{vertical-align:0.000000pt;}
.ls0_c00315{letter-spacing:0.000000pt;}
.ws0_c00315{word-spacing:0.000000pt;}
._4_c00315{width:1.664000pt;}
._7_c00315{width:2.592000pt;}
._5_c00315{width:3.590400pt;}
._0_c00315{width:4.972800pt;}
._b_c00315{width:6.521600pt;}
._a_c00315{width:7.494400pt;}
._1_c00315{width:8.518400pt;}
._3_c00315{width:9.632000pt;}
._9_c00315{width:10.873600pt;}
._2_c00315{width:11.974400pt;}
._8_c00315{width:13.388800pt;}
._d_c00315{width:17.395200pt;}
._6_c00315{width:19.430400pt;}
._c_c00315{width:22.214400pt;}
.fs0_c00315{font-size:64.000000pt;}
.y0_c00315{bottom:0.000000pt;}
.y5_c00315{bottom:4.480000pt;}
.y1_c00315{bottom:11.320000pt;}
.y3_c00315{bottom:40.360000pt;}
.y4_c00315{bottom:47.200000pt;}
.y21_c00315{bottom:99.240000pt;}
.y20_c00315{bottom:131.240000pt;}
.y1f_c00315{bottom:163.240000pt;}
.y1e_c00315{bottom:195.240000pt;}
.y1d_c00315{bottom:227.240000pt;}
.y1c_c00315{bottom:259.240000pt;}
.y1b_c00315{bottom:291.240000pt;}
.y1a_c00315{bottom:323.240000pt;}
.y19_c00315{bottom:355.240000pt;}
.y18_c00315{bottom:387.240000pt;}
.y17_c00315{bottom:419.240000pt;}
.y16_c00315{bottom:451.240000pt;}
.y15_c00315{bottom:483.240000pt;}
.y14_c00315{bottom:515.240000pt;}
.y13_c00315{bottom:547.240000pt;}
.y12_c00315{bottom:579.240000pt;}
.y11_c00315{bottom:611.240000pt;}
.y10_c00315{bottom:643.240000pt;}
.yf_c00315{bottom:675.240000pt;}
.ye_c00315{bottom:707.240000pt;}
.yd_c00315{bottom:739.240000pt;}
.yc_c00315{bottom:771.240000pt;}
.yb_c00315{bottom:803.240000pt;}
.ya_c00315{bottom:835.240000pt;}
.y9_c00315{bottom:867.240000pt;}
.y8_c00315{bottom:899.240000pt;}
.y7_c00315{bottom:931.240000pt;}
.y6_c00315{bottom:963.240000pt;}
.y2_c00315{bottom:1035.560000pt;}
.h4_c00315{height:18.560000pt;}
.h5_c00315{height:62.781250pt;}
.h3_c00315{height:62.812500pt;}
.h2_c00315{height:1099.880000pt;}
.h0_c00315{height:1122.520000pt;}
.h1_c00315{height:1122.666667pt;}
.w3_c00315{width:24.320000pt;}
.w2_c00315{width:771.080000pt;}
.w0_c00315{width:793.720000pt;}
.w1_c00315{width:794.000000pt;}
.x0_c00315{left:0.000000pt;}
.x1_c00315{left:11.320000pt;}
.x7_c00315{left:56.404800pt;}
.x3_c00315{left:84.794933pt;}
.x5_c00315{left:104.400133pt;}
.x6_c00315{left:132.064133pt;}
.x4_c00315{left:384.760000pt;}
.x2_c00315{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d8d8fa6ba1e911fea9c88193.woff2')format("woff");}.ff1_c00316{font-family:ff1_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;}
.m0_c00316{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00316{vertical-align:0.000000px;}
.ls0_c00316{letter-spacing:0.000000px;}
.sc__c00316{text-shadow:none;}
.sc0_c00316{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00316{-webkit-text-stroke:0px transparent;}
.sc0_c00316{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00316{word-spacing:0.000000px;}
._3_c00316{width:1.058400px;}
._2_c00316{width:3.002400px;}
._4_c00316{width:4.442400px;}
._1_c00316{width:6.177600px;}
._6_c00316{width:7.329600px;}
._5_c00316{width:8.791200px;}
._0_c00316{width:10.152000px;}
._8_c00316{width:16.315200px;}
._7_c00316{width:31.096800px;}
.fc1_c00316{color:transparent;}
.fc0_c00316{color:rgb(0,0,0);}
.fs0_c00316{font-size:72.000000px;}
.y0_c00316{bottom:0.000000px;}
.y5_c00316{bottom:5.040000px;}
.y1_c00316{bottom:12.735000px;}
.y3_c00316{bottom:45.405000px;}
.y4_c00316{bottom:53.100000px;}
.y20_c00316{bottom:147.645000px;}
.y1f_c00316{bottom:183.645000px;}
.y1e_c00316{bottom:219.645000px;}
.y1d_c00316{bottom:255.645000px;}
.y1c_c00316{bottom:291.645000px;}
.y1b_c00316{bottom:327.645000px;}
.y1a_c00316{bottom:363.645000px;}
.y19_c00316{bottom:399.645000px;}
.y18_c00316{bottom:435.645000px;}
.y17_c00316{bottom:471.645000px;}
.y16_c00316{bottom:507.645000px;}
.y15_c00316{bottom:543.645000px;}
.y14_c00316{bottom:579.645000px;}
.y13_c00316{bottom:615.645000px;}
.y12_c00316{bottom:651.645000px;}
.y11_c00316{bottom:687.645000px;}
.y10_c00316{bottom:723.645000px;}
.yf_c00316{bottom:759.645000px;}
.ye_c00316{bottom:795.645000px;}
.yd_c00316{bottom:831.645000px;}
.yc_c00316{bottom:867.645000px;}
.yb_c00316{bottom:903.645000px;}
.ya_c00316{bottom:939.645000px;}
.y9_c00316{bottom:975.645000px;}
.y8_c00316{bottom:1011.645000px;}
.y7_c00316{bottom:1047.645000px;}
.y6_c00316{bottom:1083.645000px;}
.y2_c00316{bottom:1165.005000px;}
.h4_c00316{height:20.880000px;}
.h3_c00316{height:70.664062px;}
.h2_c00316{height:1237.365000px;}
.h0_c00316{height:1262.835000px;}
.h1_c00316{height:1263.000000px;}
.w3_c00316{width:27.360000px;}
.w2_c00316{width:867.465000px;}
.w0_c00316{width:892.935000px;}
.w1_c00316{width:893.250000px;}
.x0_c00316{left:0.000000px;}
.x1_c00316{left:12.735000px;}
.x3_c00316{left:95.397000px;}
.x5_c00316{left:149.400150px;}
.x4_c00316{left:432.855000px;}
.x2_c00316{left:880.125000px;}
@media print{
.v0_c00316{vertical-align:0.000000pt;}
.ls0_c00316{letter-spacing:0.000000pt;}
.ws0_c00316{word-spacing:0.000000pt;}
._3_c00316{width:0.940800pt;}
._2_c00316{width:2.668800pt;}
._4_c00316{width:3.948800pt;}
._1_c00316{width:5.491200pt;}
._6_c00316{width:6.515200pt;}
._5_c00316{width:7.814400pt;}
._0_c00316{width:9.024000pt;}
._8_c00316{width:14.502400pt;}
._7_c00316{width:27.641600pt;}
.fs0_c00316{font-size:64.000000pt;}
.y0_c00316{bottom:0.000000pt;}
.y5_c00316{bottom:4.480000pt;}
.y1_c00316{bottom:11.320000pt;}
.y3_c00316{bottom:40.360000pt;}
.y4_c00316{bottom:47.200000pt;}
.y20_c00316{bottom:131.240000pt;}
.y1f_c00316{bottom:163.240000pt;}
.y1e_c00316{bottom:195.240000pt;}
.y1d_c00316{bottom:227.240000pt;}
.y1c_c00316{bottom:259.240000pt;}
.y1b_c00316{bottom:291.240000pt;}
.y1a_c00316{bottom:323.240000pt;}
.y19_c00316{bottom:355.240000pt;}
.y18_c00316{bottom:387.240000pt;}
.y17_c00316{bottom:419.240000pt;}
.y16_c00316{bottom:451.240000pt;}
.y15_c00316{bottom:483.240000pt;}
.y14_c00316{bottom:515.240000pt;}
.y13_c00316{bottom:547.240000pt;}
.y12_c00316{bottom:579.240000pt;}
.y11_c00316{bottom:611.240000pt;}
.y10_c00316{bottom:643.240000pt;}
.yf_c00316{bottom:675.240000pt;}
.ye_c00316{bottom:707.240000pt;}
.yd_c00316{bottom:739.240000pt;}
.yc_c00316{bottom:771.240000pt;}
.yb_c00316{bottom:803.240000pt;}
.ya_c00316{bottom:835.240000pt;}
.y9_c00316{bottom:867.240000pt;}
.y8_c00316{bottom:899.240000pt;}
.y7_c00316{bottom:931.240000pt;}
.y6_c00316{bottom:963.240000pt;}
.y2_c00316{bottom:1035.560000pt;}
.h4_c00316{height:18.560000pt;}
.h3_c00316{height:62.812500pt;}
.h2_c00316{height:1099.880000pt;}
.h0_c00316{height:1122.520000pt;}
.h1_c00316{height:1122.666667pt;}
.w3_c00316{width:24.320000pt;}
.w2_c00316{width:771.080000pt;}
.w0_c00316{width:793.720000pt;}
.w1_c00316{width:794.000000pt;}
.x0_c00316{left:0.000000pt;}
.x1_c00316{left:11.320000pt;}
.x3_c00316{left:84.797333pt;}
.x5_c00316{left:132.800133pt;}
.x4_c00316{left:384.760000pt;}
.x2_c00316{left:782.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_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_4f683fa1207de1adc0c44f6d.woff2')format("woff");}.ff1_c00317{font-family:ff1_c00317;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00317{letter-spacing:0.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;}
}
.ws0_c00317{word-spacing:0.000000px;}
._9_c00317{width:1.447200px;}
._d_c00317{width:3.492000px;}
._2_c00317{width:4.608000px;}
._4_c00317{width:5.868000px;}
._8_c00317{width:6.904800px;}
._1_c00317{width:8.150400px;}
._6_c00317{width:9.252000px;}
._3_c00317{width:13.701600px;}
._7_c00317{width:15.105600px;}
._0_c00317{width:16.351200px;}
._5_c00317{width:20.131200px;}
._c_c00317{width:21.146400px;}
._b_c00317{width:25.984800px;}
._a_c00317{width:49.809600px;}
.fc1_c00317{color:transparent;}
.fc0_c00317{color:rgb(0,0,0);}
.fs0_c00317{font-size:72.000000px;}
.y0_c00317{bottom:0.000000px;}
.y5_c00317{bottom:5.040000px;}
.y1_c00317{bottom:12.735000px;}
.y3_c00317{bottom:45.405000px;}
.y4_c00317{bottom:53.100000px;}
.y20_c00317{bottom:147.645000px;}
.y1f_c00317{bottom:183.645000px;}
.y1e_c00317{bottom:219.645000px;}
.y1d_c00317{bottom:255.645000px;}
.y1c_c00317{bottom:291.645000px;}
.y1b_c00317{bottom:327.645000px;}
.y1a_c00317{bottom:363.645000px;}
.y19_c00317{bottom:399.645000px;}
.y18_c00317{bottom:435.645000px;}
.y17_c00317{bottom:471.645000px;}
.y16_c00317{bottom:507.645000px;}
.y15_c00317{bottom:543.645000px;}
.y14_c00317{bottom:579.645000px;}
.y13_c00317{bottom:615.645000px;}
.y12_c00317{bottom:651.645000px;}
.y11_c00317{bottom:687.645000px;}
.y10_c00317{bottom:723.645000px;}
.yf_c00317{bottom:759.645000px;}
.ye_c00317{bottom:795.645000px;}
.yd_c00317{bottom:831.645000px;}
.yc_c00317{bottom:867.645000px;}
.yb_c00317{bottom:903.645000px;}
.ya_c00317{bottom:939.645000px;}
.y9_c00317{bottom:975.645000px;}
.y8_c00317{bottom:1011.645000px;}
.y7_c00317{bottom:1047.645000px;}
.y6_c00317{bottom:1083.645000px;}
.y2_c00317{bottom:1165.005000px;}
.h4_c00317{height:20.880000px;}
.h3_c00317{height:70.664062px;}
.h2_c00317{height:1237.365000px;}
.h0_c00317{height:1262.835000px;}
.h1_c00317{height:1263.000000px;}
.w3_c00317{width:27.360000px;}
.w2_c00317{width:867.465000px;}
.w0_c00317{width:892.935000px;}
.w1_c00317{width:893.250000px;}
.x0_c00317{left:0.000000px;}
.x1_c00317{left:12.735000px;}
.x3_c00317{left:95.394300px;}
.x5_c00317{left:149.400150px;}
.x4_c00317{left:432.855000px;}
.x2_c00317{left:880.050300px;}
@media print{
.v0_c00317{vertical-align:0.000000pt;}
.ls0_c00317{letter-spacing:0.000000pt;}
.ws0_c00317{word-spacing:0.000000pt;}
._9_c00317{width:1.286400pt;}
._d_c00317{width:3.104000pt;}
._2_c00317{width:4.096000pt;}
._4_c00317{width:5.216000pt;}
._8_c00317{width:6.137600pt;}
._1_c00317{width:7.244800pt;}
._6_c00317{width:8.224000pt;}
._3_c00317{width:12.179200pt;}
._7_c00317{width:13.427200pt;}
._0_c00317{width:14.534400pt;}
._5_c00317{width:17.894400pt;}
._c_c00317{width:18.796800pt;}
._b_c00317{width:23.097600pt;}
._a_c00317{width:44.275200pt;}
.fs0_c00317{font-size:64.000000pt;}
.y0_c00317{bottom:0.000000pt;}
.y5_c00317{bottom:4.480000pt;}
.y1_c00317{bottom:11.320000pt;}
.y3_c00317{bottom:40.360000pt;}
.y4_c00317{bottom:47.200000pt;}
.y20_c00317{bottom:131.240000pt;}
.y1f_c00317{bottom:163.240000pt;}
.y1e_c00317{bottom:195.240000pt;}
.y1d_c00317{bottom:227.240000pt;}
.y1c_c00317{bottom:259.240000pt;}
.y1b_c00317{bottom:291.240000pt;}
.y1a_c00317{bottom:323.240000pt;}
.y19_c00317{bottom:355.240000pt;}
.y18_c00317{bottom:387.240000pt;}
.y17_c00317{bottom:419.240000pt;}
.y16_c00317{bottom:451.240000pt;}
.y15_c00317{bottom:483.240000pt;}
.y14_c00317{bottom:515.240000pt;}
.y13_c00317{bottom:547.240000pt;}
.y12_c00317{bottom:579.240000pt;}
.y11_c00317{bottom:611.240000pt;}
.y10_c00317{bottom:643.240000pt;}
.yf_c00317{bottom:675.240000pt;}
.ye_c00317{bottom:707.240000pt;}
.yd_c00317{bottom:739.240000pt;}
.yc_c00317{bottom:771.240000pt;}
.yb_c00317{bottom:803.240000pt;}
.ya_c00317{bottom:835.240000pt;}
.y9_c00317{bottom:867.240000pt;}
.y8_c00317{bottom:899.240000pt;}
.y7_c00317{bottom:931.240000pt;}
.y6_c00317{bottom:963.240000pt;}
.y2_c00317{bottom:1035.560000pt;}
.h4_c00317{height:18.560000pt;}
.h3_c00317{height:62.812500pt;}
.h2_c00317{height:1099.880000pt;}
.h0_c00317{height:1122.520000pt;}
.h1_c00317{height:1122.666667pt;}
.w3_c00317{width:24.320000pt;}
.w2_c00317{width:771.080000pt;}
.w0_c00317{width:793.720000pt;}
.w1_c00317{width:794.000000pt;}
.x0_c00317{left:0.000000pt;}
.x1_c00317{left:11.320000pt;}
.x3_c00317{left:84.794933pt;}
.x5_c00317{left:132.800133pt;}
.x4_c00317{left:384.760000pt;}
.x2_c00317{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d482b42ffe1f7f6e85eb89d.woff2')format("woff");}.ff1_c00318{font-family:ff1_c00318;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00318{letter-spacing:0.000000px;}
.sc__c00318{text-shadow:none;}
.sc0_c00318{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00318{-webkit-text-stroke:0px transparent;}
.sc0_c00318{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00318{word-spacing:0.000000px;}
._6_c00318{width:1.166400px;}
._5_c00318{width:2.448000px;}
._7_c00318{width:4.132800px;}
._2_c00318{width:5.695200px;}
._9_c00318{width:6.854400px;}
._b_c00318{width:8.006400px;}
._f_c00318{width:9.144000px;}
._8_c00318{width:10.152000px;}
._0_c00318{width:11.152800px;}
._a_c00318{width:13.651200px;}
._e_c00318{width:14.688000px;}
._4_c00318{width:16.228800px;}
._10_c00318{width:19.713600px;}
._d_c00318{width:20.829600px;}
._1_c00318{width:22.132800px;}
._c_c00318{width:23.803200px;}
._3_c00318{width:38.995200px;}
.fc1_c00318{color:transparent;}
.fc0_c00318{color:rgb(0,0,0);}
.fs0_c00318{font-size:72.000000px;}
.y0_c00318{bottom:0.000000px;}
.y5_c00318{bottom:5.040000px;}
.y1_c00318{bottom:12.735000px;}
.y3_c00318{bottom:45.405000px;}
.y4_c00318{bottom:53.100000px;}
.y20_c00318{bottom:147.645000px;}
.y1f_c00318{bottom:183.645000px;}
.y1e_c00318{bottom:219.645000px;}
.y1d_c00318{bottom:255.645000px;}
.y1c_c00318{bottom:291.645000px;}
.y1b_c00318{bottom:327.645000px;}
.y1a_c00318{bottom:363.645000px;}
.y19_c00318{bottom:399.645000px;}
.y18_c00318{bottom:435.645000px;}
.y17_c00318{bottom:471.645000px;}
.y16_c00318{bottom:507.645000px;}
.y15_c00318{bottom:543.645000px;}
.y14_c00318{bottom:579.645000px;}
.y13_c00318{bottom:615.645000px;}
.y12_c00318{bottom:651.645000px;}
.y11_c00318{bottom:687.645000px;}
.y10_c00318{bottom:723.645000px;}
.yf_c00318{bottom:759.645000px;}
.ye_c00318{bottom:795.645000px;}
.yd_c00318{bottom:831.645000px;}
.yc_c00318{bottom:867.645000px;}
.yb_c00318{bottom:903.645000px;}
.ya_c00318{bottom:939.645000px;}
.y9_c00318{bottom:975.645000px;}
.y8_c00318{bottom:1011.645000px;}
.y7_c00318{bottom:1047.645000px;}
.y6_c00318{bottom:1083.645000px;}
.y2_c00318{bottom:1165.005000px;}
.h4_c00318{height:20.880000px;}
.h3_c00318{height:70.664062px;}
.h2_c00318{height:1237.365000px;}
.h0_c00318{height:1262.835000px;}
.h1_c00318{height:1263.000000px;}
.w3_c00318{width:27.360000px;}
.w2_c00318{width:867.465000px;}
.w0_c00318{width:892.935000px;}
.w1_c00318{width:893.250000px;}
.x0_c00318{left:0.000000px;}
.x1_c00318{left:12.735000px;}
.x3_c00318{left:95.397000px;}
.x5_c00318{left:149.400150px;}
.x4_c00318{left:432.855000px;}
.x2_c00318{left:880.125000px;}
@media print{
.v0_c00318{vertical-align:0.000000pt;}
.ls0_c00318{letter-spacing:0.000000pt;}
.ws0_c00318{word-spacing:0.000000pt;}
._6_c00318{width:1.036800pt;}
._5_c00318{width:2.176000pt;}
._7_c00318{width:3.673600pt;}
._2_c00318{width:5.062400pt;}
._9_c00318{width:6.092800pt;}
._b_c00318{width:7.116800pt;}
._f_c00318{width:8.128000pt;}
._8_c00318{width:9.024000pt;}
._0_c00318{width:9.913600pt;}
._a_c00318{width:12.134400pt;}
._e_c00318{width:13.056000pt;}
._4_c00318{width:14.425600pt;}
._10_c00318{width:17.523200pt;}
._d_c00318{width:18.515200pt;}
._1_c00318{width:19.673600pt;}
._c_c00318{width:21.158400pt;}
._3_c00318{width:34.662400pt;}
.fs0_c00318{font-size:64.000000pt;}
.y0_c00318{bottom:0.000000pt;}
.y5_c00318{bottom:4.480000pt;}
.y1_c00318{bottom:11.320000pt;}
.y3_c00318{bottom:40.360000pt;}
.y4_c00318{bottom:47.200000pt;}
.y20_c00318{bottom:131.240000pt;}
.y1f_c00318{bottom:163.240000pt;}
.y1e_c00318{bottom:195.240000pt;}
.y1d_c00318{bottom:227.240000pt;}
.y1c_c00318{bottom:259.240000pt;}
.y1b_c00318{bottom:291.240000pt;}
.y1a_c00318{bottom:323.240000pt;}
.y19_c00318{bottom:355.240000pt;}
.y18_c00318{bottom:387.240000pt;}
.y17_c00318{bottom:419.240000pt;}
.y16_c00318{bottom:451.240000pt;}
.y15_c00318{bottom:483.240000pt;}
.y14_c00318{bottom:515.240000pt;}
.y13_c00318{bottom:547.240000pt;}
.y12_c00318{bottom:579.240000pt;}
.y11_c00318{bottom:611.240000pt;}
.y10_c00318{bottom:643.240000pt;}
.yf_c00318{bottom:675.240000pt;}
.ye_c00318{bottom:707.240000pt;}
.yd_c00318{bottom:739.240000pt;}
.yc_c00318{bottom:771.240000pt;}
.yb_c00318{bottom:803.240000pt;}
.ya_c00318{bottom:835.240000pt;}
.y9_c00318{bottom:867.240000pt;}
.y8_c00318{bottom:899.240000pt;}
.y7_c00318{bottom:931.240000pt;}
.y6_c00318{bottom:963.240000pt;}
.y2_c00318{bottom:1035.560000pt;}
.h4_c00318{height:18.560000pt;}
.h3_c00318{height:62.812500pt;}
.h2_c00318{height:1099.880000pt;}
.h0_c00318{height:1122.520000pt;}
.h1_c00318{height:1122.666667pt;}
.w3_c00318{width:24.320000pt;}
.w2_c00318{width:771.080000pt;}
.w0_c00318{width:793.720000pt;}
.w1_c00318{width:794.000000pt;}
.x0_c00318{left:0.000000pt;}
.x1_c00318{left:11.320000pt;}
.x3_c00318{left:84.797333pt;}
.x5_c00318{left:132.800133pt;}
.x4_c00318{left:384.760000pt;}
.x2_c00318{left:782.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_2b1570261b3ff47e7651f6c0.woff2')format("woff");}.ff1_c00319{font-family:ff1_c00319;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00319{letter-spacing:0.000000px;}
.ls1_c00319{letter-spacing:0.014400px;}
.sc__c00319{text-shadow:none;}
.sc0_c00319{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00319{-webkit-text-stroke:0px transparent;}
.sc0_c00319{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00319{word-spacing:0.000000px;}
._7_c00319{width:1.497600px;}
._c_c00319{width:2.577600px;}
._6_c00319{width:3.650400px;}
._1_c00319{width:4.730400px;}
._a_c00319{width:5.796000px;}
._8_c00319{width:7.221600px;}
._4_c00319{width:8.503200px;}
._0_c00319{width:9.691200px;}
._2_c00319{width:11.498400px;}
._3_c00319{width:13.428000px;}
._b_c00319{width:14.450400px;}
._d_c00319{width:15.861600px;}
._9_c00319{width:16.927200px;}
._5_c00319{width:24.595200px;}
.fc1_c00319{color:transparent;}
.fc0_c00319{color:rgb(0,0,0);}
.fs0_c00319{font-size:72.000000px;}
.y0_c00319{bottom:0.000000px;}
.y5_c00319{bottom:5.040000px;}
.y1_c00319{bottom:12.735000px;}
.y3_c00319{bottom:45.405000px;}
.y4_c00319{bottom:53.100000px;}
.y21_c00319{bottom:111.645000px;}
.y20_c00319{bottom:147.645000px;}
.y1f_c00319{bottom:183.645000px;}
.y1e_c00319{bottom:219.645000px;}
.y1d_c00319{bottom:255.645000px;}
.y1c_c00319{bottom:291.645000px;}
.y1b_c00319{bottom:327.645000px;}
.y1a_c00319{bottom:363.645000px;}
.y19_c00319{bottom:399.645000px;}
.y18_c00319{bottom:435.645000px;}
.y17_c00319{bottom:471.645000px;}
.y16_c00319{bottom:507.645000px;}
.y15_c00319{bottom:543.645000px;}
.y14_c00319{bottom:579.645000px;}
.y13_c00319{bottom:615.645000px;}
.y12_c00319{bottom:651.645000px;}
.y11_c00319{bottom:687.645000px;}
.y10_c00319{bottom:723.645000px;}
.yf_c00319{bottom:759.645000px;}
.ye_c00319{bottom:795.645000px;}
.yd_c00319{bottom:831.645000px;}
.yc_c00319{bottom:867.645000px;}
.yb_c00319{bottom:903.645000px;}
.ya_c00319{bottom:939.645000px;}
.y9_c00319{bottom:975.645000px;}
.y8_c00319{bottom:1011.645000px;}
.y7_c00319{bottom:1047.645000px;}
.y6_c00319{bottom:1083.645000px;}
.y2_c00319{bottom:1165.005000px;}
.h4_c00319{height:20.880000px;}
.h3_c00319{height:70.664062px;}
.h2_c00319{height:1237.365000px;}
.h0_c00319{height:1262.835000px;}
.h1_c00319{height:1263.000000px;}
.w3_c00319{width:27.360000px;}
.w2_c00319{width:867.465000px;}
.w0_c00319{width:892.935000px;}
.w1_c00319{width:893.250000px;}
.x0_c00319{left:0.000000px;}
.x1_c00319{left:12.735000px;}
.x3_c00319{left:95.394300px;}
.x5_c00319{left:149.400150px;}
.x4_c00319{left:432.855000px;}
.x2_c00319{left:880.050300px;}
@media print{
.v0_c00319{vertical-align:0.000000pt;}
.ls0_c00319{letter-spacing:0.000000pt;}
.ls1_c00319{letter-spacing:0.012800pt;}
.ws0_c00319{word-spacing:0.000000pt;}
._7_c00319{width:1.331200pt;}
._c_c00319{width:2.291200pt;}
._6_c00319{width:3.244800pt;}
._1_c00319{width:4.204800pt;}
._a_c00319{width:5.152000pt;}
._8_c00319{width:6.419200pt;}
._4_c00319{width:7.558400pt;}
._0_c00319{width:8.614400pt;}
._2_c00319{width:10.220800pt;}
._3_c00319{width:11.936000pt;}
._b_c00319{width:12.844800pt;}
._d_c00319{width:14.099200pt;}
._9_c00319{width:15.046400pt;}
._5_c00319{width:21.862400pt;}
.fs0_c00319{font-size:64.000000pt;}
.y0_c00319{bottom:0.000000pt;}
.y5_c00319{bottom:4.480000pt;}
.y1_c00319{bottom:11.320000pt;}
.y3_c00319{bottom:40.360000pt;}
.y4_c00319{bottom:47.200000pt;}
.y21_c00319{bottom:99.240000pt;}
.y20_c00319{bottom:131.240000pt;}
.y1f_c00319{bottom:163.240000pt;}
.y1e_c00319{bottom:195.240000pt;}
.y1d_c00319{bottom:227.240000pt;}
.y1c_c00319{bottom:259.240000pt;}
.y1b_c00319{bottom:291.240000pt;}
.y1a_c00319{bottom:323.240000pt;}
.y19_c00319{bottom:355.240000pt;}
.y18_c00319{bottom:387.240000pt;}
.y17_c00319{bottom:419.240000pt;}
.y16_c00319{bottom:451.240000pt;}
.y15_c00319{bottom:483.240000pt;}
.y14_c00319{bottom:515.240000pt;}
.y13_c00319{bottom:547.240000pt;}
.y12_c00319{bottom:579.240000pt;}
.y11_c00319{bottom:611.240000pt;}
.y10_c00319{bottom:643.240000pt;}
.yf_c00319{bottom:675.240000pt;}
.ye_c00319{bottom:707.240000pt;}
.yd_c00319{bottom:739.240000pt;}
.yc_c00319{bottom:771.240000pt;}
.yb_c00319{bottom:803.240000pt;}
.ya_c00319{bottom:835.240000pt;}
.y9_c00319{bottom:867.240000pt;}
.y8_c00319{bottom:899.240000pt;}
.y7_c00319{bottom:931.240000pt;}
.y6_c00319{bottom:963.240000pt;}
.y2_c00319{bottom:1035.560000pt;}
.h4_c00319{height:18.560000pt;}
.h3_c00319{height:62.812500pt;}
.h2_c00319{height:1099.880000pt;}
.h0_c00319{height:1122.520000pt;}
.h1_c00319{height:1122.666667pt;}
.w3_c00319{width:24.320000pt;}
.w2_c00319{width:771.080000pt;}
.w0_c00319{width:793.720000pt;}
.w1_c00319{width:794.000000pt;}
.x0_c00319{left:0.000000pt;}
.x1_c00319{left:11.320000pt;}
.x3_c00319{left:84.794933pt;}
.x5_c00319{left:132.800133pt;}
.x4_c00319{left:384.760000pt;}
.x2_c00319{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_393fdf49fb31625cf80f07fb.woff2')format("woff");}.ff1_c00320{font-family:ff1_c00320;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00320{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00320{vertical-align:0.000000px;}
.ls0_c00320{letter-spacing:0.000000px;}
.sc__c00320{text-shadow:none;}
.sc0_c00320{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00320{-webkit-text-stroke:0px transparent;}
.sc0_c00320{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00320{word-spacing:0.000000px;}
._9_c00320{width:1.080000px;}
._2_c00320{width:2.354400px;}
._b_c00320{width:3.463200px;}
._5_c00320{width:4.744800px;}
._6_c00320{width:6.552000px;}
._3_c00320{width:7.876800px;}
._e_c00320{width:8.899200px;}
._0_c00320{width:9.979200px;}
._1_c00320{width:11.016000px;}
._7_c00320{width:12.924000px;}
._8_c00320{width:14.976000px;}
._d_c00320{width:16.891200px;}
._c_c00320{width:22.183200px;}
._4_c00320{width:33.393600px;}
._a_c00320{width:34.452000px;}
.fc1_c00320{color:transparent;}
.fc0_c00320{color:rgb(0,0,0);}
.fs0_c00320{font-size:72.000000px;}
.y0_c00320{bottom:0.000000px;}
.y5_c00320{bottom:5.040000px;}
.y1_c00320{bottom:12.735000px;}
.y3_c00320{bottom:45.405000px;}
.y4_c00320{bottom:53.100000px;}
.y21_c00320{bottom:111.645000px;}
.y20_c00320{bottom:147.645000px;}
.y1f_c00320{bottom:183.645000px;}
.y1e_c00320{bottom:219.645000px;}
.y1d_c00320{bottom:255.645000px;}
.y1c_c00320{bottom:291.645000px;}
.y1b_c00320{bottom:327.645000px;}
.y1a_c00320{bottom:363.645000px;}
.y19_c00320{bottom:399.645000px;}
.y18_c00320{bottom:435.645000px;}
.y17_c00320{bottom:471.645000px;}
.y16_c00320{bottom:507.645000px;}
.y15_c00320{bottom:543.645000px;}
.y14_c00320{bottom:579.645000px;}
.y13_c00320{bottom:615.645000px;}
.y12_c00320{bottom:651.645000px;}
.y11_c00320{bottom:687.645000px;}
.y10_c00320{bottom:723.645000px;}
.yf_c00320{bottom:759.645000px;}
.ye_c00320{bottom:795.645000px;}
.yd_c00320{bottom:831.645000px;}
.yc_c00320{bottom:867.645000px;}
.yb_c00320{bottom:903.645000px;}
.ya_c00320{bottom:939.645000px;}
.y9_c00320{bottom:975.645000px;}
.y8_c00320{bottom:1011.645000px;}
.y7_c00320{bottom:1047.645000px;}
.y6_c00320{bottom:1083.645000px;}
.y2_c00320{bottom:1165.005000px;}
.h4_c00320{height:20.880000px;}
.h3_c00320{height:70.664062px;}
.h2_c00320{height:1237.365000px;}
.h0_c00320{height:1262.835000px;}
.h1_c00320{height:1263.000000px;}
.w3_c00320{width:27.360000px;}
.w2_c00320{width:867.465000px;}
.w0_c00320{width:892.935000px;}
.w1_c00320{width:893.250000px;}
.x0_c00320{left:0.000000px;}
.x1_c00320{left:12.735000px;}
.x3_c00320{left:95.397000px;}
.x5_c00320{left:149.400150px;}
.x4_c00320{left:432.855000px;}
.x2_c00320{left:880.125000px;}
@media print{
.v0_c00320{vertical-align:0.000000pt;}
.ls0_c00320{letter-spacing:0.000000pt;}
.ws0_c00320{word-spacing:0.000000pt;}
._9_c00320{width:0.960000pt;}
._2_c00320{width:2.092800pt;}
._b_c00320{width:3.078400pt;}
._5_c00320{width:4.217600pt;}
._6_c00320{width:5.824000pt;}
._3_c00320{width:7.001600pt;}
._e_c00320{width:7.910400pt;}
._0_c00320{width:8.870400pt;}
._1_c00320{width:9.792000pt;}
._7_c00320{width:11.488000pt;}
._8_c00320{width:13.312000pt;}
._d_c00320{width:15.014400pt;}
._c_c00320{width:19.718400pt;}
._4_c00320{width:29.683200pt;}
._a_c00320{width:30.624000pt;}
.fs0_c00320{font-size:64.000000pt;}
.y0_c00320{bottom:0.000000pt;}
.y5_c00320{bottom:4.480000pt;}
.y1_c00320{bottom:11.320000pt;}
.y3_c00320{bottom:40.360000pt;}
.y4_c00320{bottom:47.200000pt;}
.y21_c00320{bottom:99.240000pt;}
.y20_c00320{bottom:131.240000pt;}
.y1f_c00320{bottom:163.240000pt;}
.y1e_c00320{bottom:195.240000pt;}
.y1d_c00320{bottom:227.240000pt;}
.y1c_c00320{bottom:259.240000pt;}
.y1b_c00320{bottom:291.240000pt;}
.y1a_c00320{bottom:323.240000pt;}
.y19_c00320{bottom:355.240000pt;}
.y18_c00320{bottom:387.240000pt;}
.y17_c00320{bottom:419.240000pt;}
.y16_c00320{bottom:451.240000pt;}
.y15_c00320{bottom:483.240000pt;}
.y14_c00320{bottom:515.240000pt;}
.y13_c00320{bottom:547.240000pt;}
.y12_c00320{bottom:579.240000pt;}
.y11_c00320{bottom:611.240000pt;}
.y10_c00320{bottom:643.240000pt;}
.yf_c00320{bottom:675.240000pt;}
.ye_c00320{bottom:707.240000pt;}
.yd_c00320{bottom:739.240000pt;}
.yc_c00320{bottom:771.240000pt;}
.yb_c00320{bottom:803.240000pt;}
.ya_c00320{bottom:835.240000pt;}
.y9_c00320{bottom:867.240000pt;}
.y8_c00320{bottom:899.240000pt;}
.y7_c00320{bottom:931.240000pt;}
.y6_c00320{bottom:963.240000pt;}
.y2_c00320{bottom:1035.560000pt;}
.h4_c00320{height:18.560000pt;}
.h3_c00320{height:62.812500pt;}
.h2_c00320{height:1099.880000pt;}
.h0_c00320{height:1122.520000pt;}
.h1_c00320{height:1122.666667pt;}
.w3_c00320{width:24.320000pt;}
.w2_c00320{width:771.080000pt;}
.w0_c00320{width:793.720000pt;}
.w1_c00320{width:794.000000pt;}
.x0_c00320{left:0.000000pt;}
.x1_c00320{left:11.320000pt;}
.x3_c00320{left:84.797333pt;}
.x5_c00320{left:132.800133pt;}
.x4_c00320{left:384.760000pt;}
.x2_c00320{left:782.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_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_56f6a4a5fb6896c2049f3252.woff2')format("woff");}.ff1_c00321{font-family:ff1_c00321;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00321{letter-spacing:-0.014400px;}
.ls0_c00321{letter-spacing:0.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;}
}
.ws0_c00321{word-spacing:-17.985600px;}
.ws1_c00321{word-spacing:0.000000px;}
._d_c00321{width:1.317600px;}
._3_c00321{width:2.340000px;}
._7_c00321{width:3.528000px;}
._e_c00321{width:5.155200px;}
._2_c00321{width:6.206400px;}
._c_c00321{width:7.891200px;}
._1_c00321{width:9.216000px;}
._0_c00321{width:10.224000px;}
._b_c00321{width:11.275200px;}
._a_c00321{width:12.700800px;}
._4_c00321{width:14.133600px;}
._9_c00321{width:15.148800px;}
._6_c00321{width:23.659200px;}
._8_c00321{width:25.257600px;}
._5_c00321{width:26.726400px;}
.fc1_c00321{color:transparent;}
.fc0_c00321{color:rgb(0,0,0);}
.fs0_c00321{font-size:72.000000px;}
.y0_c00321{bottom:0.000000px;}
.y5_c00321{bottom:5.040000px;}
.y1_c00321{bottom:12.735000px;}
.y3_c00321{bottom:45.405000px;}
.y4_c00321{bottom:53.100000px;}
.y20_c00321{bottom:147.645000px;}
.y1f_c00321{bottom:183.645000px;}
.y1e_c00321{bottom:219.645000px;}
.y1d_c00321{bottom:255.645000px;}
.y1c_c00321{bottom:291.645000px;}
.y1b_c00321{bottom:327.645000px;}
.y1a_c00321{bottom:363.645000px;}
.y19_c00321{bottom:399.645000px;}
.y18_c00321{bottom:435.645000px;}
.y17_c00321{bottom:471.645000px;}
.y16_c00321{bottom:507.645000px;}
.y15_c00321{bottom:543.645000px;}
.y14_c00321{bottom:579.645000px;}
.y13_c00321{bottom:615.645000px;}
.y12_c00321{bottom:651.645000px;}
.y11_c00321{bottom:687.645000px;}
.y10_c00321{bottom:723.645000px;}
.yf_c00321{bottom:759.645000px;}
.ye_c00321{bottom:795.645000px;}
.yd_c00321{bottom:831.645000px;}
.yc_c00321{bottom:867.645000px;}
.yb_c00321{bottom:903.645000px;}
.ya_c00321{bottom:939.645000px;}
.y9_c00321{bottom:975.645000px;}
.y8_c00321{bottom:1011.645000px;}
.y7_c00321{bottom:1047.645000px;}
.y6_c00321{bottom:1083.645000px;}
.y2_c00321{bottom:1165.005000px;}
.h4_c00321{height:20.880000px;}
.h3_c00321{height:70.664062px;}
.h2_c00321{height:1237.365000px;}
.h0_c00321{height:1262.835000px;}
.h1_c00321{height:1263.000000px;}
.w3_c00321{width:27.360000px;}
.w2_c00321{width:867.465000px;}
.w0_c00321{width:892.935000px;}
.w1_c00321{width:893.250000px;}
.x0_c00321{left:0.000000px;}
.x1_c00321{left:12.735000px;}
.x3_c00321{left:95.394300px;}
.x5_c00321{left:149.400150px;}
.x4_c00321{left:432.855000px;}
.x2_c00321{left:880.050300px;}
@media print{
.v0_c00321{vertical-align:0.000000pt;}
.ls1_c00321{letter-spacing:-0.012800pt;}
.ls0_c00321{letter-spacing:0.000000pt;}
.ws0_c00321{word-spacing:-15.987200pt;}
.ws1_c00321{word-spacing:0.000000pt;}
._d_c00321{width:1.171200pt;}
._3_c00321{width:2.080000pt;}
._7_c00321{width:3.136000pt;}
._e_c00321{width:4.582400pt;}
._2_c00321{width:5.516800pt;}
._c_c00321{width:7.014400pt;}
._1_c00321{width:8.192000pt;}
._0_c00321{width:9.088000pt;}
._b_c00321{width:10.022400pt;}
._a_c00321{width:11.289600pt;}
._4_c00321{width:12.563200pt;}
._9_c00321{width:13.465600pt;}
._6_c00321{width:21.030400pt;}
._8_c00321{width:22.451200pt;}
._5_c00321{width:23.756800pt;}
.fs0_c00321{font-size:64.000000pt;}
.y0_c00321{bottom:0.000000pt;}
.y5_c00321{bottom:4.480000pt;}
.y1_c00321{bottom:11.320000pt;}
.y3_c00321{bottom:40.360000pt;}
.y4_c00321{bottom:47.200000pt;}
.y20_c00321{bottom:131.240000pt;}
.y1f_c00321{bottom:163.240000pt;}
.y1e_c00321{bottom:195.240000pt;}
.y1d_c00321{bottom:227.240000pt;}
.y1c_c00321{bottom:259.240000pt;}
.y1b_c00321{bottom:291.240000pt;}
.y1a_c00321{bottom:323.240000pt;}
.y19_c00321{bottom:355.240000pt;}
.y18_c00321{bottom:387.240000pt;}
.y17_c00321{bottom:419.240000pt;}
.y16_c00321{bottom:451.240000pt;}
.y15_c00321{bottom:483.240000pt;}
.y14_c00321{bottom:515.240000pt;}
.y13_c00321{bottom:547.240000pt;}
.y12_c00321{bottom:579.240000pt;}
.y11_c00321{bottom:611.240000pt;}
.y10_c00321{bottom:643.240000pt;}
.yf_c00321{bottom:675.240000pt;}
.ye_c00321{bottom:707.240000pt;}
.yd_c00321{bottom:739.240000pt;}
.yc_c00321{bottom:771.240000pt;}
.yb_c00321{bottom:803.240000pt;}
.ya_c00321{bottom:835.240000pt;}
.y9_c00321{bottom:867.240000pt;}
.y8_c00321{bottom:899.240000pt;}
.y7_c00321{bottom:931.240000pt;}
.y6_c00321{bottom:963.240000pt;}
.y2_c00321{bottom:1035.560000pt;}
.h4_c00321{height:18.560000pt;}
.h3_c00321{height:62.812500pt;}
.h2_c00321{height:1099.880000pt;}
.h0_c00321{height:1122.520000pt;}
.h1_c00321{height:1122.666667pt;}
.w3_c00321{width:24.320000pt;}
.w2_c00321{width:771.080000pt;}
.w0_c00321{width:793.720000pt;}
.w1_c00321{width:794.000000pt;}
.x0_c00321{left:0.000000pt;}
.x1_c00321{left:11.320000pt;}
.x3_c00321{left:84.794933pt;}
.x5_c00321{left:132.800133pt;}
.x4_c00321{left:384.760000pt;}
.x2_c00321{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_550eb370cb8580dad07b5d22.woff2')format("woff");}.ff1_c00322{font-family:ff1_c00322;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00322{letter-spacing:-0.014400px;}
.ls0_c00322{letter-spacing:0.000000px;}
.ls1_c00322{letter-spacing:1.713600px;}
.ls2_c00322{letter-spacing:7.675200px;}
.sc__c00322{text-shadow:none;}
.sc0_c00322{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00322{-webkit-text-stroke:0px transparent;}
.sc0_c00322{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00322{word-spacing:-17.985600px;}
.ws1_c00322{word-spacing:0.000000px;}
._a_c00322{margin-left:-8.280000px;}
._8_c00322{margin-left:-1.368000px;}
._4_c00322{width:1.656000px;}
._5_c00322{width:2.822400px;}
._1_c00322{width:4.514400px;}
._9_c00322{width:7.675200px;}
._e_c00322{width:9.676800px;}
._c_c00322{width:11.829600px;}
._7_c00322{width:12.938400px;}
._f_c00322{width:14.306400px;}
._b_c00322{width:15.422400px;}
._3_c00322{width:16.444800px;}
._2_c00322{width:19.828800px;}
._0_c00322{width:21.650400px;}
._6_c00322{width:25.524000px;}
._d_c00322{width:29.008800px;}
.fc1_c00322{color:transparent;}
.fc0_c00322{color:rgb(0,0,0);}
.fs0_c00322{font-size:72.000000px;}
.y0_c00322{bottom:0.000000px;}
.y5_c00322{bottom:5.040000px;}
.y1_c00322{bottom:12.735000px;}
.y3_c00322{bottom:45.405000px;}
.y4_c00322{bottom:53.100000px;}
.y21_c00322{bottom:111.645000px;}
.y20_c00322{bottom:147.645000px;}
.y1f_c00322{bottom:183.645000px;}
.y1e_c00322{bottom:219.645000px;}
.y1d_c00322{bottom:255.645000px;}
.y1c_c00322{bottom:291.645000px;}
.y1b_c00322{bottom:327.645000px;}
.y1a_c00322{bottom:363.645000px;}
.y19_c00322{bottom:399.645000px;}
.y18_c00322{bottom:435.645000px;}
.y17_c00322{bottom:471.645000px;}
.y16_c00322{bottom:507.645000px;}
.y15_c00322{bottom:543.645000px;}
.y14_c00322{bottom:579.645000px;}
.y13_c00322{bottom:615.645000px;}
.y12_c00322{bottom:651.645000px;}
.y11_c00322{bottom:687.645000px;}
.y10_c00322{bottom:723.645000px;}
.yf_c00322{bottom:759.645000px;}
.ye_c00322{bottom:795.645000px;}
.yd_c00322{bottom:831.645000px;}
.yc_c00322{bottom:867.645000px;}
.yb_c00322{bottom:903.645000px;}
.ya_c00322{bottom:939.645000px;}
.y9_c00322{bottom:975.645000px;}
.y8_c00322{bottom:1011.645000px;}
.y7_c00322{bottom:1047.645000px;}
.y6_c00322{bottom:1083.645000px;}
.y2_c00322{bottom:1165.005000px;}
.h4_c00322{height:20.880000px;}
.h3_c00322{height:70.664062px;}
.h2_c00322{height:1237.365000px;}
.h0_c00322{height:1262.835000px;}
.h1_c00322{height:1263.000000px;}
.w3_c00322{width:27.360000px;}
.w2_c00322{width:867.465000px;}
.w0_c00322{width:892.935000px;}
.w1_c00322{width:893.250000px;}
.x0_c00322{left:0.000000px;}
.x1_c00322{left:12.735000px;}
.x3_c00322{left:95.397000px;}
.x5_c00322{left:149.400150px;}
.x4_c00322{left:432.855000px;}
.x2_c00322{left:880.125000px;}
@media print{
.v0_c00322{vertical-align:0.000000pt;}
.ls3_c00322{letter-spacing:-0.012800pt;}
.ls0_c00322{letter-spacing:0.000000pt;}
.ls1_c00322{letter-spacing:1.523200pt;}
.ls2_c00322{letter-spacing:6.822400pt;}
.ws0_c00322{word-spacing:-15.987200pt;}
.ws1_c00322{word-spacing:0.000000pt;}
._a_c00322{margin-left:-7.360000pt;}
._8_c00322{margin-left:-1.216000pt;}
._4_c00322{width:1.472000pt;}
._5_c00322{width:2.508800pt;}
._1_c00322{width:4.012800pt;}
._9_c00322{width:6.822400pt;}
._e_c00322{width:8.601600pt;}
._c_c00322{width:10.515200pt;}
._7_c00322{width:11.500800pt;}
._f_c00322{width:12.716800pt;}
._b_c00322{width:13.708800pt;}
._3_c00322{width:14.617600pt;}
._2_c00322{width:17.625600pt;}
._0_c00322{width:19.244800pt;}
._6_c00322{width:22.688000pt;}
._d_c00322{width:25.785600pt;}
.fs0_c00322{font-size:64.000000pt;}
.y0_c00322{bottom:0.000000pt;}
.y5_c00322{bottom:4.480000pt;}
.y1_c00322{bottom:11.320000pt;}
.y3_c00322{bottom:40.360000pt;}
.y4_c00322{bottom:47.200000pt;}
.y21_c00322{bottom:99.240000pt;}
.y20_c00322{bottom:131.240000pt;}
.y1f_c00322{bottom:163.240000pt;}
.y1e_c00322{bottom:195.240000pt;}
.y1d_c00322{bottom:227.240000pt;}
.y1c_c00322{bottom:259.240000pt;}
.y1b_c00322{bottom:291.240000pt;}
.y1a_c00322{bottom:323.240000pt;}
.y19_c00322{bottom:355.240000pt;}
.y18_c00322{bottom:387.240000pt;}
.y17_c00322{bottom:419.240000pt;}
.y16_c00322{bottom:451.240000pt;}
.y15_c00322{bottom:483.240000pt;}
.y14_c00322{bottom:515.240000pt;}
.y13_c00322{bottom:547.240000pt;}
.y12_c00322{bottom:579.240000pt;}
.y11_c00322{bottom:611.240000pt;}
.y10_c00322{bottom:643.240000pt;}
.yf_c00322{bottom:675.240000pt;}
.ye_c00322{bottom:707.240000pt;}
.yd_c00322{bottom:739.240000pt;}
.yc_c00322{bottom:771.240000pt;}
.yb_c00322{bottom:803.240000pt;}
.ya_c00322{bottom:835.240000pt;}
.y9_c00322{bottom:867.240000pt;}
.y8_c00322{bottom:899.240000pt;}
.y7_c00322{bottom:931.240000pt;}
.y6_c00322{bottom:963.240000pt;}
.y2_c00322{bottom:1035.560000pt;}
.h4_c00322{height:18.560000pt;}
.h3_c00322{height:62.812500pt;}
.h2_c00322{height:1099.880000pt;}
.h0_c00322{height:1122.520000pt;}
.h1_c00322{height:1122.666667pt;}
.w3_c00322{width:24.320000pt;}
.w2_c00322{width:771.080000pt;}
.w0_c00322{width:793.720000pt;}
.w1_c00322{width:794.000000pt;}
.x0_c00322{left:0.000000pt;}
.x1_c00322{left:11.320000pt;}
.x3_c00322{left:84.797333pt;}
.x5_c00322{left:132.800133pt;}
.x4_c00322{left:384.760000pt;}
.x2_c00322{left:782.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_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_d99a79cb7a8831a4d2a3097a.woff2')format("woff");}.ff1_c00323{font-family:ff1_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;}
.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;}
.ls0_c00323{letter-spacing:0.000000px;}
.sc__c00323{text-shadow:none;}
.sc0_c00323{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00323{-webkit-text-stroke:0px transparent;}
.sc0_c00323{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00323{word-spacing:0.000000px;}
._6_c00323{width:1.627200px;}
._b_c00323{width:2.649600px;}
._3_c00323{width:4.010400px;}
._8_c00323{width:5.234400px;}
._a_c00323{width:6.487200px;}
._f_c00323{width:8.179200px;}
._9_c00323{width:10.519200px;}
._0_c00323{width:11.671200px;}
._e_c00323{width:13.104000px;}
._d_c00323{width:14.176800px;}
._7_c00323{width:15.544800px;}
._1_c00323{width:16.761600px;}
._2_c00323{width:23.493600px;}
._c_c00323{width:24.552000px;}
._4_c00323{width:25.804800px;}
._5_c00323{width:30.916800px;}
.fc1_c00323{color:transparent;}
.fc0_c00323{color:rgb(0,0,0);}
.fs0_c00323{font-size:72.000000px;}
.y0_c00323{bottom:0.000000px;}
.y5_c00323{bottom:5.040000px;}
.y1_c00323{bottom:12.735000px;}
.y3_c00323{bottom:45.405000px;}
.y4_c00323{bottom:53.100000px;}
.y20_c00323{bottom:147.645000px;}
.y1f_c00323{bottom:183.645000px;}
.y1e_c00323{bottom:219.645000px;}
.y1d_c00323{bottom:255.645000px;}
.y1c_c00323{bottom:291.645000px;}
.y1b_c00323{bottom:327.645000px;}
.y1a_c00323{bottom:363.645000px;}
.y19_c00323{bottom:399.645000px;}
.y18_c00323{bottom:435.645000px;}
.y17_c00323{bottom:471.645000px;}
.y16_c00323{bottom:507.645000px;}
.y15_c00323{bottom:543.645000px;}
.y14_c00323{bottom:579.645000px;}
.y13_c00323{bottom:615.645000px;}
.y12_c00323{bottom:651.645000px;}
.y11_c00323{bottom:687.645000px;}
.y10_c00323{bottom:723.645000px;}
.yf_c00323{bottom:759.645000px;}
.ye_c00323{bottom:795.645000px;}
.yd_c00323{bottom:831.645000px;}
.yc_c00323{bottom:867.645000px;}
.yb_c00323{bottom:903.645000px;}
.ya_c00323{bottom:939.645000px;}
.y9_c00323{bottom:975.645000px;}
.y8_c00323{bottom:1011.645000px;}
.y7_c00323{bottom:1047.645000px;}
.y6_c00323{bottom:1083.645000px;}
.y2_c00323{bottom:1165.005000px;}
.h4_c00323{height:20.880000px;}
.h3_c00323{height:70.664062px;}
.h2_c00323{height:1237.365000px;}
.h0_c00323{height:1262.835000px;}
.h1_c00323{height:1263.000000px;}
.w3_c00323{width:27.360000px;}
.w2_c00323{width:867.465000px;}
.w0_c00323{width:892.935000px;}
.w1_c00323{width:893.250000px;}
.x0_c00323{left:0.000000px;}
.x1_c00323{left:12.735000px;}
.x3_c00323{left:95.394300px;}
.x5_c00323{left:149.400150px;}
.x4_c00323{left:432.855000px;}
.x2_c00323{left:880.050300px;}
@media print{
.v0_c00323{vertical-align:0.000000pt;}
.ls0_c00323{letter-spacing:0.000000pt;}
.ws0_c00323{word-spacing:0.000000pt;}
._6_c00323{width:1.446400pt;}
._b_c00323{width:2.355200pt;}
._3_c00323{width:3.564800pt;}
._8_c00323{width:4.652800pt;}
._a_c00323{width:5.766400pt;}
._f_c00323{width:7.270400pt;}
._9_c00323{width:9.350400pt;}
._0_c00323{width:10.374400pt;}
._e_c00323{width:11.648000pt;}
._d_c00323{width:12.601600pt;}
._7_c00323{width:13.817600pt;}
._1_c00323{width:14.899200pt;}
._2_c00323{width:20.883200pt;}
._c_c00323{width:21.824000pt;}
._4_c00323{width:22.937600pt;}
._5_c00323{width:27.481600pt;}
.fs0_c00323{font-size:64.000000pt;}
.y0_c00323{bottom:0.000000pt;}
.y5_c00323{bottom:4.480000pt;}
.y1_c00323{bottom:11.320000pt;}
.y3_c00323{bottom:40.360000pt;}
.y4_c00323{bottom:47.200000pt;}
.y20_c00323{bottom:131.240000pt;}
.y1f_c00323{bottom:163.240000pt;}
.y1e_c00323{bottom:195.240000pt;}
.y1d_c00323{bottom:227.240000pt;}
.y1c_c00323{bottom:259.240000pt;}
.y1b_c00323{bottom:291.240000pt;}
.y1a_c00323{bottom:323.240000pt;}
.y19_c00323{bottom:355.240000pt;}
.y18_c00323{bottom:387.240000pt;}
.y17_c00323{bottom:419.240000pt;}
.y16_c00323{bottom:451.240000pt;}
.y15_c00323{bottom:483.240000pt;}
.y14_c00323{bottom:515.240000pt;}
.y13_c00323{bottom:547.240000pt;}
.y12_c00323{bottom:579.240000pt;}
.y11_c00323{bottom:611.240000pt;}
.y10_c00323{bottom:643.240000pt;}
.yf_c00323{bottom:675.240000pt;}
.ye_c00323{bottom:707.240000pt;}
.yd_c00323{bottom:739.240000pt;}
.yc_c00323{bottom:771.240000pt;}
.yb_c00323{bottom:803.240000pt;}
.ya_c00323{bottom:835.240000pt;}
.y9_c00323{bottom:867.240000pt;}
.y8_c00323{bottom:899.240000pt;}
.y7_c00323{bottom:931.240000pt;}
.y6_c00323{bottom:963.240000pt;}
.y2_c00323{bottom:1035.560000pt;}
.h4_c00323{height:18.560000pt;}
.h3_c00323{height:62.812500pt;}
.h2_c00323{height:1099.880000pt;}
.h0_c00323{height:1122.520000pt;}
.h1_c00323{height:1122.666667pt;}
.w3_c00323{width:24.320000pt;}
.w2_c00323{width:771.080000pt;}
.w0_c00323{width:793.720000pt;}
.w1_c00323{width:794.000000pt;}
.x0_c00323{left:0.000000pt;}
.x1_c00323{left:11.320000pt;}
.x3_c00323{left:84.794933pt;}
.x5_c00323{left:132.800133pt;}
.x4_c00323{left:384.760000pt;}
.x2_c00323{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_234713da69db84fa47ac1df2.woff2')format("woff");}.ff1_c00324{font-family:ff1_c00324;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00324;src:url('chunks/assets/font_58149de4bbd624a382aae7a9.woff2')format("woff");}.ff2_c00324{font-family:ff2_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;}
.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;}
.ls2_c00324{letter-spacing:0.000000px;}
.ls3_c00324{letter-spacing:0.200448px;}
.ls0_c00324{letter-spacing:0.242208px;}
.ls1_c00324{letter-spacing:0.283968px;}
.sc__c00324{text-shadow:none;}
.sc0_c00324{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00324{-webkit-text-stroke:0px transparent;}
.sc0_c00324{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00324{word-spacing:-21.080448px;}
.ws1_c00324{word-spacing:0.000000px;}
._6_c00324{width:3.405600px;}
._4_c00324{width:4.615200px;}
._9_c00324{width:6.199200px;}
._5_c00324{width:10.166400px;}
._2_c00324{width:12.024000px;}
._3_c00324{width:13.442400px;}
._a_c00324{width:15.847200px;}
._0_c00324{width:23.853600px;}
._1_c00324{width:25.264800px;}
._7_c00324{width:26.301600px;}
._8_c00324{width:32.925600px;}
._b_c00324{width:34.185600px;}
.fc2_c00324{color:transparent;}
.fc1_c00324{color:rgb(127,127,127);}
.fc0_c00324{color:rgb(0,0,0);}
.fs0_c00324{font-size:72.000000px;}
.fs1_c00324{font-size:83.520000px;}
.y0_c00324{bottom:0.000000px;}
.y5_c00324{bottom:5.040000px;}
.y1_c00324{bottom:12.735000px;}
.y3_c00324{bottom:45.405000px;}
.y4_c00324{bottom:53.100000px;}
.y21_c00324{bottom:111.645000px;}
.y20_c00324{bottom:147.645000px;}
.y1f_c00324{bottom:183.645000px;}
.y1e_c00324{bottom:219.645000px;}
.y1d_c00324{bottom:255.645000px;}
.y1c_c00324{bottom:292.365000px;}
.y1b_c00324{bottom:327.645000px;}
.y1a_c00324{bottom:363.645000px;}
.y19_c00324{bottom:399.645000px;}
.y18_c00324{bottom:435.645000px;}
.y17_c00324{bottom:471.645000px;}
.y16_c00324{bottom:507.645000px;}
.y15_c00324{bottom:543.645000px;}
.y14_c00324{bottom:579.645000px;}
.y13_c00324{bottom:615.645000px;}
.y12_c00324{bottom:651.645000px;}
.y11_c00324{bottom:687.645000px;}
.y10_c00324{bottom:723.645000px;}
.yf_c00324{bottom:759.645000px;}
.ye_c00324{bottom:795.645000px;}
.yd_c00324{bottom:831.645000px;}
.yc_c00324{bottom:867.645000px;}
.yb_c00324{bottom:903.645000px;}
.ya_c00324{bottom:939.645000px;}
.y9_c00324{bottom:975.645000px;}
.y8_c00324{bottom:1011.645000px;}
.y7_c00324{bottom:1047.645000px;}
.y6_c00324{bottom:1083.645000px;}
.y2_c00324{bottom:1165.005000px;}
.h4_c00324{height:20.880000px;}
.h3_c00324{height:70.664062px;}
.h5_c00324{height:81.929531px;}
.h2_c00324{height:1237.365000px;}
.h0_c00324{height:1262.835000px;}
.h1_c00324{height:1263.000000px;}
.w3_c00324{width:27.360000px;}
.w2_c00324{width:867.465000px;}
.w0_c00324{width:892.935000px;}
.w1_c00324{width:893.250000px;}
.x0_c00324{left:0.000000px;}
.x1_c00324{left:12.735000px;}
.x6_c00324{left:63.450150px;}
.x3_c00324{left:95.397000px;}
.x7_c00324{left:117.450000px;}
.x5_c00324{left:149.400150px;}
.x4_c00324{left:432.855000px;}
.x2_c00324{left:880.125000px;}
@media print{
.v0_c00324{vertical-align:0.000000pt;}
.ls2_c00324{letter-spacing:0.000000pt;}
.ls3_c00324{letter-spacing:0.178176pt;}
.ls0_c00324{letter-spacing:0.215296pt;}
.ls1_c00324{letter-spacing:0.252416pt;}
.ws0_c00324{word-spacing:-18.738176pt;}
.ws1_c00324{word-spacing:0.000000pt;}
._6_c00324{width:3.027200pt;}
._4_c00324{width:4.102400pt;}
._9_c00324{width:5.510400pt;}
._5_c00324{width:9.036800pt;}
._2_c00324{width:10.688000pt;}
._3_c00324{width:11.948800pt;}
._a_c00324{width:14.086400pt;}
._0_c00324{width:21.203200pt;}
._1_c00324{width:22.457600pt;}
._7_c00324{width:23.379200pt;}
._8_c00324{width:29.267200pt;}
._b_c00324{width:30.387200pt;}
.fs0_c00324{font-size:64.000000pt;}
.fs1_c00324{font-size:74.240000pt;}
.y0_c00324{bottom:0.000000pt;}
.y5_c00324{bottom:4.480000pt;}
.y1_c00324{bottom:11.320000pt;}
.y3_c00324{bottom:40.360000pt;}
.y4_c00324{bottom:47.200000pt;}
.y21_c00324{bottom:99.240000pt;}
.y20_c00324{bottom:131.240000pt;}
.y1f_c00324{bottom:163.240000pt;}
.y1e_c00324{bottom:195.240000pt;}
.y1d_c00324{bottom:227.240000pt;}
.y1c_c00324{bottom:259.880000pt;}
.y1b_c00324{bottom:291.240000pt;}
.y1a_c00324{bottom:323.240000pt;}
.y19_c00324{bottom:355.240000pt;}
.y18_c00324{bottom:387.240000pt;}
.y17_c00324{bottom:419.240000pt;}
.y16_c00324{bottom:451.240000pt;}
.y15_c00324{bottom:483.240000pt;}
.y14_c00324{bottom:515.240000pt;}
.y13_c00324{bottom:547.240000pt;}
.y12_c00324{bottom:579.240000pt;}
.y11_c00324{bottom:611.240000pt;}
.y10_c00324{bottom:643.240000pt;}
.yf_c00324{bottom:675.240000pt;}
.ye_c00324{bottom:707.240000pt;}
.yd_c00324{bottom:739.240000pt;}
.yc_c00324{bottom:771.240000pt;}
.yb_c00324{bottom:803.240000pt;}
.ya_c00324{bottom:835.240000pt;}
.y9_c00324{bottom:867.240000pt;}
.y8_c00324{bottom:899.240000pt;}
.y7_c00324{bottom:931.240000pt;}
.y6_c00324{bottom:963.240000pt;}
.y2_c00324{bottom:1035.560000pt;}
.h4_c00324{height:18.560000pt;}
.h3_c00324{height:62.812500pt;}
.h5_c00324{height:72.826250pt;}
.h2_c00324{height:1099.880000pt;}
.h0_c00324{height:1122.520000pt;}
.h1_c00324{height:1122.666667pt;}
.w3_c00324{width:24.320000pt;}
.w2_c00324{width:771.080000pt;}
.w0_c00324{width:793.720000pt;}
.w1_c00324{width:794.000000pt;}
.x0_c00324{left:0.000000pt;}
.x1_c00324{left:11.320000pt;}
.x6_c00324{left:56.400133pt;}
.x3_c00324{left:84.797333pt;}
.x7_c00324{left:104.400000pt;}
.x5_c00324{left:132.800133pt;}
.x4_c00324{left:384.760000pt;}
.x2_c00324{left:782.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_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_212652a64fec20912fa2a99d.woff2')format("woff");}.ff1_c00325{font-family:ff1_c00325;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00325{letter-spacing:0.000000px;}
.ls0_c00325{letter-spacing:0.014400px;}
.ls2_c00325{letter-spacing:0.050400px;}
.sc__c00325{text-shadow:none;}
.sc0_c00325{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00325{-webkit-text-stroke:0px transparent;}
.sc0_c00325{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00325{word-spacing:-18.050400px;}
.ws1_c00325{word-spacing:-18.014400px;}
.ws2_c00325{word-spacing:0.000000px;}
._b_c00325{width:1.123200px;}
._6_c00325{width:2.167200px;}
._3_c00325{width:4.658400px;}
._5_c00325{width:6.400800px;}
._0_c00325{width:8.431200px;}
._1_c00325{width:9.439200px;}
._8_c00325{width:10.620000px;}
._9_c00325{width:11.714400px;}
._2_c00325{width:12.729600px;}
._7_c00325{width:13.744800px;}
._a_c00325{width:16.898400px;}
._4_c00325{width:19.526400px;}
.fc1_c00325{color:transparent;}
.fc0_c00325{color:rgb(0,0,0);}
.fs0_c00325{font-size:72.000000px;}
.y0_c00325{bottom:0.000000px;}
.y5_c00325{bottom:5.040000px;}
.y1_c00325{bottom:12.735000px;}
.y3_c00325{bottom:45.405000px;}
.y4_c00325{bottom:53.100000px;}
.y20_c00325{bottom:147.645000px;}
.y1f_c00325{bottom:183.645000px;}
.y1e_c00325{bottom:219.645000px;}
.y1d_c00325{bottom:255.645000px;}
.y1c_c00325{bottom:291.645000px;}
.y1b_c00325{bottom:327.645000px;}
.y1a_c00325{bottom:363.645000px;}
.y19_c00325{bottom:399.645000px;}
.y18_c00325{bottom:435.645000px;}
.y17_c00325{bottom:471.645000px;}
.y16_c00325{bottom:507.645000px;}
.y15_c00325{bottom:543.645000px;}
.y14_c00325{bottom:579.645000px;}
.y13_c00325{bottom:615.645000px;}
.y12_c00325{bottom:651.645000px;}
.y11_c00325{bottom:687.645000px;}
.y10_c00325{bottom:723.645000px;}
.yf_c00325{bottom:759.645000px;}
.ye_c00325{bottom:795.645000px;}
.yd_c00325{bottom:831.645000px;}
.yc_c00325{bottom:867.645000px;}
.yb_c00325{bottom:903.645000px;}
.ya_c00325{bottom:939.645000px;}
.y9_c00325{bottom:975.645000px;}
.y8_c00325{bottom:1011.645000px;}
.y7_c00325{bottom:1047.645000px;}
.y6_c00325{bottom:1083.645000px;}
.y2_c00325{bottom:1165.005000px;}
.h4_c00325{height:20.880000px;}
.h3_c00325{height:70.664062px;}
.h2_c00325{height:1237.365000px;}
.h0_c00325{height:1262.835000px;}
.h1_c00325{height:1263.000000px;}
.w3_c00325{width:27.360000px;}
.w2_c00325{width:867.465000px;}
.w0_c00325{width:892.935000px;}
.w1_c00325{width:893.250000px;}
.x0_c00325{left:0.000000px;}
.x1_c00325{left:12.735000px;}
.x3_c00325{left:95.394300px;}
.x5_c00325{left:149.400150px;}
.x4_c00325{left:432.855000px;}
.x2_c00325{left:880.050300px;}
@media print{
.v0_c00325{vertical-align:0.000000pt;}
.ls1_c00325{letter-spacing:0.000000pt;}
.ls0_c00325{letter-spacing:0.012800pt;}
.ls2_c00325{letter-spacing:0.044800pt;}
.ws0_c00325{word-spacing:-16.044800pt;}
.ws1_c00325{word-spacing:-16.012800pt;}
.ws2_c00325{word-spacing:0.000000pt;}
._b_c00325{width:0.998400pt;}
._6_c00325{width:1.926400pt;}
._3_c00325{width:4.140800pt;}
._5_c00325{width:5.689600pt;}
._0_c00325{width:7.494400pt;}
._1_c00325{width:8.390400pt;}
._8_c00325{width:9.440000pt;}
._9_c00325{width:10.412800pt;}
._2_c00325{width:11.315200pt;}
._7_c00325{width:12.217600pt;}
._a_c00325{width:15.020800pt;}
._4_c00325{width:17.356800pt;}
.fs0_c00325{font-size:64.000000pt;}
.y0_c00325{bottom:0.000000pt;}
.y5_c00325{bottom:4.480000pt;}
.y1_c00325{bottom:11.320000pt;}
.y3_c00325{bottom:40.360000pt;}
.y4_c00325{bottom:47.200000pt;}
.y20_c00325{bottom:131.240000pt;}
.y1f_c00325{bottom:163.240000pt;}
.y1e_c00325{bottom:195.240000pt;}
.y1d_c00325{bottom:227.240000pt;}
.y1c_c00325{bottom:259.240000pt;}
.y1b_c00325{bottom:291.240000pt;}
.y1a_c00325{bottom:323.240000pt;}
.y19_c00325{bottom:355.240000pt;}
.y18_c00325{bottom:387.240000pt;}
.y17_c00325{bottom:419.240000pt;}
.y16_c00325{bottom:451.240000pt;}
.y15_c00325{bottom:483.240000pt;}
.y14_c00325{bottom:515.240000pt;}
.y13_c00325{bottom:547.240000pt;}
.y12_c00325{bottom:579.240000pt;}
.y11_c00325{bottom:611.240000pt;}
.y10_c00325{bottom:643.240000pt;}
.yf_c00325{bottom:675.240000pt;}
.ye_c00325{bottom:707.240000pt;}
.yd_c00325{bottom:739.240000pt;}
.yc_c00325{bottom:771.240000pt;}
.yb_c00325{bottom:803.240000pt;}
.ya_c00325{bottom:835.240000pt;}
.y9_c00325{bottom:867.240000pt;}
.y8_c00325{bottom:899.240000pt;}
.y7_c00325{bottom:931.240000pt;}
.y6_c00325{bottom:963.240000pt;}
.y2_c00325{bottom:1035.560000pt;}
.h4_c00325{height:18.560000pt;}
.h3_c00325{height:62.812500pt;}
.h2_c00325{height:1099.880000pt;}
.h0_c00325{height:1122.520000pt;}
.h1_c00325{height:1122.666667pt;}
.w3_c00325{width:24.320000pt;}
.w2_c00325{width:771.080000pt;}
.w0_c00325{width:793.720000pt;}
.w1_c00325{width:794.000000pt;}
.x0_c00325{left:0.000000pt;}
.x1_c00325{left:11.320000pt;}
.x3_c00325{left:84.794933pt;}
.x5_c00325{left:132.800133pt;}
.x4_c00325{left:384.760000pt;}
.x2_c00325{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8e1c94534fec64336333a58f.woff2')format("woff");}.ff1_c00326{font-family:ff1_c00326;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00326{letter-spacing:0.000000px;}
.sc__c00326{text-shadow:none;}
.sc0_c00326{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00326{-webkit-text-stroke:0px transparent;}
.sc0_c00326{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00326{word-spacing:0.000000px;}
._0_c00326{width:1.425600px;}
._1_c00326{width:2.894400px;}
._4_c00326{width:4.888800px;}
._5_c00326{width:5.976000px;}
._8_c00326{width:7.322400px;}
._7_c00326{width:8.568000px;}
._9_c00326{width:10.000800px;}
._2_c00326{width:14.954400px;}
._6_c00326{width:16.358400px;}
._3_c00326{width:19.260000px;}
._b_c00326{width:20.296800px;}
._a_c00326{width:26.013600px;}
.fc1_c00326{color:transparent;}
.fc0_c00326{color:rgb(0,0,0);}
.fs0_c00326{font-size:72.000000px;}
.y0_c00326{bottom:0.000000px;}
.y5_c00326{bottom:5.040000px;}
.y1_c00326{bottom:12.735000px;}
.y3_c00326{bottom:45.405000px;}
.y4_c00326{bottom:53.100000px;}
.y20_c00326{bottom:147.645000px;}
.y1f_c00326{bottom:183.645000px;}
.y1e_c00326{bottom:219.645000px;}
.y1d_c00326{bottom:255.645000px;}
.y1c_c00326{bottom:291.645000px;}
.y1b_c00326{bottom:327.645000px;}
.y1a_c00326{bottom:363.645000px;}
.y19_c00326{bottom:399.645000px;}
.y18_c00326{bottom:435.645000px;}
.y17_c00326{bottom:471.645000px;}
.y16_c00326{bottom:507.645000px;}
.y15_c00326{bottom:543.645000px;}
.y14_c00326{bottom:579.645000px;}
.y13_c00326{bottom:615.645000px;}
.y12_c00326{bottom:651.645000px;}
.y11_c00326{bottom:687.645000px;}
.y10_c00326{bottom:723.645000px;}
.yf_c00326{bottom:759.645000px;}
.ye_c00326{bottom:795.645000px;}
.yd_c00326{bottom:831.645000px;}
.yc_c00326{bottom:867.645000px;}
.yb_c00326{bottom:903.645000px;}
.ya_c00326{bottom:939.645000px;}
.y9_c00326{bottom:975.645000px;}
.y8_c00326{bottom:1011.645000px;}
.y7_c00326{bottom:1047.645000px;}
.y6_c00326{bottom:1083.645000px;}
.y2_c00326{bottom:1165.005000px;}
.h4_c00326{height:20.880000px;}
.h3_c00326{height:70.664062px;}
.h2_c00326{height:1237.365000px;}
.h0_c00326{height:1262.835000px;}
.h1_c00326{height:1263.000000px;}
.w3_c00326{width:27.360000px;}
.w2_c00326{width:867.465000px;}
.w0_c00326{width:892.935000px;}
.w1_c00326{width:893.250000px;}
.x0_c00326{left:0.000000px;}
.x1_c00326{left:12.735000px;}
.x3_c00326{left:95.397000px;}
.x5_c00326{left:149.400150px;}
.x4_c00326{left:432.855000px;}
.x2_c00326{left:880.125000px;}
@media print{
.v0_c00326{vertical-align:0.000000pt;}
.ls0_c00326{letter-spacing:0.000000pt;}
.ws0_c00326{word-spacing:0.000000pt;}
._0_c00326{width:1.267200pt;}
._1_c00326{width:2.572800pt;}
._4_c00326{width:4.345600pt;}
._5_c00326{width:5.312000pt;}
._8_c00326{width:6.508800pt;}
._7_c00326{width:7.616000pt;}
._9_c00326{width:8.889600pt;}
._2_c00326{width:13.292800pt;}
._6_c00326{width:14.540800pt;}
._3_c00326{width:17.120000pt;}
._b_c00326{width:18.041600pt;}
._a_c00326{width:23.123200pt;}
.fs0_c00326{font-size:64.000000pt;}
.y0_c00326{bottom:0.000000pt;}
.y5_c00326{bottom:4.480000pt;}
.y1_c00326{bottom:11.320000pt;}
.y3_c00326{bottom:40.360000pt;}
.y4_c00326{bottom:47.200000pt;}
.y20_c00326{bottom:131.240000pt;}
.y1f_c00326{bottom:163.240000pt;}
.y1e_c00326{bottom:195.240000pt;}
.y1d_c00326{bottom:227.240000pt;}
.y1c_c00326{bottom:259.240000pt;}
.y1b_c00326{bottom:291.240000pt;}
.y1a_c00326{bottom:323.240000pt;}
.y19_c00326{bottom:355.240000pt;}
.y18_c00326{bottom:387.240000pt;}
.y17_c00326{bottom:419.240000pt;}
.y16_c00326{bottom:451.240000pt;}
.y15_c00326{bottom:483.240000pt;}
.y14_c00326{bottom:515.240000pt;}
.y13_c00326{bottom:547.240000pt;}
.y12_c00326{bottom:579.240000pt;}
.y11_c00326{bottom:611.240000pt;}
.y10_c00326{bottom:643.240000pt;}
.yf_c00326{bottom:675.240000pt;}
.ye_c00326{bottom:707.240000pt;}
.yd_c00326{bottom:739.240000pt;}
.yc_c00326{bottom:771.240000pt;}
.yb_c00326{bottom:803.240000pt;}
.ya_c00326{bottom:835.240000pt;}
.y9_c00326{bottom:867.240000pt;}
.y8_c00326{bottom:899.240000pt;}
.y7_c00326{bottom:931.240000pt;}
.y6_c00326{bottom:963.240000pt;}
.y2_c00326{bottom:1035.560000pt;}
.h4_c00326{height:18.560000pt;}
.h3_c00326{height:62.812500pt;}
.h2_c00326{height:1099.880000pt;}
.h0_c00326{height:1122.520000pt;}
.h1_c00326{height:1122.666667pt;}
.w3_c00326{width:24.320000pt;}
.w2_c00326{width:771.080000pt;}
.w0_c00326{width:793.720000pt;}
.w1_c00326{width:794.000000pt;}
.x0_c00326{left:0.000000pt;}
.x1_c00326{left:11.320000pt;}
.x3_c00326{left:84.797333pt;}
.x5_c00326{left:132.800133pt;}
.x4_c00326{left:384.760000pt;}
.x2_c00326{left:782.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_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_d50840e9ab0c541209d6f069.woff2')format("woff");}.ff1_c00327{font-family:ff1_c00327;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00327{letter-spacing:0.000000px;}
.sc__c00327{text-shadow:none;}
.sc0_c00327{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00327{-webkit-text-stroke:0px transparent;}
.sc0_c00327{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00327{word-spacing:0.000000px;}
._b_c00327{margin-left:-1.108800px;}
._7_c00327{width:1.108800px;}
._0_c00327{width:2.138400px;}
._6_c00327{width:3.758400px;}
._9_c00327{width:5.342400px;}
._5_c00327{width:6.631200px;}
._2_c00327{width:10.497600px;}
._8_c00327{width:13.327200px;}
._a_c00327{width:15.163200px;}
._1_c00327{width:19.087200px;}
._c_c00327{width:20.340000px;}
._3_c00327{width:22.168800px;}
._4_c00327{width:27.086400px;}
.fc1_c00327{color:transparent;}
.fc0_c00327{color:rgb(0,0,0);}
.fs0_c00327{font-size:72.000000px;}
.y0_c00327{bottom:0.000000px;}
.y5_c00327{bottom:5.040000px;}
.y1_c00327{bottom:12.735000px;}
.y3_c00327{bottom:45.405000px;}
.y4_c00327{bottom:53.100000px;}
.y21_c00327{bottom:111.645000px;}
.y20_c00327{bottom:147.645000px;}
.y1f_c00327{bottom:183.645000px;}
.y1e_c00327{bottom:219.645000px;}
.y1d_c00327{bottom:255.645000px;}
.y1c_c00327{bottom:291.645000px;}
.y1b_c00327{bottom:327.645000px;}
.y1a_c00327{bottom:363.645000px;}
.y19_c00327{bottom:399.645000px;}
.y18_c00327{bottom:435.645000px;}
.y17_c00327{bottom:471.645000px;}
.y16_c00327{bottom:507.645000px;}
.y15_c00327{bottom:543.645000px;}
.y14_c00327{bottom:579.645000px;}
.y13_c00327{bottom:615.645000px;}
.y12_c00327{bottom:651.645000px;}
.y11_c00327{bottom:687.645000px;}
.y10_c00327{bottom:723.645000px;}
.yf_c00327{bottom:759.645000px;}
.ye_c00327{bottom:795.645000px;}
.yd_c00327{bottom:831.645000px;}
.yc_c00327{bottom:867.645000px;}
.yb_c00327{bottom:903.645000px;}
.ya_c00327{bottom:939.645000px;}
.y9_c00327{bottom:975.645000px;}
.y8_c00327{bottom:1011.645000px;}
.y7_c00327{bottom:1047.645000px;}
.y6_c00327{bottom:1083.645000px;}
.y2_c00327{bottom:1165.005000px;}
.h4_c00327{height:20.880000px;}
.h3_c00327{height:70.664062px;}
.h2_c00327{height:1237.365000px;}
.h0_c00327{height:1262.835000px;}
.h1_c00327{height:1263.000000px;}
.w3_c00327{width:27.360000px;}
.w2_c00327{width:867.465000px;}
.w0_c00327{width:892.935000px;}
.w1_c00327{width:893.250000px;}
.x0_c00327{left:0.000000px;}
.x1_c00327{left:12.735000px;}
.x3_c00327{left:95.394300px;}
.x5_c00327{left:149.400150px;}
.x4_c00327{left:432.855000px;}
.x2_c00327{left:880.050300px;}
@media print{
.v0_c00327{vertical-align:0.000000pt;}
.ls0_c00327{letter-spacing:0.000000pt;}
.ws0_c00327{word-spacing:0.000000pt;}
._b_c00327{margin-left:-0.985600pt;}
._7_c00327{width:0.985600pt;}
._0_c00327{width:1.900800pt;}
._6_c00327{width:3.340800pt;}
._9_c00327{width:4.748800pt;}
._5_c00327{width:5.894400pt;}
._2_c00327{width:9.331200pt;}
._8_c00327{width:11.846400pt;}
._a_c00327{width:13.478400pt;}
._1_c00327{width:16.966400pt;}
._c_c00327{width:18.080000pt;}
._3_c00327{width:19.705600pt;}
._4_c00327{width:24.076800pt;}
.fs0_c00327{font-size:64.000000pt;}
.y0_c00327{bottom:0.000000pt;}
.y5_c00327{bottom:4.480000pt;}
.y1_c00327{bottom:11.320000pt;}
.y3_c00327{bottom:40.360000pt;}
.y4_c00327{bottom:47.200000pt;}
.y21_c00327{bottom:99.240000pt;}
.y20_c00327{bottom:131.240000pt;}
.y1f_c00327{bottom:163.240000pt;}
.y1e_c00327{bottom:195.240000pt;}
.y1d_c00327{bottom:227.240000pt;}
.y1c_c00327{bottom:259.240000pt;}
.y1b_c00327{bottom:291.240000pt;}
.y1a_c00327{bottom:323.240000pt;}
.y19_c00327{bottom:355.240000pt;}
.y18_c00327{bottom:387.240000pt;}
.y17_c00327{bottom:419.240000pt;}
.y16_c00327{bottom:451.240000pt;}
.y15_c00327{bottom:483.240000pt;}
.y14_c00327{bottom:515.240000pt;}
.y13_c00327{bottom:547.240000pt;}
.y12_c00327{bottom:579.240000pt;}
.y11_c00327{bottom:611.240000pt;}
.y10_c00327{bottom:643.240000pt;}
.yf_c00327{bottom:675.240000pt;}
.ye_c00327{bottom:707.240000pt;}
.yd_c00327{bottom:739.240000pt;}
.yc_c00327{bottom:771.240000pt;}
.yb_c00327{bottom:803.240000pt;}
.ya_c00327{bottom:835.240000pt;}
.y9_c00327{bottom:867.240000pt;}
.y8_c00327{bottom:899.240000pt;}
.y7_c00327{bottom:931.240000pt;}
.y6_c00327{bottom:963.240000pt;}
.y2_c00327{bottom:1035.560000pt;}
.h4_c00327{height:18.560000pt;}
.h3_c00327{height:62.812500pt;}
.h2_c00327{height:1099.880000pt;}
.h0_c00327{height:1122.520000pt;}
.h1_c00327{height:1122.666667pt;}
.w3_c00327{width:24.320000pt;}
.w2_c00327{width:771.080000pt;}
.w0_c00327{width:793.720000pt;}
.w1_c00327{width:794.000000pt;}
.x0_c00327{left:0.000000pt;}
.x1_c00327{left:11.320000pt;}
.x3_c00327{left:84.794933pt;}
.x5_c00327{left:132.800133pt;}
.x4_c00327{left:384.760000pt;}
.x2_c00327{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_098d8b58813c2ede8eda42fd.woff2')format("woff");}.ff1_c00328{font-family:ff1_c00328;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00328{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00328{vertical-align:0.000000px;}
.ls0_c00328{letter-spacing:0.000000px;}
.sc__c00328{text-shadow:none;}
.sc0_c00328{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00328{-webkit-text-stroke:0px transparent;}
.sc0_c00328{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00328{word-spacing:0.000000px;}
._0_c00328{width:1.166400px;}
._2_c00328{width:2.203200px;}
._3_c00328{width:3.218400px;}
._7_c00328{width:6.897600px;}
._6_c00328{width:8.906400px;}
._8_c00328{width:12.794400px;}
._1_c00328{width:14.652000px;}
._5_c00328{width:16.516800px;}
._4_c00328{width:19.562400px;}
.fc1_c00328{color:transparent;}
.fc0_c00328{color:rgb(0,0,0);}
.fs0_c00328{font-size:72.000000px;}
.y0_c00328{bottom:0.000000px;}
.y5_c00328{bottom:5.040000px;}
.y1_c00328{bottom:12.735000px;}
.y3_c00328{bottom:45.405000px;}
.y4_c00328{bottom:53.100000px;}
.y20_c00328{bottom:147.645000px;}
.y1f_c00328{bottom:183.645000px;}
.y1e_c00328{bottom:219.645000px;}
.y1d_c00328{bottom:255.645000px;}
.y1c_c00328{bottom:291.645000px;}
.y1b_c00328{bottom:327.645000px;}
.y1a_c00328{bottom:363.645000px;}
.y19_c00328{bottom:399.645000px;}
.y18_c00328{bottom:435.645000px;}
.y17_c00328{bottom:471.645000px;}
.y16_c00328{bottom:507.645000px;}
.y15_c00328{bottom:543.645000px;}
.y14_c00328{bottom:579.645000px;}
.y13_c00328{bottom:615.645000px;}
.y12_c00328{bottom:651.645000px;}
.y11_c00328{bottom:687.645000px;}
.y10_c00328{bottom:723.645000px;}
.yf_c00328{bottom:759.645000px;}
.ye_c00328{bottom:795.645000px;}
.yd_c00328{bottom:831.645000px;}
.yc_c00328{bottom:867.645000px;}
.yb_c00328{bottom:903.645000px;}
.ya_c00328{bottom:939.645000px;}
.y9_c00328{bottom:975.645000px;}
.y8_c00328{bottom:1011.645000px;}
.y7_c00328{bottom:1047.645000px;}
.y6_c00328{bottom:1083.645000px;}
.y2_c00328{bottom:1165.005000px;}
.h4_c00328{height:20.880000px;}
.h3_c00328{height:70.664062px;}
.h2_c00328{height:1237.365000px;}
.h0_c00328{height:1262.835000px;}
.h1_c00328{height:1263.000000px;}
.w3_c00328{width:27.360000px;}
.w2_c00328{width:867.465000px;}
.w0_c00328{width:892.935000px;}
.w1_c00328{width:893.250000px;}
.x0_c00328{left:0.000000px;}
.x1_c00328{left:12.735000px;}
.x3_c00328{left:95.397000px;}
.x5_c00328{left:149.400150px;}
.x4_c00328{left:432.855000px;}
.x2_c00328{left:880.125000px;}
@media print{
.v0_c00328{vertical-align:0.000000pt;}
.ls0_c00328{letter-spacing:0.000000pt;}
.ws0_c00328{word-spacing:0.000000pt;}
._0_c00328{width:1.036800pt;}
._2_c00328{width:1.958400pt;}
._3_c00328{width:2.860800pt;}
._7_c00328{width:6.131200pt;}
._6_c00328{width:7.916800pt;}
._8_c00328{width:11.372800pt;}
._1_c00328{width:13.024000pt;}
._5_c00328{width:14.681600pt;}
._4_c00328{width:17.388800pt;}
.fs0_c00328{font-size:64.000000pt;}
.y0_c00328{bottom:0.000000pt;}
.y5_c00328{bottom:4.480000pt;}
.y1_c00328{bottom:11.320000pt;}
.y3_c00328{bottom:40.360000pt;}
.y4_c00328{bottom:47.200000pt;}
.y20_c00328{bottom:131.240000pt;}
.y1f_c00328{bottom:163.240000pt;}
.y1e_c00328{bottom:195.240000pt;}
.y1d_c00328{bottom:227.240000pt;}
.y1c_c00328{bottom:259.240000pt;}
.y1b_c00328{bottom:291.240000pt;}
.y1a_c00328{bottom:323.240000pt;}
.y19_c00328{bottom:355.240000pt;}
.y18_c00328{bottom:387.240000pt;}
.y17_c00328{bottom:419.240000pt;}
.y16_c00328{bottom:451.240000pt;}
.y15_c00328{bottom:483.240000pt;}
.y14_c00328{bottom:515.240000pt;}
.y13_c00328{bottom:547.240000pt;}
.y12_c00328{bottom:579.240000pt;}
.y11_c00328{bottom:611.240000pt;}
.y10_c00328{bottom:643.240000pt;}
.yf_c00328{bottom:675.240000pt;}
.ye_c00328{bottom:707.240000pt;}
.yd_c00328{bottom:739.240000pt;}
.yc_c00328{bottom:771.240000pt;}
.yb_c00328{bottom:803.240000pt;}
.ya_c00328{bottom:835.240000pt;}
.y9_c00328{bottom:867.240000pt;}
.y8_c00328{bottom:899.240000pt;}
.y7_c00328{bottom:931.240000pt;}
.y6_c00328{bottom:963.240000pt;}
.y2_c00328{bottom:1035.560000pt;}
.h4_c00328{height:18.560000pt;}
.h3_c00328{height:62.812500pt;}
.h2_c00328{height:1099.880000pt;}
.h0_c00328{height:1122.520000pt;}
.h1_c00328{height:1122.666667pt;}
.w3_c00328{width:24.320000pt;}
.w2_c00328{width:771.080000pt;}
.w0_c00328{width:793.720000pt;}
.w1_c00328{width:794.000000pt;}
.x0_c00328{left:0.000000pt;}
.x1_c00328{left:11.320000pt;}
.x3_c00328{left:84.797333pt;}
.x5_c00328{left:132.800133pt;}
.x4_c00328{left:384.760000pt;}
.x2_c00328{left:782.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_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_25d83d618af433548f452450.woff2')format("woff");}.ff1_c00329{font-family:ff1_c00329;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00329;src:url('chunks/assets/font_1e41ec2cba5e6b3360fcefee.woff2')format("woff");}.ff2_c00329{font-family:ff2_c00329;line-height:1.284180;font-style:normal;font-weight:normal;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_0c0a98f804a25bb9f9dccb65.woff2')format("woff");}.ff3_c00329{font-family:ff3_c00329;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00329{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00329{vertical-align:0.000000px;}
.ls0_c00329{letter-spacing:0.000000px;}
.sc__c00329{text-shadow:none;}
.sc0_c00329{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00329{-webkit-text-stroke:0px transparent;}
.sc0_c00329{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00329{word-spacing:0.000000px;}
._a_c00329{margin-left:-1.260000px;}
._2_c00329{width:1.584000px;}
._6_c00329{width:3.549600px;}
._9_c00329{width:5.076000px;}
._1_c00329{width:6.516000px;}
._8_c00329{width:8.517600px;}
._0_c00329{width:9.547200px;}
._b_c00329{width:10.994400px;}
._7_c00329{width:13.348800px;}
._5_c00329{width:14.515200px;}
._c_c00329{width:19.008000px;}
._3_c00329{width:23.472000px;}
._d_c00329{width:32.342400px;}
._4_c00329{width:33.465600px;}
.fc1_c00329{color:transparent;}
.fc0_c00329{color:rgb(0,0,0);}
.fs0_c00329{font-size:72.000000px;}
.y0_c00329{bottom:0.000000px;}
.y5_c00329{bottom:5.040000px;}
.y1_c00329{bottom:12.735000px;}
.y3_c00329{bottom:45.405000px;}
.y4_c00329{bottom:53.100000px;}
.y21_c00329{bottom:111.645000px;}
.y20_c00329{bottom:147.645000px;}
.y1f_c00329{bottom:183.645000px;}
.y1e_c00329{bottom:219.645000px;}
.y1d_c00329{bottom:255.645000px;}
.y1c_c00329{bottom:291.645000px;}
.y1b_c00329{bottom:327.645000px;}
.y1a_c00329{bottom:363.645000px;}
.y19_c00329{bottom:399.645000px;}
.y18_c00329{bottom:435.645000px;}
.y17_c00329{bottom:471.645000px;}
.y16_c00329{bottom:507.645000px;}
.y15_c00329{bottom:543.645000px;}
.y14_c00329{bottom:579.645000px;}
.y13_c00329{bottom:615.645000px;}
.y12_c00329{bottom:651.645000px;}
.y11_c00329{bottom:687.645000px;}
.y10_c00329{bottom:723.645000px;}
.yf_c00329{bottom:759.645000px;}
.ye_c00329{bottom:795.645000px;}
.yd_c00329{bottom:831.645000px;}
.yc_c00329{bottom:867.645000px;}
.yb_c00329{bottom:903.645000px;}
.ya_c00329{bottom:939.645000px;}
.y9_c00329{bottom:975.645000px;}
.y8_c00329{bottom:1011.645000px;}
.y7_c00329{bottom:1047.645000px;}
.y6_c00329{bottom:1083.645000px;}
.y2_c00329{bottom:1165.005000px;}
.h4_c00329{height:20.880000px;}
.h5_c00329{height:70.628906px;}
.h3_c00329{height:70.664062px;}
.h2_c00329{height:1237.365000px;}
.h0_c00329{height:1262.835000px;}
.h1_c00329{height:1263.000000px;}
.w3_c00329{width:27.360000px;}
.w2_c00329{width:867.465000px;}
.w0_c00329{width:892.935000px;}
.w1_c00329{width:893.250000px;}
.x0_c00329{left:0.000000px;}
.x1_c00329{left:12.735000px;}
.x3_c00329{left:95.394300px;}
.x6_c00329{left:117.453300px;}
.x5_c00329{left:149.400150px;}
.x4_c00329{left:432.855000px;}
.x2_c00329{left:880.050300px;}
@media print{
.v0_c00329{vertical-align:0.000000pt;}
.ls0_c00329{letter-spacing:0.000000pt;}
.ws0_c00329{word-spacing:0.000000pt;}
._a_c00329{margin-left:-1.120000pt;}
._2_c00329{width:1.408000pt;}
._6_c00329{width:3.155200pt;}
._9_c00329{width:4.512000pt;}
._1_c00329{width:5.792000pt;}
._8_c00329{width:7.571200pt;}
._0_c00329{width:8.486400pt;}
._b_c00329{width:9.772800pt;}
._7_c00329{width:11.865600pt;}
._5_c00329{width:12.902400pt;}
._c_c00329{width:16.896000pt;}
._3_c00329{width:20.864000pt;}
._d_c00329{width:28.748800pt;}
._4_c00329{width:29.747200pt;}
.fs0_c00329{font-size:64.000000pt;}
.y0_c00329{bottom:0.000000pt;}
.y5_c00329{bottom:4.480000pt;}
.y1_c00329{bottom:11.320000pt;}
.y3_c00329{bottom:40.360000pt;}
.y4_c00329{bottom:47.200000pt;}
.y21_c00329{bottom:99.240000pt;}
.y20_c00329{bottom:131.240000pt;}
.y1f_c00329{bottom:163.240000pt;}
.y1e_c00329{bottom:195.240000pt;}
.y1d_c00329{bottom:227.240000pt;}
.y1c_c00329{bottom:259.240000pt;}
.y1b_c00329{bottom:291.240000pt;}
.y1a_c00329{bottom:323.240000pt;}
.y19_c00329{bottom:355.240000pt;}
.y18_c00329{bottom:387.240000pt;}
.y17_c00329{bottom:419.240000pt;}
.y16_c00329{bottom:451.240000pt;}
.y15_c00329{bottom:483.240000pt;}
.y14_c00329{bottom:515.240000pt;}
.y13_c00329{bottom:547.240000pt;}
.y12_c00329{bottom:579.240000pt;}
.y11_c00329{bottom:611.240000pt;}
.y10_c00329{bottom:643.240000pt;}
.yf_c00329{bottom:675.240000pt;}
.ye_c00329{bottom:707.240000pt;}
.yd_c00329{bottom:739.240000pt;}
.yc_c00329{bottom:771.240000pt;}
.yb_c00329{bottom:803.240000pt;}
.ya_c00329{bottom:835.240000pt;}
.y9_c00329{bottom:867.240000pt;}
.y8_c00329{bottom:899.240000pt;}
.y7_c00329{bottom:931.240000pt;}
.y6_c00329{bottom:963.240000pt;}
.y2_c00329{bottom:1035.560000pt;}
.h4_c00329{height:18.560000pt;}
.h5_c00329{height:62.781250pt;}
.h3_c00329{height:62.812500pt;}
.h2_c00329{height:1099.880000pt;}
.h0_c00329{height:1122.520000pt;}
.h1_c00329{height:1122.666667pt;}
.w3_c00329{width:24.320000pt;}
.w2_c00329{width:771.080000pt;}
.w0_c00329{width:793.720000pt;}
.w1_c00329{width:794.000000pt;}
.x0_c00329{left:0.000000pt;}
.x1_c00329{left:11.320000pt;}
.x3_c00329{left:84.794933pt;}
.x6_c00329{left:104.402933pt;}
.x5_c00329{left:132.800133pt;}
.x4_c00329{left:384.760000pt;}
.x2_c00329{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7cff986901f39257ae8cb04c.woff2')format("woff");}.ff1_c00330{font-family:ff1_c00330;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00330;src:url('chunks/assets/font_4880f7a3730bfb7954be5235.woff2')format("woff");}.ff2_c00330{font-family:ff2_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;}
.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;}
.ls0_c00330{letter-spacing:0.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:0.000000px;}
._c_c00330{width:1.864800px;}
._3_c00330{width:3.636000px;}
._0_c00330{width:4.672800px;}
._1_c00330{width:5.940000px;}
._9_c00330{width:7.833600px;}
._8_c00330{width:9.086400px;}
._6_c00330{width:10.584000px;}
._a_c00330{width:13.579200px;}
._4_c00330{width:15.019200px;}
._d_c00330{width:16.732800px;}
._b_c00330{width:19.152000px;}
._2_c00330{width:20.188800px;}
._5_c00330{width:21.312000px;}
._7_c00330{width:22.687200px;}
.fc1_c00330{color:transparent;}
.fc0_c00330{color:rgb(0,0,0);}
.fs0_c00330{font-size:72.000000px;}
.y0_c00330{bottom:0.000000px;}
.y5_c00330{bottom:5.040000px;}
.y1_c00330{bottom:12.735000px;}
.y3_c00330{bottom:45.405000px;}
.y4_c00330{bottom:53.100000px;}
.y21_c00330{bottom:111.645000px;}
.y20_c00330{bottom:147.645000px;}
.y1f_c00330{bottom:183.645000px;}
.y1e_c00330{bottom:219.645000px;}
.y1d_c00330{bottom:255.645000px;}
.y1c_c00330{bottom:291.645000px;}
.y1b_c00330{bottom:327.645000px;}
.y1a_c00330{bottom:363.645000px;}
.y19_c00330{bottom:399.645000px;}
.y18_c00330{bottom:435.645000px;}
.y17_c00330{bottom:471.645000px;}
.y16_c00330{bottom:507.645000px;}
.y15_c00330{bottom:543.645000px;}
.y14_c00330{bottom:579.645000px;}
.y13_c00330{bottom:615.645000px;}
.y12_c00330{bottom:651.645000px;}
.y11_c00330{bottom:687.645000px;}
.y10_c00330{bottom:723.645000px;}
.yf_c00330{bottom:759.645000px;}
.ye_c00330{bottom:795.645000px;}
.yd_c00330{bottom:831.645000px;}
.yc_c00330{bottom:867.645000px;}
.yb_c00330{bottom:903.645000px;}
.ya_c00330{bottom:939.645000px;}
.y9_c00330{bottom:975.645000px;}
.y8_c00330{bottom:1011.645000px;}
.y7_c00330{bottom:1047.645000px;}
.y6_c00330{bottom:1083.645000px;}
.y2_c00330{bottom:1165.005000px;}
.h4_c00330{height:20.880000px;}
.h5_c00330{height:70.628906px;}
.h3_c00330{height:70.664062px;}
.h2_c00330{height:1237.365000px;}
.h0_c00330{height:1262.835000px;}
.h1_c00330{height:1263.000000px;}
.w3_c00330{width:27.360000px;}
.w2_c00330{width:867.465000px;}
.w0_c00330{width:892.935000px;}
.w1_c00330{width:893.250000px;}
.x0_c00330{left:0.000000px;}
.x1_c00330{left:12.735000px;}
.x3_c00330{left:95.397000px;}
.x6_c00330{left:117.432150px;}
.x5_c00330{left:149.400150px;}
.x4_c00330{left:432.855000px;}
.x2_c00330{left:880.125000px;}
@media print{
.v0_c00330{vertical-align:0.000000pt;}
.ls0_c00330{letter-spacing:0.000000pt;}
.ws0_c00330{word-spacing:0.000000pt;}
._c_c00330{width:1.657600pt;}
._3_c00330{width:3.232000pt;}
._0_c00330{width:4.153600pt;}
._1_c00330{width:5.280000pt;}
._9_c00330{width:6.963200pt;}
._8_c00330{width:8.076800pt;}
._6_c00330{width:9.408000pt;}
._a_c00330{width:12.070400pt;}
._4_c00330{width:13.350400pt;}
._d_c00330{width:14.873600pt;}
._b_c00330{width:17.024000pt;}
._2_c00330{width:17.945600pt;}
._5_c00330{width:18.944000pt;}
._7_c00330{width:20.166400pt;}
.fs0_c00330{font-size:64.000000pt;}
.y0_c00330{bottom:0.000000pt;}
.y5_c00330{bottom:4.480000pt;}
.y1_c00330{bottom:11.320000pt;}
.y3_c00330{bottom:40.360000pt;}
.y4_c00330{bottom:47.200000pt;}
.y21_c00330{bottom:99.240000pt;}
.y20_c00330{bottom:131.240000pt;}
.y1f_c00330{bottom:163.240000pt;}
.y1e_c00330{bottom:195.240000pt;}
.y1d_c00330{bottom:227.240000pt;}
.y1c_c00330{bottom:259.240000pt;}
.y1b_c00330{bottom:291.240000pt;}
.y1a_c00330{bottom:323.240000pt;}
.y19_c00330{bottom:355.240000pt;}
.y18_c00330{bottom:387.240000pt;}
.y17_c00330{bottom:419.240000pt;}
.y16_c00330{bottom:451.240000pt;}
.y15_c00330{bottom:483.240000pt;}
.y14_c00330{bottom:515.240000pt;}
.y13_c00330{bottom:547.240000pt;}
.y12_c00330{bottom:579.240000pt;}
.y11_c00330{bottom:611.240000pt;}
.y10_c00330{bottom:643.240000pt;}
.yf_c00330{bottom:675.240000pt;}
.ye_c00330{bottom:707.240000pt;}
.yd_c00330{bottom:739.240000pt;}
.yc_c00330{bottom:771.240000pt;}
.yb_c00330{bottom:803.240000pt;}
.ya_c00330{bottom:835.240000pt;}
.y9_c00330{bottom:867.240000pt;}
.y8_c00330{bottom:899.240000pt;}
.y7_c00330{bottom:931.240000pt;}
.y6_c00330{bottom:963.240000pt;}
.y2_c00330{bottom:1035.560000pt;}
.h4_c00330{height:18.560000pt;}
.h5_c00330{height:62.781250pt;}
.h3_c00330{height:62.812500pt;}
.h2_c00330{height:1099.880000pt;}
.h0_c00330{height:1122.520000pt;}
.h1_c00330{height:1122.666667pt;}
.w3_c00330{width:24.320000pt;}
.w2_c00330{width:771.080000pt;}
.w0_c00330{width:793.720000pt;}
.w1_c00330{width:794.000000pt;}
.x0_c00330{left:0.000000pt;}
.x1_c00330{left:11.320000pt;}
.x3_c00330{left:84.797333pt;}
.x6_c00330{left:104.384133pt;}
.x5_c00330{left:132.800133pt;}
.x4_c00330{left:384.760000pt;}
.x2_c00330{left:782.333333pt;}
}





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

.ir_c00331:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00331{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00331;src:url('chunks/assets/font_2382939f9088eaccac747c0c.woff2')format("woff");}.ff1_c00331{font-family:ff1_c00331;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00331{letter-spacing:0.000000px;}
.sc__c00331{text-shadow:none;}
.sc0_c00331{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00331{-webkit-text-stroke:0px transparent;}
.sc0_c00331{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00331{word-spacing:0.000000px;}
._1_c00331{width:1.123200px;}
._2_c00331{width:2.649600px;}
._6_c00331{width:4.312800px;}
._0_c00331{width:6.228000px;}
._3_c00331{width:7.812000px;}
._8_c00331{width:8.928000px;}
._5_c00331{width:12.772800px;}
._7_c00331{width:16.963200px;}
._4_c00331{width:32.508000px;}
.fc1_c00331{color:transparent;}
.fc0_c00331{color:rgb(0,0,0);}
.fs0_c00331{font-size:72.000000px;}
.y0_c00331{bottom:0.000000px;}
.y5_c00331{bottom:5.040000px;}
.y1_c00331{bottom:12.735000px;}
.y3_c00331{bottom:45.405000px;}
.y4_c00331{bottom:53.100000px;}
.y21_c00331{bottom:111.645000px;}
.y20_c00331{bottom:147.645000px;}
.y1f_c00331{bottom:183.645000px;}
.y1e_c00331{bottom:219.645000px;}
.y1d_c00331{bottom:255.645000px;}
.y1c_c00331{bottom:291.645000px;}
.y1b_c00331{bottom:327.645000px;}
.y1a_c00331{bottom:363.645000px;}
.y19_c00331{bottom:399.645000px;}
.y18_c00331{bottom:435.645000px;}
.y17_c00331{bottom:471.645000px;}
.y16_c00331{bottom:507.645000px;}
.y15_c00331{bottom:543.645000px;}
.y14_c00331{bottom:579.645000px;}
.y13_c00331{bottom:615.645000px;}
.y12_c00331{bottom:651.645000px;}
.y11_c00331{bottom:687.645000px;}
.y10_c00331{bottom:723.645000px;}
.yf_c00331{bottom:759.645000px;}
.ye_c00331{bottom:795.645000px;}
.yd_c00331{bottom:831.645000px;}
.yc_c00331{bottom:867.645000px;}
.yb_c00331{bottom:903.645000px;}
.ya_c00331{bottom:939.645000px;}
.y9_c00331{bottom:975.645000px;}
.y8_c00331{bottom:1011.645000px;}
.y7_c00331{bottom:1047.645000px;}
.y6_c00331{bottom:1083.645000px;}
.y2_c00331{bottom:1165.005000px;}
.h4_c00331{height:20.880000px;}
.h3_c00331{height:70.664062px;}
.h2_c00331{height:1237.365000px;}
.h0_c00331{height:1262.835000px;}
.h1_c00331{height:1263.000000px;}
.w3_c00331{width:27.360000px;}
.w2_c00331{width:867.465000px;}
.w0_c00331{width:892.935000px;}
.w1_c00331{width:893.250000px;}
.x0_c00331{left:0.000000px;}
.x1_c00331{left:12.735000px;}
.x3_c00331{left:95.394300px;}
.x5_c00331{left:149.400150px;}
.x4_c00331{left:432.855000px;}
.x2_c00331{left:880.050300px;}
@media print{
.v0_c00331{vertical-align:0.000000pt;}
.ls0_c00331{letter-spacing:0.000000pt;}
.ws0_c00331{word-spacing:0.000000pt;}
._1_c00331{width:0.998400pt;}
._2_c00331{width:2.355200pt;}
._6_c00331{width:3.833600pt;}
._0_c00331{width:5.536000pt;}
._3_c00331{width:6.944000pt;}
._8_c00331{width:7.936000pt;}
._5_c00331{width:11.353600pt;}
._7_c00331{width:15.078400pt;}
._4_c00331{width:28.896000pt;}
.fs0_c00331{font-size:64.000000pt;}
.y0_c00331{bottom:0.000000pt;}
.y5_c00331{bottom:4.480000pt;}
.y1_c00331{bottom:11.320000pt;}
.y3_c00331{bottom:40.360000pt;}
.y4_c00331{bottom:47.200000pt;}
.y21_c00331{bottom:99.240000pt;}
.y20_c00331{bottom:131.240000pt;}
.y1f_c00331{bottom:163.240000pt;}
.y1e_c00331{bottom:195.240000pt;}
.y1d_c00331{bottom:227.240000pt;}
.y1c_c00331{bottom:259.240000pt;}
.y1b_c00331{bottom:291.240000pt;}
.y1a_c00331{bottom:323.240000pt;}
.y19_c00331{bottom:355.240000pt;}
.y18_c00331{bottom:387.240000pt;}
.y17_c00331{bottom:419.240000pt;}
.y16_c00331{bottom:451.240000pt;}
.y15_c00331{bottom:483.240000pt;}
.y14_c00331{bottom:515.240000pt;}
.y13_c00331{bottom:547.240000pt;}
.y12_c00331{bottom:579.240000pt;}
.y11_c00331{bottom:611.240000pt;}
.y10_c00331{bottom:643.240000pt;}
.yf_c00331{bottom:675.240000pt;}
.ye_c00331{bottom:707.240000pt;}
.yd_c00331{bottom:739.240000pt;}
.yc_c00331{bottom:771.240000pt;}
.yb_c00331{bottom:803.240000pt;}
.ya_c00331{bottom:835.240000pt;}
.y9_c00331{bottom:867.240000pt;}
.y8_c00331{bottom:899.240000pt;}
.y7_c00331{bottom:931.240000pt;}
.y6_c00331{bottom:963.240000pt;}
.y2_c00331{bottom:1035.560000pt;}
.h4_c00331{height:18.560000pt;}
.h3_c00331{height:62.812500pt;}
.h2_c00331{height:1099.880000pt;}
.h0_c00331{height:1122.520000pt;}
.h1_c00331{height:1122.666667pt;}
.w3_c00331{width:24.320000pt;}
.w2_c00331{width:771.080000pt;}
.w0_c00331{width:793.720000pt;}
.w1_c00331{width:794.000000pt;}
.x0_c00331{left:0.000000pt;}
.x1_c00331{left:11.320000pt;}
.x3_c00331{left:84.794933pt;}
.x5_c00331{left:132.800133pt;}
.x4_c00331{left:384.760000pt;}
.x2_c00331{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_45d9cd402fa386c535bd8994.woff2')format("woff");}.ff1_c00332{font-family:ff1_c00332;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00332{letter-spacing:0.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:0.000000px;}
._3_c00332{width:1.180800px;}
._6_c00332{width:3.160800px;}
._4_c00332{width:4.284000px;}
._5_c00332{width:5.335200px;}
._8_c00332{width:6.631200px;}
._0_c00332{width:7.869600px;}
._7_c00332{width:9.597600px;}
._b_c00332{width:11.059200px;}
._2_c00332{width:13.219200px;}
._c_c00332{width:21.463200px;}
._9_c00332{width:22.766400px;}
._a_c00332{width:27.093600px;}
._1_c00332{width:35.006400px;}
._d_c00332{width:36.151200px;}
.fc1_c00332{color:transparent;}
.fc0_c00332{color:rgb(0,0,0);}
.fs0_c00332{font-size:72.000000px;}
.y0_c00332{bottom:0.000000px;}
.y5_c00332{bottom:5.040000px;}
.y1_c00332{bottom:12.735000px;}
.y3_c00332{bottom:45.405000px;}
.y4_c00332{bottom:53.100000px;}
.y21_c00332{bottom:111.645000px;}
.y20_c00332{bottom:147.645000px;}
.y1f_c00332{bottom:183.645000px;}
.y1e_c00332{bottom:219.645000px;}
.y1d_c00332{bottom:255.645000px;}
.y1c_c00332{bottom:291.645000px;}
.y1b_c00332{bottom:327.645000px;}
.y1a_c00332{bottom:363.645000px;}
.y19_c00332{bottom:399.645000px;}
.y18_c00332{bottom:435.645000px;}
.y17_c00332{bottom:471.645000px;}
.y16_c00332{bottom:507.645000px;}
.y15_c00332{bottom:543.645000px;}
.y14_c00332{bottom:579.645000px;}
.y13_c00332{bottom:615.645000px;}
.y12_c00332{bottom:651.645000px;}
.y11_c00332{bottom:687.645000px;}
.y10_c00332{bottom:723.645000px;}
.yf_c00332{bottom:759.645000px;}
.ye_c00332{bottom:795.645000px;}
.yd_c00332{bottom:831.645000px;}
.yc_c00332{bottom:867.645000px;}
.yb_c00332{bottom:903.645000px;}
.ya_c00332{bottom:939.645000px;}
.y9_c00332{bottom:975.645000px;}
.y8_c00332{bottom:1011.645000px;}
.y7_c00332{bottom:1047.645000px;}
.y6_c00332{bottom:1083.645000px;}
.y2_c00332{bottom:1165.005000px;}
.h4_c00332{height:20.880000px;}
.h3_c00332{height:70.664062px;}
.h2_c00332{height:1237.365000px;}
.h0_c00332{height:1262.835000px;}
.h1_c00332{height:1263.000000px;}
.w3_c00332{width:27.360000px;}
.w2_c00332{width:867.465000px;}
.w0_c00332{width:892.935000px;}
.w1_c00332{width:893.250000px;}
.x0_c00332{left:0.000000px;}
.x1_c00332{left:12.735000px;}
.x3_c00332{left:95.397000px;}
.x5_c00332{left:149.400150px;}
.x4_c00332{left:432.855000px;}
.x2_c00332{left:880.125000px;}
@media print{
.v0_c00332{vertical-align:0.000000pt;}
.ls0_c00332{letter-spacing:0.000000pt;}
.ws0_c00332{word-spacing:0.000000pt;}
._3_c00332{width:1.049600pt;}
._6_c00332{width:2.809600pt;}
._4_c00332{width:3.808000pt;}
._5_c00332{width:4.742400pt;}
._8_c00332{width:5.894400pt;}
._0_c00332{width:6.995200pt;}
._7_c00332{width:8.531200pt;}
._b_c00332{width:9.830400pt;}
._2_c00332{width:11.750400pt;}
._c_c00332{width:19.078400pt;}
._9_c00332{width:20.236800pt;}
._a_c00332{width:24.083200pt;}
._1_c00332{width:31.116800pt;}
._d_c00332{width:32.134400pt;}
.fs0_c00332{font-size:64.000000pt;}
.y0_c00332{bottom:0.000000pt;}
.y5_c00332{bottom:4.480000pt;}
.y1_c00332{bottom:11.320000pt;}
.y3_c00332{bottom:40.360000pt;}
.y4_c00332{bottom:47.200000pt;}
.y21_c00332{bottom:99.240000pt;}
.y20_c00332{bottom:131.240000pt;}
.y1f_c00332{bottom:163.240000pt;}
.y1e_c00332{bottom:195.240000pt;}
.y1d_c00332{bottom:227.240000pt;}
.y1c_c00332{bottom:259.240000pt;}
.y1b_c00332{bottom:291.240000pt;}
.y1a_c00332{bottom:323.240000pt;}
.y19_c00332{bottom:355.240000pt;}
.y18_c00332{bottom:387.240000pt;}
.y17_c00332{bottom:419.240000pt;}
.y16_c00332{bottom:451.240000pt;}
.y15_c00332{bottom:483.240000pt;}
.y14_c00332{bottom:515.240000pt;}
.y13_c00332{bottom:547.240000pt;}
.y12_c00332{bottom:579.240000pt;}
.y11_c00332{bottom:611.240000pt;}
.y10_c00332{bottom:643.240000pt;}
.yf_c00332{bottom:675.240000pt;}
.ye_c00332{bottom:707.240000pt;}
.yd_c00332{bottom:739.240000pt;}
.yc_c00332{bottom:771.240000pt;}
.yb_c00332{bottom:803.240000pt;}
.ya_c00332{bottom:835.240000pt;}
.y9_c00332{bottom:867.240000pt;}
.y8_c00332{bottom:899.240000pt;}
.y7_c00332{bottom:931.240000pt;}
.y6_c00332{bottom:963.240000pt;}
.y2_c00332{bottom:1035.560000pt;}
.h4_c00332{height:18.560000pt;}
.h3_c00332{height:62.812500pt;}
.h2_c00332{height:1099.880000pt;}
.h0_c00332{height:1122.520000pt;}
.h1_c00332{height:1122.666667pt;}
.w3_c00332{width:24.320000pt;}
.w2_c00332{width:771.080000pt;}
.w0_c00332{width:793.720000pt;}
.w1_c00332{width:794.000000pt;}
.x0_c00332{left:0.000000pt;}
.x1_c00332{left:11.320000pt;}
.x3_c00332{left:84.797333pt;}
.x5_c00332{left:132.800133pt;}
.x4_c00332{left:384.760000pt;}
.x2_c00332{left:782.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_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_39af6b0e1e584deba686a50e.woff2')format("woff");}.ff1_c00333{font-family:ff1_c00333;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00333{letter-spacing:0.000000px;}
.sc__c00333{text-shadow:none;}
.sc0_c00333{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00333{-webkit-text-stroke:0px transparent;}
.sc0_c00333{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00333{word-spacing:0.000000px;}
._6_c00333{width:1.008000px;}
._7_c00333{width:2.152800px;}
._3_c00333{width:3.348000px;}
._a_c00333{width:4.831200px;}
._1_c00333{width:5.839200px;}
._2_c00333{width:7.488000px;}
._0_c00333{width:9.360000px;}
._d_c00333{width:10.548000px;}
._c_c00333{width:11.584800px;}
._8_c00333{width:13.996800px;}
._9_c00333{width:15.084000px;}
._b_c00333{width:19.029600px;}
._5_c00333{width:20.930400px;}
._e_c00333{width:26.503200px;}
._4_c00333{width:29.440800px;}
.fc1_c00333{color:transparent;}
.fc0_c00333{color:rgb(0,0,0);}
.fs0_c00333{font-size:72.000000px;}
.y0_c00333{bottom:0.000000px;}
.y5_c00333{bottom:5.040000px;}
.y1_c00333{bottom:12.735000px;}
.y3_c00333{bottom:45.405000px;}
.y4_c00333{bottom:53.100000px;}
.y21_c00333{bottom:111.645000px;}
.y20_c00333{bottom:147.645000px;}
.y1f_c00333{bottom:183.645000px;}
.y1e_c00333{bottom:219.645000px;}
.y1d_c00333{bottom:255.645000px;}
.y1c_c00333{bottom:291.645000px;}
.y1b_c00333{bottom:327.645000px;}
.y1a_c00333{bottom:363.645000px;}
.y19_c00333{bottom:399.645000px;}
.y18_c00333{bottom:435.645000px;}
.y17_c00333{bottom:471.645000px;}
.y16_c00333{bottom:507.645000px;}
.y15_c00333{bottom:543.645000px;}
.y14_c00333{bottom:579.645000px;}
.y13_c00333{bottom:615.645000px;}
.y12_c00333{bottom:651.645000px;}
.y11_c00333{bottom:687.645000px;}
.y10_c00333{bottom:723.645000px;}
.yf_c00333{bottom:759.645000px;}
.ye_c00333{bottom:795.645000px;}
.yd_c00333{bottom:831.645000px;}
.yc_c00333{bottom:867.645000px;}
.yb_c00333{bottom:903.645000px;}
.ya_c00333{bottom:939.645000px;}
.y9_c00333{bottom:975.645000px;}
.y8_c00333{bottom:1011.645000px;}
.y7_c00333{bottom:1047.645000px;}
.y6_c00333{bottom:1083.645000px;}
.y2_c00333{bottom:1165.005000px;}
.h4_c00333{height:20.880000px;}
.h3_c00333{height:70.664062px;}
.h2_c00333{height:1237.365000px;}
.h0_c00333{height:1262.835000px;}
.h1_c00333{height:1263.000000px;}
.w3_c00333{width:27.360000px;}
.w2_c00333{width:867.465000px;}
.w0_c00333{width:892.935000px;}
.w1_c00333{width:893.250000px;}
.x0_c00333{left:0.000000px;}
.x1_c00333{left:12.735000px;}
.x3_c00333{left:95.394300px;}
.x5_c00333{left:149.400150px;}
.x4_c00333{left:432.855000px;}
.x2_c00333{left:880.050300px;}
@media print{
.v0_c00333{vertical-align:0.000000pt;}
.ls0_c00333{letter-spacing:0.000000pt;}
.ws0_c00333{word-spacing:0.000000pt;}
._6_c00333{width:0.896000pt;}
._7_c00333{width:1.913600pt;}
._3_c00333{width:2.976000pt;}
._a_c00333{width:4.294400pt;}
._1_c00333{width:5.190400pt;}
._2_c00333{width:6.656000pt;}
._0_c00333{width:8.320000pt;}
._d_c00333{width:9.376000pt;}
._c_c00333{width:10.297600pt;}
._8_c00333{width:12.441600pt;}
._9_c00333{width:13.408000pt;}
._b_c00333{width:16.915200pt;}
._5_c00333{width:18.604800pt;}
._e_c00333{width:23.558400pt;}
._4_c00333{width:26.169600pt;}
.fs0_c00333{font-size:64.000000pt;}
.y0_c00333{bottom:0.000000pt;}
.y5_c00333{bottom:4.480000pt;}
.y1_c00333{bottom:11.320000pt;}
.y3_c00333{bottom:40.360000pt;}
.y4_c00333{bottom:47.200000pt;}
.y21_c00333{bottom:99.240000pt;}
.y20_c00333{bottom:131.240000pt;}
.y1f_c00333{bottom:163.240000pt;}
.y1e_c00333{bottom:195.240000pt;}
.y1d_c00333{bottom:227.240000pt;}
.y1c_c00333{bottom:259.240000pt;}
.y1b_c00333{bottom:291.240000pt;}
.y1a_c00333{bottom:323.240000pt;}
.y19_c00333{bottom:355.240000pt;}
.y18_c00333{bottom:387.240000pt;}
.y17_c00333{bottom:419.240000pt;}
.y16_c00333{bottom:451.240000pt;}
.y15_c00333{bottom:483.240000pt;}
.y14_c00333{bottom:515.240000pt;}
.y13_c00333{bottom:547.240000pt;}
.y12_c00333{bottom:579.240000pt;}
.y11_c00333{bottom:611.240000pt;}
.y10_c00333{bottom:643.240000pt;}
.yf_c00333{bottom:675.240000pt;}
.ye_c00333{bottom:707.240000pt;}
.yd_c00333{bottom:739.240000pt;}
.yc_c00333{bottom:771.240000pt;}
.yb_c00333{bottom:803.240000pt;}
.ya_c00333{bottom:835.240000pt;}
.y9_c00333{bottom:867.240000pt;}
.y8_c00333{bottom:899.240000pt;}
.y7_c00333{bottom:931.240000pt;}
.y6_c00333{bottom:963.240000pt;}
.y2_c00333{bottom:1035.560000pt;}
.h4_c00333{height:18.560000pt;}
.h3_c00333{height:62.812500pt;}
.h2_c00333{height:1099.880000pt;}
.h0_c00333{height:1122.520000pt;}
.h1_c00333{height:1122.666667pt;}
.w3_c00333{width:24.320000pt;}
.w2_c00333{width:771.080000pt;}
.w0_c00333{width:793.720000pt;}
.w1_c00333{width:794.000000pt;}
.x0_c00333{left:0.000000pt;}
.x1_c00333{left:11.320000pt;}
.x3_c00333{left:84.794933pt;}
.x5_c00333{left:132.800133pt;}
.x4_c00333{left:384.760000pt;}
.x2_c00333{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_93b8865bd6ee9b1f038e4be4.woff2')format("woff");}.ff1_c00334{font-family:ff1_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;}
.m0_c00334{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00334{vertical-align:0.000000px;}
.ls2_c00334{letter-spacing:-0.014400px;}
.ls1_c00334{letter-spacing:0.000000px;}
.ls0_c00334{letter-spacing:0.014400px;}
.sc__c00334{text-shadow:none;}
.sc0_c00334{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00334{-webkit-text-stroke:0px transparent;}
.sc0_c00334{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00334{word-spacing:-18.014400px;}
.ws1_c00334{word-spacing:0.000000px;}
._1_c00334{width:1.857600px;}
._2_c00334{width:4.629600px;}
._3_c00334{width:6.256800px;}
._7_c00334{width:7.300800px;}
._6_c00334{width:8.683200px;}
._8_c00334{width:10.087200px;}
._4_c00334{width:24.278400px;}
._0_c00334{width:31.276800px;}
._5_c00334{width:198.000000px;}
.fc1_c00334{color:transparent;}
.fc0_c00334{color:rgb(0,0,0);}
.fs0_c00334{font-size:72.000000px;}
.y0_c00334{bottom:0.000000px;}
.y5_c00334{bottom:5.040000px;}
.y1_c00334{bottom:12.735000px;}
.y3_c00334{bottom:45.405000px;}
.y4_c00334{bottom:53.100000px;}
.y16_c00334{bottom:523.125000px;}
.y15_c00334{bottom:543.645000px;}
.y14_c00334{bottom:579.645000px;}
.y13_c00334{bottom:615.645000px;}
.y12_c00334{bottom:651.645000px;}
.y11_c00334{bottom:687.645000px;}
.y10_c00334{bottom:723.645000px;}
.yf_c00334{bottom:759.645000px;}
.ye_c00334{bottom:795.645000px;}
.yd_c00334{bottom:831.645000px;}
.yc_c00334{bottom:867.645000px;}
.yb_c00334{bottom:903.645000px;}
.ya_c00334{bottom:939.645000px;}
.y9_c00334{bottom:975.645000px;}
.y8_c00334{bottom:1011.645000px;}
.y7_c00334{bottom:1047.645000px;}
.y6_c00334{bottom:1083.645000px;}
.y2_c00334{bottom:1165.005000px;}
.h4_c00334{height:20.880000px;}
.h3_c00334{height:70.664062px;}
.h2_c00334{height:1237.365000px;}
.h0_c00334{height:1262.835000px;}
.h1_c00334{height:1263.000000px;}
.w3_c00334{width:27.360000px;}
.w2_c00334{width:867.465000px;}
.w0_c00334{width:892.935000px;}
.w1_c00334{width:893.250000px;}
.x0_c00334{left:0.000000px;}
.x1_c00334{left:12.735000px;}
.x3_c00334{left:95.397000px;}
.x5_c00334{left:149.400150px;}
.x4_c00334{left:432.855000px;}
.x2_c00334{left:880.125000px;}
@media print{
.v0_c00334{vertical-align:0.000000pt;}
.ls2_c00334{letter-spacing:-0.012800pt;}
.ls1_c00334{letter-spacing:0.000000pt;}
.ls0_c00334{letter-spacing:0.012800pt;}
.ws0_c00334{word-spacing:-16.012800pt;}
.ws1_c00334{word-spacing:0.000000pt;}
._1_c00334{width:1.651200pt;}
._2_c00334{width:4.115200pt;}
._3_c00334{width:5.561600pt;}
._7_c00334{width:6.489600pt;}
._6_c00334{width:7.718400pt;}
._8_c00334{width:8.966400pt;}
._4_c00334{width:21.580800pt;}
._0_c00334{width:27.801600pt;}
._5_c00334{width:176.000000pt;}
.fs0_c00334{font-size:64.000000pt;}
.y0_c00334{bottom:0.000000pt;}
.y5_c00334{bottom:4.480000pt;}
.y1_c00334{bottom:11.320000pt;}
.y3_c00334{bottom:40.360000pt;}
.y4_c00334{bottom:47.200000pt;}
.y16_c00334{bottom:465.000000pt;}
.y15_c00334{bottom:483.240000pt;}
.y14_c00334{bottom:515.240000pt;}
.y13_c00334{bottom:547.240000pt;}
.y12_c00334{bottom:579.240000pt;}
.y11_c00334{bottom:611.240000pt;}
.y10_c00334{bottom:643.240000pt;}
.yf_c00334{bottom:675.240000pt;}
.ye_c00334{bottom:707.240000pt;}
.yd_c00334{bottom:739.240000pt;}
.yc_c00334{bottom:771.240000pt;}
.yb_c00334{bottom:803.240000pt;}
.ya_c00334{bottom:835.240000pt;}
.y9_c00334{bottom:867.240000pt;}
.y8_c00334{bottom:899.240000pt;}
.y7_c00334{bottom:931.240000pt;}
.y6_c00334{bottom:963.240000pt;}
.y2_c00334{bottom:1035.560000pt;}
.h4_c00334{height:18.560000pt;}
.h3_c00334{height:62.812500pt;}
.h2_c00334{height:1099.880000pt;}
.h0_c00334{height:1122.520000pt;}
.h1_c00334{height:1122.666667pt;}
.w3_c00334{width:24.320000pt;}
.w2_c00334{width:771.080000pt;}
.w0_c00334{width:793.720000pt;}
.w1_c00334{width:794.000000pt;}
.x0_c00334{left:0.000000pt;}
.x1_c00334{left:11.320000pt;}
.x3_c00334{left:84.797333pt;}
.x5_c00334{left:132.800133pt;}
.x4_c00334{left:384.760000pt;}
.x2_c00334{left:782.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_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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00335{font-family:ff1_c00335;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00335;src:url('chunks/assets/font_2482d7d53a87230c314f0f71.woff2')format("woff");}.ff2_c00335{font-family:ff2_c00335;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00335;src:url('chunks/assets/font_6eb23f29034b1b94e8543db3.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;}
.m0_c00335{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00335{vertical-align:0.000000px;}
.ls1_c00335{letter-spacing:0.000000px;}
.ls2_c00335{letter-spacing:0.203184px;}
.ls0_c00335{letter-spacing:0.310752px;}
.sc__c00335{text-shadow:none;}
.sc0_c00335{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00335{-webkit-text-stroke:0px transparent;}
.sc0_c00335{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00335{word-spacing:-30.083184px;}
.ws1_c00335{word-spacing:0.000000px;}
.fc1_c00335{color:transparent;}
.fc0_c00335{color:rgb(0,0,0);}
.fs0_c00335{font-size:72.000000px;}
.fs1_c00335{font-size:119.520000px;}
.y0_c00335{bottom:0.000000px;}
.y5_c00335{bottom:5.040000px;}
.y1_c00335{bottom:12.735000px;}
.y3_c00335{bottom:44.685000px;}
.y4_c00335{bottom:53.460000px;}
.yd_c00335{bottom:861.143400px;}
.yc_c00335{bottom:897.148800px;}
.yb_c00335{bottom:933.154200px;}
.ya_c00335{bottom:969.159600px;}
.y9_c00335{bottom:1005.165000px;}
.y8_c00335{bottom:1052.685000px;}
.y7_c00335{bottom:1089.045000px;}
.y6_c00335{bottom:1125.045000px;}
.y2_c00335{bottom:1165.365000px;}
.h4_c00335{height:20.880000px;}
.h3_c00335{height:47.988281px;}
.h5_c00335{height:70.664062px;}
.h6_c00335{height:120.453750px;}
.h2_c00335{height:1237.365000px;}
.h0_c00335{height:1262.835000px;}
.h1_c00335{height:1263.000000px;}
.w3_c00335{width:27.000000px;}
.w2_c00335{width:867.465000px;}
.w0_c00335{width:892.935000px;}
.w1_c00335{width:893.250000px;}
.x0_c00335{left:0.000000px;}
.x1_c00335{left:12.735000px;}
.x3_c00335{left:95.394000px;}
.x6_c00335{left:289.047120px;}
.x5_c00335{left:412.780200px;}
.x4_c00335{left:428.535000px;}
.x2_c00335{left:878.250000px;}
@media print{
.v0_c00335{vertical-align:0.000000pt;}
.ls1_c00335{letter-spacing:0.000000pt;}
.ls2_c00335{letter-spacing:0.180608pt;}
.ls0_c00335{letter-spacing:0.276224pt;}
.ws0_c00335{word-spacing:-26.740608pt;}
.ws1_c00335{word-spacing:0.000000pt;}
.fs0_c00335{font-size:64.000000pt;}
.fs1_c00335{font-size:106.240000pt;}
.y0_c00335{bottom:0.000000pt;}
.y5_c00335{bottom:4.480000pt;}
.y1_c00335{bottom:11.320000pt;}
.y3_c00335{bottom:39.720000pt;}
.y4_c00335{bottom:47.520000pt;}
.yd_c00335{bottom:765.460800pt;}
.yc_c00335{bottom:797.465600pt;}
.yb_c00335{bottom:829.470400pt;}
.ya_c00335{bottom:861.475200pt;}
.y9_c00335{bottom:893.480000pt;}
.y8_c00335{bottom:935.720000pt;}
.y7_c00335{bottom:968.040000pt;}
.y6_c00335{bottom:1000.040000pt;}
.y2_c00335{bottom:1035.880000pt;}
.h4_c00335{height:18.560000pt;}
.h3_c00335{height:42.656250pt;}
.h5_c00335{height:62.812500pt;}
.h6_c00335{height:107.070000pt;}
.h2_c00335{height:1099.880000pt;}
.h0_c00335{height:1122.520000pt;}
.h1_c00335{height:1122.666667pt;}
.w3_c00335{width:24.000000pt;}
.w2_c00335{width:771.080000pt;}
.w0_c00335{width:793.720000pt;}
.w1_c00335{width:794.000000pt;}
.x0_c00335{left:0.000000pt;}
.x1_c00335{left:11.320000pt;}
.x3_c00335{left:84.794667pt;}
.x6_c00335{left:256.930773pt;}
.x5_c00335{left:366.915733pt;}
.x4_c00335{left:380.920000pt;}
.x2_c00335{left:780.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_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_011ab59a9258f5dd1b91d196.woff2')format("woff");}.ff1_c00336{font-family:ff1_c00336;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00336;src:url('chunks/assets/font_cba0931944926950290c72c7.woff2')format("woff");}.ff2_c00336{font-family:ff2_c00336;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00336;src:url('chunks/assets/font_b56ae3d38f15faa75a3902b4.woff2')format("woff");}.ff3_c00336{font-family:ff3_c00336;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;}
.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;}
.ls0_c00336{letter-spacing:0.000000px;}
.sc__c00336{text-shadow:none;}
.sc0_c00336{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00336{-webkit-text-stroke:0px transparent;}
.sc0_c00336{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00336{word-spacing:0.000000px;}
.fc1_c00336{color:transparent;}
.fc0_c00336{color:rgb(0,0,0);}
.fs0_c00336{font-size:72.000000px;}
.fs1_c00336{font-size:119.520000px;}
.y0_c00336{bottom:0.000000px;}
.y5_c00336{bottom:5.040000px;}
.y1_c00336{bottom:12.735000px;}
.y3_c00336{bottom:44.685000px;}
.y4_c00336{bottom:53.460000px;}
.y7_c00336{bottom:1089.045000px;}
.y6_c00336{bottom:1113.525000px;}
.y2_c00336{bottom:1165.365000px;}
.h4_c00336{height:20.880000px;}
.h3_c00336{height:47.988281px;}
.h5_c00336{height:70.664062px;}
.h6_c00336{height:124.422187px;}
.h2_c00336{height:1237.365000px;}
.h0_c00336{height:1262.835000px;}
.h1_c00336{height:1263.000000px;}
.w3_c00336{width:27.000000px;}
.w2_c00336{width:867.465000px;}
.w0_c00336{width:892.935000px;}
.w1_c00336{width:893.250000px;}
.x0_c00336{left:0.000000px;}
.x1_c00336{left:12.735000px;}
.x3_c00336{left:95.406300px;}
.x4_c00336{left:428.535000px;}
.x2_c00336{left:878.550300px;}
@media print{
.v0_c00336{vertical-align:0.000000pt;}
.ls0_c00336{letter-spacing:0.000000pt;}
.ws0_c00336{word-spacing:0.000000pt;}
.fs0_c00336{font-size:64.000000pt;}
.fs1_c00336{font-size:106.240000pt;}
.y0_c00336{bottom:0.000000pt;}
.y5_c00336{bottom:4.480000pt;}
.y1_c00336{bottom:11.320000pt;}
.y3_c00336{bottom:39.720000pt;}
.y4_c00336{bottom:47.520000pt;}
.y7_c00336{bottom:968.040000pt;}
.y6_c00336{bottom:989.800000pt;}
.y2_c00336{bottom:1035.880000pt;}
.h4_c00336{height:18.560000pt;}
.h3_c00336{height:42.656250pt;}
.h5_c00336{height:62.812500pt;}
.h6_c00336{height:110.597500pt;}
.h2_c00336{height:1099.880000pt;}
.h0_c00336{height:1122.520000pt;}
.h1_c00336{height:1122.666667pt;}
.w3_c00336{width:24.000000pt;}
.w2_c00336{width:771.080000pt;}
.w0_c00336{width:793.720000pt;}
.w1_c00336{width:794.000000pt;}
.x0_c00336{left:0.000000pt;}
.x1_c00336{left:11.320000pt;}
.x3_c00336{left:84.805600pt;}
.x4_c00336{left:380.920000pt;}
.x2_c00336{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00337{font-family:ff1_c00337;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00337;src:url('chunks/assets/font_e657d0e6464da9000d03415e.woff2')format("woff");}.ff2_c00337{font-family:ff2_c00337;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00337;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00337{font-family:ff3_c00337;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00337;src:url('chunks/assets/font_d945e23b8b45c8a5ac4aa5f9.woff2')format("woff");}.ff4_c00337{font-family:ff4_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:ff5_c00337;src:url('chunks/assets/font_fe4ab4c2ad441ac76bbbecfe.woff2')format("woff");}.ff5_c00337{font-family:ff5_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:ff6_c00337;src:url('chunks/assets/font_be6b9e2f70177d1f61b5b955.woff2')format("woff");}.ff6_c00337{font-family:ff6_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;}
.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);}
.v1_c00337{vertical-align:-132.479400px;}
.v2_c00337{vertical-align:-77.759400px;}
.v0_c00337{vertical-align:0.000000px;}
.lsd_c00337{letter-spacing:-0.014400px;}
.ls6_c00337{letter-spacing:0.000000px;}
.ls7_c00337{letter-spacing:0.062208px;}
.ls4_c00337{letter-spacing:0.083520px;}
.lsc_c00337{letter-spacing:0.116928px;}
.ls2_c00337{letter-spacing:0.186624px;}
.lsb_c00337{letter-spacing:0.242208px;}
.ls5_c00337{letter-spacing:0.283968px;}
.ls9_c00337{letter-spacing:0.298080px;}
.ls1_c00337{letter-spacing:0.370512px;}
.lsa_c00337{letter-spacing:0.602640px;}
.ls8_c00337{letter-spacing:0.680400px;}
.lse_c00337{letter-spacing:1.951200px;}
.ls0_c00337{letter-spacing:996.799800px;}
.ls3_c00337{letter-spacing:1219.832400px;}
.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;}
}
.ws4_c00337{word-spacing:-21.163968px;}
.ws3_c00337{word-spacing:-21.122208px;}
.ws2_c00337{word-spacing:-19.626624px;}
.ws1_c00337{word-spacing:-19.440000px;}
.ws0_c00337{word-spacing:-18.000000px;}
.ws5_c00337{word-spacing:0.000000px;}
._5_c00337{margin-left:-2.403360px;}
._0_c00337{margin-left:-1.088640px;}
._1_c00337{width:1.010880px;}
._3_c00337{width:2.481120px;}
._6_c00337{width:6.926400px;}
._8_c00337{width:7.992000px;}
._7_c00337{width:9.014400px;}
._4_c00337{width:16.092000px;}
._2_c00337{width:23.450400px;}
.fc2_c00337{color:transparent;}
.fc1_c00337{color:rgb(127,127,127);}
.fc0_c00337{color:rgb(0,0,0);}
.fs0_c00337{font-size:64.800000px;}
.fs1_c00337{font-size:72.000000px;}
.fs3_c00337{font-size:77.760000px;}
.fs4_c00337{font-size:83.520000px;}
.fs2_c00337{font-size:119.520000px;}
.y0_c00337{bottom:0.000000px;}
.y5_c00337{bottom:1.440000px;}
.y1_c00337{bottom:12.735000px;}
.y3_c00337{bottom:45.405000px;}
.y4_c00337{bottom:56.700000px;}
.y21_c00337{bottom:106.965000px;}
.y20_c00337{bottom:142.965000px;}
.y1f_c00337{bottom:178.965000px;}
.y1e_c00337{bottom:214.965000px;}
.y1d_c00337{bottom:250.965000px;}
.y1c_c00337{bottom:286.965000px;}
.y1b_c00337{bottom:322.965000px;}
.y1a_c00337{bottom:358.965000px;}
.y19_c00337{bottom:394.965000px;}
.y18_c00337{bottom:430.965000px;}
.y17_c00337{bottom:466.965000px;}
.y16_c00337{bottom:502.965000px;}
.y15_c00337{bottom:538.965000px;}
.y14_c00337{bottom:574.965000px;}
.y13_c00337{bottom:610.965000px;}
.y12_c00337{bottom:646.965000px;}
.y11_c00337{bottom:682.965000px;}
.y10_c00337{bottom:719.685000px;}
.yf_c00337{bottom:754.965000px;}
.ye_c00337{bottom:790.965000px;}
.yd_c00337{bottom:826.965000px;}
.yc_c00337{bottom:862.590600px;}
.yb_c00337{bottom:881.317800px;}
.ya_c00337{bottom:900.401400px;}
.y9_c00337{bottom:938.924850px;}
.y8_c00337{bottom:975.282120px;}
.y7_c00337{bottom:1011.285000px;}
.y6_c00337{bottom:1082.924850px;}
.y2_c00337{bottom:1165.365000px;}
.h5_c00337{height:17.280000px;}
.h3_c00337{height:43.189453px;}
.h7_c00337{height:63.566016px;}
.h9_c00337{height:70.628906px;}
.h4_c00337{height:70.664062px;}
.h6_c00337{height:78.367500px;}
.h8_c00337{height:81.929531px;}
.h2_c00337{height:1237.365000px;}
.h0_c00337{height:1262.835000px;}
.h1_c00337{height:1263.000000px;}
.w3_c00337{width:47.520000px;}
.w2_c00337{width:867.465000px;}
.w0_c00337{width:892.935000px;}
.w1_c00337{width:893.250000px;}
.x0_c00337{left:0.000000px;}
.x5_c00337{left:10.237500px;}
.x1_c00337{left:12.735000px;}
.x3_c00337{left:95.400150px;}
.x6_c00337{left:126.195900px;}
.xb_c00337{left:149.400150px;}
.x7_c00337{left:234.321180px;}
.x4_c00337{left:422.775000px;}
.x8_c00337{left:437.890050px;}
.xa_c00337{left:653.285250px;}
.x9_c00337{left:771.982650px;}
.x2_c00337{left:878.050050px;}
@media print{
.v1_c00337{vertical-align:-117.759467pt;}
.v2_c00337{vertical-align:-69.119467pt;}
.v0_c00337{vertical-align:0.000000pt;}
.lsd_c00337{letter-spacing:-0.012800pt;}
.ls6_c00337{letter-spacing:0.000000pt;}
.ls7_c00337{letter-spacing:0.055296pt;}
.ls4_c00337{letter-spacing:0.074240pt;}
.lsc_c00337{letter-spacing:0.103936pt;}
.ls2_c00337{letter-spacing:0.165888pt;}
.lsb_c00337{letter-spacing:0.215296pt;}
.ls5_c00337{letter-spacing:0.252416pt;}
.ls9_c00337{letter-spacing:0.264960pt;}
.ls1_c00337{letter-spacing:0.329344pt;}
.lsa_c00337{letter-spacing:0.535680pt;}
.ls8_c00337{letter-spacing:0.604800pt;}
.lse_c00337{letter-spacing:1.734400pt;}
.ls0_c00337{letter-spacing:886.044267pt;}
.ls3_c00337{letter-spacing:1084.295467pt;}
.ws4_c00337{word-spacing:-18.812416pt;}
.ws3_c00337{word-spacing:-18.775296pt;}
.ws2_c00337{word-spacing:-17.445888pt;}
.ws1_c00337{word-spacing:-17.280000pt;}
.ws0_c00337{word-spacing:-16.000000pt;}
.ws5_c00337{word-spacing:0.000000pt;}
._5_c00337{margin-left:-2.136320pt;}
._0_c00337{margin-left:-0.967680pt;}
._1_c00337{width:0.898560pt;}
._3_c00337{width:2.205440pt;}
._6_c00337{width:6.156800pt;}
._8_c00337{width:7.104000pt;}
._7_c00337{width:8.012800pt;}
._4_c00337{width:14.304000pt;}
._2_c00337{width:20.844800pt;}
.fs0_c00337{font-size:57.600000pt;}
.fs1_c00337{font-size:64.000000pt;}
.fs3_c00337{font-size:69.120000pt;}
.fs4_c00337{font-size:74.240000pt;}
.fs2_c00337{font-size:106.240000pt;}
.y0_c00337{bottom:0.000000pt;}
.y5_c00337{bottom:1.280000pt;}
.y1_c00337{bottom:11.320000pt;}
.y3_c00337{bottom:40.360000pt;}
.y4_c00337{bottom:50.400000pt;}
.y21_c00337{bottom:95.080000pt;}
.y20_c00337{bottom:127.080000pt;}
.y1f_c00337{bottom:159.080000pt;}
.y1e_c00337{bottom:191.080000pt;}
.y1d_c00337{bottom:223.080000pt;}
.y1c_c00337{bottom:255.080000pt;}
.y1b_c00337{bottom:287.080000pt;}
.y1a_c00337{bottom:319.080000pt;}
.y19_c00337{bottom:351.080000pt;}
.y18_c00337{bottom:383.080000pt;}
.y17_c00337{bottom:415.080000pt;}
.y16_c00337{bottom:447.080000pt;}
.y15_c00337{bottom:479.080000pt;}
.y14_c00337{bottom:511.080000pt;}
.y13_c00337{bottom:543.080000pt;}
.y12_c00337{bottom:575.080000pt;}
.y11_c00337{bottom:607.080000pt;}
.y10_c00337{bottom:639.720000pt;}
.yf_c00337{bottom:671.080000pt;}
.ye_c00337{bottom:703.080000pt;}
.yd_c00337{bottom:735.080000pt;}
.yc_c00337{bottom:766.747200pt;}
.yb_c00337{bottom:783.393600pt;}
.ya_c00337{bottom:800.356800pt;}
.y9_c00337{bottom:834.599867pt;}
.y8_c00337{bottom:866.917440pt;}
.y7_c00337{bottom:898.920000pt;}
.y6_c00337{bottom:962.599867pt;}
.y2_c00337{bottom:1035.880000pt;}
.h5_c00337{height:15.360000pt;}
.h3_c00337{height:38.390625pt;}
.h7_c00337{height:56.503125pt;}
.h9_c00337{height:62.781250pt;}
.h4_c00337{height:62.812500pt;}
.h6_c00337{height:69.660000pt;}
.h8_c00337{height:72.826250pt;}
.h2_c00337{height:1099.880000pt;}
.h0_c00337{height:1122.520000pt;}
.h1_c00337{height:1122.666667pt;}
.w3_c00337{width:42.240000pt;}
.w2_c00337{width:771.080000pt;}
.w0_c00337{width:793.720000pt;}
.w1_c00337{width:794.000000pt;}
.x0_c00337{left:0.000000pt;}
.x5_c00337{left:9.100000pt;}
.x1_c00337{left:11.320000pt;}
.x3_c00337{left:84.800133pt;}
.x6_c00337{left:112.174133pt;}
.xb_c00337{left:132.800133pt;}
.x7_c00337{left:208.285493pt;}
.x4_c00337{left:375.800000pt;}
.x8_c00337{left:389.235600pt;}
.xa_c00337{left:580.698000pt;}
.x9_c00337{left:686.206800pt;}
.x2_c00337{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_701a5e9e7a86efae37486d53.woff2')format("woff");}.ff1_c00338{font-family:ff1_c00338;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00338;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00338{font-family:ff2_c00338;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00338;src:url('chunks/assets/font_a7f65514853e6e831ceca971.woff2')format("woff");}.ff3_c00338{font-family:ff3_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:ff4_c00338;src:url('chunks/assets/font_aaaeb92fb0e25ebb5ab2d565.woff2')format("woff");}.ff4_c00338{font-family:ff4_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;}
.m0_c00338{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00338{vertical-align:0.000000px;}
.ls3_c00338{letter-spacing:-0.014400px;}
.ls2_c00338{letter-spacing:0.000000px;}
.ls5_c00338{letter-spacing:0.036000px;}
.ls0_c00338{letter-spacing:0.242208px;}
.ls1_c00338{letter-spacing:0.275616px;}
.ls4_c00338{letter-spacing:17.949600px;}
.sc__c00338{text-shadow:none;}
.sc0_c00338{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00338{-webkit-text-stroke:0px transparent;}
.sc0_c00338{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00338{word-spacing:-21.155616px;}
.ws3_c00338{word-spacing:-18.036000px;}
.ws0_c00338{word-spacing:-18.000000px;}
.ws2_c00338{word-spacing:-17.985600px;}
.ws4_c00338{word-spacing:0.000000px;}
._3_c00338{margin-left:-18.720000px;}
._4_c00338{margin-left:-17.208000px;}
._e_c00338{margin-left:-1.116000px;}
._10_c00338{width:1.036800px;}
._2_c00338{width:2.095200px;}
._6_c00338{width:3.168000px;}
._9_c00338{width:4.334400px;}
._0_c00338{width:5.608800px;}
._5_c00338{width:7.552800px;}
._1_c00338{width:9.439200px;}
._b_c00338{width:10.548000px;}
._8_c00338{width:11.635200px;}
._a_c00338{width:13.132800px;}
._7_c00338{width:14.976000px;}
._f_c00338{width:16.149600px;}
._d_c00338{width:22.269600px;}
._c_c00338{width:23.695200px;}
.fc2_c00338{color:transparent;}
.fc1_c00338{color:rgb(127,127,127);}
.fc0_c00338{color:rgb(0,0,0);}
.fs1_c00338{font-size:64.800000px;}
.fs0_c00338{font-size:72.000000px;}
.fs2_c00338{font-size:83.520000px;}
.y0_c00338{bottom:0.000000px;}
.y5_c00338{bottom:5.040000px;}
.y1_c00338{bottom:12.735000px;}
.y3_c00338{bottom:45.405000px;}
.y4_c00338{bottom:53.100000px;}
.y21_c00338{bottom:110.924850px;}
.y20_c00338{bottom:146.924850px;}
.y1f_c00338{bottom:182.924850px;}
.y1e_c00338{bottom:218.924850px;}
.y1d_c00338{bottom:254.924850px;}
.y1c_c00338{bottom:290.924850px;}
.y1b_c00338{bottom:326.924850px;}
.y1a_c00338{bottom:362.924850px;}
.y19_c00338{bottom:398.924850px;}
.y18_c00338{bottom:434.924850px;}
.y17_c00338{bottom:470.924850px;}
.y16_c00338{bottom:506.924850px;}
.y15_c00338{bottom:542.924850px;}
.y14_c00338{bottom:578.924850px;}
.y13_c00338{bottom:614.924850px;}
.y12_c00338{bottom:650.924850px;}
.y11_c00338{bottom:686.924850px;}
.y10_c00338{bottom:722.924850px;}
.yf_c00338{bottom:758.924850px;}
.ye_c00338{bottom:794.924850px;}
.yd_c00338{bottom:830.924850px;}
.yc_c00338{bottom:866.924850px;}
.yb_c00338{bottom:902.924850px;}
.ya_c00338{bottom:938.924850px;}
.y9_c00338{bottom:974.924850px;}
.y8_c00338{bottom:1010.924850px;}
.y7_c00338{bottom:1046.924850px;}
.y6_c00338{bottom:1083.645000px;}
.y2_c00338{bottom:1165.365000px;}
.h4_c00338{height:20.880000px;}
.h6_c00338{height:70.628906px;}
.h3_c00338{height:70.664062px;}
.h5_c00338{height:81.929531px;}
.h2_c00338{height:1237.365000px;}
.h0_c00338{height:1262.835000px;}
.h1_c00338{height:1263.000000px;}
.w3_c00338{width:27.000000px;}
.w2_c00338{width:867.465000px;}
.w0_c00338{width:892.935000px;}
.w1_c00338{width:893.250000px;}
.x0_c00338{left:0.000000px;}
.x1_c00338{left:12.735000px;}
.x3_c00338{left:95.392050px;}
.x5_c00338{left:149.400150px;}
.x4_c00338{left:432.855000px;}
.x2_c00338{left:878.050050px;}
@media print{
.v0_c00338{vertical-align:0.000000pt;}
.ls3_c00338{letter-spacing:-0.012800pt;}
.ls2_c00338{letter-spacing:0.000000pt;}
.ls5_c00338{letter-spacing:0.032000pt;}
.ls0_c00338{letter-spacing:0.215296pt;}
.ls1_c00338{letter-spacing:0.244992pt;}
.ls4_c00338{letter-spacing:15.955200pt;}
.ws1_c00338{word-spacing:-18.804992pt;}
.ws3_c00338{word-spacing:-16.032000pt;}
.ws0_c00338{word-spacing:-16.000000pt;}
.ws2_c00338{word-spacing:-15.987200pt;}
.ws4_c00338{word-spacing:0.000000pt;}
._3_c00338{margin-left:-16.640000pt;}
._4_c00338{margin-left:-15.296000pt;}
._e_c00338{margin-left:-0.992000pt;}
._10_c00338{width:0.921600pt;}
._2_c00338{width:1.862400pt;}
._6_c00338{width:2.816000pt;}
._9_c00338{width:3.852800pt;}
._0_c00338{width:4.985600pt;}
._5_c00338{width:6.713600pt;}
._1_c00338{width:8.390400pt;}
._b_c00338{width:9.376000pt;}
._8_c00338{width:10.342400pt;}
._a_c00338{width:11.673600pt;}
._7_c00338{width:13.312000pt;}
._f_c00338{width:14.355200pt;}
._d_c00338{width:19.795200pt;}
._c_c00338{width:21.062400pt;}
.fs1_c00338{font-size:57.600000pt;}
.fs0_c00338{font-size:64.000000pt;}
.fs2_c00338{font-size:74.240000pt;}
.y0_c00338{bottom:0.000000pt;}
.y5_c00338{bottom:4.480000pt;}
.y1_c00338{bottom:11.320000pt;}
.y3_c00338{bottom:40.360000pt;}
.y4_c00338{bottom:47.200000pt;}
.y21_c00338{bottom:98.599867pt;}
.y20_c00338{bottom:130.599867pt;}
.y1f_c00338{bottom:162.599867pt;}
.y1e_c00338{bottom:194.599867pt;}
.y1d_c00338{bottom:226.599867pt;}
.y1c_c00338{bottom:258.599867pt;}
.y1b_c00338{bottom:290.599867pt;}
.y1a_c00338{bottom:322.599867pt;}
.y19_c00338{bottom:354.599867pt;}
.y18_c00338{bottom:386.599867pt;}
.y17_c00338{bottom:418.599867pt;}
.y16_c00338{bottom:450.599867pt;}
.y15_c00338{bottom:482.599867pt;}
.y14_c00338{bottom:514.599867pt;}
.y13_c00338{bottom:546.599867pt;}
.y12_c00338{bottom:578.599867pt;}
.y11_c00338{bottom:610.599867pt;}
.y10_c00338{bottom:642.599867pt;}
.yf_c00338{bottom:674.599867pt;}
.ye_c00338{bottom:706.599867pt;}
.yd_c00338{bottom:738.599867pt;}
.yc_c00338{bottom:770.599867pt;}
.yb_c00338{bottom:802.599867pt;}
.ya_c00338{bottom:834.599867pt;}
.y9_c00338{bottom:866.599867pt;}
.y8_c00338{bottom:898.599867pt;}
.y7_c00338{bottom:930.599867pt;}
.y6_c00338{bottom:963.240000pt;}
.y2_c00338{bottom:1035.880000pt;}
.h4_c00338{height:18.560000pt;}
.h6_c00338{height:62.781250pt;}
.h3_c00338{height:62.812500pt;}
.h5_c00338{height:72.826250pt;}
.h2_c00338{height:1099.880000pt;}
.h0_c00338{height:1122.520000pt;}
.h1_c00338{height:1122.666667pt;}
.w3_c00338{width:24.000000pt;}
.w2_c00338{width:771.080000pt;}
.w0_c00338{width:793.720000pt;}
.w1_c00338{width:794.000000pt;}
.x0_c00338{left:0.000000pt;}
.x1_c00338{left:11.320000pt;}
.x3_c00338{left:84.792933pt;}
.x5_c00338{left:132.800133pt;}
.x4_c00338{left:384.760000pt;}
.x2_c00338{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00339{font-family:ff1_c00339;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00339;src:url('chunks/assets/font_665f05c208c8038c8b1c4555.woff2')format("woff");}.ff2_c00339{font-family:ff2_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:ff3_c00339;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00339{font-family:ff3_c00339;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00339;src:url('chunks/assets/font_b7b6aa7c523450bd630b6f8a.woff2')format("woff");}.ff4_c00339{font-family:ff4_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:ff5_c00339;src:url('chunks/assets/font_829015cc12ecd6b58b8535c0.woff2')format("woff");}.ff5_c00339{font-family:ff5_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;}
.m0_c00339{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00339{vertical-align:0.000000px;}
.ls2_c00339{letter-spacing:0.000000px;}
.ls0_c00339{letter-spacing:0.036000px;}
.ls3_c00339{letter-spacing:0.116928px;}
.ls1_c00339{letter-spacing:0.242208px;}
.ls4_c00339{letter-spacing:0.442656px;}
.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;}
}
.ws3_c00339{word-spacing:-21.322656px;}
.ws2_c00339{word-spacing:-21.122208px;}
.ws1_c00339{word-spacing:-18.036000px;}
.ws0_c00339{word-spacing:-18.000000px;}
.ws4_c00339{word-spacing:0.000000px;}
._1_c00339{width:1.080000px;}
._2_c00339{width:3.052800px;}
._0_c00339{width:4.068000px;}
._7_c00339{width:6.141600px;}
._6_c00339{width:7.466400px;}
._8_c00339{width:9.424800px;}
._3_c00339{width:19.159200px;}
._5_c00339{width:22.824000px;}
._4_c00339{width:23.882400px;}
._9_c00339{width:29.260800px;}
.fc2_c00339{color:transparent;}
.fc1_c00339{color:rgb(127,127,127);}
.fc0_c00339{color:rgb(0,0,0);}
.fs0_c00339{font-size:64.800000px;}
.fs1_c00339{font-size:72.000000px;}
.fs2_c00339{font-size:83.520000px;}
.y0_c00339{bottom:0.000000px;}
.y5_c00339{bottom:1.440000px;}
.y1_c00339{bottom:12.735000px;}
.y3_c00339{bottom:45.405000px;}
.y4_c00339{bottom:56.700000px;}
.y20_c00339{bottom:146.925000px;}
.y1f_c00339{bottom:182.925000px;}
.y1e_c00339{bottom:218.925000px;}
.y1d_c00339{bottom:254.925000px;}
.y1c_c00339{bottom:290.925000px;}
.y1b_c00339{bottom:326.925000px;}
.y1a_c00339{bottom:362.925000px;}
.y19_c00339{bottom:398.925000px;}
.y18_c00339{bottom:434.925000px;}
.y17_c00339{bottom:470.925000px;}
.y16_c00339{bottom:506.925000px;}
.y15_c00339{bottom:542.925000px;}
.y14_c00339{bottom:579.645000px;}
.y13_c00339{bottom:614.924850px;}
.y12_c00339{bottom:650.924850px;}
.y11_c00339{bottom:686.924850px;}
.y10_c00339{bottom:722.924850px;}
.yf_c00339{bottom:758.924850px;}
.ye_c00339{bottom:794.924850px;}
.yd_c00339{bottom:830.924850px;}
.yc_c00339{bottom:866.924850px;}
.yb_c00339{bottom:902.924850px;}
.ya_c00339{bottom:938.924850px;}
.y9_c00339{bottom:974.924850px;}
.y8_c00339{bottom:1010.924850px;}
.y7_c00339{bottom:1046.924850px;}
.y6_c00339{bottom:1082.924850px;}
.y2_c00339{bottom:1165.365000px;}
.h5_c00339{height:17.280000px;}
.h3_c00339{height:43.189453px;}
.h6_c00339{height:70.628906px;}
.h4_c00339{height:70.664062px;}
.h7_c00339{height:81.929531px;}
.h2_c00339{height:1237.365000px;}
.h0_c00339{height:1262.835000px;}
.h1_c00339{height:1263.000000px;}
.w3_c00339{width:47.520000px;}
.w2_c00339{width:867.465000px;}
.w0_c00339{width:892.935000px;}
.w1_c00339{width:893.250000px;}
.x0_c00339{left:0.000000px;}
.x5_c00339{left:10.237500px;}
.x1_c00339{left:12.735000px;}
.x3_c00339{left:95.400150px;}
.x6_c00339{left:149.400150px;}
.x4_c00339{left:422.775000px;}
.x2_c00339{left:878.050050px;}
@media print{
.v0_c00339{vertical-align:0.000000pt;}
.ls2_c00339{letter-spacing:0.000000pt;}
.ls0_c00339{letter-spacing:0.032000pt;}
.ls3_c00339{letter-spacing:0.103936pt;}
.ls1_c00339{letter-spacing:0.215296pt;}
.ls4_c00339{letter-spacing:0.393472pt;}
.ws3_c00339{word-spacing:-18.953472pt;}
.ws2_c00339{word-spacing:-18.775296pt;}
.ws1_c00339{word-spacing:-16.032000pt;}
.ws0_c00339{word-spacing:-16.000000pt;}
.ws4_c00339{word-spacing:0.000000pt;}
._1_c00339{width:0.960000pt;}
._2_c00339{width:2.713600pt;}
._0_c00339{width:3.616000pt;}
._7_c00339{width:5.459200pt;}
._6_c00339{width:6.636800pt;}
._8_c00339{width:8.377600pt;}
._3_c00339{width:17.030400pt;}
._5_c00339{width:20.288000pt;}
._4_c00339{width:21.228800pt;}
._9_c00339{width:26.009600pt;}
.fs0_c00339{font-size:57.600000pt;}
.fs1_c00339{font-size:64.000000pt;}
.fs2_c00339{font-size:74.240000pt;}
.y0_c00339{bottom:0.000000pt;}
.y5_c00339{bottom:1.280000pt;}
.y1_c00339{bottom:11.320000pt;}
.y3_c00339{bottom:40.360000pt;}
.y4_c00339{bottom:50.400000pt;}
.y20_c00339{bottom:130.600000pt;}
.y1f_c00339{bottom:162.600000pt;}
.y1e_c00339{bottom:194.600000pt;}
.y1d_c00339{bottom:226.600000pt;}
.y1c_c00339{bottom:258.600000pt;}
.y1b_c00339{bottom:290.600000pt;}
.y1a_c00339{bottom:322.600000pt;}
.y19_c00339{bottom:354.600000pt;}
.y18_c00339{bottom:386.600000pt;}
.y17_c00339{bottom:418.600000pt;}
.y16_c00339{bottom:450.600000pt;}
.y15_c00339{bottom:482.600000pt;}
.y14_c00339{bottom:515.240000pt;}
.y13_c00339{bottom:546.599867pt;}
.y12_c00339{bottom:578.599867pt;}
.y11_c00339{bottom:610.599867pt;}
.y10_c00339{bottom:642.599867pt;}
.yf_c00339{bottom:674.599867pt;}
.ye_c00339{bottom:706.599867pt;}
.yd_c00339{bottom:738.599867pt;}
.yc_c00339{bottom:770.599867pt;}
.yb_c00339{bottom:802.599867pt;}
.ya_c00339{bottom:834.599867pt;}
.y9_c00339{bottom:866.599867pt;}
.y8_c00339{bottom:898.599867pt;}
.y7_c00339{bottom:930.599867pt;}
.y6_c00339{bottom:962.599867pt;}
.y2_c00339{bottom:1035.880000pt;}
.h5_c00339{height:15.360000pt;}
.h3_c00339{height:38.390625pt;}
.h6_c00339{height:62.781250pt;}
.h4_c00339{height:62.812500pt;}
.h7_c00339{height:72.826250pt;}
.h2_c00339{height:1099.880000pt;}
.h0_c00339{height:1122.520000pt;}
.h1_c00339{height:1122.666667pt;}
.w3_c00339{width:42.240000pt;}
.w2_c00339{width:771.080000pt;}
.w0_c00339{width:793.720000pt;}
.w1_c00339{width:794.000000pt;}
.x0_c00339{left:0.000000pt;}
.x5_c00339{left:9.100000pt;}
.x1_c00339{left:11.320000pt;}
.x3_c00339{left:84.800133pt;}
.x6_c00339{left:132.800133pt;}
.x4_c00339{left:375.800000pt;}
.x2_c00339{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0eb76a0ec65f40310ec11da9.woff2')format("woff");}.ff1_c00340{font-family:ff1_c00340;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00340;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00340{font-family:ff2_c00340;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00340;src:url('chunks/assets/font_e43fa7ee475cb73c622b3904.woff2')format("woff");}.ff3_c00340{font-family:ff3_c00340;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00340;src:url('chunks/assets/font_c62aeecdff9a2f6bf446c165.woff2')format("woff");}.ff4_c00340{font-family:ff4_c00340;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00340;src:url('chunks/assets/font_8068e4a9074b119be7ce667b.woff2')format("woff");}.ff5_c00340{font-family:ff5_c00340;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00340{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00340{vertical-align:0.000000px;}
.v1_c00340{vertical-align:30.240600px;}
.ls2_c00340{letter-spacing:-0.014400px;}
.ls1_c00340{letter-spacing:0.000000px;}
.ls0_c00340{letter-spacing:0.014400px;}
.ls3_c00340{letter-spacing:0.058464px;}
.ls5_c00340{letter-spacing:0.144000px;}
.ls4_c00340{letter-spacing:6.062400px;}
.sc__c00340{text-shadow:none;}
.sc0_c00340{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00340{-webkit-text-stroke:0px transparent;}
.sc0_c00340{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00340{word-spacing:-18.000000px;}
.ws1_c00340{word-spacing:-10.498464px;}
.ws2_c00340{word-spacing:0.000000px;}
._6_c00340{margin-left:-6.105600px;}
._2_c00340{width:1.360800px;}
._1_c00340{width:2.700000px;}
._0_c00340{width:4.046400px;}
._8_c00340{width:5.054400px;}
._5_c00340{width:6.062400px;}
._7_c00340{width:7.430400px;}
._3_c00340{width:12.974400px;}
._4_c00340{width:14.421600px;}
._9_c00340{width:57.657600px;}
.fc1_c00340{color:transparent;}
.fc0_c00340{color:rgb(0,0,0);}
.fs2_c00340{font-size:41.760000px;}
.fs1_c00340{font-size:64.800000px;}
.fs0_c00340{font-size:72.000000px;}
.y0_c00340{bottom:0.000000px;}
.y5_c00340{bottom:5.040000px;}
.y1_c00340{bottom:12.735000px;}
.y3_c00340{bottom:45.405000px;}
.y4_c00340{bottom:53.100000px;}
.y21_c00340{bottom:110.925000px;}
.y20_c00340{bottom:146.925000px;}
.y1f_c00340{bottom:182.925000px;}
.y1e_c00340{bottom:218.925000px;}
.y1d_c00340{bottom:254.925000px;}
.y1c_c00340{bottom:290.925000px;}
.y1b_c00340{bottom:326.925000px;}
.y1a_c00340{bottom:362.925000px;}
.y19_c00340{bottom:398.925000px;}
.y18_c00340{bottom:434.925000px;}
.y17_c00340{bottom:470.925000px;}
.y16_c00340{bottom:506.925000px;}
.y15_c00340{bottom:542.925000px;}
.y14_c00340{bottom:578.925000px;}
.y13_c00340{bottom:614.925000px;}
.y12_c00340{bottom:650.924850px;}
.y11_c00340{bottom:686.924850px;}
.y10_c00340{bottom:722.924850px;}
.yf_c00340{bottom:758.924850px;}
.ye_c00340{bottom:794.924850px;}
.yd_c00340{bottom:830.924850px;}
.yc_c00340{bottom:866.924850px;}
.yb_c00340{bottom:902.924850px;}
.ya_c00340{bottom:938.924850px;}
.y9_c00340{bottom:974.924850px;}
.y8_c00340{bottom:1010.924850px;}
.y7_c00340{bottom:1046.924850px;}
.y6_c00340{bottom:1082.924850px;}
.y2_c00340{bottom:1165.365000px;}
.h4_c00340{height:20.880000px;}
.h5_c00340{height:70.628906px;}
.h3_c00340{height:70.664062px;}
.h6_c00340{height:71.225756px;}
.h2_c00340{height:1237.365000px;}
.h0_c00340{height:1262.835000px;}
.h1_c00340{height:1263.000000px;}
.w3_c00340{width:27.000000px;}
.w2_c00340{width:867.465000px;}
.w0_c00340{width:892.935000px;}
.w1_c00340{width:893.250000px;}
.x0_c00340{left:0.000000px;}
.x1_c00340{left:12.735000px;}
.x3_c00340{left:95.392050px;}
.x5_c00340{left:149.400150px;}
.x4_c00340{left:432.855000px;}
.x2_c00340{left:878.050050px;}
@media print{
.v0_c00340{vertical-align:0.000000pt;}
.v1_c00340{vertical-align:26.880533pt;}
.ls2_c00340{letter-spacing:-0.012800pt;}
.ls1_c00340{letter-spacing:0.000000pt;}
.ls0_c00340{letter-spacing:0.012800pt;}
.ls3_c00340{letter-spacing:0.051968pt;}
.ls5_c00340{letter-spacing:0.128000pt;}
.ls4_c00340{letter-spacing:5.388800pt;}
.ws0_c00340{word-spacing:-16.000000pt;}
.ws1_c00340{word-spacing:-9.331968pt;}
.ws2_c00340{word-spacing:0.000000pt;}
._6_c00340{margin-left:-5.427200pt;}
._2_c00340{width:1.209600pt;}
._1_c00340{width:2.400000pt;}
._0_c00340{width:3.596800pt;}
._8_c00340{width:4.492800pt;}
._5_c00340{width:5.388800pt;}
._7_c00340{width:6.604800pt;}
._3_c00340{width:11.532800pt;}
._4_c00340{width:12.819200pt;}
._9_c00340{width:51.251200pt;}
.fs2_c00340{font-size:37.120000pt;}
.fs1_c00340{font-size:57.600000pt;}
.fs0_c00340{font-size:64.000000pt;}
.y0_c00340{bottom:0.000000pt;}
.y5_c00340{bottom:4.480000pt;}
.y1_c00340{bottom:11.320000pt;}
.y3_c00340{bottom:40.360000pt;}
.y4_c00340{bottom:47.200000pt;}
.y21_c00340{bottom:98.600000pt;}
.y20_c00340{bottom:130.600000pt;}
.y1f_c00340{bottom:162.600000pt;}
.y1e_c00340{bottom:194.600000pt;}
.y1d_c00340{bottom:226.600000pt;}
.y1c_c00340{bottom:258.600000pt;}
.y1b_c00340{bottom:290.600000pt;}
.y1a_c00340{bottom:322.600000pt;}
.y19_c00340{bottom:354.600000pt;}
.y18_c00340{bottom:386.600000pt;}
.y17_c00340{bottom:418.600000pt;}
.y16_c00340{bottom:450.600000pt;}
.y15_c00340{bottom:482.600000pt;}
.y14_c00340{bottom:514.600000pt;}
.y13_c00340{bottom:546.600000pt;}
.y12_c00340{bottom:578.599867pt;}
.y11_c00340{bottom:610.599867pt;}
.y10_c00340{bottom:642.599867pt;}
.yf_c00340{bottom:674.599867pt;}
.ye_c00340{bottom:706.599867pt;}
.yd_c00340{bottom:738.599867pt;}
.yc_c00340{bottom:770.599867pt;}
.yb_c00340{bottom:802.599867pt;}
.ya_c00340{bottom:834.599867pt;}
.y9_c00340{bottom:866.599867pt;}
.y8_c00340{bottom:898.599867pt;}
.y7_c00340{bottom:930.599867pt;}
.y6_c00340{bottom:962.599867pt;}
.y2_c00340{bottom:1035.880000pt;}
.h4_c00340{height:18.560000pt;}
.h5_c00340{height:62.781250pt;}
.h3_c00340{height:62.812500pt;}
.h6_c00340{height:63.311783pt;}
.h2_c00340{height:1099.880000pt;}
.h0_c00340{height:1122.520000pt;}
.h1_c00340{height:1122.666667pt;}
.w3_c00340{width:24.000000pt;}
.w2_c00340{width:771.080000pt;}
.w0_c00340{width:793.720000pt;}
.w1_c00340{width:794.000000pt;}
.x0_c00340{left:0.000000pt;}
.x1_c00340{left:11.320000pt;}
.x3_c00340{left:84.792933pt;}
.x5_c00340{left:132.800133pt;}
.x4_c00340{left:384.760000pt;}
.x2_c00340{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00341{font-family:ff1_c00341;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00341;src:url('chunks/assets/font_442972c25a79a3ddba546ef1.woff2')format("woff");}.ff2_c00341{font-family:ff2_c00341;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00341;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00341{font-family:ff3_c00341;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00341;src:url('chunks/assets/font_db5b53f3b37b5b9302e739b3.woff2')format("woff");}.ff4_c00341{font-family:ff4_c00341;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00341;src:url('chunks/assets/font_305b35f0b1a362af4c953d89.woff2')format("woff");}.ff5_c00341{font-family:ff5_c00341;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.014400px;}
.ls0_c00341{letter-spacing:0.000000px;}
.ls2_c00341{letter-spacing:0.036000px;}
.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;}
}
.ws1_c00341{word-spacing:-18.036000px;}
.ws0_c00341{word-spacing:-18.000000px;}
.ws2_c00341{word-spacing:0.000000px;}
._5_c00341{width:1.886400px;}
._2_c00341{width:3.326400px;}
._a_c00341{width:4.456800px;}
._3_c00341{width:5.637600px;}
._9_c00341{width:7.048800px;}
._6_c00341{width:12.679200px;}
._8_c00341{width:14.745600px;}
._7_c00341{width:16.934400px;}
._4_c00341{width:19.008000px;}
._0_c00341{width:23.853600px;}
._1_c00341{width:31.341600px;}
.fc1_c00341{color:transparent;}
.fc0_c00341{color:rgb(0,0,0);}
.fs0_c00341{font-size:64.800000px;}
.fs1_c00341{font-size:72.000000px;}
.y0_c00341{bottom:0.000000px;}
.y5_c00341{bottom:1.440000px;}
.y1_c00341{bottom:12.735000px;}
.y3_c00341{bottom:45.405000px;}
.y4_c00341{bottom:56.700000px;}
.y21_c00341{bottom:110.925000px;}
.y20_c00341{bottom:146.925000px;}
.y1f_c00341{bottom:182.925000px;}
.y1e_c00341{bottom:218.925000px;}
.y1d_c00341{bottom:254.925000px;}
.y1c_c00341{bottom:290.925000px;}
.y1b_c00341{bottom:326.924850px;}
.y1a_c00341{bottom:362.924850px;}
.y19_c00341{bottom:398.924850px;}
.y18_c00341{bottom:434.924850px;}
.y17_c00341{bottom:470.924850px;}
.y16_c00341{bottom:506.924850px;}
.y15_c00341{bottom:542.924850px;}
.y14_c00341{bottom:578.924850px;}
.y13_c00341{bottom:614.924850px;}
.y12_c00341{bottom:650.924850px;}
.y11_c00341{bottom:686.924850px;}
.y10_c00341{bottom:722.924850px;}
.yf_c00341{bottom:758.924850px;}
.ye_c00341{bottom:794.924850px;}
.yd_c00341{bottom:830.924850px;}
.yc_c00341{bottom:866.924850px;}
.yb_c00341{bottom:902.924850px;}
.ya_c00341{bottom:938.924850px;}
.y9_c00341{bottom:974.924850px;}
.y8_c00341{bottom:1010.924850px;}
.y7_c00341{bottom:1046.924850px;}
.y6_c00341{bottom:1082.924850px;}
.y2_c00341{bottom:1165.365000px;}
.h5_c00341{height:17.280000px;}
.h3_c00341{height:43.189453px;}
.h6_c00341{height:70.628906px;}
.h7_c00341{height:70.629506px;}
.h4_c00341{height:70.664062px;}
.h2_c00341{height:1237.365000px;}
.h0_c00341{height:1262.835000px;}
.h1_c00341{height:1263.000000px;}
.w3_c00341{width:47.520000px;}
.w2_c00341{width:867.465000px;}
.w0_c00341{width:892.935000px;}
.w1_c00341{width:893.250000px;}
.x0_c00341{left:0.000000px;}
.x5_c00341{left:10.237500px;}
.x1_c00341{left:12.735000px;}
.x3_c00341{left:95.400150px;}
.x6_c00341{left:148.575150px;}
.x4_c00341{left:422.775000px;}
.x2_c00341{left:878.050050px;}
@media print{
.v0_c00341{vertical-align:0.000000pt;}
.ls1_c00341{letter-spacing:-0.012800pt;}
.ls0_c00341{letter-spacing:0.000000pt;}
.ls2_c00341{letter-spacing:0.032000pt;}
.ws1_c00341{word-spacing:-16.032000pt;}
.ws0_c00341{word-spacing:-16.000000pt;}
.ws2_c00341{word-spacing:0.000000pt;}
._5_c00341{width:1.676800pt;}
._2_c00341{width:2.956800pt;}
._a_c00341{width:3.961600pt;}
._3_c00341{width:5.011200pt;}
._9_c00341{width:6.265600pt;}
._6_c00341{width:11.270400pt;}
._8_c00341{width:13.107200pt;}
._7_c00341{width:15.052800pt;}
._4_c00341{width:16.896000pt;}
._0_c00341{width:21.203200pt;}
._1_c00341{width:27.859200pt;}
.fs0_c00341{font-size:57.600000pt;}
.fs1_c00341{font-size:64.000000pt;}
.y0_c00341{bottom:0.000000pt;}
.y5_c00341{bottom:1.280000pt;}
.y1_c00341{bottom:11.320000pt;}
.y3_c00341{bottom:40.360000pt;}
.y4_c00341{bottom:50.400000pt;}
.y21_c00341{bottom:98.600000pt;}
.y20_c00341{bottom:130.600000pt;}
.y1f_c00341{bottom:162.600000pt;}
.y1e_c00341{bottom:194.600000pt;}
.y1d_c00341{bottom:226.600000pt;}
.y1c_c00341{bottom:258.600000pt;}
.y1b_c00341{bottom:290.599867pt;}
.y1a_c00341{bottom:322.599867pt;}
.y19_c00341{bottom:354.599867pt;}
.y18_c00341{bottom:386.599867pt;}
.y17_c00341{bottom:418.599867pt;}
.y16_c00341{bottom:450.599867pt;}
.y15_c00341{bottom:482.599867pt;}
.y14_c00341{bottom:514.599867pt;}
.y13_c00341{bottom:546.599867pt;}
.y12_c00341{bottom:578.599867pt;}
.y11_c00341{bottom:610.599867pt;}
.y10_c00341{bottom:642.599867pt;}
.yf_c00341{bottom:674.599867pt;}
.ye_c00341{bottom:706.599867pt;}
.yd_c00341{bottom:738.599867pt;}
.yc_c00341{bottom:770.599867pt;}
.yb_c00341{bottom:802.599867pt;}
.ya_c00341{bottom:834.599867pt;}
.y9_c00341{bottom:866.599867pt;}
.y8_c00341{bottom:898.599867pt;}
.y7_c00341{bottom:930.599867pt;}
.y6_c00341{bottom:962.599867pt;}
.y2_c00341{bottom:1035.880000pt;}
.h5_c00341{height:15.360000pt;}
.h3_c00341{height:38.390625pt;}
.h6_c00341{height:62.781250pt;}
.h7_c00341{height:62.781783pt;}
.h4_c00341{height:62.812500pt;}
.h2_c00341{height:1099.880000pt;}
.h0_c00341{height:1122.520000pt;}
.h1_c00341{height:1122.666667pt;}
.w3_c00341{width:42.240000pt;}
.w2_c00341{width:771.080000pt;}
.w0_c00341{width:793.720000pt;}
.w1_c00341{width:794.000000pt;}
.x0_c00341{left:0.000000pt;}
.x5_c00341{left:9.100000pt;}
.x1_c00341{left:11.320000pt;}
.x3_c00341{left:84.800133pt;}
.x6_c00341{left:132.066800pt;}
.x4_c00341{left:375.800000pt;}
.x2_c00341{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_00d9f6cf13598c496da894ef.woff2')format("woff");}.ff1_c00342{font-family:ff1_c00342;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00342;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00342{font-family:ff2_c00342;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00342;src:url('chunks/assets/font_39200115db66d6b8ddd401f0.woff2')format("woff");}.ff3_c00342{font-family:ff3_c00342;line-height:1.284180;font-style: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;}
.ls2_c00342{letter-spacing:-0.014400px;}
.ls0_c00342{letter-spacing:0.000000px;}
.ls3_c00342{letter-spacing:0.014400px;}
.ls1_c00342{letter-spacing:0.036000px;}
.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:-18.000000px;}
.ws1_c00342{word-spacing:0.000000px;}
._2_c00342{width:1.051200px;}
._4_c00342{width:2.757600px;}
._9_c00342{width:4.096800px;}
._1_c00342{width:5.227200px;}
._3_c00342{width:6.825600px;}
._8_c00342{width:7.927200px;}
._7_c00342{width:9.864000px;}
._0_c00342{width:11.088000px;}
._5_c00342{width:12.232800px;}
._c_c00342{width:13.406400px;}
._a_c00342{width:14.659200px;}
._6_c00342{width:16.992000px;}
._b_c00342{width:19.051200px;}
.fc1_c00342{color:transparent;}
.fc0_c00342{color:rgb(0,0,0);}
.fs1_c00342{font-size:64.800000px;}
.fs0_c00342{font-size:72.000000px;}
.y0_c00342{bottom:0.000000px;}
.y5_c00342{bottom:5.040000px;}
.y1_c00342{bottom:12.735000px;}
.y3_c00342{bottom:45.405000px;}
.y4_c00342{bottom:53.100000px;}
.y21_c00342{bottom:110.924850px;}
.y20_c00342{bottom:146.924850px;}
.y1f_c00342{bottom:182.924850px;}
.y1e_c00342{bottom:218.924850px;}
.y1d_c00342{bottom:254.924850px;}
.y1c_c00342{bottom:290.924850px;}
.y1b_c00342{bottom:326.924850px;}
.y1a_c00342{bottom:362.924850px;}
.y19_c00342{bottom:398.924850px;}
.y18_c00342{bottom:434.924850px;}
.y17_c00342{bottom:470.924850px;}
.y16_c00342{bottom:506.924850px;}
.y15_c00342{bottom:542.924850px;}
.y14_c00342{bottom:578.924850px;}
.y13_c00342{bottom:614.924850px;}
.y12_c00342{bottom:650.924850px;}
.y11_c00342{bottom:686.924850px;}
.y10_c00342{bottom:722.924850px;}
.yf_c00342{bottom:758.924850px;}
.ye_c00342{bottom:794.924850px;}
.yd_c00342{bottom:830.924850px;}
.yc_c00342{bottom:866.924850px;}
.yb_c00342{bottom:902.924850px;}
.ya_c00342{bottom:938.924850px;}
.y9_c00342{bottom:974.924850px;}
.y8_c00342{bottom:1010.924850px;}
.y7_c00342{bottom:1046.924850px;}
.y6_c00342{bottom:1082.924850px;}
.y2_c00342{bottom:1165.365000px;}
.h4_c00342{height:20.880000px;}
.h3_c00342{height:70.664062px;}
.h2_c00342{height:1237.365000px;}
.h0_c00342{height:1262.835000px;}
.h1_c00342{height:1263.000000px;}
.w3_c00342{width:27.000000px;}
.w2_c00342{width:867.465000px;}
.w0_c00342{width:892.935000px;}
.w1_c00342{width:893.250000px;}
.x0_c00342{left:0.000000px;}
.x1_c00342{left:12.735000px;}
.x3_c00342{left:95.392050px;}
.x5_c00342{left:149.364150px;}
.x4_c00342{left:432.855000px;}
.x2_c00342{left:878.050050px;}
@media print{
.v0_c00342{vertical-align:0.000000pt;}
.ls2_c00342{letter-spacing:-0.012800pt;}
.ls0_c00342{letter-spacing:0.000000pt;}
.ls3_c00342{letter-spacing:0.012800pt;}
.ls1_c00342{letter-spacing:0.032000pt;}
.ws0_c00342{word-spacing:-16.000000pt;}
.ws1_c00342{word-spacing:0.000000pt;}
._2_c00342{width:0.934400pt;}
._4_c00342{width:2.451200pt;}
._9_c00342{width:3.641600pt;}
._1_c00342{width:4.646400pt;}
._3_c00342{width:6.067200pt;}
._8_c00342{width:7.046400pt;}
._7_c00342{width:8.768000pt;}
._0_c00342{width:9.856000pt;}
._5_c00342{width:10.873600pt;}
._c_c00342{width:11.916800pt;}
._a_c00342{width:13.030400pt;}
._6_c00342{width:15.104000pt;}
._b_c00342{width:16.934400pt;}
.fs1_c00342{font-size:57.600000pt;}
.fs0_c00342{font-size:64.000000pt;}
.y0_c00342{bottom:0.000000pt;}
.y5_c00342{bottom:4.480000pt;}
.y1_c00342{bottom:11.320000pt;}
.y3_c00342{bottom:40.360000pt;}
.y4_c00342{bottom:47.200000pt;}
.y21_c00342{bottom:98.599867pt;}
.y20_c00342{bottom:130.599867pt;}
.y1f_c00342{bottom:162.599867pt;}
.y1e_c00342{bottom:194.599867pt;}
.y1d_c00342{bottom:226.599867pt;}
.y1c_c00342{bottom:258.599867pt;}
.y1b_c00342{bottom:290.599867pt;}
.y1a_c00342{bottom:322.599867pt;}
.y19_c00342{bottom:354.599867pt;}
.y18_c00342{bottom:386.599867pt;}
.y17_c00342{bottom:418.599867pt;}
.y16_c00342{bottom:450.599867pt;}
.y15_c00342{bottom:482.599867pt;}
.y14_c00342{bottom:514.599867pt;}
.y13_c00342{bottom:546.599867pt;}
.y12_c00342{bottom:578.599867pt;}
.y11_c00342{bottom:610.599867pt;}
.y10_c00342{bottom:642.599867pt;}
.yf_c00342{bottom:674.599867pt;}
.ye_c00342{bottom:706.599867pt;}
.yd_c00342{bottom:738.599867pt;}
.yc_c00342{bottom:770.599867pt;}
.yb_c00342{bottom:802.599867pt;}
.ya_c00342{bottom:834.599867pt;}
.y9_c00342{bottom:866.599867pt;}
.y8_c00342{bottom:898.599867pt;}
.y7_c00342{bottom:930.599867pt;}
.y6_c00342{bottom:962.599867pt;}
.y2_c00342{bottom:1035.880000pt;}
.h4_c00342{height:18.560000pt;}
.h3_c00342{height:62.812500pt;}
.h2_c00342{height:1099.880000pt;}
.h0_c00342{height:1122.520000pt;}
.h1_c00342{height:1122.666667pt;}
.w3_c00342{width:24.000000pt;}
.w2_c00342{width:771.080000pt;}
.w0_c00342{width:793.720000pt;}
.w1_c00342{width:794.000000pt;}
.x0_c00342{left:0.000000pt;}
.x1_c00342{left:11.320000pt;}
.x3_c00342{left:84.792933pt;}
.x5_c00342{left:132.768133pt;}
.x4_c00342{left:384.760000pt;}
.x2_c00342{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00343{font-family:ff1_c00343;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00343;src:url('chunks/assets/font_5e2f9bb046fd75799a689788.woff2')format("woff");}.ff2_c00343{font-family:ff2_c00343;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00343;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00343{font-family:ff3_c00343;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00343;src:url('chunks/assets/font_45070cde4a8728b94c7c05e1.woff2')format("woff");}.ff4_c00343{font-family:ff4_c00343;line-height:1.284180;font-style:normal;font-weight:normal;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_0a5f6edb947ce2e61ed43873.woff2')format("woff");}.ff5_c00343{font-family:ff5_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:ff6_c00343;src:url('chunks/assets/font_21d09b25ca3b89951362c10e.woff2')format("woff");}.ff6_c00343{font-family:ff6_c00343;line-height:1.284180;font-style: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);}
.v1_c00343{vertical-align:-14.400000px;}
.v0_c00343{vertical-align:0.000000px;}
.ls2_c00343{letter-spacing:0.000000px;}
.ls3_c00343{letter-spacing:0.036000px;}
.ls1_c00343{letter-spacing:0.060120px;}
.ls0_c00343{letter-spacing:0.114600px;}
.ls5_c00343{letter-spacing:3.009600px;}
.ls4_c00343{letter-spacing:3.016800px;}
.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:-18.000000px;}
.ws1_c00343{word-spacing:0.000000px;}
._9_c00343{margin-left:-3.686400px;}
._8_c00343{margin-left:-2.361600px;}
._6_c00343{margin-left:-1.008000px;}
._4_c00343{width:1.281600px;}
._2_c00343{width:2.620800px;}
._3_c00343{width:3.643200px;}
._0_c00343{width:4.680000px;}
._b_c00343{width:9.504000px;}
._5_c00343{width:12.765600px;}
._a_c00343{width:14.464800px;}
._1_c00343{width:16.984800px;}
._7_c00343{width:24.076800px;}
._c_c00343{width:35.316000px;}
.fc1_c00343{color:transparent;}
.fc0_c00343{color:rgb(0,0,0);}
.fs2_c00343{font-size:41.760000px;}
.fs0_c00343{font-size:64.800000px;}
.fs1_c00343{font-size:72.000000px;}
.y0_c00343{bottom:0.000000px;}
.y5_c00343{bottom:1.440000px;}
.y1_c00343{bottom:12.735000px;}
.y3_c00343{bottom:45.405000px;}
.y4_c00343{bottom:56.700000px;}
.y21_c00343{bottom:110.925000px;}
.y20_c00343{bottom:146.925000px;}
.y1f_c00343{bottom:182.925000px;}
.y1e_c00343{bottom:218.925000px;}
.y1d_c00343{bottom:254.925000px;}
.y1c_c00343{bottom:290.925000px;}
.y1b_c00343{bottom:326.925000px;}
.y1a_c00343{bottom:362.925000px;}
.y19_c00343{bottom:398.925000px;}
.y18_c00343{bottom:434.925000px;}
.y17_c00343{bottom:470.925000px;}
.y16_c00343{bottom:506.925000px;}
.y15_c00343{bottom:542.925000px;}
.y14_c00343{bottom:578.924850px;}
.y13_c00343{bottom:614.924850px;}
.y12_c00343{bottom:650.924850px;}
.y11_c00343{bottom:686.924850px;}
.y10_c00343{bottom:722.924850px;}
.yf_c00343{bottom:758.924850px;}
.ye_c00343{bottom:794.924850px;}
.yd_c00343{bottom:830.924850px;}
.yc_c00343{bottom:866.924850px;}
.yb_c00343{bottom:902.924850px;}
.ya_c00343{bottom:938.924850px;}
.y9_c00343{bottom:974.924850px;}
.y8_c00343{bottom:1010.924850px;}
.y7_c00343{bottom:1046.924850px;}
.y6_c00343{bottom:1082.924850px;}
.y2_c00343{bottom:1165.365000px;}
.h5_c00343{height:17.280000px;}
.h3_c00343{height:43.189453px;}
.h7_c00343{height:70.629506px;}
.h4_c00343{height:70.664062px;}
.h6_c00343{height:72.562500px;}
.h2_c00343{height:1237.365000px;}
.h0_c00343{height:1262.835000px;}
.h1_c00343{height:1263.000000px;}
.w3_c00343{width:47.520000px;}
.w2_c00343{width:867.465000px;}
.w0_c00343{width:892.935000px;}
.w1_c00343{width:893.250000px;}
.x0_c00343{left:0.000000px;}
.x5_c00343{left:10.237500px;}
.x1_c00343{left:12.735000px;}
.x3_c00343{left:95.400150px;}
.x6_c00343{left:149.400150px;}
.x7_c00343{left:237.348150px;}
.x4_c00343{left:422.775000px;}
.x2_c00343{left:878.050050px;}
@media print{
.v1_c00343{vertical-align:-12.800000pt;}
.v0_c00343{vertical-align:0.000000pt;}
.ls2_c00343{letter-spacing:0.000000pt;}
.ls3_c00343{letter-spacing:0.032000pt;}
.ls1_c00343{letter-spacing:0.053440pt;}
.ls0_c00343{letter-spacing:0.101867pt;}
.ls5_c00343{letter-spacing:2.675200pt;}
.ls4_c00343{letter-spacing:2.681600pt;}
.ws0_c00343{word-spacing:-16.000000pt;}
.ws1_c00343{word-spacing:0.000000pt;}
._9_c00343{margin-left:-3.276800pt;}
._8_c00343{margin-left:-2.099200pt;}
._6_c00343{margin-left:-0.896000pt;}
._4_c00343{width:1.139200pt;}
._2_c00343{width:2.329600pt;}
._3_c00343{width:3.238400pt;}
._0_c00343{width:4.160000pt;}
._b_c00343{width:8.448000pt;}
._5_c00343{width:11.347200pt;}
._a_c00343{width:12.857600pt;}
._1_c00343{width:15.097600pt;}
._7_c00343{width:21.401600pt;}
._c_c00343{width:31.392000pt;}
.fs2_c00343{font-size:37.120000pt;}
.fs0_c00343{font-size:57.600000pt;}
.fs1_c00343{font-size:64.000000pt;}
.y0_c00343{bottom:0.000000pt;}
.y5_c00343{bottom:1.280000pt;}
.y1_c00343{bottom:11.320000pt;}
.y3_c00343{bottom:40.360000pt;}
.y4_c00343{bottom:50.400000pt;}
.y21_c00343{bottom:98.600000pt;}
.y20_c00343{bottom:130.600000pt;}
.y1f_c00343{bottom:162.600000pt;}
.y1e_c00343{bottom:194.600000pt;}
.y1d_c00343{bottom:226.600000pt;}
.y1c_c00343{bottom:258.600000pt;}
.y1b_c00343{bottom:290.600000pt;}
.y1a_c00343{bottom:322.600000pt;}
.y19_c00343{bottom:354.600000pt;}
.y18_c00343{bottom:386.600000pt;}
.y17_c00343{bottom:418.600000pt;}
.y16_c00343{bottom:450.600000pt;}
.y15_c00343{bottom:482.600000pt;}
.y14_c00343{bottom:514.599867pt;}
.y13_c00343{bottom:546.599867pt;}
.y12_c00343{bottom:578.599867pt;}
.y11_c00343{bottom:610.599867pt;}
.y10_c00343{bottom:642.599867pt;}
.yf_c00343{bottom:674.599867pt;}
.ye_c00343{bottom:706.599867pt;}
.yd_c00343{bottom:738.599867pt;}
.yc_c00343{bottom:770.599867pt;}
.yb_c00343{bottom:802.599867pt;}
.ya_c00343{bottom:834.599867pt;}
.y9_c00343{bottom:866.599867pt;}
.y8_c00343{bottom:898.599867pt;}
.y7_c00343{bottom:930.599867pt;}
.y6_c00343{bottom:962.599867pt;}
.y2_c00343{bottom:1035.880000pt;}
.h5_c00343{height:15.360000pt;}
.h3_c00343{height:38.390625pt;}
.h7_c00343{height:62.781783pt;}
.h4_c00343{height:62.812500pt;}
.h6_c00343{height:64.500000pt;}
.h2_c00343{height:1099.880000pt;}
.h0_c00343{height:1122.520000pt;}
.h1_c00343{height:1122.666667pt;}
.w3_c00343{width:42.240000pt;}
.w2_c00343{width:771.080000pt;}
.w0_c00343{width:793.720000pt;}
.w1_c00343{width:794.000000pt;}
.x0_c00343{left:0.000000pt;}
.x5_c00343{left:9.100000pt;}
.x1_c00343{left:11.320000pt;}
.x3_c00343{left:84.800133pt;}
.x6_c00343{left:132.800133pt;}
.x7_c00343{left:210.976133pt;}
.x4_c00343{left:375.800000pt;}
.x2_c00343{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a44faa30f5e5e6889add2bd.woff2')format("woff");}.ff1_c00344{font-family:ff1_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:ff2_c00344;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00344{font-family:ff2_c00344;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00344;src:url('chunks/assets/font_e72a1a01a422da4de16b1ebe.woff2')format("woff");}.ff3_c00344{font-family:ff3_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:ff4_c00344;src:url('chunks/assets/font_57e1fbdcc4f958d8dca0673d.woff2')format("woff");}.ff4_c00344{font-family:ff4_c00344;line-height:0.881836;font-style:normal;font-weight:normal;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_1ca31fe624cc7ebbc72540e7.woff2')format("woff");}.ff5_c00344{font-family:ff5_c00344;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_c00344;src:url('chunks/assets/font_303d81d2c451f618f6286568.woff2')format("woff");}.ff6_c00344{font-family:ff6_c00344;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1_c00344{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,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);}
.v1_c00344{vertical-align:-5.937272px;}
.v0_c00344{vertical-align:0.000000px;}
.v2_c00344{vertical-align:14.400000px;}
.ls5_c00344{letter-spacing:-0.014400px;}
.ls2_c00344{letter-spacing:0.000000px;}
.ls3_c00344{letter-spacing:0.014400px;}
.ls1_c00344{letter-spacing:0.059520px;}
.ls0_c00344{letter-spacing:7.670213px;}
.ls4_c00344{letter-spacing:11.124000px;}
.sc__c00344{text-shadow:none;}
.sc1_c00344{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c00344{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00344{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00344{word-spacing:-18.000000px;}
.ws1_c00344{word-spacing:0.000000px;}
._d_c00344{margin-left:-11.059200px;}
._3_c00344{width:1.526400px;}
._b_c00344{width:3.045600px;}
._5_c00344{width:4.824000px;}
._a_c00344{width:6.019200px;}
._2_c00344{width:7.264800px;}
._0_c00344{width:8.589600px;}
._c_c00344{width:10.260000px;}
._6_c00344{width:11.512800px;}
._9_c00344{width:14.133600px;}
._4_c00344{width:15.429600px;}
._1_c00344{width:19.483200px;}
._7_c00344{width:25.322400px;}
._8_c00344{width:33.573600px;}
.fc1_c00344{color:transparent;}
.fc0_c00344{color:rgb(0,0,0);}
.fs3_c00344{font-size:23.749088px;}
.fs4_c00344{font-size:41.760000px;}
.fs5_c00344{font-size:47.520000px;}
.fs1_c00344{font-size:64.800000px;}
.fs0_c00344{font-size:72.000000px;}
.fs2_c00344{font-size:74.215901px;}
.y0_c00344{bottom:0.000000px;}
.y5_c00344{bottom:5.040000px;}
.y1_c00344{bottom:12.735000px;}
.y3_c00344{bottom:45.405000px;}
.y4_c00344{bottom:53.100000px;}
.y23_c00344{bottom:110.925000px;}
.y22_c00344{bottom:146.925000px;}
.y21_c00344{bottom:182.925000px;}
.y20_c00344{bottom:218.925000px;}
.y1f_c00344{bottom:254.925000px;}
.y1e_c00344{bottom:290.925000px;}
.y1d_c00344{bottom:326.925000px;}
.y1c_c00344{bottom:362.925000px;}
.y1b_c00344{bottom:397.125000px;}
.y1a_c00344{bottom:435.645000px;}
.y19_c00344{bottom:468.045000px;}
.y17_c00344{bottom:471.644850px;}
.y18_c00344{bottom:471.645000px;}
.y16_c00344{bottom:506.924850px;}
.y15_c00344{bottom:542.924850px;}
.y14_c00344{bottom:578.924850px;}
.y13_c00344{bottom:614.924850px;}
.y12_c00344{bottom:650.924850px;}
.y11_c00344{bottom:686.924850px;}
.y10_c00344{bottom:722.924850px;}
.yf_c00344{bottom:758.924850px;}
.ye_c00344{bottom:794.924850px;}
.yd_c00344{bottom:830.924850px;}
.yc_c00344{bottom:866.924850px;}
.yb_c00344{bottom:902.924850px;}
.ya_c00344{bottom:938.924850px;}
.y9_c00344{bottom:974.924850px;}
.y8_c00344{bottom:1010.924850px;}
.y7_c00344{bottom:1046.924850px;}
.y6_c00344{bottom:1082.924850px;}
.y2_c00344{bottom:1165.365000px;}
.h4_c00344{height:20.880000px;}
.h8_c00344{height:46.638281px;}
.h5_c00344{height:52.328009px;}
.h3_c00344{height:70.664062px;}
.h9_c00344{height:71.824219px;}
.h7_c00344{height:74.953125px;}
.h6_c00344{height:85.064062px;}
.h2_c00344{height:1237.365000px;}
.h0_c00344{height:1262.835000px;}
.h1_c00344{height:1263.000000px;}
.w3_c00344{width:27.000000px;}
.w2_c00344{width:867.465000px;}
.w0_c00344{width:892.935000px;}
.w1_c00344{width:893.250000px;}
.x0_c00344{left:0.000000px;}
.x1_c00344{left:12.735000px;}
.x3_c00344{left:95.392050px;}
.x5_c00344{left:149.400150px;}
.x8_c00344{left:430.307400px;}
.x4_c00344{left:432.855000px;}
.x9_c00344{left:441.689250px;}
.x6_c00344{left:752.405700px;}
.x7_c00344{left:769.057950px;}
.x2_c00344{left:878.050050px;}
@media print{
.v1_c00344{vertical-align:-5.277575pt;}
.v0_c00344{vertical-align:0.000000pt;}
.v2_c00344{vertical-align:12.800000pt;}
.ls5_c00344{letter-spacing:-0.012800pt;}
.ls2_c00344{letter-spacing:0.000000pt;}
.ls3_c00344{letter-spacing:0.012800pt;}
.ls1_c00344{letter-spacing:0.052907pt;}
.ls0_c00344{letter-spacing:6.817967pt;}
.ls4_c00344{letter-spacing:9.888000pt;}
.ws0_c00344{word-spacing:-16.000000pt;}
.ws1_c00344{word-spacing:0.000000pt;}
._d_c00344{margin-left:-9.830400pt;}
._3_c00344{width:1.356800pt;}
._b_c00344{width:2.707200pt;}
._5_c00344{width:4.288000pt;}
._a_c00344{width:5.350400pt;}
._2_c00344{width:6.457600pt;}
._0_c00344{width:7.635200pt;}
._c_c00344{width:9.120000pt;}
._6_c00344{width:10.233600pt;}
._9_c00344{width:12.563200pt;}
._4_c00344{width:13.715200pt;}
._1_c00344{width:17.318400pt;}
._7_c00344{width:22.508800pt;}
._8_c00344{width:29.843200pt;}
.fs3_c00344{font-size:21.110301pt;}
.fs4_c00344{font-size:37.120000pt;}
.fs5_c00344{font-size:42.240000pt;}
.fs1_c00344{font-size:57.600000pt;}
.fs0_c00344{font-size:64.000000pt;}
.fs2_c00344{font-size:65.969690pt;}
.y0_c00344{bottom:0.000000pt;}
.y5_c00344{bottom:4.480000pt;}
.y1_c00344{bottom:11.320000pt;}
.y3_c00344{bottom:40.360000pt;}
.y4_c00344{bottom:47.200000pt;}
.y23_c00344{bottom:98.600000pt;}
.y22_c00344{bottom:130.600000pt;}
.y21_c00344{bottom:162.600000pt;}
.y20_c00344{bottom:194.600000pt;}
.y1f_c00344{bottom:226.600000pt;}
.y1e_c00344{bottom:258.600000pt;}
.y1d_c00344{bottom:290.600000pt;}
.y1c_c00344{bottom:322.600000pt;}
.y1b_c00344{bottom:353.000000pt;}
.y1a_c00344{bottom:387.240000pt;}
.y19_c00344{bottom:416.040000pt;}
.y17_c00344{bottom:419.239867pt;}
.y18_c00344{bottom:419.240000pt;}
.y16_c00344{bottom:450.599867pt;}
.y15_c00344{bottom:482.599867pt;}
.y14_c00344{bottom:514.599867pt;}
.y13_c00344{bottom:546.599867pt;}
.y12_c00344{bottom:578.599867pt;}
.y11_c00344{bottom:610.599867pt;}
.y10_c00344{bottom:642.599867pt;}
.yf_c00344{bottom:674.599867pt;}
.ye_c00344{bottom:706.599867pt;}
.yd_c00344{bottom:738.599867pt;}
.yc_c00344{bottom:770.599867pt;}
.yb_c00344{bottom:802.599867pt;}
.ya_c00344{bottom:834.599867pt;}
.y9_c00344{bottom:866.599867pt;}
.y8_c00344{bottom:898.599867pt;}
.y7_c00344{bottom:930.599867pt;}
.y6_c00344{bottom:962.599867pt;}
.y2_c00344{bottom:1035.880000pt;}
.h4_c00344{height:18.560000pt;}
.h8_c00344{height:41.456250pt;}
.h5_c00344{height:46.513785pt;}
.h3_c00344{height:62.812500pt;}
.h9_c00344{height:63.843750pt;}
.h7_c00344{height:66.625000pt;}
.h6_c00344{height:75.612500pt;}
.h2_c00344{height:1099.880000pt;}
.h0_c00344{height:1122.520000pt;}
.h1_c00344{height:1122.666667pt;}
.w3_c00344{width:24.000000pt;}
.w2_c00344{width:771.080000pt;}
.w0_c00344{width:793.720000pt;}
.w1_c00344{width:794.000000pt;}
.x0_c00344{left:0.000000pt;}
.x1_c00344{left:11.320000pt;}
.x3_c00344{left:84.792933pt;}
.x5_c00344{left:132.800133pt;}
.x8_c00344{left:382.495467pt;}
.x4_c00344{left:384.760000pt;}
.x9_c00344{left:392.612667pt;}
.x6_c00344{left:668.805067pt;}
.x7_c00344{left:683.607067pt;}
.x2_c00344{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00345{font-family:ff1_c00345;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00345;src:url('chunks/assets/font_0743190f5332cf831c535d7d.woff2')format("woff");}.ff2_c00345{font-family:ff2_c00345;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00345;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00345{font-family:ff3_c00345;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00345;src:url('chunks/assets/font_11da9ccb7d8f9ec6c849d285.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_fad65144e8d5402617a34677.woff2')format("woff");}.ff5_c00345{font-family:ff5_c00345;line-height:0.881836;font-style:normal;font-weight:normal;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_6b01d1fda34bd378f58b0b71.woff2')format("woff");}.ff6_c00345{font-family:ff6_c00345;line-height:1.239258;font-style:normal;font-weight:normal;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_a2147dc86d15f69de0af1821.woff2')format("woff");}.ff7_c00345{font-family:ff7_c00345;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00345;src:url('chunks/assets/font_6b01d1fda34bd378f58b0b71.woff2')format("woff");}.ff8_c00345{font-family:ff8_c00345;line-height:1.239258;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_5b8acbc0bcaf686392b2d347.woff2')format("woff");}.ff9_c00345{font-family:ff9_c00345;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_c00345;src:url('chunks/assets/font_086aa5ff8f45afe332f2e2cb.woff2')format("woff");}.ffa_c00345{font-family:ffa_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:ffb_c00345;src:url('chunks/assets/font_a2147dc86d15f69de0af1821.woff2')format("woff");}.ffb_c00345{font-family:ffb_c00345;line-height:0.881836;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_6b01d1fda34bd378f58b0b71.woff2')format("woff");}.ffc_c00345{font-family:ffc_c00345;line-height:1.239258;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_4a3378d1abe964d0f7be300c.woff2')format("woff");}.ffd_c00345{font-family:ffd_c00345;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:ffe_c00345;src:url('chunks/assets/font_086aa5ff8f45afe332f2e2cb.woff2')format("woff");}.ffe_c00345{font-family:ffe_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:fff_c00345;src:url('chunks/assets/font_244454f43170424ab758f76b.woff2')format("woff");}.fff_c00345{font-family:fff_c00345;line-height:0.881836;font-style:normal;font-weight: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_c00345;src:url('chunks/assets/font_6b01d1fda34bd378f58b0b71.woff2')format("woff");}.ff10_c00345{font-family:ff10_c00345;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00345;src:url('chunks/assets/font_086aa5ff8f45afe332f2e2cb.woff2')format("woff");}.ff11_c00345{font-family:ff11_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:ff12_c00345;src:url('chunks/assets/font_a2147dc86d15f69de0af1821.woff2')format("woff");}.ff12_c00345{font-family:ff12_c00345;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00345;src:url('chunks/assets/font_6b01d1fda34bd378f58b0b71.woff2')format("woff");}.ff13_c00345{font-family:ff13_c00345;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00345;src:url('chunks/assets/font_8630986d75427bfa534eb0ba.woff2')format("woff");}.ff14_c00345{font-family:ff14_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:ff15_c00345;src:url('chunks/assets/font_dc7b78e56443737ec3ba1403.woff2')format("woff");}.ff15_c00345{font-family:ff15_c00345;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:ff16_c00345;src:url('chunks/assets/font_a2147dc86d15f69de0af1821.woff2')format("woff");}.ff16_c00345{font-family:ff16_c00345;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00345;src:url('chunks/assets/font_98192eae75b6b935ebd137c9.woff2')format("woff");}.ff17_c00345{font-family:ff17_c00345;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00345;src:url('chunks/assets/font_74cd869c7a6f69ec95512f28.woff2')format("woff");}.ff18_c00345{font-family:ff18_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:ff19_c00345;src:url('chunks/assets/font_57e1fbdcc4f958d8dca0673d.woff2')format("woff");}.ff19_c00345{font-family:ff19_c00345;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00345;src:url('chunks/assets/font_359d45ee9408d579dac85947.woff2')format("woff");}.ff1a_c00345{font-family:ff1a_c00345;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00345{transform:matrix(0.234606,0.000000,-0.049867,0.244976,0,0);-ms-transform:matrix(0.234606,0.000000,-0.049867,0.244976,0,0);-webkit-transform:matrix(0.234606,0.000000,-0.049867,0.244976,0,0);}
.m7_c00345{transform:matrix(0.236843,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.236843,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.236843,0.000000,0.000000,0.250000,0,0);}
.m6_c00345{transform:matrix(0.239129,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239129,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239129,0.000000,0.000000,0.250000,0,0);}
.m5_c00345{transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239130,0.000000,0.000000,0.250000,0,0);}
.m2_c00345{transform:matrix(0.239416,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239416,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239416,0.000000,0.000000,0.250000,0,0);}
.m3_c00345{transform:matrix(0.239417,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.239417,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.239417,0.000000,0.000000,0.250000,0,0);}
.m8_c00345{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0_c00345{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1_c00345{transform:matrix(0.264887,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.264887,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.264887,0.000000,0.000000,0.250000,0,0);}
.v1_c00345{vertical-align:-5.937272px;}
.v0_c00345{vertical-align:0.000000px;}
.v2_c00345{vertical-align:14.400000px;}
.ls8_c00345{letter-spacing:-0.011872px;}
.ls6_c00345{letter-spacing:0.000000px;}
.ls2_c00345{letter-spacing:0.014400px;}
.ls4_c00345{letter-spacing:0.041760px;}
.ls5_c00345{letter-spacing:0.077760px;}
.ls0_c00345{letter-spacing:2.782091px;}
.ls7_c00345{letter-spacing:7.480800px;}
.ls3_c00345{letter-spacing:7.670832px;}
.ls1_c00345{letter-spacing:8.088671px;}
.sc__c00345{text-shadow:none;}
.sc1_c00345{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1_c00345{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0_c00345{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00345{word-spacing:-18.000000px;}
.ws1_c00345{word-spacing:0.000000px;}
._0_c00345{width:7.480800px;}
._2_c00345{width:14.090400px;}
._1_c00345{width:71.971800px;}
.fc1_c00345{color:transparent;}
.fc0_c00345{color:rgb(0,0,0);}
.fsa_c00345{font-size:23.749088px;}
.fsb_c00345{font-size:41.760000px;}
.fs2_c00345{font-size:47.520000px;}
.fs5_c00345{font-size:51.520200px;}
.fs6_c00345{font-size:52.576768px;}
.fs8_c00345{font-size:59.359800px;}
.fs0_c00345{font-size:64.800000px;}
.fs1_c00345{font-size:72.000000px;}
.fs9_c00345{font-size:74.215901px;}
.fs3_c00345{font-size:76.525800px;}
.fs4_c00345{font-size:88.320000px;}
.fs7_c00345{font-size:101.760000px;}
.y2f_c00345{bottom:-101.760000px;}
.y18_c00345{bottom:-88.320000px;}
.ya_c00345{bottom:-76.525650px;}
.y0_c00345{bottom:0.000000px;}
.yb_c00345{bottom:0.000150px;}
.y5_c00345{bottom:1.440000px;}
.y19_c00345{bottom:3.220050px;}
.y30_c00345{bottom:3.709950px;}
.y1a_c00345{bottom:5.059950px;}
.y31_c00345{bottom:5.830050px;}
.y1_c00345{bottom:12.735000px;}
.y3_c00345{bottom:45.405000px;}
.y4_c00345{bottom:56.700000px;}
.y40_c00345{bottom:137.205000px;}
.y3f_c00345{bottom:170.325000px;}
.y3e_c00345{bottom:173.925000px;}
.y3d_c00345{bottom:209.205000px;}
.y3c_c00345{bottom:245.205000px;}
.y3a_c00345{bottom:277.605000px;}
.y3b_c00345{bottom:282.285000px;}
.y38_c00345{bottom:314.685000px;}
.y39_c00345{bottom:319.365000px;}
.y36_c00345{bottom:351.765000px;}
.y37_c00345{bottom:356.445000px;}
.y35_c00345{bottom:393.525000px;}
.y33_c00345{bottom:416.925000px;}
.y34_c00345{bottom:429.525000px;}
.y2c_c00345{bottom:466.605000px;}
.y2b_c00345{bottom:497.925000px;}
.y32_c00345{bottom:505.125000px;}
.y2e_c00345{bottom:508.860000px;}
.y2d_c00345{bottom:510.660000px;}
.y29_c00345{bottom:533.925000px;}
.y2a_c00345{bottom:538.605000px;}
.y28_c00345{bottom:574.605000px;}
.y25_c00345{bottom:610.605000px;}
.y24_c00345{bottom:641.925000px;}
.y27_c00345{bottom:650.925000px;}
.y26_c00345{bottom:654.660000px;}
.y22_c00345{bottom:677.925000px;}
.y23_c00345{bottom:682.605000px;}
.y21_c00345{bottom:718.605000px;}
.y1d_c00345{bottom:754.605000px;}
.y1e_c00345{bottom:785.924850px;}
.y1c_c00345{bottom:790.605000px;}
.y20_c00345{bottom:794.924850px;}
.y1f_c00345{bottom:798.660000px;}
.y15_c00345{bottom:826.605000px;}
.y16_c00345{bottom:857.924850px;}
.y14_c00345{bottom:862.605000px;}
.y1b_c00345{bottom:866.924850px;}
.y17_c00345{bottom:870.660000px;}
.y12_c00345{bottom:898.965000px;}
.y13_c00345{bottom:930.285000px;}
.y11_c00345{bottom:934.965000px;}
.yd_c00345{bottom:972.045000px;}
.yc_c00345{bottom:973.845000px;}
.yf_c00345{bottom:1001.205000px;}
.y10_c00345{bottom:1003.365000px;}
.ye_c00345{bottom:1005.165000px;}
.y8_c00345{bottom:1009.845000px;}
.y9_c00345{bottom:1021.140000px;}
.y7_c00345{bottom:1045.125000px;}
.y6_c00345{bottom:1082.924850px;}
.y2_c00345{bottom:1165.365000px;}
.h8_c00345{height:11.160000px;}
.h5_c00345{height:17.280000px;}
.hb_c00345{height:33.120000px;}
.hf_c00345{height:37.070729px;}
.h11_c00345{height:38.160000px;}
.h3_c00345{height:43.189453px;}
.h7_c00345{height:46.638281px;}
.h10_c00345{height:50.539102px;}
.h15_c00345{height:52.328009px;}
.hd_c00345{height:52.954647px;}
.ha_c00345{height:53.956668px;}
.h13_c00345{height:58.229413px;}
.h6_c00345{height:70.628906px;}
.h4_c00345{height:70.664062px;}
.h9_c00345{height:70.883517px;}
.hc_c00345{height:81.808125px;}
.h16_c00345{height:85.064063px;}
.he_c00345{height:86.638125px;}
.h12_c00345{height:94.257187px;}
.h14_c00345{height:99.822187px;}
.h2_c00345{height:1237.365000px;}
.h0_c00345{height:1262.835000px;}
.h1_c00345{height:1263.000000px;}
.w5_c00345{width:21.960000px;}
.w8_c00345{width:22.320000px;}
.wd_c00345{width:31.680000px;}
.wc_c00345{width:33.480000px;}
.we_c00345{width:38.160000px;}
.w3_c00345{width:47.520000px;}
.w9_c00345{width:54.360000px;}
.w6_c00345{width:88.920000px;}
.wa_c00345{width:94.680000px;}
.w7_c00345{width:96.840000px;}
.wb_c00345{width:145.800000px;}
.w4_c00345{width:245.160000px;}
.w2_c00345{width:867.465000px;}
.w0_c00345{width:892.935000px;}
.w1_c00345{width:893.250000px;}
.x24_c00345{left:-96.404250px;}
.x1c_c00345{left:-84.581100px;}
.xb_c00345{left:-81.083100px;}
.x0_c00345{left:0.000000px;}
.xc_c00345{left:3.384907px;}
.xe_c00345{left:7.920150px;}
.x13_c00345{left:9.000150px;}
.x5_c00345{left:10.237500px;}
.x1_c00345{left:12.735000px;}
.x1d_c00345{left:14.977950px;}
.x25_c00345{left:17.071650px;}
.x21_c00345{left:21.001800px;}
.x15_c00345{left:30.977850px;}
.x1a_c00345{left:36.984000px;}
.x18_c00345{left:38.992350px;}
.x23_c00345{left:42.974850px;}
.x9_c00345{left:61.920150px;}
.x1f_c00345{left:63.360000px;}
.x8_c00345{left:74.295000px;}
.x20_c00345{left:75.361800px;}
.x11_c00345{left:85.337700px;}
.x28_c00345{left:91.911000px;}
.x19_c00345{left:93.359850px;}
.x3_c00345{left:95.400150px;}
.x1e_c00345{left:96.875850px;}
.x26_c00345{left:101.378850px;}
.x27_c00345{left:107.901150px;}
.x6_c00345{left:149.400150px;}
.xd_c00345{left:237.945300px;}
.xa_c00345{left:290.295000px;}
.xf_c00345{left:320.535000px;}
.x10_c00345{left:408.375000px;}
.x4_c00345{left:422.775000px;}
.x29_c00345{left:444.317100px;}
.x7_c00345{left:460.687500px;}
.x22_c00345{left:471.735000px;}
.x12_c00345{left:504.135000px;}
.x14_c00345{left:525.375000px;}
.x16_c00345{left:578.655000px;}
.x17_c00345{left:672.255000px;}
.x1b_c00345{left:735.615000px;}
.x2_c00345{left:878.050050px;}
@media print{
.v1_c00345{vertical-align:-5.277575pt;}
.v0_c00345{vertical-align:0.000000pt;}
.v2_c00345{vertical-align:12.800000pt;}
.ls8_c00345{letter-spacing:-0.010553pt;}
.ls6_c00345{letter-spacing:0.000000pt;}
.ls2_c00345{letter-spacing:0.012800pt;}
.ls4_c00345{letter-spacing:0.037120pt;}
.ls5_c00345{letter-spacing:0.069120pt;}
.ls0_c00345{letter-spacing:2.472970pt;}
.ls7_c00345{letter-spacing:6.649600pt;}
.ls3_c00345{letter-spacing:6.818517pt;}
.ls1_c00345{letter-spacing:7.189930pt;}
.ws0_c00345{word-spacing:-16.000000pt;}
.ws1_c00345{word-spacing:0.000000pt;}
._0_c00345{width:6.649600pt;}
._2_c00345{width:12.524800pt;}
._1_c00345{width:63.974933pt;}
.fsa_c00345{font-size:21.110301pt;}
.fsb_c00345{font-size:37.120000pt;}
.fs2_c00345{font-size:42.240000pt;}
.fs5_c00345{font-size:45.795733pt;}
.fs6_c00345{font-size:46.734905pt;}
.fs8_c00345{font-size:52.764267pt;}
.fs0_c00345{font-size:57.600000pt;}
.fs1_c00345{font-size:64.000000pt;}
.fs9_c00345{font-size:65.969690pt;}
.fs3_c00345{font-size:68.022933pt;}
.fs4_c00345{font-size:78.506667pt;}
.fs7_c00345{font-size:90.453333pt;}
.y2f_c00345{bottom:-90.453333pt;}
.y18_c00345{bottom:-78.506667pt;}
.ya_c00345{bottom:-68.022800pt;}
.y0_c00345{bottom:0.000000pt;}
.yb_c00345{bottom:0.000133pt;}
.y5_c00345{bottom:1.280000pt;}
.y19_c00345{bottom:2.862267pt;}
.y30_c00345{bottom:3.297733pt;}
.y1a_c00345{bottom:4.497733pt;}
.y31_c00345{bottom:5.182267pt;}
.y1_c00345{bottom:11.320000pt;}
.y3_c00345{bottom:40.360000pt;}
.y4_c00345{bottom:50.400000pt;}
.y40_c00345{bottom:121.960000pt;}
.y3f_c00345{bottom:151.400000pt;}
.y3e_c00345{bottom:154.600000pt;}
.y3d_c00345{bottom:185.960000pt;}
.y3c_c00345{bottom:217.960000pt;}
.y3a_c00345{bottom:246.760000pt;}
.y3b_c00345{bottom:250.920000pt;}
.y38_c00345{bottom:279.720000pt;}
.y39_c00345{bottom:283.880000pt;}
.y36_c00345{bottom:312.680000pt;}
.y37_c00345{bottom:316.840000pt;}
.y35_c00345{bottom:349.800000pt;}
.y33_c00345{bottom:370.600000pt;}
.y34_c00345{bottom:381.800000pt;}
.y2c_c00345{bottom:414.760000pt;}
.y2b_c00345{bottom:442.600000pt;}
.y32_c00345{bottom:449.000000pt;}
.y2e_c00345{bottom:452.320000pt;}
.y2d_c00345{bottom:453.920000pt;}
.y29_c00345{bottom:474.600000pt;}
.y2a_c00345{bottom:478.760000pt;}
.y28_c00345{bottom:510.760000pt;}
.y25_c00345{bottom:542.760000pt;}
.y24_c00345{bottom:570.600000pt;}
.y27_c00345{bottom:578.600000pt;}
.y26_c00345{bottom:581.920000pt;}
.y22_c00345{bottom:602.600000pt;}
.y23_c00345{bottom:606.760000pt;}
.y21_c00345{bottom:638.760000pt;}
.y1d_c00345{bottom:670.760000pt;}
.y1e_c00345{bottom:698.599867pt;}
.y1c_c00345{bottom:702.760000pt;}
.y20_c00345{bottom:706.599867pt;}
.y1f_c00345{bottom:709.920000pt;}
.y15_c00345{bottom:734.760000pt;}
.y16_c00345{bottom:762.599867pt;}
.y14_c00345{bottom:766.760000pt;}
.y1b_c00345{bottom:770.599867pt;}
.y17_c00345{bottom:773.920000pt;}
.y12_c00345{bottom:799.080000pt;}
.y13_c00345{bottom:826.920000pt;}
.y11_c00345{bottom:831.080000pt;}
.yd_c00345{bottom:864.040000pt;}
.yc_c00345{bottom:865.640000pt;}
.yf_c00345{bottom:889.960000pt;}
.y10_c00345{bottom:891.880000pt;}
.ye_c00345{bottom:893.480000pt;}
.y8_c00345{bottom:897.640000pt;}
.y9_c00345{bottom:907.680000pt;}
.y7_c00345{bottom:929.000000pt;}
.y6_c00345{bottom:962.599867pt;}
.y2_c00345{bottom:1035.880000pt;}
.h8_c00345{height:9.920000pt;}
.h5_c00345{height:15.360000pt;}
.hb_c00345{height:29.440000pt;}
.hf_c00345{height:32.951759pt;}
.h11_c00345{height:33.920000pt;}
.h3_c00345{height:38.390625pt;}
.h7_c00345{height:41.456250pt;}
.h10_c00345{height:44.923647pt;}
.h15_c00345{height:46.513785pt;}
.hd_c00345{height:47.070797pt;}
.ha_c00345{height:47.961482pt;}
.h13_c00345{height:51.759478pt;}
.h6_c00345{height:62.781250pt;}
.h4_c00345{height:62.812500pt;}
.h9_c00345{height:63.007571pt;}
.hc_c00345{height:72.718333pt;}
.h16_c00345{height:75.612500pt;}
.he_c00345{height:77.011667pt;}
.h12_c00345{height:83.784167pt;}
.h14_c00345{height:88.730833pt;}
.h2_c00345{height:1099.880000pt;}
.h0_c00345{height:1122.520000pt;}
.h1_c00345{height:1122.666667pt;}
.w5_c00345{width:19.520000pt;}
.w8_c00345{width:19.840000pt;}
.wd_c00345{width:28.160000pt;}
.wc_c00345{width:29.760000pt;}
.we_c00345{width:33.920000pt;}
.w3_c00345{width:42.240000pt;}
.w9_c00345{width:48.320000pt;}
.w6_c00345{width:79.040000pt;}
.wa_c00345{width:84.160000pt;}
.w7_c00345{width:86.080000pt;}
.wb_c00345{width:129.600000pt;}
.w4_c00345{width:217.920000pt;}
.w2_c00345{width:771.080000pt;}
.w0_c00345{width:793.720000pt;}
.w1_c00345{width:794.000000pt;}
.x24_c00345{left:-85.692667pt;}
.x1c_c00345{left:-75.183200pt;}
.xb_c00345{left:-72.073867pt;}
.x0_c00345{left:0.000000pt;}
.xc_c00345{left:3.008806pt;}
.xe_c00345{left:7.040133pt;}
.x13_c00345{left:8.000133pt;}
.x5_c00345{left:9.100000pt;}
.x1_c00345{left:11.320000pt;}
.x1d_c00345{left:13.313733pt;}
.x25_c00345{left:15.174800pt;}
.x21_c00345{left:18.668267pt;}
.x15_c00345{left:27.535867pt;}
.x1a_c00345{left:32.874667pt;}
.x18_c00345{left:34.659867pt;}
.x23_c00345{left:38.199867pt;}
.x9_c00345{left:55.040133pt;}
.x1f_c00345{left:56.320000pt;}
.x8_c00345{left:66.040000pt;}
.x20_c00345{left:66.988267pt;}
.x11_c00345{left:75.855733pt;}
.x28_c00345{left:81.698667pt;}
.x19_c00345{left:82.986533pt;}
.x3_c00345{left:84.800133pt;}
.x1e_c00345{left:86.111867pt;}
.x26_c00345{left:90.114533pt;}
.x27_c00345{left:95.912133pt;}
.x6_c00345{left:132.800133pt;}
.xd_c00345{left:211.506933pt;}
.xa_c00345{left:258.040000pt;}
.xf_c00345{left:284.920000pt;}
.x10_c00345{left:363.000000pt;}
.x4_c00345{left:375.800000pt;}
.x29_c00345{left:394.948533pt;}
.x7_c00345{left:409.500000pt;}
.x22_c00345{left:419.320000pt;}
.x12_c00345{left:448.120000pt;}
.x14_c00345{left:467.000000pt;}
.x16_c00345{left:514.360000pt;}
.x17_c00345{left:597.560000pt;}
.x1b_c00345{left:653.880000pt;}
.x2_c00345{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_36f8ea7369d2c6339ba5ad77.woff2')format("woff");}.ff1_c00346{font-family:ff1_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:ff2_c00346;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00346{font-family:ff2_c00346;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00346;src:url('chunks/assets/font_a2147dc86d15f69de0af1821.woff2')format("woff");}.ff3_c00346{font-family:ff3_c00346;line-height:0.881836;font-style:normal;font-weight:normal;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_7e3e1000b972bec599073e90.woff2')format("woff");}.ff4_c00346{font-family:ff4_c00346;line-height:1.239258;font-style:normal;font-weight:normal;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_21f2fbca5923649fed60197d.woff2')format("woff");}.ff5_c00346{font-family:ff5_c00346;line-height:1.284180;font-style:normal;font-weight:normal;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_4d03f9b9cd9b92ad4d8503c1.woff2')format("woff");}.ff6_c00346{font-family:ff6_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:ff7_c00346;src:url('chunks/assets/font_8d8fe609b9becf9df249dff7.woff2')format("woff");}.ff7_c00346{font-family:ff7_c00346;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00346;src:url('chunks/assets/font_7e528945636930239249fd8c.woff2')format("woff");}.ff8_c00346{font-family:ff8_c00346;line-height:1.284180;font-style:normal;font-weight: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_c00346;src:url('chunks/assets/font_05d94cb59634e6a63de5565b.woff2')format("woff");}.ff9_c00346{font-family:ff9_c00346;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00346;src:url('chunks/assets/font_825b599407bf9a82536b47cd.woff2')format("woff");}.ffa_c00346{font-family:ffa_c00346;line-height:0.881836;font-style:normal;font-weight: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_c00346;src:url('chunks/assets/font_c0d005fe09670fec3b9de9b5.woff2')format("woff");}.ffb_c00346{font-family:ffb_c00346;line-height:1.239258;font-style:normal;font-weight: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_c00346;src:url('chunks/assets/font_84fdc9f56e2fd8d8d6b1f05f.woff2')format("woff");}.ffc_c00346{font-family:ffc_c00346;line-height:1.284180;font-style:normal;font-weight: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_c00346;src:url('chunks/assets/font_c2d27c46ea54c5bf579a934a.woff2')format("woff");}.ffd_c00346{font-family:ffd_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:ffe_c00346;src:url('chunks/assets/font_3bb1b877b5bd03583726cadb.woff2')format("woff");}.ffe_c00346{font-family:ffe_c00346;line-height:0.959961;font-style:normal;font-weight: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_c00346;src:url('chunks/assets/font_c0d005fe09670fec3b9de9b5.woff2')format("woff");}.fff_c00346{font-family:fff_c00346;line-height:1.239258;font-style:normal;font-weight: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_c00346;src:url('chunks/assets/font_715206ced63e79b54eda54fd.woff2')format("woff");}.ff10_c00346{font-family:ff10_c00346;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00346;src:url('chunks/assets/font_c9e9b98c1f475f9ce1c8338b.woff2')format("woff");}.ff11_c00346{font-family:ff11_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:ff12_c00346;src:url('chunks/assets/font_8dfb5ee192e948ba29b4ef89.woff2')format("woff");}.ff12_c00346{font-family:ff12_c00346;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00346;src:url('chunks/assets/font_c0d005fe09670fec3b9de9b5.woff2')format("woff");}.ff13_c00346{font-family:ff13_c00346;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00346;src:url('chunks/assets/font_abf96d5f851b9b9ec0d665ad.woff2')format("woff");}.ff14_c00346{font-family:ff14_c00346;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00346;src:url('chunks/assets/font_04a133bbd2f5a39630089912.woff2')format("woff");}.ff15_c00346{font-family:ff15_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;}
.mb_c00346{transform:matrix(0.239306,0.000000,-0.050866,0.244771,0,0);-ms-transform:matrix(0.239306,0.000000,-0.050866,0.244771,0,0);-webkit-transform:matrix(0.239306,0.000000,-0.050866,0.244771,0,0);}
.md_c00346{transform:matrix(0.239308,0.000000,-0.050866,0.244771,0,0);-ms-transform:matrix(0.239308,0.000000,-0.050866,0.244771,0,0);-webkit-transform:matrix(0.239308,0.000000,-0.050866,0.244771,0,0);}
.ma_c00346{transform:matrix(0.244420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244420,0.000000,0.000000,0.250000,0,0);}
.mc_c00346{transform:matrix(0.244421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244421,0.000000,0.000000,0.250000,0,0);}
.me_c00346{transform:matrix(0.244421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.244421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.244421,0.000000,0.000000,0.250000,0,0);}
.m4_c00346{transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248840,0.000000,0.000000,0.250000,0,0);}
.m5_c00346{transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248841,0.000000,0.000000,0.250000,0,0);}
.m1_c00346{transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.m3_c00346{transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249951,0.000000,0.000000,0.250000,0,0);}
.m2_c00346{transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249952,0.000000,0.000000,0.250000,0,0);}
.m0_c00346{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m9_c00346{transform:matrix(0.265020,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265020,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265020,0.000000,0.000000,0.250000,0,0);}
.m6_c00346{transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);}
.m8_c00346{transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265021,0.000000,0.000000,0.250000,0,0);}
.m7_c00346{transform:matrix(0.265023,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.265023,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.265023,0.000000,0.000000,0.250000,0,0);}
.v9_c00346{vertical-align:-48.800400px;}
.v2_c00346{vertical-align:-14.400000px;}
.v8_c00346{vertical-align:-7.320015px;}
.v0_c00346{vertical-align:0.000000px;}
.v1_c00346{vertical-align:8.183400px;}
.v5_c00346{vertical-align:9.396000px;}
.v3_c00346{vertical-align:30.537000px;}
.va_c00346{vertical-align:31.720200px;}
.v6_c00346{vertical-align:72.819000px;}
.v4_c00346{vertical-align:75.168000px;}
.v7_c00346{vertical-align:86.913000px;}
.ls16_c00346{letter-spacing:-0.013664px;}
.ls15_c00346{letter-spacing:0.000000px;}
.ls4_c00346{letter-spacing:0.013200px;}
.ls5_c00346{letter-spacing:0.120000px;}
.ls11_c00346{letter-spacing:1.015037px;}
.ls2_c00346{letter-spacing:3.093325px;}
.ls3_c00346{letter-spacing:4.124434px;}
.lsf_c00346{letter-spacing:9.851210px;}
.lse_c00346{letter-spacing:20.388898px;}
.lsc_c00346{letter-spacing:23.583839px;}
.ls6_c00346{letter-spacing:33.984000px;}
.ls1_c00346{letter-spacing:40.949734px;}
.ls9_c00346{letter-spacing:41.248440px;}
.ls7_c00346{letter-spacing:46.923256px;}
.lsb_c00346{letter-spacing:47.017584px;}
.lsd_c00346{letter-spacing:56.413350px;}
.ls0_c00346{letter-spacing:65.467200px;}
.ls10_c00346{letter-spacing:72.028948px;}
.ls14_c00346{letter-spacing:84.179911px;}
.ls13_c00346{letter-spacing:117.218086px;}
.lsa_c00346{letter-spacing:127.268775px;}
.ls12_c00346{letter-spacing:208.571627px;}
.ls8_c00346{letter-spacing:355.966571px;}
.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:-36.825300px;}
.ws0_c00346{word-spacing:-18.000000px;}
.ws3_c00346{word-spacing:-16.309950px;}
.ws2_c00346{word-spacing:-0.147301px;}
.ws4_c00346{word-spacing:0.000000px;}
._0_c00346{margin-left:-15.466626px;}
._1_c00346{margin-left:-12.226000px;}
._8_c00346{margin-left:-3.196750px;}
._5_c00346{width:6.076800px;}
._6_c00346{width:7.128000px;}
._4_c00346{width:8.280000px;}
._a_c00346{width:54.144000px;}
._2_c00346{width:125.784000px;}
._9_c00346{width:134.064000px;}
._7_c00346{width:173.952000px;}
._3_c00346{width:198.000000px;}
.fc1_c00346{color:transparent;}
.fc0_c00346{color:rgb(0,0,0);}
.fs5_c00346{font-size:41.760000px;}
.fsa_c00346{font-size:46.980000px;}
.fs14_c00346{font-size:48.799800px;}
.fs1_c00346{font-size:64.800000px;}
.fsc_c00346{font-size:65.239800px;}
.fs7_c00346{font-size:65.772000px;}
.fs11_c00346{font-size:68.320200px;}
.fs13_c00346{font-size:69.779848px;}
.fs0_c00346{font-size:72.000000px;}
.fsf_c00346{font-size:74.560200px;}
.fs17_c00346{font-size:78.079800px;}
.fs16_c00346{font-size:79.747926px;}
.fs3_c00346{font-size:81.834000px;}
.fse_c00346{font-size:93.199800px;}
.fs9_c00346{font-size:93.960000px;}
.fs12_c00346{font-size:97.600200px;}
.fs2_c00346{font-size:98.200800px;}
.fsb_c00346{font-size:111.840000px;}
.fs6_c00346{font-size:112.752000px;}
.fs10_c00346{font-size:117.120000px;}
.fs4_c00346{font-size:147.301200px;}
.fsd_c00346{font-size:167.760000px;}
.fs8_c00346{font-size:169.128000px;}
.fs15_c00346{font-size:175.680000px;}
.y34_c00346{bottom:-117.120000px;}
.y1b_c00346{bottom:-112.752000px;}
.y27_c00346{bottom:-111.840000px;}
.y7_c00346{bottom:-98.201100px;}
.y0_c00346{bottom:0.000000px;}
.yb_c00346{bottom:2.555285px;}
.y39_c00346{bottom:4.270050px;}
.y5_c00346{bottom:5.040000px;}
.y2e_c00346{bottom:6.407550px;}
.y1_c00346{bottom:12.735000px;}
.y37_c00346{bottom:15.555000px;}
.y38_c00346{bottom:16.470000px;}
.y21_c00346{bottom:17.617500px;}
.y35_c00346{bottom:19.519950px;}
.y36_c00346{bottom:21.960000px;}
.y20_c00346{bottom:22.902750px;}
.y28_c00346{bottom:25.047450px;}
.y8_c00346{bottom:25.573050px;}
.y3b_c00346{bottom:26.230050px;}
.y29_c00346{bottom:27.377550px;}
.y9_c00346{bottom:30.687675px;}
.y2b_c00346{bottom:30.872550px;}
.y2d_c00346{bottom:31.455000px;}
.y30_c00346{bottom:32.037450px;}
.yc_c00346{bottom:32.733450px;}
.y2a_c00346{bottom:34.950000px;}
.y1c_c00346{bottom:36.996750px;}
.y1f_c00346{bottom:38.171250px;}
.y1d_c00346{bottom:39.345750px;}
.y3_c00346{bottom:45.405000px;}
.y3a_c00346{bottom:48.795056px;}
.y4_c00346{bottom:53.100000px;}
.ya_c00346{bottom:53.447850px;}
.y2c_c00346{bottom:54.179469px;}
.y1e_c00346{bottom:59.312250px;}
.y2f_c00346{bottom:67.570050px;}
.y3d_c00346{bottom:178.965000px;}
.y33_c00346{bottom:223.380000px;}
.y3c_c00346{bottom:225.765000px;}
.y32_c00346{bottom:281.205000px;}
.y26_c00346{bottom:325.260000px;}
.y31_c00346{bottom:335.205000px;}
.y25_c00346{bottom:401.085000px;}
.y24_c00346{bottom:437.085000px;}
.y23_c00346{bottom:473.085000px;}
.y1a_c00346{bottom:517.140000px;}
.y22_c00346{bottom:534.285000px;}
.y19_c00346{bottom:603.045000px;}
.y18_c00346{bottom:639.045000px;}
.y17_c00346{bottom:675.045000px;}
.y16_c00346{bottom:711.045000px;}
.y15_c00346{bottom:747.045000px;}
.y14_c00346{bottom:783.045000px;}
.y13_c00346{bottom:819.045000px;}
.y12_c00346{bottom:855.045000px;}
.y11_c00346{bottom:891.045000px;}
.y10_c00346{bottom:927.045000px;}
.yf_c00346{bottom:963.045000px;}
.ye_c00346{bottom:999.045000px;}
.y6_c00346{bottom:1043.100000px;}
.yd_c00346{bottom:1054.485000px;}
.y2_c00346{bottom:1165.365000px;}
.h4_c00346{height:20.880000px;}
.h11_c00346{height:46.108301px;}
.h23_c00346{height:47.870507px;}
.h15_c00346{height:48.547586px;}
.h22_c00346{height:51.926020px;}
.h25_c00346{height:59.343672px;}
.h19_c00346{height:63.997441px;}
.h1a_c00346{height:64.029296px;}
.hf_c00346{height:64.519506px;}
.h1e_c00346{height:65.880000px;}
.h20_c00346{height:67.019181px;}
.hb_c00346{height:70.628906px;}
.h3_c00346{height:70.664062px;}
.hc_c00346{height:72.562500px;}
.h28_c00346{height:72.628274px;}
.h1c_c00346{height:73.140352px;}
.h27_c00346{height:76.592929px;}
.h26_c00346{height:76.631054px;}
.h7_c00346{height:80.275638px;}
.ha_c00346{height:80.315596px;}
.h5_c00346{height:83.880000px;}
.h8_c00346{height:83.983741px;}
.h17_c00346{height:86.328135px;}
.h6_c00346{height:90.960409px;}
.h1d_c00346{height:91.470507px;}
.hd_c00346{height:93.960000px;}
.h21_c00346{height:100.164112px;}
.h14_c00346{height:103.593984px;}
.he_c00346{height:104.438742px;}
.h1f_c00346{height:108.484688px;}
.h1b_c00346{height:124.837031px;}
.h12_c00346{height:128.323301px;}
.h9_c00346{height:144.568072px;}
.h16_c00346{height:164.565352px;}
.h18_c00346{height:164.647266px;}
.h10_c00346{height:165.907301px;}
.h24_c00346{height:172.334531px;}
.h13_c00346{height:209.666602px;}
.h2_c00346{height:1237.365000px;}
.h0_c00346{height:1262.835000px;}
.h1_c00346{height:1263.000000px;}
.w3_c00346{width:27.000000px;}
.w6_c00346{width:177.840000px;}
.w4_c00346{width:180.000000px;}
.w7_c00346{width:198.000000px;}
.w5_c00346{width:222.120000px;}
.w2_c00346{width:867.465000px;}
.w0_c00346{width:892.935000px;}
.w1_c00346{width:893.250000px;}
.x16_c00346{left:-118.560000px;}
.x20_c00346{left:-114.506100px;}
.xf_c00346{left:-112.229100px;}
.x6_c00346{left:-98.181750px;}
.x0_c00346{left:0.000000px;}
.x8_c00346{left:4.090830px;}
.x1_c00346{left:12.735000px;}
.x7_c00346{left:18.409050px;}
.x21_c00346{left:25.048200px;}
.x17_c00346{left:27.169950px;}
.x10_c00346{left:32.733450px;}
.x18_c00346{left:40.755000px;}
.x9_c00346{left:50.113650px;}
.x19_c00346{left:51.870000px;}
.x25_c00346{left:57.253050px;}
.x27_c00346{left:62.620500px;}
.x13_c00346{left:65.466900px;}
.x26_c00346{left:67.987950px;}
.x12_c00346{left:80.664600px;}
.x24_c00346{left:89.457900px;}
.x3_c00346{left:95.392050px;}
.x14_c00346{left:97.908150px;}
.xa_c00346{left:100.480811px;}
.x1c_c00346{left:102.196200px;}
.x1d_c00346{left:104.048700px;}
.x22_c00346{left:112.120500px;}
.x23_c00346{left:121.066350px;}
.x11_c00346{left:122.458200px;}
.x1b_c00346{left:129.366300px;}
.xd_c00346{left:149.394150px;}
.x1a_c00346{left:157.776129px;}
.x5_c00346{left:162.135000px;}
.x1e_c00346{left:168.886200px;}
.xb_c00346{left:174.630600px;}
.xe_c00346{left:176.393550px;}
.x1f_c00346{left:327.384150px;}
.xc_c00346{left:329.448150px;}
.x28_c00346{left:347.355150px;}
.x15_c00346{left:371.415150px;}
.x4_c00346{left:432.855000px;}
.x2_c00346{left:878.050050px;}
@media print{
.v9_c00346{vertical-align:-43.378133pt;}
.v2_c00346{vertical-align:-12.800000pt;}
.v8_c00346{vertical-align:-6.506680pt;}
.v0_c00346{vertical-align:0.000000pt;}
.v1_c00346{vertical-align:7.274133pt;}
.v5_c00346{vertical-align:8.352000pt;}
.v3_c00346{vertical-align:27.144000pt;}
.va_c00346{vertical-align:28.195733pt;}
.v6_c00346{vertical-align:64.728000pt;}
.v4_c00346{vertical-align:66.816000pt;}
.v7_c00346{vertical-align:77.256000pt;}
.ls16_c00346{letter-spacing:-0.012146pt;}
.ls15_c00346{letter-spacing:0.000000pt;}
.ls4_c00346{letter-spacing:0.011733pt;}
.ls5_c00346{letter-spacing:0.106667pt;}
.ls11_c00346{letter-spacing:0.902255pt;}
.ls2_c00346{letter-spacing:2.749622pt;}
.ls3_c00346{letter-spacing:3.666163pt;}
.lsf_c00346{letter-spacing:8.756631pt;}
.lse_c00346{letter-spacing:18.123465pt;}
.lsc_c00346{letter-spacing:20.963413pt;}
.ls6_c00346{letter-spacing:30.208000pt;}
.ls1_c00346{letter-spacing:36.399763pt;}
.ls9_c00346{letter-spacing:36.665280pt;}
.ls7_c00346{letter-spacing:41.709561pt;}
.lsb_c00346{letter-spacing:41.793408pt;}
.lsd_c00346{letter-spacing:50.145200pt;}
.ls0_c00346{letter-spacing:58.193067pt;}
.ls10_c00346{letter-spacing:64.025731pt;}
.ls14_c00346{letter-spacing:74.826587pt;}
.ls13_c00346{letter-spacing:104.193854pt;}
.lsa_c00346{letter-spacing:113.127800pt;}
.ls12_c00346{letter-spacing:185.397002pt;}
.ls8_c00346{letter-spacing:316.414730pt;}
.ws1_c00346{word-spacing:-32.733600pt;}
.ws0_c00346{word-spacing:-16.000000pt;}
.ws3_c00346{word-spacing:-14.497733pt;}
.ws2_c00346{word-spacing:-0.130934pt;}
.ws4_c00346{word-spacing:0.000000pt;}
._0_c00346{margin-left:-13.748112pt;}
._1_c00346{margin-left:-10.867555pt;}
._8_c00346{margin-left:-2.841556pt;}
._5_c00346{width:5.401600pt;}
._6_c00346{width:6.336000pt;}
._4_c00346{width:7.360000pt;}
._a_c00346{width:48.128000pt;}
._2_c00346{width:111.808000pt;}
._9_c00346{width:119.168000pt;}
._7_c00346{width:154.624000pt;}
._3_c00346{width:176.000000pt;}
.fs5_c00346{font-size:37.120000pt;}
.fsa_c00346{font-size:41.760000pt;}
.fs14_c00346{font-size:43.377600pt;}
.fs1_c00346{font-size:57.600000pt;}
.fsc_c00346{font-size:57.990933pt;}
.fs7_c00346{font-size:58.464000pt;}
.fs11_c00346{font-size:60.729067pt;}
.fs13_c00346{font-size:62.026532pt;}
.fs0_c00346{font-size:64.000000pt;}
.fsf_c00346{font-size:66.275733pt;}
.fs17_c00346{font-size:69.404267pt;}
.fs16_c00346{font-size:70.887046pt;}
.fs3_c00346{font-size:72.741333pt;}
.fse_c00346{font-size:82.844267pt;}
.fs9_c00346{font-size:83.520000pt;}
.fs12_c00346{font-size:86.755733pt;}
.fs2_c00346{font-size:87.289600pt;}
.fsb_c00346{font-size:99.413333pt;}
.fs6_c00346{font-size:100.224000pt;}
.fs10_c00346{font-size:104.106667pt;}
.fs4_c00346{font-size:130.934400pt;}
.fsd_c00346{font-size:149.120000pt;}
.fs8_c00346{font-size:150.336000pt;}
.fs15_c00346{font-size:156.160000pt;}
.y34_c00346{bottom:-104.106667pt;}
.y1b_c00346{bottom:-100.224000pt;}
.y27_c00346{bottom:-99.413333pt;}
.y7_c00346{bottom:-87.289867pt;}
.y0_c00346{bottom:0.000000pt;}
.yb_c00346{bottom:2.271365pt;}
.y39_c00346{bottom:3.795600pt;}
.y5_c00346{bottom:4.480000pt;}
.y2e_c00346{bottom:5.695600pt;}
.y1_c00346{bottom:11.320000pt;}
.y37_c00346{bottom:13.826667pt;}
.y38_c00346{bottom:14.640000pt;}
.y21_c00346{bottom:15.660000pt;}
.y35_c00346{bottom:17.351067pt;}
.y36_c00346{bottom:19.520000pt;}
.y20_c00346{bottom:20.358000pt;}
.y28_c00346{bottom:22.264400pt;}
.y8_c00346{bottom:22.731600pt;}
.y3b_c00346{bottom:23.315600pt;}
.y29_c00346{bottom:24.335600pt;}
.y9_c00346{bottom:27.277933pt;}
.y2b_c00346{bottom:27.442267pt;}
.y2d_c00346{bottom:27.960000pt;}
.y30_c00346{bottom:28.477733pt;}
.yc_c00346{bottom:29.096400pt;}
.y2a_c00346{bottom:31.066667pt;}
.y1c_c00346{bottom:32.886000pt;}
.y1f_c00346{bottom:33.930000pt;}
.y1d_c00346{bottom:34.974000pt;}
.y3_c00346{bottom:40.360000pt;}
.y3a_c00346{bottom:43.373383pt;}
.y4_c00346{bottom:47.200000pt;}
.ya_c00346{bottom:47.509200pt;}
.y2c_c00346{bottom:48.159528pt;}
.y1e_c00346{bottom:52.722000pt;}
.y2f_c00346{bottom:60.062267pt;}
.y3d_c00346{bottom:159.080000pt;}
.y33_c00346{bottom:198.560000pt;}
.y3c_c00346{bottom:200.680000pt;}
.y32_c00346{bottom:249.960000pt;}
.y26_c00346{bottom:289.120000pt;}
.y31_c00346{bottom:297.960000pt;}
.y25_c00346{bottom:356.520000pt;}
.y24_c00346{bottom:388.520000pt;}
.y23_c00346{bottom:420.520000pt;}
.y1a_c00346{bottom:459.680000pt;}
.y22_c00346{bottom:474.920000pt;}
.y19_c00346{bottom:536.040000pt;}
.y18_c00346{bottom:568.040000pt;}
.y17_c00346{bottom:600.040000pt;}
.y16_c00346{bottom:632.040000pt;}
.y15_c00346{bottom:664.040000pt;}
.y14_c00346{bottom:696.040000pt;}
.y13_c00346{bottom:728.040000pt;}
.y12_c00346{bottom:760.040000pt;}
.y11_c00346{bottom:792.040000pt;}
.y10_c00346{bottom:824.040000pt;}
.yf_c00346{bottom:856.040000pt;}
.ye_c00346{bottom:888.040000pt;}
.y6_c00346{bottom:927.200000pt;}
.yd_c00346{bottom:937.320000pt;}
.y2_c00346{bottom:1035.880000pt;}
.h4_c00346{height:18.560000pt;}
.h11_c00346{height:40.985156pt;}
.h23_c00346{height:42.551562pt;}
.h15_c00346{height:43.153409pt;}
.h22_c00346{height:46.156462pt;}
.h25_c00346{height:52.749930pt;}
.h19_c00346{height:56.886614pt;}
.h1a_c00346{height:56.914930pt;}
.hf_c00346{height:57.350672pt;}
.h1e_c00346{height:58.560000pt;}
.h20_c00346{height:59.572605pt;}
.hb_c00346{height:62.781250pt;}
.h3_c00346{height:62.812500pt;}
.hc_c00346{height:64.500000pt;}
.h28_c00346{height:64.558466pt;}
.h1c_c00346{height:65.013647pt;}
.h27_c00346{height:68.082603pt;}
.h26_c00346{height:68.116492pt;}
.h7_c00346{height:71.356122pt;}
.ha_c00346{height:71.391641pt;}
.h5_c00346{height:74.560000pt;}
.h8_c00346{height:74.652214pt;}
.h17_c00346{height:76.736120pt;}
.h6_c00346{height:80.853697pt;}
.h1d_c00346{height:81.307117pt;}
.hd_c00346{height:83.520000pt;}
.h21_c00346{height:89.034766pt;}
.h14_c00346{height:92.083542pt;}
.he_c00346{height:92.834437pt;}
.h1f_c00346{height:96.430833pt;}
.h1b_c00346{height:110.966250pt;}
.h12_c00346{height:114.065156pt;}
.h9_c00346{height:128.504953pt;}
.h16_c00346{height:146.280312pt;}
.h18_c00346{height:146.353125pt;}
.h10_c00346{height:147.473156pt;}
.h24_c00346{height:153.186250pt;}
.h13_c00346{height:186.370313pt;}
.h2_c00346{height:1099.880000pt;}
.h0_c00346{height:1122.520000pt;}
.h1_c00346{height:1122.666667pt;}
.w3_c00346{width:24.000000pt;}
.w6_c00346{width:158.080000pt;}
.w4_c00346{width:160.000000pt;}
.w7_c00346{width:176.000000pt;}
.w5_c00346{width:197.440000pt;}
.w2_c00346{width:771.080000pt;}
.w0_c00346{width:793.720000pt;}
.w1_c00346{width:794.000000pt;}
.x16_c00346{left:-105.386667pt;}
.x20_c00346{left:-101.783200pt;}
.xf_c00346{left:-99.759200pt;}
.x6_c00346{left:-87.272667pt;}
.x0_c00346{left:0.000000pt;}
.x8_c00346{left:3.636293pt;}
.x1_c00346{left:11.320000pt;}
.x7_c00346{left:16.363600pt;}
.x21_c00346{left:22.265067pt;}
.x17_c00346{left:24.151067pt;}
.x10_c00346{left:29.096400pt;}
.x18_c00346{left:36.226667pt;}
.x9_c00346{left:44.545467pt;}
.x19_c00346{left:46.106667pt;}
.x25_c00346{left:50.891600pt;}
.x27_c00346{left:55.662667pt;}
.x13_c00346{left:58.192800pt;}
.x26_c00346{left:60.433733pt;}
.x12_c00346{left:71.701867pt;}
.x24_c00346{left:79.518133pt;}
.x3_c00346{left:84.792933pt;}
.x14_c00346{left:87.029467pt;}
.xa_c00346{left:89.316276pt;}
.x1c_c00346{left:90.841067pt;}
.x1d_c00346{left:92.487733pt;}
.x22_c00346{left:99.662667pt;}
.x23_c00346{left:107.614533pt;}
.x11_c00346{left:108.851733pt;}
.x1b_c00346{left:114.992267pt;}
.xd_c00346{left:132.794800pt;}
.x1a_c00346{left:140.245448pt;}
.x5_c00346{left:144.120000pt;}
.x1e_c00346{left:150.121067pt;}
.xb_c00346{left:155.227200pt;}
.xe_c00346{left:156.794267pt;}
.x1f_c00346{left:291.008133pt;}
.xc_c00346{left:292.842800pt;}
.x28_c00346{left:308.760133pt;}
.x15_c00346{left:330.146800pt;}
.x4_c00346{left:384.760000pt;}
.x2_c00346{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00347{font-family:ff1_c00347;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00347;src:url('chunks/assets/font_d3d19012627142814170868b.woff2')format("woff");}.ff2_c00347{font-family:ff2_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00347;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00347{font-family:ff3_c00347;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00347;src:url('chunks/assets/font_a2147dc86d15f69de0af1821.woff2')format("woff");}.ff4_c00347{font-family:ff4_c00347;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00347;src:url('chunks/assets/font_2488df1d7e695be4bbfa1697.woff2')format("woff");}.ff5_c00347{font-family:ff5_c00347;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00347;src:url('chunks/assets/font_7afd7360b4f1ee1e26b19d49.woff2')format("woff");}.ff6_c00347{font-family:ff6_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:ff7_c00347;src:url('chunks/assets/font_4d03f9b9cd9b92ad4d8503c1.woff2')format("woff");}.ff7_c00347{font-family:ff7_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00347;src:url('chunks/assets/font_6d1589169e82a77fd6f40b96.woff2')format("woff");}.ff8_c00347{font-family:ff8_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:ff9_c00347;src:url('chunks/assets/font_c679e965504c36f2c2921fb4.woff2')format("woff");}.ff9_c00347{font-family:ff9_c00347;line-height:0.929199;font-style:normal;font-weight: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_c00347;src:url('chunks/assets/font_fdf9919da75b968a5d4ab5a4.woff2')format("woff");}.ffa_c00347{font-family:ffa_c00347;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00347;src:url('chunks/assets/font_61e35d7119756f432161f300.woff2')format("woff");}.ffb_c00347{font-family:ffb_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:ffc_c00347;src:url('chunks/assets/font_ef866fe020603e2110a0f2aa.woff2')format("woff");}.ffc_c00347{font-family:ffc_c00347;line-height:0.959961;font-style:normal;font-weight: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_c00347;src:url('chunks/assets/font_1ed0c6b576e86927671f339e.woff2')format("woff");}.ffd_c00347{font-family:ffd_c00347;line-height:1.239258;font-style:normal;font-weight: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_c00347;src:url('chunks/assets/font_b6dfef76d6cdba2c9c6d9c1d.woff2')format("woff");}.ffe_c00347{font-family:ffe_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:fff_c00347;src:url('chunks/assets/font_64c096270b0d7d407bad5efa.woff2')format("woff");}.fff_c00347{font-family:fff_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00347;src:url('chunks/assets/font_ba6a4b417867ddbff4270b3b.woff2')format("woff");}.ff10_c00347{font-family:ff10_c00347;line-height:0.959961;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00347;src:url('chunks/assets/font_1ed0c6b576e86927671f339e.woff2')format("woff");}.ff11_c00347{font-family:ff11_c00347;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00347;src:url('chunks/assets/font_374b1d819550ec06d3abb435.woff2')format("woff");}.ff12_c00347{font-family:ff12_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:ff13_c00347;src:url('chunks/assets/font_fbafc9abc41060de2f327c28.woff2')format("woff");}.ff13_c00347{font-family:ff13_c00347;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5_c00347{transform:matrix(0.244931,0.000000,-0.052063,0.244519,0,0);-ms-transform:matrix(0.244931,0.000000,-0.052063,0.244519,0,0);-webkit-transform:matrix(0.244931,0.000000,-0.052063,0.244519,0,0);}
.m0_c00347{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2_c00347{transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250420,0.000000,0.000000,0.250000,0,0);}
.m3_c00347{transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);}
.m4_c00347{transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250421,0.000000,0.000000,0.250000,0,0);}
.m7_c00347{transform:matrix(0.255903,0.000000,-0.054393,0.244011,0,0);-ms-transform:matrix(0.255903,0.000000,-0.054393,0.244011,0,0);-webkit-transform:matrix(0.255903,0.000000,-0.054393,0.244011,0,0);}
.m1_c00347{transform:matrix(0.261994,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.261994,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.261994,0.000000,0.000000,0.250000,0,0);}
.m9_c00347{transform:matrix(0.262184,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262184,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262184,0.000000,0.000000,0.250000,0,0);}
.m6_c00347{transform:matrix(0.262186,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262186,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262186,0.000000,0.000000,0.250000,0,0);}
.m8_c00347{transform:matrix(0.262187,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.262187,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.262187,0.000000,0.000000,0.250000,0,0);}
.va_c00347{vertical-align:-27.300000px;}
.v9_c00347{vertical-align:-16.800000px;}
.v7_c00347{vertical-align:-14.400000px;}
.v4_c00347{vertical-align:-11.411570px;}
.vb_c00347{vertical-align:-6.136380px;}
.v0_c00347{vertical-align:0.000000px;}
.v5_c00347{vertical-align:11.457600px;}
.v1_c00347{vertical-align:24.824400px;}
.v6_c00347{vertical-align:112.664400px;}
.v8_c00347{vertical-align:121.800000px;}
.v2_c00347{vertical-align:131.760000px;}
.v3_c00347{vertical-align:143.171570px;}
.ls12_c00347{letter-spacing:-0.010694px;}
.ls11_c00347{letter-spacing:0.000000px;}
.ls6_c00347{letter-spacing:0.059520px;}
.ls13_c00347{letter-spacing:0.100224px;}
.ls10_c00347{letter-spacing:0.120000px;}
.lsa_c00347{letter-spacing:0.873600px;}
.ls3_c00347{letter-spacing:3.849686px;}
.ls9_c00347{letter-spacing:6.518400px;}
.lsd_c00347{letter-spacing:9.828000px;}
.lsb_c00347{letter-spacing:21.084000px;}
.lse_c00347{letter-spacing:21.084150px;}
.ls1_c00347{letter-spacing:30.629113px;}
.ls7_c00347{letter-spacing:33.984000px;}
.lsc_c00347{letter-spacing:50.433267px;}
.ls4_c00347{letter-spacing:50.741661px;}
.ls2_c00347{letter-spacing:62.969870px;}
.ls0_c00347{letter-spacing:84.020742px;}
.ls5_c00347{letter-spacing:235.831471px;}
.lsf_c00347{letter-spacing:325.146322px;}
.ls8_c00347{letter-spacing:339.235161px;}
.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;}
}
.ws1_c00347{word-spacing:-34.372200px;}
.ws0_c00347{word-spacing:-18.000000px;}
.ws2_c00347{word-spacing:-0.141984px;}
.ws3_c00347{word-spacing:-0.072000px;}
.ws5_c00347{word-spacing:0.000000px;}
.ws4_c00347{word-spacing:201.448001px;}
._1_c00347{margin-left:-17.784000px;}
._0_c00347{margin-left:-14.436324px;}
._4_c00347{margin-left:-9.936000px;}
._7_c00347{width:1.944000px;}
._6_c00347{width:10.815600px;}
._3_c00347{width:11.829000px;}
._5_c00347{width:14.328000px;}
._2_c00347{width:198.000000px;}
.fc1_c00347{color:transparent;}
.fc0_c00347{color:rgb(0,0,0);}
.fs6_c00347{font-size:41.760000px;}
.fsc_c00347{font-size:42.000000px;}
.fs3_c00347{font-size:53.467800px;}
.fs12_c00347{font-size:57.273000px;}
.fsf_c00347{font-size:58.678682px;}
.fs8_c00347{font-size:58.800000px;}
.fsd_c00347{font-size:60.118054px;}
.fs0_c00347{font-size:64.800000px;}
.fsb_c00347{font-size:67.200000px;}
.fs1_c00347{font-size:72.000000px;}
.fs5_c00347{font-size:76.382400px;}
.fs11_c00347{font-size:81.818400px;}
.fsa_c00347{font-size:84.000000px;}
.fs2_c00347{font-size:91.659000px;}
.fse_c00347{font-size:98.181600px;}
.fs7_c00347{font-size:100.800000px;}
.fs4_c00347{font-size:137.488800px;}
.fs10_c00347{font-size:147.272400px;}
.fs9_c00347{font-size:151.200000px;}
.y15_c00347{bottom:-100.800000px;}
.y28_c00347{bottom:-98.181750px;}
.y7_c00347{bottom:-91.659300px;}
.y0_c00347{bottom:0.000000px;}
.y5_c00347{bottom:1.440000px;}
.ya_c00347{bottom:2.386800px;}
.y30_c00347{bottom:3.068250px;}
.y22_c00347{bottom:3.675000px;}
.y31_c00347{bottom:5.113650px;}
.y2d_c00347{bottom:8.691236px;}
.y21_c00347{bottom:12.075000px;}
.y1_c00347{bottom:12.735000px;}
.y1f_c00347{bottom:14.175000px;}
.y20_c00347{bottom:21.000000px;}
.y8_c00347{bottom:22.437300px;}
.y23_c00347{bottom:22.575000px;}
.y9_c00347{bottom:24.346800px;}
.y29_c00347{bottom:30.170400px;}
.y2f_c00347{bottom:31.704600px;}
.y2a_c00347{bottom:32.215950px;}
.y1e_c00347{bottom:36.225000px;}
.y2b_c00347{bottom:38.863650px;}
.y32_c00347{bottom:40.397700px;}
.y3_c00347{bottom:45.405000px;}
.y16_c00347{bottom:51.975000px;}
.y2e_c00347{bottom:53.693250px;}
.y17_c00347{bottom:54.075000px;}
.y4_c00347{bottom:56.700000px;}
.y2c_c00347{bottom:59.573850px;}
.y18_c00347{bottom:60.900000px;}
.y1b_c00347{bottom:74.025000px;}
.y1a_c00347{bottom:89.250000px;}
.y1d_c00347{bottom:92.925000px;}
.y19_c00347{bottom:103.162500px;}
.y1c_c00347{bottom:112.345800px;}
.y3c_c00347{bottom:131.085000px;}
.y3b_c00347{bottom:167.085000px;}
.y3a_c00347{bottom:203.085000px;}
.y39_c00347{bottom:239.085000px;}
.y38_c00347{bottom:275.085000px;}
.y37_c00347{bottom:311.085000px;}
.y36_c00347{bottom:347.085000px;}
.y35_c00347{bottom:383.085000px;}
.y34_c00347{bottom:419.085000px;}
.y27_c00347{bottom:463.140000px;}
.y33_c00347{bottom:478.845000px;}
.y26_c00347{bottom:545.085000px;}
.y25_c00347{bottom:581.085000px;}
.y14_c00347{bottom:625.140000px;}
.y24_c00347{bottom:655.965000px;}
.y13_c00347{bottom:743.084850px;}
.y12_c00347{bottom:779.084850px;}
.y11_c00347{bottom:815.084850px;}
.y10_c00347{bottom:851.084850px;}
.yf_c00347{bottom:887.084850px;}
.ye_c00347{bottom:923.084850px;}
.yd_c00347{bottom:959.085000px;}
.yc_c00347{bottom:995.085000px;}
.y6_c00347{bottom:1039.140000px;}
.yb_c00347{bottom:1050.525000px;}
.y2_c00347{bottom:1165.365000px;}
.h5_c00347{height:17.280000px;}
.h12_c00347{height:41.220703px;}
.h3_c00347{height:43.189453px;}
.h1c_c00347{height:43.665191px;}
.h19_c00347{height:44.736286px;}
.h8_c00347{height:52.449614px;}
.h21_c00347{height:56.210317px;}
.hf_c00347{height:57.680273px;}
.h16_c00347{height:57.708984px;}
.h22_c00347{height:60.884395px;}
.h13_c00347{height:62.507812px;}
.h15_c00347{height:65.920312px;}
.h14_c00347{height:65.953125px;}
.hb_c00347{height:70.663463px;}
.h4_c00347{height:70.664062px;}
.hc_c00347{height:72.562500px;}
.h23_c00347{height:74.163905px;}
.h1e_c00347{height:75.785891px;}
.h20_c00347{height:80.300285px;}
.h17_c00347{height:82.441406px;}
.h7_c00347{height:84.900939px;}
.h6_c00347{height:87.840000px;}
.h1a_c00347{height:90.000000px;}
.h1b_c00347{height:90.942625px;}
.he_c00347{height:93.367969px;}
.h18_c00347{height:121.020703px;}
.hd_c00347{height:126.000000px;}
.h1d_c00347{height:144.467896px;}
.h1f_c00347{height:144.539807px;}
.h10_c00347{height:148.320703px;}
.ha_c00347{height:187.629548px;}
.h11_c00347{height:270.194531px;}
.h9_c00347{height:278.109309px;}
.h2_c00347{height:1237.365000px;}
.h0_c00347{height:1262.835000px;}
.h1_c00347{height:1263.000000px;}
.w3_c00347{width:47.520000px;}
.w4_c00347{width:204.120000px;}
.w6_c00347{width:208.080000px;}
.w5_c00347{width:321.840000px;}
.w2_c00347{width:867.465000px;}
.w0_c00347{width:892.935000px;}
.w1_c00347{width:893.250000px;}
.x23_c00347{left:-102.967500px;}
.xf_c00347{left:-100.969350px;}
.x7_c00347{left:-96.056400px;}
.x0_c00347{left:0.000000px;}
.x9_c00347{left:3.001800px;}
.x5_c00347{left:10.237500px;}
.x1_c00347{left:12.735000px;}
.x8_c00347{left:23.013600px;}
.x10_c00347{left:29.449350px;}
.x11_c00347{left:38.915250px;}
.x24_c00347{left:40.758000px;}
.x26_c00347{left:55.761098px;}
.x18_c00347{left:58.898850px;}
.x25_c00347{left:67.036050px;}
.x17_c00347{left:83.089350px;}
.x19_c00347{left:93.607050px;}
.x3_c00347{left:95.400150px;}
.x2d_c00347{left:97.604550px;}
.x1b_c00347{left:100.706400px;}
.x2e_c00347{left:101.894850px;}
.x2c_c00347{left:111.548100px;}
.xa_c00347{left:119.070000px;}
.x27_c00347{left:121.201200px;}
.x28_c00347{left:126.295950px;}
.x1a_c00347{left:130.155900px;}
.x1c_c00347{left:139.621800px;}
.xc_c00347{left:149.405100px;}
.x29_c00347{left:154.183050px;}
.xe_c00347{left:162.135000px;}
.x2a_c00347{left:169.199100px;}
.x6_c00347{left:174.015000px;}
.xd_c00347{left:176.394600px;}
.x14_c00347{left:179.588850px;}
.x16_c00347{left:181.166400px;}
.x15_c00347{left:182.735723px;}
.x2b_c00347{left:192.795750px;}
.x13_c00347{left:205.882950px;}
.x12_c00347{left:219.555900px;}
.x20_c00347{left:259.522950px;}
.x1f_c00347{left:263.204100px;}
.x1e_c00347{left:276.351150px;}
.x1d_c00347{left:302.645250px;}
.x21_c00347{left:316.318200px;}
.x2f_c00347{left:357.319650px;}
.xb_c00347{left:365.351100px;}
.x4_c00347{left:422.775000px;}
.x22_c00347{left:471.388500px;}
.x2_c00347{left:878.050050px;}
@media print{
.va_c00347{vertical-align:-24.266667pt;}
.v9_c00347{vertical-align:-14.933333pt;}
.v7_c00347{vertical-align:-12.800000pt;}
.v4_c00347{vertical-align:-10.143618pt;}
.vb_c00347{vertical-align:-5.454560pt;}
.v0_c00347{vertical-align:0.000000pt;}
.v5_c00347{vertical-align:10.184533pt;}
.v1_c00347{vertical-align:22.066133pt;}
.v6_c00347{vertical-align:100.146133pt;}
.v8_c00347{vertical-align:108.266667pt;}
.v2_c00347{vertical-align:117.120000pt;}
.v3_c00347{vertical-align:127.263618pt;}
.ls12_c00347{letter-spacing:-0.009505pt;}
.ls11_c00347{letter-spacing:0.000000pt;}
.ls6_c00347{letter-spacing:0.052907pt;}
.ls13_c00347{letter-spacing:0.089088pt;}
.ls10_c00347{letter-spacing:0.106667pt;}
.lsa_c00347{letter-spacing:0.776533pt;}
.ls3_c00347{letter-spacing:3.421943pt;}
.ls9_c00347{letter-spacing:5.794133pt;}
.lsd_c00347{letter-spacing:8.736000pt;}
.lsb_c00347{letter-spacing:18.741333pt;}
.lse_c00347{letter-spacing:18.741466pt;}
.ls1_c00347{letter-spacing:27.225879pt;}
.ls7_c00347{letter-spacing:30.208000pt;}
.lsc_c00347{letter-spacing:44.829571pt;}
.ls4_c00347{letter-spacing:45.103699pt;}
.ls2_c00347{letter-spacing:55.973218pt;}
.ls0_c00347{letter-spacing:74.685104pt;}
.ls5_c00347{letter-spacing:209.627975pt;}
.lsf_c00347{letter-spacing:289.018953pt;}
.ls8_c00347{letter-spacing:301.542365pt;}
.ws1_c00347{word-spacing:-30.553067pt;}
.ws0_c00347{word-spacing:-16.000000pt;}
.ws2_c00347{word-spacing:-0.126208pt;}
.ws3_c00347{word-spacing:-0.064000pt;}
.ws5_c00347{word-spacing:0.000000pt;}
.ws4_c00347{word-spacing:179.064890pt;}
._1_c00347{margin-left:-15.808000pt;}
._0_c00347{margin-left:-12.832288pt;}
._4_c00347{margin-left:-8.832000pt;}
._7_c00347{width:1.728000pt;}
._6_c00347{width:9.613867pt;}
._3_c00347{width:10.514667pt;}
._5_c00347{width:12.736000pt;}
._2_c00347{width:176.000000pt;}
.fs6_c00347{font-size:37.120000pt;}
.fsc_c00347{font-size:37.333333pt;}
.fs3_c00347{font-size:47.526933pt;}
.fs12_c00347{font-size:50.909333pt;}
.fsf_c00347{font-size:52.158828pt;}
.fs8_c00347{font-size:52.266667pt;}
.fsd_c00347{font-size:53.438270pt;}
.fs0_c00347{font-size:57.600000pt;}
.fsb_c00347{font-size:59.733333pt;}
.fs1_c00347{font-size:64.000000pt;}
.fs5_c00347{font-size:67.895467pt;}
.fs11_c00347{font-size:72.727467pt;}
.fsa_c00347{font-size:74.666667pt;}
.fs2_c00347{font-size:81.474667pt;}
.fse_c00347{font-size:87.272533pt;}
.fs7_c00347{font-size:89.600000pt;}
.fs4_c00347{font-size:122.212267pt;}
.fs10_c00347{font-size:130.908800pt;}
.fs9_c00347{font-size:134.400000pt;}
.y15_c00347{bottom:-89.600000pt;}
.y28_c00347{bottom:-87.272667pt;}
.y7_c00347{bottom:-81.474933pt;}
.y0_c00347{bottom:0.000000pt;}
.y5_c00347{bottom:1.280000pt;}
.ya_c00347{bottom:2.121600pt;}
.y30_c00347{bottom:2.727333pt;}
.y22_c00347{bottom:3.266667pt;}
.y31_c00347{bottom:4.545467pt;}
.y2d_c00347{bottom:7.725543pt;}
.y21_c00347{bottom:10.733333pt;}
.y1_c00347{bottom:11.320000pt;}
.y1f_c00347{bottom:12.600000pt;}
.y20_c00347{bottom:18.666667pt;}
.y8_c00347{bottom:19.944267pt;}
.y23_c00347{bottom:20.066667pt;}
.y9_c00347{bottom:21.641600pt;}
.y29_c00347{bottom:26.818133pt;}
.y2f_c00347{bottom:28.181867pt;}
.y2a_c00347{bottom:28.636400pt;}
.y1e_c00347{bottom:32.200000pt;}
.y2b_c00347{bottom:34.545467pt;}
.y32_c00347{bottom:35.909067pt;}
.y3_c00347{bottom:40.360000pt;}
.y16_c00347{bottom:46.200000pt;}
.y2e_c00347{bottom:47.727333pt;}
.y17_c00347{bottom:48.066667pt;}
.y4_c00347{bottom:50.400000pt;}
.y2c_c00347{bottom:52.954533pt;}
.y18_c00347{bottom:54.133333pt;}
.y1b_c00347{bottom:65.800000pt;}
.y1a_c00347{bottom:79.333333pt;}
.y1d_c00347{bottom:82.600000pt;}
.y19_c00347{bottom:91.700000pt;}
.y1c_c00347{bottom:99.862933pt;}
.y3c_c00347{bottom:116.520000pt;}
.y3b_c00347{bottom:148.520000pt;}
.y3a_c00347{bottom:180.520000pt;}
.y39_c00347{bottom:212.520000pt;}
.y38_c00347{bottom:244.520000pt;}
.y37_c00347{bottom:276.520000pt;}
.y36_c00347{bottom:308.520000pt;}
.y35_c00347{bottom:340.520000pt;}
.y34_c00347{bottom:372.520000pt;}
.y27_c00347{bottom:411.680000pt;}
.y33_c00347{bottom:425.640000pt;}
.y26_c00347{bottom:484.520000pt;}
.y25_c00347{bottom:516.520000pt;}
.y14_c00347{bottom:555.680000pt;}
.y24_c00347{bottom:583.080000pt;}
.y13_c00347{bottom:660.519867pt;}
.y12_c00347{bottom:692.519867pt;}
.y11_c00347{bottom:724.519867pt;}
.y10_c00347{bottom:756.519867pt;}
.yf_c00347{bottom:788.519867pt;}
.ye_c00347{bottom:820.519867pt;}
.yd_c00347{bottom:852.520000pt;}
.yc_c00347{bottom:884.520000pt;}
.y6_c00347{bottom:923.680000pt;}
.yb_c00347{bottom:933.800000pt;}
.y2_c00347{bottom:1035.880000pt;}
.h5_c00347{height:15.360000pt;}
.h12_c00347{height:36.640625pt;}
.h3_c00347{height:38.390625pt;}
.h1c_c00347{height:38.813503pt;}
.h19_c00347{height:39.765588pt;}
.h8_c00347{height:46.621879pt;}
.h21_c00347{height:49.964727pt;}
.hf_c00347{height:51.271354pt;}
.h16_c00347{height:51.296875pt;}
.h22_c00347{height:54.119462pt;}
.h13_c00347{height:55.562500pt;}
.h15_c00347{height:58.595833pt;}
.h14_c00347{height:58.625000pt;}
.hb_c00347{height:62.811967pt;}
.h4_c00347{height:62.812500pt;}
.hc_c00347{height:64.500000pt;}
.h23_c00347{height:65.923471pt;}
.h1e_c00347{height:67.365236pt;}
.h20_c00347{height:71.378031pt;}
.h17_c00347{height:73.281250pt;}
.h7_c00347{height:75.467501pt;}
.h6_c00347{height:78.080000pt;}
.h1a_c00347{height:80.000000pt;}
.h1b_c00347{height:80.837889pt;}
.he_c00347{height:82.993750pt;}
.h18_c00347{height:107.573958pt;}
.hd_c00347{height:112.000000pt;}
.h1d_c00347{height:128.415908pt;}
.h1f_c00347{height:128.479828pt;}
.h10_c00347{height:131.840625pt;}
.ha_c00347{height:166.781821pt;}
.h11_c00347{height:240.172917pt;}
.h9_c00347{height:247.208274pt;}
.h2_c00347{height:1099.880000pt;}
.h0_c00347{height:1122.520000pt;}
.h1_c00347{height:1122.666667pt;}
.w3_c00347{width:42.240000pt;}
.w4_c00347{width:181.440000pt;}
.w6_c00347{width:184.960000pt;}
.w5_c00347{width:286.080000pt;}
.w2_c00347{width:771.080000pt;}
.w0_c00347{width:793.720000pt;}
.w1_c00347{width:794.000000pt;}
.x23_c00347{left:-91.526667pt;}
.xf_c00347{left:-89.750533pt;}
.x7_c00347{left:-85.383467pt;}
.x0_c00347{left:0.000000pt;}
.x9_c00347{left:2.668267pt;}
.x5_c00347{left:9.100000pt;}
.x1_c00347{left:11.320000pt;}
.x8_c00347{left:20.456533pt;}
.x10_c00347{left:26.177200pt;}
.x11_c00347{left:34.591333pt;}
.x24_c00347{left:36.229333pt;}
.x26_c00347{left:49.565420pt;}
.x18_c00347{left:52.354533pt;}
.x25_c00347{left:59.587600pt;}
.x17_c00347{left:73.857200pt;}
.x19_c00347{left:83.206267pt;}
.x3_c00347{left:84.800133pt;}
.x2d_c00347{left:86.759600pt;}
.x1b_c00347{left:89.516800pt;}
.x2e_c00347{left:90.573200pt;}
.x2c_c00347{left:99.153867pt;}
.xa_c00347{left:105.840000pt;}
.x27_c00347{left:107.734400pt;}
.x28_c00347{left:112.263067pt;}
.x1a_c00347{left:115.694133pt;}
.x1c_c00347{left:124.108267pt;}
.xc_c00347{left:132.804533pt;}
.x29_c00347{left:137.051600pt;}
.xe_c00347{left:144.120000pt;}
.x2a_c00347{left:150.399200pt;}
.x6_c00347{left:154.680000pt;}
.xd_c00347{left:156.795200pt;}
.x14_c00347{left:159.634533pt;}
.x16_c00347{left:161.036800pt;}
.x15_c00347{left:162.431754pt;}
.x2b_c00347{left:171.374000pt;}
.x13_c00347{left:183.007067pt;}
.x12_c00347{left:195.160800pt;}
.x20_c00347{left:230.687067pt;}
.x1f_c00347{left:233.959200pt;}
.x1e_c00347{left:245.645467pt;}
.x1d_c00347{left:269.018000pt;}
.x21_c00347{left:281.171733pt;}
.x2f_c00347{left:317.617467pt;}
.xb_c00347{left:324.756533pt;}
.x4_c00347{left:375.800000pt;}
.x22_c00347{left:419.012000pt;}
.x2_c00347{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_149584042defdfe31bb4b24a.woff2')format("woff");}.ff1_c00348{font-family:ff1_c00348;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00348;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00348{font-family:ff2_c00348;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00348;src:url('chunks/assets/font_90324885411ddd03b7835969.woff2')format("woff");}.ff3_c00348{font-family:ff3_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:ff4_c00348;src:url('chunks/assets/font_9e7119a0d2eb558b0b500332.woff2')format("woff");}.ff4_c00348{font-family:ff4_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:ff5_c00348;src:url('chunks/assets/font_7bd5632df4fcab61682fb71a.woff2')format("woff");}.ff5_c00348{font-family:ff5_c00348;line-height:0.904785;font-style:normal;font-weight:normal;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_dfaf8e271e305fddefc08924.woff2')format("woff");}.ff6_c00348{font-family:ff6_c00348;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_c00348;src:url('chunks/assets/font_8cf70f168f4ace2d6ffe3fd6.woff2')format("woff");}.ff7_c00348{font-family:ff7_c00348;line-height:0.881836;font-style:normal;font-weight:normal;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_75517b1cd1d3beb80cbdc119.woff2')format("woff");}.ff8_c00348{font-family:ff8_c00348;line-height:1.239258;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_2210475ee4be0dc7129405f4.woff2')format("woff");}.ff9_c00348{font-family:ff9_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:ffa_c00348;src:url('chunks/assets/font_9794c5139f8465ed656c1a4c.woff2')format("woff");}.ffa_c00348{font-family:ffa_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:ffb_c00348;src:url('chunks/assets/font_e656a8b71f247a14f32870e9.woff2')format("woff");}.ffb_c00348{font-family:ffb_c00348;line-height:0.881836;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_75517b1cd1d3beb80cbdc119.woff2')format("woff");}.ffc_c00348{font-family:ffc_c00348;line-height:1.239258;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_343f128f1254d500f4706566.woff2')format("woff");}.ffd_c00348{font-family:ffd_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:ffe_c00348;src:url('chunks/assets/font_fc8492e603b8e6ed768718d8.woff2')format("woff");}.ffe_c00348{font-family:ffe_c00348;line-height:0.959961;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_95a4e8662cfff1e76a1118d0.woff2')format("woff");}.fff_c00348{font-family:fff_c00348;line-height:1.239258;font-style:normal;font-weight: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_c00348;src:url('chunks/assets/font_4979c5ed6d3318e07dacb55e.woff2')format("woff");}.ff10_c00348{font-family:ff10_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:ff11_c00348;src:url('chunks/assets/font_04a133bbd2f5a39630089912.woff2')format("woff");}.ff11_c00348{font-family:ff11_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:ff12_c00348;src:url('chunks/assets/font_a2147dc86d15f69de0af1821.woff2')format("woff");}.ff12_c00348{font-family:ff12_c00348;line-height:0.881836;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00348;src:url('chunks/assets/font_95a4e8662cfff1e76a1118d0.woff2')format("woff");}.ff13_c00348{font-family:ff13_c00348;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00348;src:url('chunks/assets/font_5dd5a5f490c444a2247f7c37.woff2')format("woff");}.ff14_c00348{font-family:ff14_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:ff15_c00348;src:url('chunks/assets/font_83d5751c1c52b9e23647ca8d.woff2')format("woff");}.ff15_c00348{font-family:ff15_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;}
.m3_c00348{transform:matrix(0.223245,0.000000,-0.047452,0.245455,0,0);-ms-transform:matrix(0.223245,0.000000,-0.047452,0.245455,0,0);-webkit-transform:matrix(0.223245,0.000000,-0.047452,0.245455,0,0);}
.m2_c00348{transform:matrix(0.227378,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227378,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227378,0.000000,0.000000,0.250000,0,0);}
.m4_c00348{transform:matrix(0.240888,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240888,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240888,0.000000,0.000000,0.250000,0,0);}
.m5_c00348{transform:matrix(0.240889,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240889,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240889,0.000000,0.000000,0.250000,0,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);}
.m1_c00348{transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.257065,0.000000,0.000000,0.250000,0,0);}
.m6_c00348{transform:matrix(0.281392,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.281392,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.281392,0.000000,0.000000,0.250000,0,0);}
.v3_c00348{vertical-align:-44.641440px;}
.v5_c00348{vertical-align:-38.417400px;}
.v1_c00348{vertical-align:-14.399400px;}
.v8_c00348{vertical-align:-4.027968px;}
.va_c00348{vertical-align:-2.013984px;}
.v0_c00348{vertical-align:0.000000px;}
.v9_c00348{vertical-align:2.013984px;}
.v4_c00348{vertical-align:14.400000px;}
.v6_c00348{vertical-align:22.077600px;}
.v2_c00348{vertical-align:30.240600px;}
.v7_c00348{vertical-align:64.534200px;}
.ls13_c00348{letter-spacing:-0.180000px;}
.ls11_c00348{letter-spacing:-0.014400px;}
.ls10_c00348{letter-spacing:0.000000px;}
.ls1_c00348{letter-spacing:0.004200px;}
.ls6_c00348{letter-spacing:0.023374px;}
.ls7_c00348{letter-spacing:0.037200px;}
.ls14_c00348{letter-spacing:0.058464px;}
.ls8_c00348{letter-spacing:0.100224px;}
.ls0_c00348{letter-spacing:0.120000px;}
.ls2_c00348{letter-spacing:0.125280px;}
.lsd_c00348{letter-spacing:0.706477px;}
.ls5_c00348{letter-spacing:0.717121px;}
.ls3_c00348{letter-spacing:2.868482px;}
.ls9_c00348{letter-spacing:3.744000px;}
.lsc_c00348{letter-spacing:5.271407px;}
.ls12_c00348{letter-spacing:9.993600px;}
.ls4_c00348{letter-spacing:11.371484px;}
.lse_c00348{letter-spacing:29.250720px;}
.lsf_c00348{letter-spacing:43.252704px;}
.lsa_c00348{letter-spacing:67.970607px;}
.lsb_c00348{letter-spacing:149.514215px;}
.sc__c00348{text-shadow:none;}
.sc0_c00348{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00348{-webkit-text-stroke:0px transparent;}
.sc0_c00348{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00348{word-spacing:-18.000000px;}
.ws2_c00348{word-spacing:-10.540224px;}
.ws5_c00348{word-spacing:-10.498464px;}
.ws3_c00348{word-spacing:-0.102446px;}
.ws7_c00348{word-spacing:-0.095904px;}
.ws4_c00348{word-spacing:-0.089059px;}
.ws1_c00348{word-spacing:-0.072000px;}
.ws8_c00348{word-spacing:0.000000px;}
.ws6_c00348{word-spacing:47.856096px;}
._f_c00348{margin-left:-12.947040px;}
._3_c00348{margin-left:-10.345200px;}
._5_c00348{margin-left:-9.220122px;}
._6_c00348{margin-left:-5.634519px;}
._4_c00348{margin-left:-3.585603px;}
._10_c00348{margin-left:-2.264951px;}
._e_c00348{width:1.368000px;}
._0_c00348{width:2.520000px;}
._d_c00348{width:3.813504px;}
._a_c00348{width:7.480922px;}
._2_c00348{width:9.986400px;}
._1_c00348{width:16.416000px;}
._11_c00348{width:81.936000px;}
._9_c00348{width:96.077280px;}
._7_c00348{width:144.000000px;}
._b_c00348{width:147.528000px;}
._c_c00348{width:180.000000px;}
._8_c00348{width:198.000000px;}
.fc1_c00348{color:transparent;}
.fc0_c00348{color:rgb(0,0,0);}
.fs2_c00348{font-size:41.760000px;}
.fsb_c00348{font-size:47.551200px;}
.fs8_c00348{font-size:54.344400px;}
.fs1_c00348{font-size:64.800000px;}
.fsa_c00348{font-size:67.930200px;}
.fs3_c00348{font-size:68.297400px;}
.fs0_c00348{font-size:72.000000px;}
.fs7_c00348{font-size:81.516600px;}
.fs5_c00348{font-size:89.058600px;}
.fs6_c00348{font-size:90.707548px;}
.fsc_c00348{font-size:95.904000px;}
.fs4_c00348{font-size:102.445800px;}
.fs9_c00348{font-size:122.274600px;}
.y33_c00348{bottom:-95.904000px;}
.y18_c00348{bottom:-89.058450px;}
.y27_c00348{bottom:-81.516450px;}
.y11_c00348{bottom:-68.297100px;}
.y0_c00348{bottom:0.000000px;}
.y2d_c00348{bottom:4.670250px;}
.y5_c00348{bottom:5.040000px;}
.y19_c00348{bottom:7.414278px;}
.y1a_c00348{bottom:7.421550px;}
.y12_c00348{bottom:11.382900px;}
.y1_c00348{bottom:12.735000px;}
.y2b_c00348{bottom:15.284400px;}
.y2c_c00348{bottom:16.982700px;}
.y34_c00348{bottom:18.485496px;}
.y2f_c00348{bottom:19.954650px;}
.y28_c00348{bottom:33.540600px;}
.y29_c00348{bottom:35.238900px;}
.y2e_c00348{bottom:35.660144px;}
.y30_c00348{bottom:40.758300px;}
.y3_c00348{bottom:45.405000px;}
.y4_c00348{bottom:53.100000px;}
.y2a_c00348{bottom:53.283000px;}
.y36_c00348{bottom:131.085000px;}
.y35_c00348{bottom:167.085000px;}
.y26_c00348{bottom:211.140000px;}
.y32_c00348{bottom:233.460000px;}
.y31_c00348{bottom:234.405000px;}
.y25_c00348{bottom:280.845000px;}
.y24_c00348{bottom:316.845000px;}
.y23_c00348{bottom:352.845000px;}
.y22_c00348{bottom:388.845000px;}
.y21_c00348{bottom:424.845000px;}
.y20_c00348{bottom:460.845000px;}
.y1f_c00348{bottom:496.845000px;}
.y1e_c00348{bottom:532.845000px;}
.y1d_c00348{bottom:568.845000px;}
.y1c_c00348{bottom:604.845000px;}
.y16_c00348{bottom:639.045000px;}
.y1b_c00348{bottom:642.645000px;}
.y17_c00348{bottom:649.260000px;}
.y15_c00348{bottom:679.005000px;}
.y14_c00348{bottom:715.005000px;}
.yf_c00348{bottom:754.605000px;}
.y13_c00348{bottom:758.205000px;}
.y10_c00348{bottom:759.060000px;}
.ye_c00348{bottom:794.924850px;}
.yd_c00348{bottom:830.924850px;}
.yc_c00348{bottom:866.924850px;}
.yb_c00348{bottom:902.924850px;}
.ya_c00348{bottom:938.924850px;}
.y9_c00348{bottom:974.924850px;}
.y8_c00348{bottom:1010.924850px;}
.y7_c00348{bottom:1046.924850px;}
.y6_c00348{bottom:1082.924850px;}
.y2_c00348{bottom:1165.365000px;}
.h4_c00348{height:20.880000px;}
.hc_c00348{height:24.120000px;}
.h9_c00348{height:29.880000px;}
.h1a_c00348{height:39.960000px;}
.h15_c00348{height:46.645684px;}
.h18_c00348{height:50.549621px;}
.h13_c00348{height:53.309521px;}
.h17_c00348{height:53.336057px;}
.ha_c00348{height:63.261801px;}
.hf_c00348{height:63.955908px;}
.h16_c00348{height:66.636607px;}
.h19_c00348{height:66.669776px;}
.h5_c00348{height:70.628906px;}
.h3_c00348{height:70.664062px;}
.h10_c00348{height:71.204766px;}
.h6_c00348{height:71.205366px;}
.h7_c00348{height:74.953125px;}
.h12_c00348{height:75.506343px;}
.h11_c00348{height:78.120000px;}
.hd_c00348{height:82.492268px;}
.h8_c00348{height:85.064062px;}
.he_c00348{height:87.406146px;}
.h1b_c00348{height:88.832953px;}
.h1c_c00348{height:94.077703px;}
.hb_c00348{height:100.544950px;}
.h14_c00348{height:119.946129px;}
.h2_c00348{height:1237.365000px;}
.h0_c00348{height:1262.835000px;}
.h1_c00348{height:1263.000000px;}
.w3_c00348{width:27.000000px;}
.w5_c00348{width:54.000000px;}
.w6_c00348{width:108.000000px;}
.w4_c00348{width:114.120000px;}
.w7_c00348{width:182.160000px;}
.w2_c00348{width:867.465000px;}
.w0_c00348{width:892.935000px;}
.w1_c00348{width:893.250000px;}
.x1c_c00348{left:-107.946600px;}
.xc_c00348{left:-81.000000px;}
.x12_c00348{left:-78.545400px;}
.x8_c00348{left:-70.227750px;}
.x0_c00348{left:0.000000px;}
.x14_c00348{left:1.636350px;}
.x9_c00348{left:2.926200px;}
.x1d_c00348{left:7.880102px;}
.xd_c00348{left:9.070350px;}
.x1_c00348{left:12.735000px;}
.xe_c00348{left:22.570350px;}
.xf_c00348{left:27.632850px;}
.x13_c00348{left:33.545400px;}
.x10_c00348{left:40.078050px;}
.x17_c00348{left:60.545400px;}
.x18_c00348{left:61.772700px;}
.x15_c00348{left:63.000000px;}
.x16_c00348{left:80.181750px;}
.x3_c00348{left:95.392050px;}
.x19_c00348{left:102.272700px;}
.x5_c00348{left:149.400150px;}
.x11_c00348{left:162.135000px;}
.x6_c00348{left:179.400150px;}
.x7_c00348{left:223.695000px;}
.x1a_c00348{left:257.409300px;}
.x1b_c00348{left:279.135000px;}
.xb_c00348{left:282.735000px;}
.xa_c00348{left:324.899100px;}
.x4_c00348{left:432.855000px;}
.x1e_c00348{left:448.416150px;}
.x2_c00348{left:878.050050px;}
@media print{
.v3_c00348{vertical-align:-39.681280pt;}
.v5_c00348{vertical-align:-34.148800pt;}
.v1_c00348{vertical-align:-12.799467pt;}
.v8_c00348{vertical-align:-3.580416pt;}
.va_c00348{vertical-align:-1.790208pt;}
.v0_c00348{vertical-align:0.000000pt;}
.v9_c00348{vertical-align:1.790208pt;}
.v4_c00348{vertical-align:12.800000pt;}
.v6_c00348{vertical-align:19.624533pt;}
.v2_c00348{vertical-align:26.880533pt;}
.v7_c00348{vertical-align:57.363733pt;}
.ls13_c00348{letter-spacing:-0.160000pt;}
.ls11_c00348{letter-spacing:-0.012800pt;}
.ls10_c00348{letter-spacing:0.000000pt;}
.ls1_c00348{letter-spacing:0.003733pt;}
.ls6_c00348{letter-spacing:0.020776pt;}
.ls7_c00348{letter-spacing:0.033067pt;}
.ls14_c00348{letter-spacing:0.051968pt;}
.ls8_c00348{letter-spacing:0.089088pt;}
.ls0_c00348{letter-spacing:0.106667pt;}
.ls2_c00348{letter-spacing:0.111360pt;}
.lsd_c00348{letter-spacing:0.627980pt;}
.ls5_c00348{letter-spacing:0.637441pt;}
.ls3_c00348{letter-spacing:2.549762pt;}
.ls9_c00348{letter-spacing:3.328000pt;}
.lsc_c00348{letter-spacing:4.685695pt;}
.ls12_c00348{letter-spacing:8.883200pt;}
.ls4_c00348{letter-spacing:10.107986pt;}
.lse_c00348{letter-spacing:26.000640pt;}
.lsf_c00348{letter-spacing:38.446848pt;}
.lsa_c00348{letter-spacing:60.418318pt;}
.lsb_c00348{letter-spacing:132.901524pt;}
.ws0_c00348{word-spacing:-16.000000pt;}
.ws2_c00348{word-spacing:-9.369088pt;}
.ws5_c00348{word-spacing:-9.331968pt;}
.ws3_c00348{word-spacing:-0.091063pt;}
.ws7_c00348{word-spacing:-0.085248pt;}
.ws4_c00348{word-spacing:-0.079163pt;}
.ws1_c00348{word-spacing:-0.064000pt;}
.ws8_c00348{word-spacing:0.000000pt;}
.ws6_c00348{word-spacing:42.538752pt;}
._f_c00348{margin-left:-11.508480pt;}
._3_c00348{margin-left:-9.195733pt;}
._5_c00348{margin-left:-8.195664pt;}
._6_c00348{margin-left:-5.008461pt;}
._4_c00348{margin-left:-3.187203pt;}
._10_c00348{margin-left:-2.013290pt;}
._e_c00348{width:1.216000pt;}
._0_c00348{width:2.240000pt;}
._d_c00348{width:3.389781pt;}
._a_c00348{width:6.649709pt;}
._2_c00348{width:8.876800pt;}
._1_c00348{width:14.592000pt;}
._11_c00348{width:72.832000pt;}
._9_c00348{width:85.402027pt;}
._7_c00348{width:128.000000pt;}
._b_c00348{width:131.136000pt;}
._c_c00348{width:160.000000pt;}
._8_c00348{width:176.000000pt;}
.fs2_c00348{font-size:37.120000pt;}
.fsb_c00348{font-size:42.267733pt;}
.fs8_c00348{font-size:48.306133pt;}
.fs1_c00348{font-size:57.600000pt;}
.fsa_c00348{font-size:60.382400pt;}
.fs3_c00348{font-size:60.708800pt;}
.fs0_c00348{font-size:64.000000pt;}
.fs7_c00348{font-size:72.459200pt;}
.fs5_c00348{font-size:79.163200pt;}
.fs6_c00348{font-size:80.628932pt;}
.fsc_c00348{font-size:85.248000pt;}
.fs4_c00348{font-size:91.062933pt;}
.fs9_c00348{font-size:108.688533pt;}
.y33_c00348{bottom:-85.248000pt;}
.y18_c00348{bottom:-79.163067pt;}
.y27_c00348{bottom:-72.459067pt;}
.y11_c00348{bottom:-60.708533pt;}
.y0_c00348{bottom:0.000000pt;}
.y2d_c00348{bottom:4.151333pt;}
.y5_c00348{bottom:4.480000pt;}
.y19_c00348{bottom:6.590470pt;}
.y1a_c00348{bottom:6.596933pt;}
.y12_c00348{bottom:10.118133pt;}
.y1_c00348{bottom:11.320000pt;}
.y2b_c00348{bottom:13.586133pt;}
.y2c_c00348{bottom:15.095733pt;}
.y34_c00348{bottom:16.431552pt;}
.y2f_c00348{bottom:17.737467pt;}
.y28_c00348{bottom:29.813867pt;}
.y29_c00348{bottom:31.323467pt;}
.y2e_c00348{bottom:31.697906pt;}
.y30_c00348{bottom:36.229600pt;}
.y3_c00348{bottom:40.360000pt;}
.y4_c00348{bottom:47.200000pt;}
.y2a_c00348{bottom:47.362667pt;}
.y36_c00348{bottom:116.520000pt;}
.y35_c00348{bottom:148.520000pt;}
.y26_c00348{bottom:187.680000pt;}
.y32_c00348{bottom:207.520000pt;}
.y31_c00348{bottom:208.360000pt;}
.y25_c00348{bottom:249.640000pt;}
.y24_c00348{bottom:281.640000pt;}
.y23_c00348{bottom:313.640000pt;}
.y22_c00348{bottom:345.640000pt;}
.y21_c00348{bottom:377.640000pt;}
.y20_c00348{bottom:409.640000pt;}
.y1f_c00348{bottom:441.640000pt;}
.y1e_c00348{bottom:473.640000pt;}
.y1d_c00348{bottom:505.640000pt;}
.y1c_c00348{bottom:537.640000pt;}
.y16_c00348{bottom:568.040000pt;}
.y1b_c00348{bottom:571.240000pt;}
.y17_c00348{bottom:577.120000pt;}
.y15_c00348{bottom:603.560000pt;}
.y14_c00348{bottom:635.560000pt;}
.yf_c00348{bottom:670.760000pt;}
.y13_c00348{bottom:673.960000pt;}
.y10_c00348{bottom:674.720000pt;}
.ye_c00348{bottom:706.599867pt;}
.yd_c00348{bottom:738.599867pt;}
.yc_c00348{bottom:770.599867pt;}
.yb_c00348{bottom:802.599867pt;}
.ya_c00348{bottom:834.599867pt;}
.y9_c00348{bottom:866.599867pt;}
.y8_c00348{bottom:898.599867pt;}
.y7_c00348{bottom:930.599867pt;}
.y6_c00348{bottom:962.599867pt;}
.y2_c00348{bottom:1035.880000pt;}
.h4_c00348{height:18.560000pt;}
.hc_c00348{height:21.440000pt;}
.h9_c00348{height:26.560000pt;}
.h1a_c00348{height:35.520000pt;}
.h15_c00348{height:41.462830pt;}
.h18_c00348{height:44.932997pt;}
.h13_c00348{height:47.386241pt;}
.h17_c00348{height:47.409828pt;}
.ha_c00348{height:56.232712pt;}
.hf_c00348{height:56.849696pt;}
.h16_c00348{height:59.232540pt;}
.h19_c00348{height:59.262023pt;}
.h5_c00348{height:62.781250pt;}
.h3_c00348{height:62.812500pt;}
.h10_c00348{height:63.293125pt;}
.h6_c00348{height:63.293658pt;}
.h7_c00348{height:66.625000pt;}
.h12_c00348{height:67.116749pt;}
.h11_c00348{height:69.440000pt;}
.hd_c00348{height:73.326460pt;}
.h8_c00348{height:75.612500pt;}
.he_c00348{height:77.694352pt;}
.h1b_c00348{height:78.962625pt;}
.h1c_c00348{height:83.624625pt;}
.hb_c00348{height:89.373289pt;}
.h14_c00348{height:106.618781pt;}
.h2_c00348{height:1099.880000pt;}
.h0_c00348{height:1122.520000pt;}
.h1_c00348{height:1122.666667pt;}
.w3_c00348{width:24.000000pt;}
.w5_c00348{width:48.000000pt;}
.w6_c00348{width:96.000000pt;}
.w4_c00348{width:101.440000pt;}
.w7_c00348{width:161.920000pt;}
.w2_c00348{width:771.080000pt;}
.w0_c00348{width:793.720000pt;}
.w1_c00348{width:794.000000pt;}
.x1c_c00348{left:-95.952533pt;}
.xc_c00348{left:-72.000000pt;}
.x12_c00348{left:-69.818133pt;}
.x8_c00348{left:-62.424667pt;}
.x0_c00348{left:0.000000pt;}
.x14_c00348{left:1.454533pt;}
.x9_c00348{left:2.601067pt;}
.x1d_c00348{left:7.004535pt;}
.xd_c00348{left:8.062533pt;}
.x1_c00348{left:11.320000pt;}
.xe_c00348{left:20.062533pt;}
.xf_c00348{left:24.562533pt;}
.x13_c00348{left:29.818133pt;}
.x10_c00348{left:35.624933pt;}
.x17_c00348{left:53.818133pt;}
.x18_c00348{left:54.909067pt;}
.x15_c00348{left:56.000000pt;}
.x16_c00348{left:71.272667pt;}
.x3_c00348{left:84.792933pt;}
.x19_c00348{left:90.909067pt;}
.x5_c00348{left:132.800133pt;}
.x11_c00348{left:144.120000pt;}
.x6_c00348{left:159.466800pt;}
.x7_c00348{left:198.840000pt;}
.x1a_c00348{left:228.808267pt;}
.x1b_c00348{left:248.120000pt;}
.xb_c00348{left:251.320000pt;}
.xa_c00348{left:288.799200pt;}
.x4_c00348{left:384.760000pt;}
.x1e_c00348{left:398.592133pt;}
.x2_c00348{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00349{font-family:ff1_c00349;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00349;src:url('chunks/assets/font_503caaf291724d0550b97644.woff2')format("woff");}.ff2_c00349{font-family:ff2_c00349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00349;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00349{font-family:ff3_c00349;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00349;src:url('chunks/assets/font_99a5189ef1e5a6a329d03270.woff2')format("woff");}.ff4_c00349{font-family:ff4_c00349;line-height:1.019043;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00349;src:url('chunks/assets/font_73c3531a7639b20cf47e7c2a.woff2')format("woff");}.ff5_c00349{font-family:ff5_c00349;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00349;src:url('chunks/assets/font_6f753fdbbbefce9bcd6f5a35.woff2')format("woff");}.ff6_c00349{font-family:ff6_c00349;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00349;src:url('chunks/assets/font_8d769986abe1d6821ce4e0ee.woff2')format("woff");}.ff7_c00349{font-family:ff7_c00349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00349;src:url('chunks/assets/font_fc8492e603b8e6ed768718d8.woff2')format("woff");}.ff8_c00349{font-family:ff8_c00349;line-height:0.959961;font-style:normal;font-weight: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_c00349;src:url('chunks/assets/font_ce6749bdc197bd3fd0ec9f75.woff2')format("woff");}.ff9_c00349{font-family:ff9_c00349;line-height:1.239258;font-style:normal;font-weight: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_c00349;src:url('chunks/assets/font_2ed8fad8cbccf93be3801a7d.woff2')format("woff");}.ffa_c00349{font-family:ffa_c00349;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00349;src:url('chunks/assets/font_8d769986abe1d6821ce4e0ee.woff2')format("woff");}.ffb_c00349{font-family:ffb_c00349;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00349;src:url('chunks/assets/font_2540a1106862e1a7e4edd786.woff2')format("woff");}.ffc_c00349{font-family:ffc_c00349;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4_c00349{transform:matrix(0.136431,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.136431,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.136431,0.000000,0.000000,0.250000,0,0);}
.m3_c00349{transform:matrix(0.247307,0.000000,-0.052567,0.244411,0,0);-ms-transform:matrix(0.247307,0.000000,-0.052567,0.244411,0,0);-webkit-transform:matrix(0.247307,0.000000,-0.052567,0.244411,0,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);}
.m1_c00349{transform:matrix(0.252963,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252963,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252963,0.000000,0.000000,0.250000,0,0);}
.m2_c00349{transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252965,0.000000,0.000000,0.250000,0,0);}
.m5_c00349{transform:matrix(0.273564,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273564,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273564,0.000000,0.000000,0.250000,0,0);}
.m6_c00349{transform:matrix(0.273566,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273566,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273566,0.000000,0.000000,0.250000,0,0);}
.m7_c00349{transform:matrix(0.273568,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.273568,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.273568,0.000000,0.000000,0.250000,0,0);}
.v1_c00349{vertical-align:-4.705695px;}
.v0_c00349{vertical-align:0.000000px;}
.ls5_c00349{letter-spacing:-0.016070px;}
.ls7_c00349{letter-spacing:-0.014400px;}
.ls4_c00349{letter-spacing:0.000000px;}
.ls2_c00349{letter-spacing:0.652525px;}
.ls1_c00349{letter-spacing:4.868837px;}
.ls6_c00349{letter-spacing:14.126400px;}
.ls0_c00349{letter-spacing:72.027533px;}
.ls3_c00349{letter-spacing:179.569321px;}
.sc__c00349{text-shadow:none;}
.sc0_c00349{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00349{-webkit-text-stroke:0px transparent;}
.sc0_c00349{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00349{word-spacing:-18.000000px;}
.ws1_c00349{word-spacing:-13.392000px;}
.ws3_c00349{word-spacing:-0.080352px;}
.ws5_c00349{word-spacing:0.000000px;}
.ws2_c00349{word-spacing:19.445184px;}
.ws4_c00349{word-spacing:222.483072px;}
._e_c00349{margin-left:-14.112000px;}
._2_c00349{margin-left:-6.187104px;}
._0_c00349{margin-left:-4.874688px;}
._1_c00349{width:2.249856px;}
._7_c00349{width:4.723200px;}
._8_c00349{width:5.774400px;}
._a_c00349{width:7.084800px;}
._d_c00349{width:9.086400px;}
._6_c00349{width:10.260000px;}
._9_c00349{width:12.067200px;}
._f_c00349{width:14.155200px;}
._11_c00349{width:15.321600px;}
._10_c00349{width:19.123200px;}
._5_c00349{width:29.952000px;}
._b_c00349{width:31.485600px;}
._3_c00349{width:36.072000px;}
._c_c00349{width:37.137600px;}
._4_c00349{width:198.000000px;}
.fc1_c00349{color:transparent;}
.fc0_c00349{color:rgb(0,0,0);}
.fs3_c00349{font-size:35.712000px;}
.fs8_c00349{font-size:50.194200px;}
.fs2_c00349{font-size:53.568000px;}
.fs5_c00349{font-size:54.792962px;}
.fsa_c00349{font-size:62.742600px;}
.fs0_c00349{font-size:64.800000px;}
.fs1_c00349{font-size:72.000000px;}
.fs7_c00349{font-size:75.291600px;}
.fs4_c00349{font-size:80.352000px;}
.fs6_c00349{font-size:99.322800px;}
.fs9_c00349{font-size:112.937400px;}
.y1d_c00349{bottom:-75.291600px;}
.y9_c00349{bottom:-53.568000px;}
.y0_c00349{bottom:0.000000px;}
.y5_c00349{bottom:1.440000px;}
.y20_c00349{bottom:4.313400px;}
.y17_c00349{bottom:6.417300px;}
.y16_c00349{bottom:6.975000px;}
.y1e_c00349{bottom:10.587750px;}
.y1f_c00349{bottom:12.156300px;}
.y1_c00349{bottom:12.735000px;}
.y23_c00349{bottom:17.254200px;}
.y22_c00349{bottom:18.430500px;}
.ya_c00349{bottom:18.972000px;}
.yb_c00349{bottom:19.809000px;}
.yc_c00349{bottom:23.436000px;}
.yf_c00349{bottom:29.434500px;}
.y13_c00349{bottom:31.529232px;}
.y21_c00349{bottom:32.936643px;}
.y15_c00349{bottom:40.595616px;}
.ye_c00349{bottom:45.337500px;}
.y3_c00349{bottom:45.405000px;}
.y11_c00349{bottom:47.290500px;}
.yd_c00349{bottom:50.359500px;}
.y14_c00349{bottom:53.010000px;}
.y4_c00349{bottom:56.700000px;}
.y10_c00349{bottom:65.700036px;}
.y12_c00349{bottom:66.402000px;}
.y37_c00349{bottom:132.885000px;}
.y36_c00349{bottom:168.885000px;}
.y35_c00349{bottom:204.885000px;}
.y34_c00349{bottom:240.885000px;}
.y33_c00349{bottom:276.885000px;}
.y32_c00349{bottom:312.885000px;}
.y31_c00349{bottom:348.885000px;}
.y30_c00349{bottom:384.885000px;}
.y2f_c00349{bottom:420.885000px;}
.y2e_c00349{bottom:456.885000px;}
.y2d_c00349{bottom:492.885000px;}
.y2c_c00349{bottom:528.885000px;}
.y2b_c00349{bottom:564.885000px;}
.y2a_c00349{bottom:600.885000px;}
.y29_c00349{bottom:636.885000px;}
.y28_c00349{bottom:672.885000px;}
.y27_c00349{bottom:708.885000px;}
.y26_c00349{bottom:744.885000px;}
.y25_c00349{bottom:780.885000px;}
.y1c_c00349{bottom:825.300000px;}
.y24_c00349{bottom:829.125000px;}
.y1b_c00349{bottom:861.165000px;}
.y1a_c00349{bottom:897.165000px;}
.y19_c00349{bottom:933.165000px;}
.y8_c00349{bottom:977.220000px;}
.y18_c00349{bottom:996.165000px;}
.y7_c00349{bottom:1046.924850px;}
.y6_c00349{bottom:1082.924850px;}
.y2_c00349{bottom:1165.365000px;}
.h5_c00349{height:17.280000px;}
.h8_c00349{height:35.031938px;}
.ha_c00349{height:42.352177px;}
.h3_c00349{height:43.189453px;}
.h10_c00349{height:43.920000px;}
.h12_c00349{height:49.238353px;}
.h14_c00349{height:49.262862px;}
.h7_c00349{height:49.618406px;}
.hb_c00349{height:52.547906px;}
.hc_c00349{height:52.574062px;}
.h15_c00349{height:53.410864px;}
.h17_c00349{height:61.578431px;}
.hd_c00349{height:62.108016px;}
.h11_c00349{height:69.740315px;}
.h4_c00349{height:70.664062px;}
.h6_c00349{height:78.120000px;}
.h9_c00349{height:78.821859px;}
.he_c00349{height:78.861094px;}
.hf_c00349{height:91.999683px;}
.h13_c00349{height:110.786737px;}
.h16_c00349{height:110.841882px;}
.h2_c00349{height:1237.365000px;}
.h0_c00349{height:1262.835000px;}
.h1_c00349{height:1263.000000px;}
.w3_c00349{width:47.520000px;}
.w5_c00349{width:96.120000px;}
.w4_c00349{width:132.120000px;}
.w2_c00349{width:867.465000px;}
.w0_c00349{width:892.935000px;}
.w1_c00349{width:893.250000px;}
.x19_c00349{left:-82.388550px;}
.x8_c00349{left:-54.203100px;}
.x0_c00349{left:0.000000px;}
.x1c_c00349{left:6.007500px;}
.x1e_c00349{left:7.294800px;}
.x1d_c00349{left:8.575281px;}
.x5_c00349{left:10.237500px;}
.x1_c00349{left:12.735000px;}
.x9_c00349{left:17.503050px;}
.xa_c00349{left:24.278400px;}
.x1b_c00349{left:25.746450px;}
.x12_c00349{left:35.006100px;}
.xb_c00349{left:41.075700px;}
.x14_c00349{left:53.920800px;}
.x1a_c00349{left:59.216850px;}
.x15_c00349{left:66.201150px;}
.x1f_c00349{left:76.381050px;}
.xe_c00349{left:80.034300px;}
.x11_c00349{left:82.857300px;}
.x10_c00349{left:85.955918px;}
.xf_c00349{left:88.503450px;}
.x20_c00349{left:90.970650px;}
.x3_c00349{left:95.400150px;}
.xc_c00349{left:108.123900px;}
.xd_c00349{left:115.560900px;}
.x13_c00349{left:121.676377px;}
.x16_c00349{left:129.014550px;}
.x6_c00349{left:149.400150px;}
.x18_c00349{left:162.135000px;}
.x7_c00349{left:174.015000px;}
.x21_c00349{left:245.412150px;}
.x17_c00349{left:293.377800px;}
.x4_c00349{left:422.775000px;}
.x2_c00349{left:878.050050px;}
@media print{
.v1_c00349{vertical-align:-4.182840pt;}
.v0_c00349{vertical-align:0.000000pt;}
.ls5_c00349{letter-spacing:-0.014285pt;}
.ls7_c00349{letter-spacing:-0.012800pt;}
.ls4_c00349{letter-spacing:0.000000pt;}
.ls2_c00349{letter-spacing:0.580022pt;}
.ls1_c00349{letter-spacing:4.327855pt;}
.ls6_c00349{letter-spacing:12.556800pt;}
.ls0_c00349{letter-spacing:64.024474pt;}
.ls3_c00349{letter-spacing:159.617174pt;}
.ws0_c00349{word-spacing:-16.000000pt;}
.ws1_c00349{word-spacing:-11.904000pt;}
.ws3_c00349{word-spacing:-0.071424pt;}
.ws5_c00349{word-spacing:0.000000pt;}
.ws2_c00349{word-spacing:17.284608pt;}
.ws4_c00349{word-spacing:197.762731pt;}
._e_c00349{margin-left:-12.544000pt;}
._2_c00349{margin-left:-5.499648pt;}
._0_c00349{margin-left:-4.333056pt;}
._1_c00349{width:1.999872pt;}
._7_c00349{width:4.198400pt;}
._8_c00349{width:5.132800pt;}
._a_c00349{width:6.297600pt;}
._d_c00349{width:8.076800pt;}
._6_c00349{width:9.120000pt;}
._9_c00349{width:10.726400pt;}
._f_c00349{width:12.582400pt;}
._11_c00349{width:13.619200pt;}
._10_c00349{width:16.998400pt;}
._5_c00349{width:26.624000pt;}
._b_c00349{width:27.987200pt;}
._3_c00349{width:32.064000pt;}
._c_c00349{width:33.011200pt;}
._4_c00349{width:176.000000pt;}
.fs3_c00349{font-size:31.744000pt;}
.fs8_c00349{font-size:44.617067pt;}
.fs2_c00349{font-size:47.616000pt;}
.fs5_c00349{font-size:48.704855pt;}
.fsa_c00349{font-size:55.771200pt;}
.fs0_c00349{font-size:57.600000pt;}
.fs1_c00349{font-size:64.000000pt;}
.fs7_c00349{font-size:66.925867pt;}
.fs4_c00349{font-size:71.424000pt;}
.fs6_c00349{font-size:88.286933pt;}
.fs9_c00349{font-size:100.388800pt;}
.y1d_c00349{bottom:-66.925867pt;}
.y9_c00349{bottom:-47.616000pt;}
.y0_c00349{bottom:0.000000pt;}
.y5_c00349{bottom:1.280000pt;}
.y20_c00349{bottom:3.834133pt;}
.y17_c00349{bottom:5.704267pt;}
.y16_c00349{bottom:6.200000pt;}
.y1e_c00349{bottom:9.411333pt;}
.y1f_c00349{bottom:10.805600pt;}
.y1_c00349{bottom:11.320000pt;}
.y23_c00349{bottom:15.337067pt;}
.y22_c00349{bottom:16.382667pt;}
.ya_c00349{bottom:16.864000pt;}
.yb_c00349{bottom:17.608000pt;}
.yc_c00349{bottom:20.832000pt;}
.yf_c00349{bottom:26.164000pt;}
.y13_c00349{bottom:28.025984pt;}
.y21_c00349{bottom:29.277016pt;}
.y15_c00349{bottom:36.084992pt;}
.ye_c00349{bottom:40.300000pt;}
.y3_c00349{bottom:40.360000pt;}
.y11_c00349{bottom:42.036000pt;}
.yd_c00349{bottom:44.764000pt;}
.y14_c00349{bottom:47.120000pt;}
.y4_c00349{bottom:50.400000pt;}
.y10_c00349{bottom:58.400032pt;}
.y12_c00349{bottom:59.024000pt;}
.y37_c00349{bottom:118.120000pt;}
.y36_c00349{bottom:150.120000pt;}
.y35_c00349{bottom:182.120000pt;}
.y34_c00349{bottom:214.120000pt;}
.y33_c00349{bottom:246.120000pt;}
.y32_c00349{bottom:278.120000pt;}
.y31_c00349{bottom:310.120000pt;}
.y30_c00349{bottom:342.120000pt;}
.y2f_c00349{bottom:374.120000pt;}
.y2e_c00349{bottom:406.120000pt;}
.y2d_c00349{bottom:438.120000pt;}
.y2c_c00349{bottom:470.120000pt;}
.y2b_c00349{bottom:502.120000pt;}
.y2a_c00349{bottom:534.120000pt;}
.y29_c00349{bottom:566.120000pt;}
.y28_c00349{bottom:598.120000pt;}
.y27_c00349{bottom:630.120000pt;}
.y26_c00349{bottom:662.120000pt;}
.y25_c00349{bottom:694.120000pt;}
.y1c_c00349{bottom:733.600000pt;}
.y24_c00349{bottom:737.000000pt;}
.y1b_c00349{bottom:765.480000pt;}
.y1a_c00349{bottom:797.480000pt;}
.y19_c00349{bottom:829.480000pt;}
.y8_c00349{bottom:868.640000pt;}
.y18_c00349{bottom:885.480000pt;}
.y7_c00349{bottom:930.599867pt;}
.y6_c00349{bottom:962.599867pt;}
.y2_c00349{bottom:1035.880000pt;}
.h5_c00349{height:15.360000pt;}
.h8_c00349{height:31.139500pt;}
.ha_c00349{height:37.646380pt;}
.h3_c00349{height:38.390625pt;}
.h10_c00349{height:39.040000pt;}
.h12_c00349{height:43.767425pt;}
.h14_c00349{height:43.789211pt;}
.h7_c00349{height:44.105250pt;}
.hb_c00349{height:46.709250pt;}
.hc_c00349{height:46.732500pt;}
.h15_c00349{height:47.476323pt;}
.h17_c00349{height:54.736383pt;}
.hd_c00349{height:55.207125pt;}
.h11_c00349{height:61.991391pt;}
.h4_c00349{height:62.812500pt;}
.h6_c00349{height:69.440000pt;}
.h9_c00349{height:70.063875pt;}
.he_c00349{height:70.098750pt;}
.hf_c00349{height:81.777496pt;}
.h13_c00349{height:98.477099pt;}
.h16_c00349{height:98.526117pt;}
.h2_c00349{height:1099.880000pt;}
.h0_c00349{height:1122.520000pt;}
.h1_c00349{height:1122.666667pt;}
.w3_c00349{width:42.240000pt;}
.w5_c00349{width:85.440000pt;}
.w4_c00349{width:117.440000pt;}
.w2_c00349{width:771.080000pt;}
.w0_c00349{width:793.720000pt;}
.w1_c00349{width:794.000000pt;}
.x19_c00349{left:-73.234267pt;}
.x8_c00349{left:-48.180533pt;}
.x0_c00349{left:0.000000pt;}
.x1c_c00349{left:5.340000pt;}
.x1e_c00349{left:6.484267pt;}
.x1d_c00349{left:7.622472pt;}
.x5_c00349{left:9.100000pt;}
.x1_c00349{left:11.320000pt;}
.x9_c00349{left:15.558267pt;}
.xa_c00349{left:21.580800pt;}
.x1b_c00349{left:22.885733pt;}
.x12_c00349{left:31.116533pt;}
.xb_c00349{left:36.511733pt;}
.x14_c00349{left:47.929600pt;}
.x1a_c00349{left:52.637200pt;}
.x15_c00349{left:58.845467pt;}
.x1f_c00349{left:67.894267pt;}
.xe_c00349{left:71.141600pt;}
.x11_c00349{left:73.650933pt;}
.x10_c00349{left:76.405261pt;}
.xf_c00349{left:78.669733pt;}
.x20_c00349{left:80.862800pt;}
.x3_c00349{left:84.800133pt;}
.xc_c00349{left:96.110133pt;}
.xd_c00349{left:102.720800pt;}
.x13_c00349{left:108.156780pt;}
.x16_c00349{left:114.679600pt;}
.x6_c00349{left:132.800133pt;}
.x18_c00349{left:144.120000pt;}
.x7_c00349{left:154.680000pt;}
.x21_c00349{left:218.144133pt;}
.x17_c00349{left:260.780267pt;}
.x4_c00349{left:375.800000pt;}
.x2_c00349{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0e9481126a103ea1ffaa198f.woff2')format("woff");}.ff1_c00350{font-family:ff1_c00350;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00350;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00350{font-family:ff2_c00350;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00350;src:url('chunks/assets/font_7cff8080ef2459c5dea24e8f.woff2')format("woff");}.ff3_c00350{font-family:ff3_c00350;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00350{letter-spacing:-0.014400px;}
.ls0_c00350{letter-spacing:0.000000px;}
.ls2_c00350{letter-spacing:0.014400px;}
.sc__c00350{text-shadow:none;}
.sc0_c00350{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00350{-webkit-text-stroke:0px transparent;}
.sc0_c00350{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00350{word-spacing:-18.000000px;}
.ws1_c00350{word-spacing:0.000000px;}
._6_c00350{width:1.864800px;}
._0_c00350{width:3.578400px;}
._3_c00350{width:5.068800px;}
._2_c00350{width:6.372000px;}
._5_c00350{width:7.516800px;}
._4_c00350{width:8.524800px;}
._7_c00350{width:9.568800px;}
._a_c00350{width:13.384800px;}
._b_c00350{width:14.659200px;}
._c_c00350{width:19.080000px;}
._9_c00350{width:23.443200px;}
._1_c00350{width:25.308000px;}
._8_c00350{width:26.539200px;}
.fc1_c00350{color:transparent;}
.fc0_c00350{color:rgb(0,0,0);}
.fs1_c00350{font-size:64.800000px;}
.fs0_c00350{font-size:72.000000px;}
.y0_c00350{bottom:0.000000px;}
.y5_c00350{bottom:5.040000px;}
.y1_c00350{bottom:12.735000px;}
.y3_c00350{bottom:45.405000px;}
.y4_c00350{bottom:53.100000px;}
.y21_c00350{bottom:110.924850px;}
.y20_c00350{bottom:146.924850px;}
.y1f_c00350{bottom:182.924850px;}
.y1e_c00350{bottom:218.924850px;}
.y1d_c00350{bottom:254.924850px;}
.y1c_c00350{bottom:290.924850px;}
.y1b_c00350{bottom:326.924850px;}
.y1a_c00350{bottom:362.924850px;}
.y19_c00350{bottom:398.924850px;}
.y18_c00350{bottom:434.924850px;}
.y17_c00350{bottom:470.924850px;}
.y16_c00350{bottom:506.924850px;}
.y15_c00350{bottom:542.924850px;}
.y14_c00350{bottom:578.924850px;}
.y13_c00350{bottom:614.924850px;}
.y12_c00350{bottom:650.924850px;}
.y11_c00350{bottom:686.924850px;}
.y10_c00350{bottom:722.924850px;}
.yf_c00350{bottom:758.924850px;}
.ye_c00350{bottom:794.924850px;}
.yd_c00350{bottom:830.924850px;}
.yc_c00350{bottom:866.924850px;}
.yb_c00350{bottom:902.924850px;}
.ya_c00350{bottom:938.924850px;}
.y9_c00350{bottom:974.924850px;}
.y8_c00350{bottom:1010.924850px;}
.y7_c00350{bottom:1046.924850px;}
.y6_c00350{bottom:1082.924850px;}
.y2_c00350{bottom:1165.365000px;}
.h4_c00350{height:20.880000px;}
.h5_c00350{height:70.628906px;}
.h3_c00350{height:70.664062px;}
.h2_c00350{height:1237.365000px;}
.h0_c00350{height:1262.835000px;}
.h1_c00350{height:1263.000000px;}
.w3_c00350{width:27.000000px;}
.w2_c00350{width:867.465000px;}
.w0_c00350{width:892.935000px;}
.w1_c00350{width:893.250000px;}
.x0_c00350{left:0.000000px;}
.x1_c00350{left:12.735000px;}
.x3_c00350{left:95.392050px;}
.x5_c00350{left:149.400150px;}
.x4_c00350{left:432.855000px;}
.x2_c00350{left:878.050050px;}
@media print{
.v0_c00350{vertical-align:0.000000pt;}
.ls1_c00350{letter-spacing:-0.012800pt;}
.ls0_c00350{letter-spacing:0.000000pt;}
.ls2_c00350{letter-spacing:0.012800pt;}
.ws0_c00350{word-spacing:-16.000000pt;}
.ws1_c00350{word-spacing:0.000000pt;}
._6_c00350{width:1.657600pt;}
._0_c00350{width:3.180800pt;}
._3_c00350{width:4.505600pt;}
._2_c00350{width:5.664000pt;}
._5_c00350{width:6.681600pt;}
._4_c00350{width:7.577600pt;}
._7_c00350{width:8.505600pt;}
._a_c00350{width:11.897600pt;}
._b_c00350{width:13.030400pt;}
._c_c00350{width:16.960000pt;}
._9_c00350{width:20.838400pt;}
._1_c00350{width:22.496000pt;}
._8_c00350{width:23.590400pt;}
.fs1_c00350{font-size:57.600000pt;}
.fs0_c00350{font-size:64.000000pt;}
.y0_c00350{bottom:0.000000pt;}
.y5_c00350{bottom:4.480000pt;}
.y1_c00350{bottom:11.320000pt;}
.y3_c00350{bottom:40.360000pt;}
.y4_c00350{bottom:47.200000pt;}
.y21_c00350{bottom:98.599867pt;}
.y20_c00350{bottom:130.599867pt;}
.y1f_c00350{bottom:162.599867pt;}
.y1e_c00350{bottom:194.599867pt;}
.y1d_c00350{bottom:226.599867pt;}
.y1c_c00350{bottom:258.599867pt;}
.y1b_c00350{bottom:290.599867pt;}
.y1a_c00350{bottom:322.599867pt;}
.y19_c00350{bottom:354.599867pt;}
.y18_c00350{bottom:386.599867pt;}
.y17_c00350{bottom:418.599867pt;}
.y16_c00350{bottom:450.599867pt;}
.y15_c00350{bottom:482.599867pt;}
.y14_c00350{bottom:514.599867pt;}
.y13_c00350{bottom:546.599867pt;}
.y12_c00350{bottom:578.599867pt;}
.y11_c00350{bottom:610.599867pt;}
.y10_c00350{bottom:642.599867pt;}
.yf_c00350{bottom:674.599867pt;}
.ye_c00350{bottom:706.599867pt;}
.yd_c00350{bottom:738.599867pt;}
.yc_c00350{bottom:770.599867pt;}
.yb_c00350{bottom:802.599867pt;}
.ya_c00350{bottom:834.599867pt;}
.y9_c00350{bottom:866.599867pt;}
.y8_c00350{bottom:898.599867pt;}
.y7_c00350{bottom:930.599867pt;}
.y6_c00350{bottom:962.599867pt;}
.y2_c00350{bottom:1035.880000pt;}
.h4_c00350{height:18.560000pt;}
.h5_c00350{height:62.781250pt;}
.h3_c00350{height:62.812500pt;}
.h2_c00350{height:1099.880000pt;}
.h0_c00350{height:1122.520000pt;}
.h1_c00350{height:1122.666667pt;}
.w3_c00350{width:24.000000pt;}
.w2_c00350{width:771.080000pt;}
.w0_c00350{width:793.720000pt;}
.w1_c00350{width:794.000000pt;}
.x0_c00350{left:0.000000pt;}
.x1_c00350{left:11.320000pt;}
.x3_c00350{left:84.792933pt;}
.x5_c00350{left:132.800133pt;}
.x4_c00350{left:384.760000pt;}
.x2_c00350{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00351{font-family:ff1_c00351;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00351;src:url('chunks/assets/font_979796a0d5cf88c1c5eafcc9.woff2')format("woff");}.ff2_c00351{font-family:ff2_c00351;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00351;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00351{font-family:ff3_c00351;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00351;src:url('chunks/assets/font_b3523bee9ba113385968ed06.woff2')format("woff");}.ff4_c00351{font-family:ff4_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:ff5_c00351;src:url('chunks/assets/font_5cc2e3a20abe2345e3e3c03b.woff2')format("woff");}.ff5_c00351{font-family:ff5_c00351;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_c00351;src:url('chunks/assets/font_02ccec1407aa4664f69991a1.woff2')format("woff");}.ff6_c00351{font-family:ff6_c00351;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00351{vertical-align:-14.399400px;}
.v0_c00351{vertical-align:0.000000px;}
.v2_c00351{vertical-align:14.399400px;}
.ls8_c00351{letter-spacing:-0.014400px;}
.ls5_c00351{letter-spacing:0.000000px;}
.lsa_c00351{letter-spacing:0.014400px;}
.lsb_c00351{letter-spacing:0.036000px;}
.ls0_c00351{letter-spacing:0.059520px;}
.ls3_c00351{letter-spacing:0.100800px;}
.ls7_c00351{letter-spacing:3.333600px;}
.ls9_c00351{letter-spacing:4.557600px;}
.ls6_c00351{letter-spacing:8.452800px;}
.ls4_c00351{letter-spacing:12.816000px;}
.ls2_c00351{letter-spacing:18.864000px;}
.ls1_c00351{letter-spacing:18.914400px;}
.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:-18.000000px;}
.ws1_c00351{word-spacing:0.000000px;}
._1_c00351{margin-left:-8.596800px;}
._6_c00351{margin-left:-4.675800px;}
._3_c00351{margin-left:-3.465000px;}
._7_c00351{width:1.108800px;}
._2_c00351{width:3.333600px;}
._5_c00351{width:4.557600px;}
._c_c00351{width:5.796000px;}
._0_c00351{width:8.452800px;}
._8_c00351{width:10.944000px;}
._9_c00351{width:12.902400px;}
._b_c00351{width:14.400000px;}
._4_c00351{width:19.785600px;}
._a_c00351{width:20.844000px;}
._d_c00351{width:29.361600px;}
.fc1_c00351{color:transparent;}
.fc0_c00351{color:rgb(0,0,0);}
.fs2_c00351{font-size:41.760000px;}
.fs3_c00351{font-size:53.280000px;}
.fs0_c00351{font-size:64.800000px;}
.fs1_c00351{font-size:72.000000px;}
.y0_c00351{bottom:0.000000px;}
.y5_c00351{bottom:1.440000px;}
.y1_c00351{bottom:12.735000px;}
.y3_c00351{bottom:45.405000px;}
.y4_c00351{bottom:56.700000px;}
.y21_c00351{bottom:110.925000px;}
.y20_c00351{bottom:146.925000px;}
.y1f_c00351{bottom:181.485000px;}
.y1e_c00351{bottom:218.925000px;}
.y1d_c00351{bottom:254.925000px;}
.y1c_c00351{bottom:290.925000px;}
.y1b_c00351{bottom:326.925000px;}
.y1a_c00351{bottom:362.925000px;}
.y19_c00351{bottom:398.924850px;}
.y18_c00351{bottom:434.924850px;}
.y17_c00351{bottom:470.924850px;}
.y16_c00351{bottom:506.924850px;}
.y15_c00351{bottom:542.924850px;}
.y14_c00351{bottom:578.924850px;}
.y13_c00351{bottom:614.924850px;}
.y12_c00351{bottom:650.924850px;}
.y11_c00351{bottom:686.924850px;}
.y10_c00351{bottom:722.924850px;}
.yf_c00351{bottom:758.924850px;}
.ye_c00351{bottom:794.924850px;}
.yd_c00351{bottom:830.924850px;}
.yc_c00351{bottom:866.924850px;}
.yb_c00351{bottom:902.924850px;}
.ya_c00351{bottom:938.924850px;}
.y9_c00351{bottom:974.924850px;}
.y8_c00351{bottom:1010.924850px;}
.y7_c00351{bottom:1046.924850px;}
.y6_c00351{bottom:1082.924850px;}
.y2_c00351{bottom:1165.365000px;}
.h5_c00351{height:17.280000px;}
.h3_c00351{height:43.189453px;}
.h9_c00351{height:52.291406px;}
.h4_c00351{height:70.664062px;}
.h7_c00351{height:70.664662px;}
.h8_c00351{height:71.824219px;}
.h6_c00351{height:74.953125px;}
.h2_c00351{height:1237.365000px;}
.h0_c00351{height:1262.835000px;}
.h1_c00351{height:1263.000000px;}
.w3_c00351{width:47.520000px;}
.w2_c00351{width:867.465000px;}
.w0_c00351{width:892.935000px;}
.w1_c00351{width:893.250000px;}
.x0_c00351{left:0.000000px;}
.x5_c00351{left:10.237500px;}
.x1_c00351{left:12.735000px;}
.x3_c00351{left:95.400150px;}
.x6_c00351{left:149.400150px;}
.x4_c00351{left:422.775000px;}
.x2_c00351{left:878.050050px;}
@media print{
.v1_c00351{vertical-align:-12.799467pt;}
.v0_c00351{vertical-align:0.000000pt;}
.v2_c00351{vertical-align:12.799467pt;}
.ls8_c00351{letter-spacing:-0.012800pt;}
.ls5_c00351{letter-spacing:0.000000pt;}
.lsa_c00351{letter-spacing:0.012800pt;}
.lsb_c00351{letter-spacing:0.032000pt;}
.ls0_c00351{letter-spacing:0.052907pt;}
.ls3_c00351{letter-spacing:0.089600pt;}
.ls7_c00351{letter-spacing:2.963200pt;}
.ls9_c00351{letter-spacing:4.051200pt;}
.ls6_c00351{letter-spacing:7.513600pt;}
.ls4_c00351{letter-spacing:11.392000pt;}
.ls2_c00351{letter-spacing:16.768000pt;}
.ls1_c00351{letter-spacing:16.812800pt;}
.ws0_c00351{word-spacing:-16.000000pt;}
.ws1_c00351{word-spacing:0.000000pt;}
._1_c00351{margin-left:-7.641600pt;}
._6_c00351{margin-left:-4.156267pt;}
._3_c00351{margin-left:-3.080000pt;}
._7_c00351{width:0.985600pt;}
._2_c00351{width:2.963200pt;}
._5_c00351{width:4.051200pt;}
._c_c00351{width:5.152000pt;}
._0_c00351{width:7.513600pt;}
._8_c00351{width:9.728000pt;}
._9_c00351{width:11.468800pt;}
._b_c00351{width:12.800000pt;}
._4_c00351{width:17.587200pt;}
._a_c00351{width:18.528000pt;}
._d_c00351{width:26.099200pt;}
.fs2_c00351{font-size:37.120000pt;}
.fs3_c00351{font-size:47.360000pt;}
.fs0_c00351{font-size:57.600000pt;}
.fs1_c00351{font-size:64.000000pt;}
.y0_c00351{bottom:0.000000pt;}
.y5_c00351{bottom:1.280000pt;}
.y1_c00351{bottom:11.320000pt;}
.y3_c00351{bottom:40.360000pt;}
.y4_c00351{bottom:50.400000pt;}
.y21_c00351{bottom:98.600000pt;}
.y20_c00351{bottom:130.600000pt;}
.y1f_c00351{bottom:161.320000pt;}
.y1e_c00351{bottom:194.600000pt;}
.y1d_c00351{bottom:226.600000pt;}
.y1c_c00351{bottom:258.600000pt;}
.y1b_c00351{bottom:290.600000pt;}
.y1a_c00351{bottom:322.600000pt;}
.y19_c00351{bottom:354.599867pt;}
.y18_c00351{bottom:386.599867pt;}
.y17_c00351{bottom:418.599867pt;}
.y16_c00351{bottom:450.599867pt;}
.y15_c00351{bottom:482.599867pt;}
.y14_c00351{bottom:514.599867pt;}
.y13_c00351{bottom:546.599867pt;}
.y12_c00351{bottom:578.599867pt;}
.y11_c00351{bottom:610.599867pt;}
.y10_c00351{bottom:642.599867pt;}
.yf_c00351{bottom:674.599867pt;}
.ye_c00351{bottom:706.599867pt;}
.yd_c00351{bottom:738.599867pt;}
.yc_c00351{bottom:770.599867pt;}
.yb_c00351{bottom:802.599867pt;}
.ya_c00351{bottom:834.599867pt;}
.y9_c00351{bottom:866.599867pt;}
.y8_c00351{bottom:898.599867pt;}
.y7_c00351{bottom:930.599867pt;}
.y6_c00351{bottom:962.599867pt;}
.y2_c00351{bottom:1035.880000pt;}
.h5_c00351{height:15.360000pt;}
.h3_c00351{height:38.390625pt;}
.h9_c00351{height:46.481250pt;}
.h4_c00351{height:62.812500pt;}
.h7_c00351{height:62.813033pt;}
.h8_c00351{height:63.843750pt;}
.h6_c00351{height:66.625000pt;}
.h2_c00351{height:1099.880000pt;}
.h0_c00351{height:1122.520000pt;}
.h1_c00351{height:1122.666667pt;}
.w3_c00351{width:42.240000pt;}
.w2_c00351{width:771.080000pt;}
.w0_c00351{width:793.720000pt;}
.w1_c00351{width:794.000000pt;}
.x0_c00351{left:0.000000pt;}
.x5_c00351{left:9.100000pt;}
.x1_c00351{left:11.320000pt;}
.x3_c00351{left:84.800133pt;}
.x6_c00351{left:132.800133pt;}
.x4_c00351{left:375.800000pt;}
.x2_c00351{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_df7bd3652947de6a23d31987.woff2')format("woff");}.ff1_c00352{font-family:ff1_c00352;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00352;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00352{font-family:ff2_c00352;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00352;src:url('chunks/assets/font_58b3a0db6bb63f8717e09fcc.woff2')format("woff");}.ff3_c00352{font-family:ff3_c00352;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00352;src:url('chunks/assets/font_f9856e651e61c5c80703ca4a.woff2')format("woff");}.ff4_c00352{font-family:ff4_c00352;line-height:0.891602;font-style:normal;font-weight:normal;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_32e884097bbd1ea4267bf097.woff2')format("woff");}.ff5_c00352{font-family:ff5_c00352;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00352;src:url('chunks/assets/font_a5d6879ca7a056fabdc08bd5.woff2')format("woff");}.ff6_c00352{font-family:ff6_c00352;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00352;src:url('chunks/assets/font_7a019a5c312a606ef1822b95.woff2')format("woff");}.ff7_c00352{font-family:ff7_c00352;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;}
.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);}
.v1_c00352{vertical-align:-14.399400px;}
.v0_c00352{vertical-align:0.000000px;}
.v2_c00352{vertical-align:30.240600px;}
.ls10_c00352{letter-spacing:-0.014400px;}
.lse_c00352{letter-spacing:0.000000px;}
.ls6_c00352{letter-spacing:0.003600px;}
.lsa_c00352{letter-spacing:0.012000px;}
.ls11_c00352{letter-spacing:0.014400px;}
.ls3_c00352{letter-spacing:0.022200px;}
.lsc_c00352{letter-spacing:0.031200px;}
.lsd_c00352{letter-spacing:0.038400px;}
.ls0_c00352{letter-spacing:0.060000px;}
.ls1_c00352{letter-spacing:0.088800px;}
.lsf_c00352{letter-spacing:0.100224px;}
.ls2_c00352{letter-spacing:0.100560px;}
.ls7_c00352{letter-spacing:0.119400px;}
.ls4_c00352{letter-spacing:0.120000px;}
.ls5_c00352{letter-spacing:3.744000px;}
.lsb_c00352{letter-spacing:6.048000px;}
.ls9_c00352{letter-spacing:14.169600px;}
.ls8_c00352{letter-spacing:14.184000px;}
.sc__c00352{text-shadow:none;}
.sc0_c00352{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00352{-webkit-text-stroke:0px transparent;}
.sc0_c00352{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00352{word-spacing:-18.000000px;}
.ws1_c00352{word-spacing:-10.540224px;}
.ws2_c00352{word-spacing:-0.072000px;}
.ws3_c00352{word-spacing:0.000000px;}
._9_c00352{width:2.030400px;}
._2_c00352{width:3.153600px;}
._4_c00352{width:4.305600px;}
._6_c00352{width:6.076800px;}
._0_c00352{width:8.784000px;}
._5_c00352{width:13.291200px;}
._1_c00352{width:14.594400px;}
._3_c00352{width:16.416000px;}
._7_c00352{width:25.754400px;}
._8_c00352{width:29.160000px;}
.fc1_c00352{color:transparent;}
.fc0_c00352{color:rgb(0,0,0);}
.fs2_c00352{font-size:41.760000px;}
.fs3_c00352{font-size:53.280000px;}
.fs1_c00352{font-size:64.800000px;}
.fs0_c00352{font-size:72.000000px;}
.y0_c00352{bottom:0.000000px;}
.y5_c00352{bottom:5.040000px;}
.y1_c00352{bottom:12.735000px;}
.y3_c00352{bottom:45.405000px;}
.y4_c00352{bottom:53.100000px;}
.y20_c00352{bottom:146.925000px;}
.y1f_c00352{bottom:182.925000px;}
.y1e_c00352{bottom:218.925000px;}
.y1d_c00352{bottom:254.925000px;}
.y1c_c00352{bottom:290.925000px;}
.y1b_c00352{bottom:326.925000px;}
.y1a_c00352{bottom:362.925000px;}
.y19_c00352{bottom:398.925000px;}
.y18_c00352{bottom:434.925000px;}
.y17_c00352{bottom:470.925000px;}
.y16_c00352{bottom:506.925000px;}
.y15_c00352{bottom:542.925000px;}
.y14_c00352{bottom:578.925000px;}
.y13_c00352{bottom:613.485000px;}
.y12_c00352{bottom:650.925000px;}
.y11_c00352{bottom:686.925000px;}
.y10_c00352{bottom:722.924850px;}
.yf_c00352{bottom:758.924850px;}
.ye_c00352{bottom:794.924850px;}
.yd_c00352{bottom:830.924850px;}
.yc_c00352{bottom:866.924850px;}
.yb_c00352{bottom:902.924850px;}
.ya_c00352{bottom:938.924850px;}
.y9_c00352{bottom:974.924850px;}
.y8_c00352{bottom:1010.924850px;}
.y7_c00352{bottom:1046.924850px;}
.y6_c00352{bottom:1082.924850px;}
.y2_c00352{bottom:1165.365000px;}
.h4_c00352{height:20.880000px;}
.h6_c00352{height:52.291406px;}
.h3_c00352{height:70.664062px;}
.h7_c00352{height:71.204766px;}
.h5_c00352{height:71.205366px;}
.h8_c00352{height:74.953125px;}
.h2_c00352{height:1237.365000px;}
.h0_c00352{height:1262.835000px;}
.h1_c00352{height:1263.000000px;}
.w3_c00352{width:27.000000px;}
.w2_c00352{width:867.465000px;}
.w0_c00352{width:892.935000px;}
.w1_c00352{width:893.250000px;}
.x0_c00352{left:0.000000px;}
.x1_c00352{left:12.735000px;}
.x3_c00352{left:95.392050px;}
.x5_c00352{left:149.400150px;}
.x4_c00352{left:432.855000px;}
.x2_c00352{left:878.050050px;}
@media print{
.v1_c00352{vertical-align:-12.799467pt;}
.v0_c00352{vertical-align:0.000000pt;}
.v2_c00352{vertical-align:26.880533pt;}
.ls10_c00352{letter-spacing:-0.012800pt;}
.lse_c00352{letter-spacing:0.000000pt;}
.ls6_c00352{letter-spacing:0.003200pt;}
.lsa_c00352{letter-spacing:0.010667pt;}
.ls11_c00352{letter-spacing:0.012800pt;}
.ls3_c00352{letter-spacing:0.019733pt;}
.lsc_c00352{letter-spacing:0.027733pt;}
.lsd_c00352{letter-spacing:0.034133pt;}
.ls0_c00352{letter-spacing:0.053333pt;}
.ls1_c00352{letter-spacing:0.078933pt;}
.lsf_c00352{letter-spacing:0.089088pt;}
.ls2_c00352{letter-spacing:0.089387pt;}
.ls7_c00352{letter-spacing:0.106133pt;}
.ls4_c00352{letter-spacing:0.106667pt;}
.ls5_c00352{letter-spacing:3.328000pt;}
.lsb_c00352{letter-spacing:5.376000pt;}
.ls9_c00352{letter-spacing:12.595200pt;}
.ls8_c00352{letter-spacing:12.608000pt;}
.ws0_c00352{word-spacing:-16.000000pt;}
.ws1_c00352{word-spacing:-9.369088pt;}
.ws2_c00352{word-spacing:-0.064000pt;}
.ws3_c00352{word-spacing:0.000000pt;}
._9_c00352{width:1.804800pt;}
._2_c00352{width:2.803200pt;}
._4_c00352{width:3.827200pt;}
._6_c00352{width:5.401600pt;}
._0_c00352{width:7.808000pt;}
._5_c00352{width:11.814400pt;}
._1_c00352{width:12.972800pt;}
._3_c00352{width:14.592000pt;}
._7_c00352{width:22.892800pt;}
._8_c00352{width:25.920000pt;}
.fs2_c00352{font-size:37.120000pt;}
.fs3_c00352{font-size:47.360000pt;}
.fs1_c00352{font-size:57.600000pt;}
.fs0_c00352{font-size:64.000000pt;}
.y0_c00352{bottom:0.000000pt;}
.y5_c00352{bottom:4.480000pt;}
.y1_c00352{bottom:11.320000pt;}
.y3_c00352{bottom:40.360000pt;}
.y4_c00352{bottom:47.200000pt;}
.y20_c00352{bottom:130.600000pt;}
.y1f_c00352{bottom:162.600000pt;}
.y1e_c00352{bottom:194.600000pt;}
.y1d_c00352{bottom:226.600000pt;}
.y1c_c00352{bottom:258.600000pt;}
.y1b_c00352{bottom:290.600000pt;}
.y1a_c00352{bottom:322.600000pt;}
.y19_c00352{bottom:354.600000pt;}
.y18_c00352{bottom:386.600000pt;}
.y17_c00352{bottom:418.600000pt;}
.y16_c00352{bottom:450.600000pt;}
.y15_c00352{bottom:482.600000pt;}
.y14_c00352{bottom:514.600000pt;}
.y13_c00352{bottom:545.320000pt;}
.y12_c00352{bottom:578.600000pt;}
.y11_c00352{bottom:610.600000pt;}
.y10_c00352{bottom:642.599867pt;}
.yf_c00352{bottom:674.599867pt;}
.ye_c00352{bottom:706.599867pt;}
.yd_c00352{bottom:738.599867pt;}
.yc_c00352{bottom:770.599867pt;}
.yb_c00352{bottom:802.599867pt;}
.ya_c00352{bottom:834.599867pt;}
.y9_c00352{bottom:866.599867pt;}
.y8_c00352{bottom:898.599867pt;}
.y7_c00352{bottom:930.599867pt;}
.y6_c00352{bottom:962.599867pt;}
.y2_c00352{bottom:1035.880000pt;}
.h4_c00352{height:18.560000pt;}
.h6_c00352{height:46.481250pt;}
.h3_c00352{height:62.812500pt;}
.h7_c00352{height:63.293125pt;}
.h5_c00352{height:63.293658pt;}
.h8_c00352{height:66.625000pt;}
.h2_c00352{height:1099.880000pt;}
.h0_c00352{height:1122.520000pt;}
.h1_c00352{height:1122.666667pt;}
.w3_c00352{width:24.000000pt;}
.w2_c00352{width:771.080000pt;}
.w0_c00352{width:793.720000pt;}
.w1_c00352{width:794.000000pt;}
.x0_c00352{left:0.000000pt;}
.x1_c00352{left:11.320000pt;}
.x3_c00352{left:84.792933pt;}
.x5_c00352{left:132.800133pt;}
.x4_c00352{left:384.760000pt;}
.x2_c00352{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00353{font-family:ff1_c00353;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00353;src:url('chunks/assets/font_90edd8aa2f68126b435511a9.woff2')format("woff");}.ff2_c00353{font-family:ff2_c00353;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00353;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00353{font-family:ff3_c00353;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00353;src:url('chunks/assets/font_5807b5fe51cee1aa583bef0f.woff2')format("woff");}.ff4_c00353{font-family:ff4_c00353;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_c00353;src:url('chunks/assets/font_58b6a499887c3030808f35d0.woff2')format("woff");}.ff5_c00353{font-family:ff5_c00353;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00353;src:url('chunks/assets/font_5e4d392afc4d521a6e35ae44.woff2')format("woff");}.ff6_c00353{font-family:ff6_c00353;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_c00353;src:url('chunks/assets/font_9c6b045b4e87af1b67ee1eb1.woff2')format("woff");}.ff7_c00353{font-family:ff7_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:ff8_c00353;src:url('chunks/assets/font_e45806daaa5dbbdd811ed753.woff2')format("woff");}.ff8_c00353{font-family:ff8_c00353;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00353;src:url('chunks/assets/font_d5504477283cf1cd21c789c7.woff2')format("woff");}.ff9_c00353{font-family:ff9_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;}
.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);}
.v1_c00353{vertical-align:-14.400000px;}
.v0_c00353{vertical-align:0.000000px;}
.ls5_c00353{letter-spacing:-0.014400px;}
.ls4_c00353{letter-spacing:0.000000px;}
.ls2_c00353{letter-spacing:0.059520px;}
.ls0_c00353{letter-spacing:12.960000px;}
.ls1_c00353{letter-spacing:32.040000px;}
.ls3_c00353{letter-spacing:44.784000px;}
.sc__c00353{text-shadow:none;}
.sc0_c00353{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00353{-webkit-text-stroke:0px transparent;}
.sc0_c00353{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00353{word-spacing:-18.000000px;}
.ws1_c00353{word-spacing:0.000000px;}
._0_c00353{width:1.634400px;}
._3_c00353{width:7.106400px;}
._1_c00353{width:9.914400px;}
._2_c00353{width:12.924000px;}
._4_c00353{width:16.552800px;}
.fc1_c00353{color:transparent;}
.fc0_c00353{color:rgb(0,0,0);}
.fs3_c00353{font-size:41.760000px;}
.fs2_c00353{font-size:53.280000px;}
.fs0_c00353{font-size:64.800000px;}
.fs1_c00353{font-size:72.000000px;}
.y0_c00353{bottom:0.000000px;}
.y5_c00353{bottom:1.440000px;}
.y1_c00353{bottom:12.735000px;}
.y3_c00353{bottom:45.405000px;}
.y4_c00353{bottom:56.700000px;}
.y21_c00353{bottom:110.925000px;}
.y20_c00353{bottom:146.925000px;}
.y1f_c00353{bottom:182.925000px;}
.y1e_c00353{bottom:218.925000px;}
.y1d_c00353{bottom:254.925000px;}
.y1c_c00353{bottom:290.925000px;}
.y1b_c00353{bottom:326.925000px;}
.y1a_c00353{bottom:362.925000px;}
.y19_c00353{bottom:398.925000px;}
.y18_c00353{bottom:434.925000px;}
.y17_c00353{bottom:470.925000px;}
.y16_c00353{bottom:506.925000px;}
.y15_c00353{bottom:542.925000px;}
.y14_c00353{bottom:578.925000px;}
.y13_c00353{bottom:614.925000px;}
.y12_c00353{bottom:650.925000px;}
.y11_c00353{bottom:686.925000px;}
.y10_c00353{bottom:721.845000px;}
.yf_c00353{bottom:758.924850px;}
.ye_c00353{bottom:794.924850px;}
.yd_c00353{bottom:830.924850px;}
.yc_c00353{bottom:866.924850px;}
.yb_c00353{bottom:902.924850px;}
.ya_c00353{bottom:938.924850px;}
.y9_c00353{bottom:974.924850px;}
.y8_c00353{bottom:1010.924850px;}
.y7_c00353{bottom:1046.924850px;}
.y6_c00353{bottom:1082.924850px;}
.y2_c00353{bottom:1165.365000px;}
.h5_c00353{height:17.280000px;}
.h8_c00353{height:35.511328px;}
.h3_c00353{height:43.189453px;}
.h9_c00353{height:70.628906px;}
.h4_c00353{height:70.664062px;}
.h7_c00353{height:74.004654px;}
.h6_c00353{height:74.953125px;}
.h2_c00353{height:1237.365000px;}
.h0_c00353{height:1262.835000px;}
.h1_c00353{height:1263.000000px;}
.w3_c00353{width:47.520000px;}
.w2_c00353{width:867.465000px;}
.w0_c00353{width:892.935000px;}
.w1_c00353{width:893.250000px;}
.x0_c00353{left:0.000000px;}
.x5_c00353{left:10.237500px;}
.x1_c00353{left:12.735000px;}
.x3_c00353{left:95.400150px;}
.x6_c00353{left:149.400150px;}
.x7_c00353{left:159.642150px;}
.x8_c00353{left:180.918150px;}
.x9_c00353{left:198.076950px;}
.x4_c00353{left:422.775000px;}
.x2_c00353{left:878.050050px;}
@media print{
.v1_c00353{vertical-align:-12.800000pt;}
.v0_c00353{vertical-align:0.000000pt;}
.ls5_c00353{letter-spacing:-0.012800pt;}
.ls4_c00353{letter-spacing:0.000000pt;}
.ls2_c00353{letter-spacing:0.052907pt;}
.ls0_c00353{letter-spacing:11.520000pt;}
.ls1_c00353{letter-spacing:28.480000pt;}
.ls3_c00353{letter-spacing:39.808000pt;}
.ws0_c00353{word-spacing:-16.000000pt;}
.ws1_c00353{word-spacing:0.000000pt;}
._0_c00353{width:1.452800pt;}
._3_c00353{width:6.316800pt;}
._1_c00353{width:8.812800pt;}
._2_c00353{width:11.488000pt;}
._4_c00353{width:14.713600pt;}
.fs3_c00353{font-size:37.120000pt;}
.fs2_c00353{font-size:47.360000pt;}
.fs0_c00353{font-size:57.600000pt;}
.fs1_c00353{font-size:64.000000pt;}
.y0_c00353{bottom:0.000000pt;}
.y5_c00353{bottom:1.280000pt;}
.y1_c00353{bottom:11.320000pt;}
.y3_c00353{bottom:40.360000pt;}
.y4_c00353{bottom:50.400000pt;}
.y21_c00353{bottom:98.600000pt;}
.y20_c00353{bottom:130.600000pt;}
.y1f_c00353{bottom:162.600000pt;}
.y1e_c00353{bottom:194.600000pt;}
.y1d_c00353{bottom:226.600000pt;}
.y1c_c00353{bottom:258.600000pt;}
.y1b_c00353{bottom:290.600000pt;}
.y1a_c00353{bottom:322.600000pt;}
.y19_c00353{bottom:354.600000pt;}
.y18_c00353{bottom:386.600000pt;}
.y17_c00353{bottom:418.600000pt;}
.y16_c00353{bottom:450.600000pt;}
.y15_c00353{bottom:482.600000pt;}
.y14_c00353{bottom:514.600000pt;}
.y13_c00353{bottom:546.600000pt;}
.y12_c00353{bottom:578.600000pt;}
.y11_c00353{bottom:610.600000pt;}
.y10_c00353{bottom:641.640000pt;}
.yf_c00353{bottom:674.599867pt;}
.ye_c00353{bottom:706.599867pt;}
.yd_c00353{bottom:738.599867pt;}
.yc_c00353{bottom:770.599867pt;}
.yb_c00353{bottom:802.599867pt;}
.ya_c00353{bottom:834.599867pt;}
.y9_c00353{bottom:866.599867pt;}
.y8_c00353{bottom:898.599867pt;}
.y7_c00353{bottom:930.599867pt;}
.y6_c00353{bottom:962.599867pt;}
.y2_c00353{bottom:1035.880000pt;}
.h5_c00353{height:15.360000pt;}
.h8_c00353{height:31.565625pt;}
.h3_c00353{height:38.390625pt;}
.h9_c00353{height:62.781250pt;}
.h4_c00353{height:62.812500pt;}
.h7_c00353{height:65.781915pt;}
.h6_c00353{height:66.625000pt;}
.h2_c00353{height:1099.880000pt;}
.h0_c00353{height:1122.520000pt;}
.h1_c00353{height:1122.666667pt;}
.w3_c00353{width:42.240000pt;}
.w2_c00353{width:771.080000pt;}
.w0_c00353{width:793.720000pt;}
.w1_c00353{width:794.000000pt;}
.x0_c00353{left:0.000000pt;}
.x5_c00353{left:9.100000pt;}
.x1_c00353{left:11.320000pt;}
.x3_c00353{left:84.800133pt;}
.x6_c00353{left:132.800133pt;}
.x7_c00353{left:141.904133pt;}
.x8_c00353{left:160.816133pt;}
.x9_c00353{left:176.068400pt;}
.x4_c00353{left:375.800000pt;}
.x2_c00353{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8ad8a9c1b941a04fb177795.woff2')format("woff");}.ff1_c00354{font-family:ff1_c00354;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00354;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00354{font-family:ff2_c00354;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00354;src:url('chunks/assets/font_1388f9802e60b8b084b5298c.woff2')format("woff");}.ff3_c00354{font-family:ff3_c00354;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00354;src:url('chunks/assets/font_bfc5c6a83da2e95d017ab649.woff2')format("woff");}.ff4_c00354{font-family:ff4_c00354;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00354;src:url('chunks/assets/font_fd9a46a44f098d52895c5310.woff2')format("woff");}.ff5_c00354{font-family:ff5_c00354;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00354;src:url('chunks/assets/font_58b6a499887c3030808f35d0.woff2')format("woff");}.ff6_c00354{font-family:ff6_c00354;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00354;src:url('chunks/assets/font_6e69742354a2d9933ee3ced3.woff2')format("woff");}.ff7_c00354{font-family:ff7_c00354;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00354;src:url('chunks/assets/font_f66e465482bf5c53dcf3cb04.woff2')format("woff");}.ff8_c00354{font-family:ff8_c00354;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;}
.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);}
.v1_c00354{vertical-align:-14.399400px;}
.v0_c00354{vertical-align:0.000000px;}
.ls3_c00354{letter-spacing:0.000000px;}
.ls2_c00354{letter-spacing:0.059520px;}
.ls1_c00354{letter-spacing:32.040000px;}
.ls0_c00354{letter-spacing:44.784000px;}
.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:-18.000000px;}
.ws1_c00354{word-spacing:0.000000px;}
._0_c00354{width:4.226400px;}
._1_c00354{width:5.436000px;}
._2_c00354{width:6.480000px;}
._3_c00354{width:30.916800px;}
.fc1_c00354{color:transparent;}
.fc0_c00354{color:rgb(0,0,0);}
.fs2_c00354{font-size:41.760000px;}
.fs1_c00354{font-size:64.800000px;}
.fs0_c00354{font-size:72.000000px;}
.y0_c00354{bottom:0.000000px;}
.y5_c00354{bottom:5.040000px;}
.y1_c00354{bottom:12.735000px;}
.y3_c00354{bottom:45.405000px;}
.y4_c00354{bottom:53.100000px;}
.y21_c00354{bottom:110.925000px;}
.y20_c00354{bottom:146.925000px;}
.y1f_c00354{bottom:182.925000px;}
.y1e_c00354{bottom:218.925000px;}
.y1d_c00354{bottom:254.925000px;}
.y1c_c00354{bottom:290.925000px;}
.y1b_c00354{bottom:326.925000px;}
.y1a_c00354{bottom:362.925000px;}
.y19_c00354{bottom:398.925000px;}
.y18_c00354{bottom:434.924850px;}
.y17_c00354{bottom:470.924850px;}
.y16_c00354{bottom:506.924850px;}
.y15_c00354{bottom:542.924850px;}
.y14_c00354{bottom:578.924850px;}
.y13_c00354{bottom:614.924850px;}
.y12_c00354{bottom:650.924850px;}
.y11_c00354{bottom:686.924850px;}
.y10_c00354{bottom:722.924850px;}
.yf_c00354{bottom:758.924850px;}
.ye_c00354{bottom:794.924850px;}
.yd_c00354{bottom:830.924850px;}
.yc_c00354{bottom:866.924850px;}
.yb_c00354{bottom:902.924850px;}
.ya_c00354{bottom:938.924850px;}
.y9_c00354{bottom:974.924850px;}
.y8_c00354{bottom:1010.924850px;}
.y7_c00354{bottom:1046.924850px;}
.y6_c00354{bottom:1082.924850px;}
.y2_c00354{bottom:1165.365000px;}
.h4_c00354{height:20.880000px;}
.h6_c00354{height:70.628906px;}
.h8_c00354{height:70.629506px;}
.h3_c00354{height:70.664062px;}
.h5_c00354{height:74.004654px;}
.h7_c00354{height:74.953125px;}
.h2_c00354{height:1237.365000px;}
.h0_c00354{height:1262.835000px;}
.h1_c00354{height:1263.000000px;}
.w3_c00354{width:27.000000px;}
.w2_c00354{width:867.465000px;}
.w0_c00354{width:892.935000px;}
.w1_c00354{width:893.250000px;}
.x0_c00354{left:0.000000px;}
.x1_c00354{left:12.735000px;}
.x3_c00354{left:95.392050px;}
.x7_c00354{left:149.399850px;}
.x6_c00354{left:159.609150px;}
.x5_c00354{left:198.075150px;}
.x4_c00354{left:432.855000px;}
.x2_c00354{left:878.050050px;}
@media print{
.v1_c00354{vertical-align:-12.799467pt;}
.v0_c00354{vertical-align:0.000000pt;}
.ls3_c00354{letter-spacing:0.000000pt;}
.ls2_c00354{letter-spacing:0.052907pt;}
.ls1_c00354{letter-spacing:28.480000pt;}
.ls0_c00354{letter-spacing:39.808000pt;}
.ws0_c00354{word-spacing:-16.000000pt;}
.ws1_c00354{word-spacing:0.000000pt;}
._0_c00354{width:3.756800pt;}
._1_c00354{width:4.832000pt;}
._2_c00354{width:5.760000pt;}
._3_c00354{width:27.481600pt;}
.fs2_c00354{font-size:37.120000pt;}
.fs1_c00354{font-size:57.600000pt;}
.fs0_c00354{font-size:64.000000pt;}
.y0_c00354{bottom:0.000000pt;}
.y5_c00354{bottom:4.480000pt;}
.y1_c00354{bottom:11.320000pt;}
.y3_c00354{bottom:40.360000pt;}
.y4_c00354{bottom:47.200000pt;}
.y21_c00354{bottom:98.600000pt;}
.y20_c00354{bottom:130.600000pt;}
.y1f_c00354{bottom:162.600000pt;}
.y1e_c00354{bottom:194.600000pt;}
.y1d_c00354{bottom:226.600000pt;}
.y1c_c00354{bottom:258.600000pt;}
.y1b_c00354{bottom:290.600000pt;}
.y1a_c00354{bottom:322.600000pt;}
.y19_c00354{bottom:354.600000pt;}
.y18_c00354{bottom:386.599867pt;}
.y17_c00354{bottom:418.599867pt;}
.y16_c00354{bottom:450.599867pt;}
.y15_c00354{bottom:482.599867pt;}
.y14_c00354{bottom:514.599867pt;}
.y13_c00354{bottom:546.599867pt;}
.y12_c00354{bottom:578.599867pt;}
.y11_c00354{bottom:610.599867pt;}
.y10_c00354{bottom:642.599867pt;}
.yf_c00354{bottom:674.599867pt;}
.ye_c00354{bottom:706.599867pt;}
.yd_c00354{bottom:738.599867pt;}
.yc_c00354{bottom:770.599867pt;}
.yb_c00354{bottom:802.599867pt;}
.ya_c00354{bottom:834.599867pt;}
.y9_c00354{bottom:866.599867pt;}
.y8_c00354{bottom:898.599867pt;}
.y7_c00354{bottom:930.599867pt;}
.y6_c00354{bottom:962.599867pt;}
.y2_c00354{bottom:1035.880000pt;}
.h4_c00354{height:18.560000pt;}
.h6_c00354{height:62.781250pt;}
.h8_c00354{height:62.781783pt;}
.h3_c00354{height:62.812500pt;}
.h5_c00354{height:65.781915pt;}
.h7_c00354{height:66.625000pt;}
.h2_c00354{height:1099.880000pt;}
.h0_c00354{height:1122.520000pt;}
.h1_c00354{height:1122.666667pt;}
.w3_c00354{width:24.000000pt;}
.w2_c00354{width:771.080000pt;}
.w0_c00354{width:793.720000pt;}
.w1_c00354{width:794.000000pt;}
.x0_c00354{left:0.000000pt;}
.x1_c00354{left:11.320000pt;}
.x3_c00354{left:84.792933pt;}
.x7_c00354{left:132.799867pt;}
.x6_c00354{left:141.874800pt;}
.x5_c00354{left:176.066800pt;}
.x4_c00354{left:384.760000pt;}
.x2_c00354{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00355{font-family:ff1_c00355;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00355;src:url('chunks/assets/font_4dca71a4e0c92c5ac8de40f7.woff2')format("woff");}.ff2_c00355{font-family:ff2_c00355;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00355;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00355{font-family:ff3_c00355;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00355;src:url('chunks/assets/font_98dffa4fd8744ffebe4e2b24.woff2')format("woff");}.ff4_c00355{font-family:ff4_c00355;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00355{letter-spacing:0.000000px;}
.sc__c00355{text-shadow:none;}
.sc0_c00355{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00355{-webkit-text-stroke:0px transparent;}
.sc0_c00355{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00355{word-spacing:-18.000000px;}
.ws1_c00355{word-spacing:0.000000px;}
._1_c00355{width:1.584000px;}
._0_c00355{width:3.362400px;}
._7_c00355{width:4.464000px;}
._6_c00355{width:6.048000px;}
._3_c00355{width:7.286400px;}
._5_c00355{width:8.992800px;}
._2_c00355{width:10.202400px;}
._4_c00355{width:11.628000px;}
.fc1_c00355{color:transparent;}
.fc0_c00355{color:rgb(0,0,0);}
.fs2_c00355{font-size:53.280000px;}
.fs0_c00355{font-size:64.800000px;}
.fs1_c00355{font-size:72.000000px;}
.y0_c00355{bottom:0.000000px;}
.y5_c00355{bottom:1.440000px;}
.y1_c00355{bottom:12.735000px;}
.y3_c00355{bottom:45.405000px;}
.y4_c00355{bottom:56.700000px;}
.y21_c00355{bottom:110.925000px;}
.y20_c00355{bottom:146.925000px;}
.y1f_c00355{bottom:182.925000px;}
.y1e_c00355{bottom:218.925000px;}
.y1d_c00355{bottom:254.925000px;}
.y1c_c00355{bottom:290.925000px;}
.y1b_c00355{bottom:326.925000px;}
.y1a_c00355{bottom:362.925000px;}
.y19_c00355{bottom:398.925000px;}
.y18_c00355{bottom:434.925000px;}
.y17_c00355{bottom:470.925000px;}
.y16_c00355{bottom:506.925000px;}
.y15_c00355{bottom:542.925000px;}
.y14_c00355{bottom:578.925000px;}
.y13_c00355{bottom:613.482480px;}
.y12_c00355{bottom:650.924850px;}
.y11_c00355{bottom:686.924850px;}
.y10_c00355{bottom:722.924850px;}
.yf_c00355{bottom:758.924850px;}
.ye_c00355{bottom:794.924850px;}
.yd_c00355{bottom:830.924850px;}
.yc_c00355{bottom:866.924850px;}
.yb_c00355{bottom:902.924850px;}
.ya_c00355{bottom:938.924850px;}
.y9_c00355{bottom:974.924850px;}
.y8_c00355{bottom:1010.924850px;}
.y7_c00355{bottom:1046.924850px;}
.y6_c00355{bottom:1082.924850px;}
.y2_c00355{bottom:1165.365000px;}
.h5_c00355{height:17.280000px;}
.h3_c00355{height:43.189453px;}
.h7_c00355{height:52.291406px;}
.h6_c00355{height:70.628906px;}
.h4_c00355{height:70.664062px;}
.h2_c00355{height:1237.365000px;}
.h0_c00355{height:1262.835000px;}
.h1_c00355{height:1263.000000px;}
.w3_c00355{width:47.520000px;}
.w2_c00355{width:867.465000px;}
.w0_c00355{width:892.935000px;}
.w1_c00355{width:893.250000px;}
.x0_c00355{left:0.000000px;}
.x5_c00355{left:10.237500px;}
.x1_c00355{left:12.735000px;}
.x3_c00355{left:95.400150px;}
.x6_c00355{left:149.400150px;}
.x4_c00355{left:422.775000px;}
.x2_c00355{left:878.050050px;}
@media print{
.v0_c00355{vertical-align:0.000000pt;}
.ls0_c00355{letter-spacing:0.000000pt;}
.ws0_c00355{word-spacing:-16.000000pt;}
.ws1_c00355{word-spacing:0.000000pt;}
._1_c00355{width:1.408000pt;}
._0_c00355{width:2.988800pt;}
._7_c00355{width:3.968000pt;}
._6_c00355{width:5.376000pt;}
._3_c00355{width:6.476800pt;}
._5_c00355{width:7.993600pt;}
._2_c00355{width:9.068800pt;}
._4_c00355{width:10.336000pt;}
.fs2_c00355{font-size:47.360000pt;}
.fs0_c00355{font-size:57.600000pt;}
.fs1_c00355{font-size:64.000000pt;}
.y0_c00355{bottom:0.000000pt;}
.y5_c00355{bottom:1.280000pt;}
.y1_c00355{bottom:11.320000pt;}
.y3_c00355{bottom:40.360000pt;}
.y4_c00355{bottom:50.400000pt;}
.y21_c00355{bottom:98.600000pt;}
.y20_c00355{bottom:130.600000pt;}
.y1f_c00355{bottom:162.600000pt;}
.y1e_c00355{bottom:194.600000pt;}
.y1d_c00355{bottom:226.600000pt;}
.y1c_c00355{bottom:258.600000pt;}
.y1b_c00355{bottom:290.600000pt;}
.y1a_c00355{bottom:322.600000pt;}
.y19_c00355{bottom:354.600000pt;}
.y18_c00355{bottom:386.600000pt;}
.y17_c00355{bottom:418.600000pt;}
.y16_c00355{bottom:450.600000pt;}
.y15_c00355{bottom:482.600000pt;}
.y14_c00355{bottom:514.600000pt;}
.y13_c00355{bottom:545.317760pt;}
.y12_c00355{bottom:578.599867pt;}
.y11_c00355{bottom:610.599867pt;}
.y10_c00355{bottom:642.599867pt;}
.yf_c00355{bottom:674.599867pt;}
.ye_c00355{bottom:706.599867pt;}
.yd_c00355{bottom:738.599867pt;}
.yc_c00355{bottom:770.599867pt;}
.yb_c00355{bottom:802.599867pt;}
.ya_c00355{bottom:834.599867pt;}
.y9_c00355{bottom:866.599867pt;}
.y8_c00355{bottom:898.599867pt;}
.y7_c00355{bottom:930.599867pt;}
.y6_c00355{bottom:962.599867pt;}
.y2_c00355{bottom:1035.880000pt;}
.h5_c00355{height:15.360000pt;}
.h3_c00355{height:38.390625pt;}
.h7_c00355{height:46.481250pt;}
.h6_c00355{height:62.781250pt;}
.h4_c00355{height:62.812500pt;}
.h2_c00355{height:1099.880000pt;}
.h0_c00355{height:1122.520000pt;}
.h1_c00355{height:1122.666667pt;}
.w3_c00355{width:42.240000pt;}
.w2_c00355{width:771.080000pt;}
.w0_c00355{width:793.720000pt;}
.w1_c00355{width:794.000000pt;}
.x0_c00355{left:0.000000pt;}
.x5_c00355{left:9.100000pt;}
.x1_c00355{left:11.320000pt;}
.x3_c00355{left:84.800133pt;}
.x6_c00355{left:132.800133pt;}
.x4_c00355{left:375.800000pt;}
.x2_c00355{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_43ed739d8628c2d161091576.woff2')format("woff");}.ff1_c00356{font-family:ff1_c00356;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00356;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00356{font-family:ff2_c00356;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00356;src:url('chunks/assets/font_d22994f6af6027fdf3f420ca.woff2')format("woff");}.ff3_c00356{font-family:ff3_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;}
.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;}
.ls0_c00356{letter-spacing:0.000000px;}
.ls2_c00356{letter-spacing:0.014400px;}
.ls1_c00356{letter-spacing:12.830400px;}
.sc__c00356{text-shadow:none;}
.sc0_c00356{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00356{-webkit-text-stroke:0px transparent;}
.sc0_c00356{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00356{word-spacing:-18.000000px;}
.ws1_c00356{word-spacing:0.000000px;}
._1_c00356{margin-left:-13.003200px;}
._9_c00356{width:1.756800px;}
._a_c00356{width:3.031200px;}
._5_c00356{width:5.162400px;}
._6_c00356{width:6.170400px;}
._7_c00356{width:8.085600px;}
._3_c00356{width:10.634400px;}
._4_c00356{width:11.728800px;}
._0_c00356{width:12.830400px;}
._8_c00356{width:13.896000px;}
._c_c00356{width:14.961600px;}
._d_c00356{width:21.240000px;}
._2_c00356{width:22.838400px;}
._b_c00356{width:23.839200px;}
.fc1_c00356{color:transparent;}
.fc0_c00356{color:rgb(0,0,0);}
.fs1_c00356{font-size:64.800000px;}
.fs0_c00356{font-size:72.000000px;}
.y0_c00356{bottom:0.000000px;}
.y5_c00356{bottom:5.040000px;}
.y1_c00356{bottom:12.735000px;}
.y3_c00356{bottom:45.405000px;}
.y4_c00356{bottom:53.100000px;}
.y21_c00356{bottom:110.925000px;}
.y20_c00356{bottom:146.925000px;}
.y1f_c00356{bottom:182.925000px;}
.y1e_c00356{bottom:218.925000px;}
.y1d_c00356{bottom:254.925000px;}
.y1c_c00356{bottom:290.924850px;}
.y1b_c00356{bottom:326.924850px;}
.y1a_c00356{bottom:362.924850px;}
.y19_c00356{bottom:398.924850px;}
.y18_c00356{bottom:434.924850px;}
.y17_c00356{bottom:470.924850px;}
.y16_c00356{bottom:506.924850px;}
.y15_c00356{bottom:542.924850px;}
.y14_c00356{bottom:578.924850px;}
.y13_c00356{bottom:614.924850px;}
.y12_c00356{bottom:650.924850px;}
.y11_c00356{bottom:686.924850px;}
.y10_c00356{bottom:722.924850px;}
.yf_c00356{bottom:758.924850px;}
.ye_c00356{bottom:794.924850px;}
.yd_c00356{bottom:830.924850px;}
.yc_c00356{bottom:866.924850px;}
.yb_c00356{bottom:902.924850px;}
.ya_c00356{bottom:938.924850px;}
.y9_c00356{bottom:974.924850px;}
.y8_c00356{bottom:1010.924850px;}
.y7_c00356{bottom:1046.924850px;}
.y6_c00356{bottom:1082.924850px;}
.y2_c00356{bottom:1165.365000px;}
.h4_c00356{height:20.880000px;}
.h5_c00356{height:70.628906px;}
.h6_c00356{height:70.629506px;}
.h3_c00356{height:70.664062px;}
.h2_c00356{height:1237.365000px;}
.h0_c00356{height:1262.835000px;}
.h1_c00356{height:1263.000000px;}
.w3_c00356{width:27.000000px;}
.w2_c00356{width:867.465000px;}
.w0_c00356{width:892.935000px;}
.w1_c00356{width:893.250000px;}
.x0_c00356{left:0.000000px;}
.x1_c00356{left:12.735000px;}
.x3_c00356{left:95.392050px;}
.x5_c00356{left:149.400150px;}
.x4_c00356{left:432.855000px;}
.x2_c00356{left:878.050050px;}
@media print{
.v0_c00356{vertical-align:0.000000pt;}
.ls0_c00356{letter-spacing:0.000000pt;}
.ls2_c00356{letter-spacing:0.012800pt;}
.ls1_c00356{letter-spacing:11.404800pt;}
.ws0_c00356{word-spacing:-16.000000pt;}
.ws1_c00356{word-spacing:0.000000pt;}
._1_c00356{margin-left:-11.558400pt;}
._9_c00356{width:1.561600pt;}
._a_c00356{width:2.694400pt;}
._5_c00356{width:4.588800pt;}
._6_c00356{width:5.484800pt;}
._7_c00356{width:7.187200pt;}
._3_c00356{width:9.452800pt;}
._4_c00356{width:10.425600pt;}
._0_c00356{width:11.404800pt;}
._8_c00356{width:12.352000pt;}
._c_c00356{width:13.299200pt;}
._d_c00356{width:18.880000pt;}
._2_c00356{width:20.300800pt;}
._b_c00356{width:21.190400pt;}
.fs1_c00356{font-size:57.600000pt;}
.fs0_c00356{font-size:64.000000pt;}
.y0_c00356{bottom:0.000000pt;}
.y5_c00356{bottom:4.480000pt;}
.y1_c00356{bottom:11.320000pt;}
.y3_c00356{bottom:40.360000pt;}
.y4_c00356{bottom:47.200000pt;}
.y21_c00356{bottom:98.600000pt;}
.y20_c00356{bottom:130.600000pt;}
.y1f_c00356{bottom:162.600000pt;}
.y1e_c00356{bottom:194.600000pt;}
.y1d_c00356{bottom:226.600000pt;}
.y1c_c00356{bottom:258.599867pt;}
.y1b_c00356{bottom:290.599867pt;}
.y1a_c00356{bottom:322.599867pt;}
.y19_c00356{bottom:354.599867pt;}
.y18_c00356{bottom:386.599867pt;}
.y17_c00356{bottom:418.599867pt;}
.y16_c00356{bottom:450.599867pt;}
.y15_c00356{bottom:482.599867pt;}
.y14_c00356{bottom:514.599867pt;}
.y13_c00356{bottom:546.599867pt;}
.y12_c00356{bottom:578.599867pt;}
.y11_c00356{bottom:610.599867pt;}
.y10_c00356{bottom:642.599867pt;}
.yf_c00356{bottom:674.599867pt;}
.ye_c00356{bottom:706.599867pt;}
.yd_c00356{bottom:738.599867pt;}
.yc_c00356{bottom:770.599867pt;}
.yb_c00356{bottom:802.599867pt;}
.ya_c00356{bottom:834.599867pt;}
.y9_c00356{bottom:866.599867pt;}
.y8_c00356{bottom:898.599867pt;}
.y7_c00356{bottom:930.599867pt;}
.y6_c00356{bottom:962.599867pt;}
.y2_c00356{bottom:1035.880000pt;}
.h4_c00356{height:18.560000pt;}
.h5_c00356{height:62.781250pt;}
.h6_c00356{height:62.781783pt;}
.h3_c00356{height:62.812500pt;}
.h2_c00356{height:1099.880000pt;}
.h0_c00356{height:1122.520000pt;}
.h1_c00356{height:1122.666667pt;}
.w3_c00356{width:24.000000pt;}
.w2_c00356{width:771.080000pt;}
.w0_c00356{width:793.720000pt;}
.w1_c00356{width:794.000000pt;}
.x0_c00356{left:0.000000pt;}
.x1_c00356{left:11.320000pt;}
.x3_c00356{left:84.792933pt;}
.x5_c00356{left:132.800133pt;}
.x4_c00356{left:384.760000pt;}
.x2_c00356{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00357{font-family:ff1_c00357;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00357;src:url('chunks/assets/font_4dfbea9f230c437966adf6e3.woff2')format("woff");}.ff2_c00357{font-family:ff2_c00357;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00357;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00357{font-family:ff3_c00357;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls4_c00357{letter-spacing:-0.014400px;}
.ls1_c00357{letter-spacing:0.000000px;}
.ls3_c00357{letter-spacing:0.014400px;}
.ls2_c00357{letter-spacing:1.353600px;}
.ls0_c00357{letter-spacing:6.918000px;}
.ls5_c00357{letter-spacing:13.413600px;}
.sc__c00357{text-shadow:none;}
.sc0_c00357{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00357{-webkit-text-stroke:0px transparent;}
.sc0_c00357{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00357{word-spacing:-18.000000px;}
.ws1_c00357{word-spacing:0.000000px;}
._b_c00357{margin-left:-13.363200px;}
._1_c00357{margin-left:-1.180800px;}
._0_c00357{width:1.353600px;}
._3_c00357{width:3.146400px;}
._9_c00357{width:4.305600px;}
._5_c00357{width:5.659200px;}
._6_c00357{width:7.256400px;}
._c_c00357{width:8.402400px;}
._8_c00357{width:9.511200px;}
._a_c00357{width:13.413600px;}
._2_c00357{width:16.092000px;}
._4_c00357{width:19.224000px;}
._7_c00357{width:22.212000px;}
.fc1_c00357{color:transparent;}
.fc0_c00357{color:rgb(0,0,0);}
.fs2_c00357{font-size:53.280000px;}
.fs0_c00357{font-size:64.800000px;}
.fs1_c00357{font-size:72.000000px;}
.y0_c00357{bottom:0.000000px;}
.y5_c00357{bottom:1.440000px;}
.y1_c00357{bottom:12.735000px;}
.y3_c00357{bottom:45.405000px;}
.y4_c00357{bottom:56.700000px;}
.y18_c00357{bottom:434.924850px;}
.y17_c00357{bottom:470.924850px;}
.y16_c00357{bottom:506.924850px;}
.y15_c00357{bottom:542.924850px;}
.y14_c00357{bottom:578.924850px;}
.y13_c00357{bottom:614.924850px;}
.y12_c00357{bottom:650.924850px;}
.y11_c00357{bottom:686.924850px;}
.y10_c00357{bottom:722.924850px;}
.yf_c00357{bottom:758.924850px;}
.ye_c00357{bottom:794.924850px;}
.yd_c00357{bottom:830.924850px;}
.yc_c00357{bottom:866.924850px;}
.yb_c00357{bottom:902.924850px;}
.ya_c00357{bottom:938.924850px;}
.y9_c00357{bottom:974.924850px;}
.y8_c00357{bottom:1010.924850px;}
.y7_c00357{bottom:1046.924850px;}
.y6_c00357{bottom:1082.924850px;}
.y2_c00357{bottom:1165.365000px;}
.h5_c00357{height:17.280000px;}
.h3_c00357{height:43.189453px;}
.h4_c00357{height:70.664062px;}
.h2_c00357{height:1237.365000px;}
.h0_c00357{height:1262.835000px;}
.h1_c00357{height:1263.000000px;}
.w3_c00357{width:47.520000px;}
.w2_c00357{width:867.465000px;}
.w0_c00357{width:892.935000px;}
.w1_c00357{width:893.250000px;}
.x0_c00357{left:0.000000px;}
.x5_c00357{left:10.237500px;}
.x1_c00357{left:12.735000px;}
.x3_c00357{left:95.400150px;}
.x6_c00357{left:149.400150px;}
.x4_c00357{left:422.775000px;}
.x2_c00357{left:878.050050px;}
@media print{
.v0_c00357{vertical-align:0.000000pt;}
.ls4_c00357{letter-spacing:-0.012800pt;}
.ls1_c00357{letter-spacing:0.000000pt;}
.ls3_c00357{letter-spacing:0.012800pt;}
.ls2_c00357{letter-spacing:1.203200pt;}
.ls0_c00357{letter-spacing:6.149333pt;}
.ls5_c00357{letter-spacing:11.923200pt;}
.ws0_c00357{word-spacing:-16.000000pt;}
.ws1_c00357{word-spacing:0.000000pt;}
._b_c00357{margin-left:-11.878400pt;}
._1_c00357{margin-left:-1.049600pt;}
._0_c00357{width:1.203200pt;}
._3_c00357{width:2.796800pt;}
._9_c00357{width:3.827200pt;}
._5_c00357{width:5.030400pt;}
._6_c00357{width:6.450133pt;}
._c_c00357{width:7.468800pt;}
._8_c00357{width:8.454400pt;}
._a_c00357{width:11.923200pt;}
._2_c00357{width:14.304000pt;}
._4_c00357{width:17.088000pt;}
._7_c00357{width:19.744000pt;}
.fs2_c00357{font-size:47.360000pt;}
.fs0_c00357{font-size:57.600000pt;}
.fs1_c00357{font-size:64.000000pt;}
.y0_c00357{bottom:0.000000pt;}
.y5_c00357{bottom:1.280000pt;}
.y1_c00357{bottom:11.320000pt;}
.y3_c00357{bottom:40.360000pt;}
.y4_c00357{bottom:50.400000pt;}
.y18_c00357{bottom:386.599867pt;}
.y17_c00357{bottom:418.599867pt;}
.y16_c00357{bottom:450.599867pt;}
.y15_c00357{bottom:482.599867pt;}
.y14_c00357{bottom:514.599867pt;}
.y13_c00357{bottom:546.599867pt;}
.y12_c00357{bottom:578.599867pt;}
.y11_c00357{bottom:610.599867pt;}
.y10_c00357{bottom:642.599867pt;}
.yf_c00357{bottom:674.599867pt;}
.ye_c00357{bottom:706.599867pt;}
.yd_c00357{bottom:738.599867pt;}
.yc_c00357{bottom:770.599867pt;}
.yb_c00357{bottom:802.599867pt;}
.ya_c00357{bottom:834.599867pt;}
.y9_c00357{bottom:866.599867pt;}
.y8_c00357{bottom:898.599867pt;}
.y7_c00357{bottom:930.599867pt;}
.y6_c00357{bottom:962.599867pt;}
.y2_c00357{bottom:1035.880000pt;}
.h5_c00357{height:15.360000pt;}
.h3_c00357{height:38.390625pt;}
.h4_c00357{height:62.812500pt;}
.h2_c00357{height:1099.880000pt;}
.h0_c00357{height:1122.520000pt;}
.h1_c00357{height:1122.666667pt;}
.w3_c00357{width:42.240000pt;}
.w2_c00357{width:771.080000pt;}
.w0_c00357{width:793.720000pt;}
.w1_c00357{width:794.000000pt;}
.x0_c00357{left:0.000000pt;}
.x5_c00357{left:9.100000pt;}
.x1_c00357{left:11.320000pt;}
.x3_c00357{left:84.800133pt;}
.x6_c00357{left:132.800133pt;}
.x4_c00357{left:375.800000pt;}
.x2_c00357{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9e697b3a83689b6bbbba11bc.woff2')format("woff");}.ff1_c00358{font-family:ff1_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:ff2_c00358;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00358{font-family:ff2_c00358;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00358;src:url('chunks/assets/font_7541f1941cd1f5b0494610f6.woff2')format("woff");}.ff3_c00358{font-family:ff3_c00358;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00358;src:url('chunks/assets/font_807b411aacd044212b22ff4c.woff2')format("woff");}.ff4_c00358{font-family:ff4_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:ff5_c00358;src:url('chunks/assets/font_0b118492aa0d28af3d00e8b5.woff2')format("woff");}.ff5_c00358{font-family:ff5_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;}
.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;}
.ls1_c00358{letter-spacing:0.000000px;}
.ls0_c00358{letter-spacing:0.036000px;}
.ls2_c00358{letter-spacing:0.050400px;}
.ls5_c00358{letter-spacing:0.118800px;}
.ls3_c00358{letter-spacing:0.242352px;}
.ls4_c00358{letter-spacing:0.285120px;}
.sc__c00358{text-shadow:none;}
.sc0_c00358{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00358{-webkit-text-stroke:0px transparent;}
.sc0_c00358{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00358{word-spacing:-18.050400px;}
.ws2_c00358{word-spacing:-18.036000px;}
.ws0_c00358{word-spacing:-18.000000px;}
.ws3_c00358{word-spacing:0.000000px;}
._0_c00358{margin-left:-1.140480px;}
._2_c00358{width:1.092960px;}
._1_c00358{width:4.723200px;}
.fc1_c00358{color:transparent;}
.fc0_c00358{color:rgb(0,0,0);}
.fs3_c00358{font-size:47.520000px;}
.fs2_c00358{font-size:53.280000px;}
.fs1_c00358{font-size:64.800000px;}
.fs0_c00358{font-size:72.000000px;}
.y0_c00358{bottom:0.000000px;}
.y5_c00358{bottom:5.040000px;}
.y1_c00358{bottom:12.735000px;}
.y3_c00358{bottom:45.405000px;}
.y4_c00358{bottom:53.100000px;}
.y1f_c00358{bottom:191.565000px;}
.y1e_c00358{bottom:225.765000px;}
.y1d_c00358{bottom:258.885000px;}
.y1c_c00358{bottom:508.005000px;}
.y1b_c00358{bottom:544.005000px;}
.y1a_c00358{bottom:580.005000px;}
.y19_c00358{bottom:616.005000px;}
.y18_c00358{bottom:650.205000px;}
.y17_c00358{bottom:691.965000px;}
.y16_c00358{bottom:718.245000px;}
.y15_c00358{bottom:743.445000px;}
.y14_c00358{bottom:768.645000px;}
.y13_c00358{bottom:794.205000px;}
.y12_c00358{bottom:819.404850px;}
.y11_c00358{bottom:844.605000px;}
.y10_c00358{bottom:869.805000px;}
.yf_c00358{bottom:895.365000px;}
.ye_c00358{bottom:920.565000px;}
.yd_c00358{bottom:945.764850px;}
.yc_c00358{bottom:970.965000px;}
.yb_c00358{bottom:996.525000px;}
.ya_c00358{bottom:1021.725000px;}
.y9_c00358{bottom:1048.005000px;}
.y8_c00358{bottom:1074.645000px;}
.y7_c00358{bottom:1075.365000px;}
.y6_c00358{bottom:1098.404850px;}
.y2_c00358{bottom:1165.365000px;}
.h4_c00358{height:20.880000px;}
.h7_c00358{height:46.615078px;}
.h5_c00358{height:55.465313px;}
.h8_c00358{height:70.628906px;}
.h3_c00358{height:70.664062px;}
.h6_c00358{height:72.562500px;}
.h2_c00358{height:1237.365000px;}
.h0_c00358{height:1262.835000px;}
.h1_c00358{height:1263.000000px;}
.w3_c00358{width:27.000000px;}
.w5_c00358{width:103.320000px;}
.w8_c00358{width:127.440000px;}
.w7_c00358{width:127.800000px;}
.w6_c00358{width:255.240000px;}
.w4_c00358{width:325.080000px;}
.w2_c00358{width:867.465000px;}
.w0_c00358{width:892.935000px;}
.w1_c00358{width:893.250000px;}
.x0_c00358{left:0.000000px;}
.x15_c00358{left:6.281250px;}
.x16_c00358{left:11.286600px;}
.x1_c00358{left:12.735000px;}
.x8_c00358{left:20.151300px;}
.x17_c00358{left:22.277250px;}
.xf_c00358{left:23.279250px;}
.x1f_c00358{left:25.411650px;}
.xe_c00358{left:33.194850px;}
.x10_c00358{left:35.910150px;}
.x20_c00358{left:37.808700px;}
.x13_c00358{left:40.410150px;}
.x19_c00358{left:42.514050px;}
.xa_c00358{left:44.186250px;}
.xc_c00358{left:46.057350px;}
.x11_c00358{left:48.307350px;}
.xb_c00358{left:51.660150px;}
.x14_c00358{left:52.807350px;}
.x12_c00358{left:57.292950px;}
.x18_c00358{left:74.765550px;}
.x3_c00358{left:95.392050px;}
.x5_c00358{left:104.895000px;}
.x1b_c00358{left:111.257700px;}
.x1e_c00358{left:114.254850px;}
.x1d_c00358{left:119.743500px;}
.x1c_c00358{left:143.496000px;}
.x21_c00358{left:149.400150px;}
.x1a_c00358{left:151.485300px;}
.x6_c00358{left:162.990150px;}
.x7_c00358{left:429.975000px;}
.x4_c00358{left:432.855000px;}
.x9_c00358{left:533.295000px;}
.xd_c00358{left:661.095000px;}
.x22_c00358{left:783.918150px;}
.x2_c00358{left:878.050050px;}
@media print{
.v0_c00358{vertical-align:0.000000pt;}
.ls1_c00358{letter-spacing:0.000000pt;}
.ls0_c00358{letter-spacing:0.032000pt;}
.ls2_c00358{letter-spacing:0.044800pt;}
.ls5_c00358{letter-spacing:0.105600pt;}
.ls3_c00358{letter-spacing:0.215424pt;}
.ls4_c00358{letter-spacing:0.253440pt;}
.ws1_c00358{word-spacing:-16.044800pt;}
.ws2_c00358{word-spacing:-16.032000pt;}
.ws0_c00358{word-spacing:-16.000000pt;}
.ws3_c00358{word-spacing:0.000000pt;}
._0_c00358{margin-left:-1.013760pt;}
._2_c00358{width:0.971520pt;}
._1_c00358{width:4.198400pt;}
.fs3_c00358{font-size:42.240000pt;}
.fs2_c00358{font-size:47.360000pt;}
.fs1_c00358{font-size:57.600000pt;}
.fs0_c00358{font-size:64.000000pt;}
.y0_c00358{bottom:0.000000pt;}
.y5_c00358{bottom:4.480000pt;}
.y1_c00358{bottom:11.320000pt;}
.y3_c00358{bottom:40.360000pt;}
.y4_c00358{bottom:47.200000pt;}
.y1f_c00358{bottom:170.280000pt;}
.y1e_c00358{bottom:200.680000pt;}
.y1d_c00358{bottom:230.120000pt;}
.y1c_c00358{bottom:451.560000pt;}
.y1b_c00358{bottom:483.560000pt;}
.y1a_c00358{bottom:515.560000pt;}
.y19_c00358{bottom:547.560000pt;}
.y18_c00358{bottom:577.960000pt;}
.y17_c00358{bottom:615.080000pt;}
.y16_c00358{bottom:638.440000pt;}
.y15_c00358{bottom:660.840000pt;}
.y14_c00358{bottom:683.240000pt;}
.y13_c00358{bottom:705.960000pt;}
.y12_c00358{bottom:728.359867pt;}
.y11_c00358{bottom:750.760000pt;}
.y10_c00358{bottom:773.160000pt;}
.yf_c00358{bottom:795.880000pt;}
.ye_c00358{bottom:818.280000pt;}
.yd_c00358{bottom:840.679867pt;}
.yc_c00358{bottom:863.080000pt;}
.yb_c00358{bottom:885.800000pt;}
.ya_c00358{bottom:908.200000pt;}
.y9_c00358{bottom:931.560000pt;}
.y8_c00358{bottom:955.240000pt;}
.y7_c00358{bottom:955.880000pt;}
.y6_c00358{bottom:976.359867pt;}
.y2_c00358{bottom:1035.880000pt;}
.h4_c00358{height:18.560000pt;}
.h7_c00358{height:41.435625pt;}
.h5_c00358{height:49.302500pt;}
.h8_c00358{height:62.781250pt;}
.h3_c00358{height:62.812500pt;}
.h6_c00358{height:64.500000pt;}
.h2_c00358{height:1099.880000pt;}
.h0_c00358{height:1122.520000pt;}
.h1_c00358{height:1122.666667pt;}
.w3_c00358{width:24.000000pt;}
.w5_c00358{width:91.840000pt;}
.w8_c00358{width:113.280000pt;}
.w7_c00358{width:113.600000pt;}
.w6_c00358{width:226.880000pt;}
.w4_c00358{width:288.960000pt;}
.w2_c00358{width:771.080000pt;}
.w0_c00358{width:793.720000pt;}
.w1_c00358{width:794.000000pt;}
.x0_c00358{left:0.000000pt;}
.x15_c00358{left:5.583333pt;}
.x16_c00358{left:10.032533pt;}
.x1_c00358{left:11.320000pt;}
.x8_c00358{left:17.912267pt;}
.x17_c00358{left:19.802000pt;}
.xf_c00358{left:20.692667pt;}
.x1f_c00358{left:22.588133pt;}
.xe_c00358{left:29.506533pt;}
.x10_c00358{left:31.920133pt;}
.x20_c00358{left:33.607733pt;}
.x13_c00358{left:35.920133pt;}
.x19_c00358{left:37.790267pt;}
.xa_c00358{left:39.276667pt;}
.xc_c00358{left:40.939867pt;}
.x11_c00358{left:42.939867pt;}
.xb_c00358{left:45.920133pt;}
.x14_c00358{left:46.939867pt;}
.x12_c00358{left:50.927067pt;}
.x18_c00358{left:66.458267pt;}
.x3_c00358{left:84.792933pt;}
.x5_c00358{left:93.240000pt;}
.x1b_c00358{left:98.895733pt;}
.x1e_c00358{left:101.559867pt;}
.x1d_c00358{left:106.438667pt;}
.x1c_c00358{left:127.552000pt;}
.x21_c00358{left:132.800133pt;}
.x1a_c00358{left:134.653600pt;}
.x6_c00358{left:144.880133pt;}
.x7_c00358{left:382.200000pt;}
.x4_c00358{left:384.760000pt;}
.x9_c00358{left:474.040000pt;}
.xd_c00358{left:587.640000pt;}
.x22_c00358{left:696.816133pt;}
.x2_c00358{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00359{font-family:ff1_c00359;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00359;src:url('chunks/assets/font_fbc6a8ed9b73936bc484c38c.woff2')format("woff");}.ff2_c00359{font-family:ff2_c00359;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00359;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00359{font-family:ff3_c00359;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00359;src:url('chunks/assets/font_5b7392cb6f97cdeb90a7a49e.woff2')format("woff");}.ff4_c00359{font-family:ff4_c00359;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00359;src:url('chunks/assets/font_f9856e651e61c5c80703ca4a.woff2')format("woff");}.ff5_c00359{font-family:ff5_c00359;line-height:0.891602;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00359{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00359{vertical-align:0.000000px;}
.v1_c00359{vertical-align:30.240000px;}
.ls2_c00359{letter-spacing:0.000000px;}
.ls5_c00359{letter-spacing:0.014400px;}
.ls3_c00359{letter-spacing:0.050400px;}
.ls1_c00359{letter-spacing:0.120000px;}
.ls0_c00359{letter-spacing:0.142560px;}
.ls7_c00359{letter-spacing:0.242352px;}
.ls6_c00359{letter-spacing:0.285120px;}
.ls4_c00359{letter-spacing:1.044000px;}
.sc__c00359{text-shadow:none;}
.sc0_c00359{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00359{-webkit-text-stroke:0px transparent;}
.sc0_c00359{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00359{word-spacing:-18.000000px;}
.ws1_c00359{word-spacing:-0.072000px;}
.ws2_c00359{word-spacing:0.000000px;}
._2_c00359{margin-left:-1.188000px;}
._1_c00359{width:1.044000px;}
._3_c00359{width:2.613600px;}
._0_c00359{width:4.608000px;}
.fc1_c00359{color:transparent;}
.fc0_c00359{color:rgb(0,0,0);}
.fs3_c00359{font-size:41.760000px;}
.fs2_c00359{font-size:47.520000px;}
.fs0_c00359{font-size:64.800000px;}
.fs1_c00359{font-size:72.000000px;}
.y0_c00359{bottom:0.000000px;}
.y5_c00359{bottom:1.440000px;}
.y1_c00359{bottom:12.735000px;}
.y3_c00359{bottom:45.405000px;}
.y4_c00359{bottom:56.700000px;}
.y16_c00359{bottom:153.405000px;}
.y15_c00359{bottom:189.405000px;}
.y14_c00359{bottom:225.405000px;}
.y13_c00359{bottom:261.405000px;}
.y12_c00359{bottom:297.405000px;}
.y11_c00359{bottom:333.405000px;}
.y10_c00359{bottom:367.605000px;}
.yf_c00359{bottom:400.724850px;}
.ye_c00359{bottom:794.924850px;}
.yd_c00359{bottom:830.924850px;}
.yc_c00359{bottom:866.924850px;}
.yb_c00359{bottom:902.924850px;}
.ya_c00359{bottom:938.924850px;}
.y9_c00359{bottom:974.924850px;}
.y8_c00359{bottom:1010.924850px;}
.y7_c00359{bottom:1046.924850px;}
.y6_c00359{bottom:1082.924850px;}
.y2_c00359{bottom:1165.365000px;}
.h5_c00359{height:17.280000px;}
.h3_c00359{height:43.189453px;}
.h6_c00359{height:46.615078px;}
.h4_c00359{height:70.664062px;}
.h7_c00359{height:71.204766px;}
.h2_c00359{height:1237.365000px;}
.h0_c00359{height:1262.835000px;}
.h1_c00359{height:1263.000000px;}
.w3_c00359{width:47.520000px;}
.w2_c00359{width:867.465000px;}
.w0_c00359{width:892.935000px;}
.w1_c00359{width:893.250000px;}
.x0_c00359{left:0.000000px;}
.x5_c00359{left:10.237500px;}
.x1_c00359{left:12.735000px;}
.x3_c00359{left:95.400150px;}
.x6_c00359{left:149.400150px;}
.x4_c00359{left:422.775000px;}
.x7_c00359{left:776.412150px;}
.x2_c00359{left:878.050050px;}
@media print{
.v0_c00359{vertical-align:0.000000pt;}
.v1_c00359{vertical-align:26.880000pt;}
.ls2_c00359{letter-spacing:0.000000pt;}
.ls5_c00359{letter-spacing:0.012800pt;}
.ls3_c00359{letter-spacing:0.044800pt;}
.ls1_c00359{letter-spacing:0.106667pt;}
.ls0_c00359{letter-spacing:0.126720pt;}
.ls7_c00359{letter-spacing:0.215424pt;}
.ls6_c00359{letter-spacing:0.253440pt;}
.ls4_c00359{letter-spacing:0.928000pt;}
.ws0_c00359{word-spacing:-16.000000pt;}
.ws1_c00359{word-spacing:-0.064000pt;}
.ws2_c00359{word-spacing:0.000000pt;}
._2_c00359{margin-left:-1.056000pt;}
._1_c00359{width:0.928000pt;}
._3_c00359{width:2.323200pt;}
._0_c00359{width:4.096000pt;}
.fs3_c00359{font-size:37.120000pt;}
.fs2_c00359{font-size:42.240000pt;}
.fs0_c00359{font-size:57.600000pt;}
.fs1_c00359{font-size:64.000000pt;}
.y0_c00359{bottom:0.000000pt;}
.y5_c00359{bottom:1.280000pt;}
.y1_c00359{bottom:11.320000pt;}
.y3_c00359{bottom:40.360000pt;}
.y4_c00359{bottom:50.400000pt;}
.y16_c00359{bottom:136.360000pt;}
.y15_c00359{bottom:168.360000pt;}
.y14_c00359{bottom:200.360000pt;}
.y13_c00359{bottom:232.360000pt;}
.y12_c00359{bottom:264.360000pt;}
.y11_c00359{bottom:296.360000pt;}
.y10_c00359{bottom:326.760000pt;}
.yf_c00359{bottom:356.199867pt;}
.ye_c00359{bottom:706.599867pt;}
.yd_c00359{bottom:738.599867pt;}
.yc_c00359{bottom:770.599867pt;}
.yb_c00359{bottom:802.599867pt;}
.ya_c00359{bottom:834.599867pt;}
.y9_c00359{bottom:866.599867pt;}
.y8_c00359{bottom:898.599867pt;}
.y7_c00359{bottom:930.599867pt;}
.y6_c00359{bottom:962.599867pt;}
.y2_c00359{bottom:1035.880000pt;}
.h5_c00359{height:15.360000pt;}
.h3_c00359{height:38.390625pt;}
.h6_c00359{height:41.435625pt;}
.h4_c00359{height:62.812500pt;}
.h7_c00359{height:63.293125pt;}
.h2_c00359{height:1099.880000pt;}
.h0_c00359{height:1122.520000pt;}
.h1_c00359{height:1122.666667pt;}
.w3_c00359{width:42.240000pt;}
.w2_c00359{width:771.080000pt;}
.w0_c00359{width:793.720000pt;}
.w1_c00359{width:794.000000pt;}
.x0_c00359{left:0.000000pt;}
.x5_c00359{left:9.100000pt;}
.x1_c00359{left:11.320000pt;}
.x3_c00359{left:84.800133pt;}
.x6_c00359{left:132.800133pt;}
.x4_c00359{left:375.800000pt;}
.x7_c00359{left:690.144133pt;}
.x2_c00359{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_60c1761a5ba4d7fce31c0eab.woff2')format("woff");}.ff1_c00360{font-family:ff1_c00360;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00360;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00360{font-family:ff2_c00360;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00360;src:url('chunks/assets/font_f9856e651e61c5c80703ca4a.woff2')format("woff");}.ff3_c00360{font-family:ff3_c00360;line-height:0.891602;font-style:normal;font-weight:normal;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_77e7c7749f00daeec6e02a43.woff2')format("woff");}.ff4_c00360{font-family:ff4_c00360;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00360;src:url('chunks/assets/font_c336cc6bc169fddec10a42d0.woff2')format("woff");}.ff5_c00360{font-family:ff5_c00360;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_c00360;src:url('chunks/assets/font_58b6a499887c3030808f35d0.woff2')format("woff");}.ff6_c00360{font-family:ff6_c00360;line-height:1.239258;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00360;src:url('chunks/assets/font_3ee8838ee7a43e29771090e2.woff2')format("woff");}.ff7_c00360{font-family:ff7_c00360;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_c00360;src:url('chunks/assets/font_0147a4121c05295aab20d38a.woff2')format("woff");}.ff8_c00360{font-family:ff8_c00360;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00360{vertical-align:-14.399400px;}
.v0_c00360{vertical-align:0.000000px;}
.v1_c00360{vertical-align:30.240600px;}
.ls9_c00360{letter-spacing:-0.014400px;}
.ls6_c00360{letter-spacing:0.000000px;}
.ls1_c00360{letter-spacing:0.012000px;}
.ls2_c00360{letter-spacing:0.024600px;}
.ls4_c00360{letter-spacing:0.046800px;}
.ls3_c00360{letter-spacing:0.120000px;}
.ls7_c00360{letter-spacing:0.121104px;}
.ls8_c00360{letter-spacing:6.055200px;}
.ls5_c00360{letter-spacing:8.928000px;}
.ls0_c00360{letter-spacing:54.864000px;}
.sc__c00360{text-shadow:none;}
.sc0_c00360{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00360{-webkit-text-stroke:0px transparent;}
.sc0_c00360{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00360{word-spacing:-18.000000px;}
.ws1_c00360{word-spacing:-0.072000px;}
.ws2_c00360{word-spacing:0.000000px;}
._8_c00360{margin-left:-5.921616px;}
._6_c00360{width:1.065600px;}
._2_c00360{width:3.117600px;}
._5_c00360{width:4.341600px;}
._7_c00360{width:5.928816px;}
._1_c00360{width:6.975192px;}
._0_c00360{width:7.977600px;}
._3_c00360{width:9.165600px;}
._9_c00360{width:10.209600px;}
._4_c00360{width:24.098400px;}
.fc1_c00360{color:transparent;}
.fc0_c00360{color:rgb(0,0,0);}
.fs2_c00360{font-size:41.760000px;}
.fs3_c00360{font-size:53.280000px;}
.fs1_c00360{font-size:64.800000px;}
.fs0_c00360{font-size:72.000000px;}
.y0_c00360{bottom:0.000000px;}
.y5_c00360{bottom:5.040000px;}
.y1_c00360{bottom:12.735000px;}
.y3_c00360{bottom:45.405000px;}
.y4_c00360{bottom:53.100000px;}
.y20_c00360{bottom:122.085000px;}
.y1f_c00360{bottom:158.085000px;}
.y1e_c00360{bottom:194.085000px;}
.y1d_c00360{bottom:230.085000px;}
.y1c_c00360{bottom:266.085000px;}
.y1b_c00360{bottom:302.085000px;}
.y1a_c00360{bottom:333.405000px;}
.y19_c00360{bottom:398.925000px;}
.y18_c00360{bottom:434.925000px;}
.y17_c00360{bottom:470.925000px;}
.y16_c00360{bottom:506.925000px;}
.y15_c00360{bottom:542.925000px;}
.y14_c00360{bottom:578.925000px;}
.y13_c00360{bottom:614.925000px;}
.y12_c00360{bottom:650.925000px;}
.y11_c00360{bottom:686.925000px;}
.y10_c00360{bottom:722.924850px;}
.yf_c00360{bottom:758.924850px;}
.ye_c00360{bottom:794.924850px;}
.yd_c00360{bottom:830.924850px;}
.yc_c00360{bottom:866.924850px;}
.yb_c00360{bottom:902.924850px;}
.ya_c00360{bottom:938.924850px;}
.y9_c00360{bottom:974.924850px;}
.y8_c00360{bottom:1010.924850px;}
.y7_c00360{bottom:1046.924850px;}
.y6_c00360{bottom:1082.924850px;}
.y2_c00360{bottom:1165.365000px;}
.h4_c00360{height:20.880000px;}
.h3_c00360{height:70.664062px;}
.h5_c00360{height:71.205366px;}
.h7_c00360{height:74.004654px;}
.h6_c00360{height:74.953125px;}
.h2_c00360{height:1237.365000px;}
.h0_c00360{height:1262.835000px;}
.h1_c00360{height:1263.000000px;}
.w3_c00360{width:27.000000px;}
.w2_c00360{width:867.465000px;}
.w0_c00360{width:892.935000px;}
.w1_c00360{width:893.250000px;}
.x0_c00360{left:0.000000px;}
.x1_c00360{left:12.735000px;}
.x3_c00360{left:95.392050px;}
.x5_c00360{left:149.400150px;}
.x6_c00360{left:176.400150px;}
.x7_c00360{left:203.394300px;}
.x4_c00360{left:432.855000px;}
.x8_c00360{left:783.895950px;}
.x2_c00360{left:878.050050px;}
@media print{
.v2_c00360{vertical-align:-12.799467pt;}
.v0_c00360{vertical-align:0.000000pt;}
.v1_c00360{vertical-align:26.880533pt;}
.ls9_c00360{letter-spacing:-0.012800pt;}
.ls6_c00360{letter-spacing:0.000000pt;}
.ls1_c00360{letter-spacing:0.010667pt;}
.ls2_c00360{letter-spacing:0.021867pt;}
.ls4_c00360{letter-spacing:0.041600pt;}
.ls3_c00360{letter-spacing:0.106667pt;}
.ls7_c00360{letter-spacing:0.107648pt;}
.ls8_c00360{letter-spacing:5.382400pt;}
.ls5_c00360{letter-spacing:7.936000pt;}
.ls0_c00360{letter-spacing:48.768000pt;}
.ws0_c00360{word-spacing:-16.000000pt;}
.ws1_c00360{word-spacing:-0.064000pt;}
.ws2_c00360{word-spacing:0.000000pt;}
._8_c00360{margin-left:-5.263659pt;}
._6_c00360{width:0.947200pt;}
._2_c00360{width:2.771200pt;}
._5_c00360{width:3.859200pt;}
._7_c00360{width:5.270059pt;}
._1_c00360{width:6.200171pt;}
._0_c00360{width:7.091200pt;}
._3_c00360{width:8.147200pt;}
._9_c00360{width:9.075200pt;}
._4_c00360{width:21.420800pt;}
.fs2_c00360{font-size:37.120000pt;}
.fs3_c00360{font-size:47.360000pt;}
.fs1_c00360{font-size:57.600000pt;}
.fs0_c00360{font-size:64.000000pt;}
.y0_c00360{bottom:0.000000pt;}
.y5_c00360{bottom:4.480000pt;}
.y1_c00360{bottom:11.320000pt;}
.y3_c00360{bottom:40.360000pt;}
.y4_c00360{bottom:47.200000pt;}
.y20_c00360{bottom:108.520000pt;}
.y1f_c00360{bottom:140.520000pt;}
.y1e_c00360{bottom:172.520000pt;}
.y1d_c00360{bottom:204.520000pt;}
.y1c_c00360{bottom:236.520000pt;}
.y1b_c00360{bottom:268.520000pt;}
.y1a_c00360{bottom:296.360000pt;}
.y19_c00360{bottom:354.600000pt;}
.y18_c00360{bottom:386.600000pt;}
.y17_c00360{bottom:418.600000pt;}
.y16_c00360{bottom:450.600000pt;}
.y15_c00360{bottom:482.600000pt;}
.y14_c00360{bottom:514.600000pt;}
.y13_c00360{bottom:546.600000pt;}
.y12_c00360{bottom:578.600000pt;}
.y11_c00360{bottom:610.600000pt;}
.y10_c00360{bottom:642.599867pt;}
.yf_c00360{bottom:674.599867pt;}
.ye_c00360{bottom:706.599867pt;}
.yd_c00360{bottom:738.599867pt;}
.yc_c00360{bottom:770.599867pt;}
.yb_c00360{bottom:802.599867pt;}
.ya_c00360{bottom:834.599867pt;}
.y9_c00360{bottom:866.599867pt;}
.y8_c00360{bottom:898.599867pt;}
.y7_c00360{bottom:930.599867pt;}
.y6_c00360{bottom:962.599867pt;}
.y2_c00360{bottom:1035.880000pt;}
.h4_c00360{height:18.560000pt;}
.h3_c00360{height:62.812500pt;}
.h5_c00360{height:63.293658pt;}
.h7_c00360{height:65.781915pt;}
.h6_c00360{height:66.625000pt;}
.h2_c00360{height:1099.880000pt;}
.h0_c00360{height:1122.520000pt;}
.h1_c00360{height:1122.666667pt;}
.w3_c00360{width:24.000000pt;}
.w2_c00360{width:771.080000pt;}
.w0_c00360{width:793.720000pt;}
.w1_c00360{width:794.000000pt;}
.x0_c00360{left:0.000000pt;}
.x1_c00360{left:11.320000pt;}
.x3_c00360{left:84.792933pt;}
.x5_c00360{left:132.800133pt;}
.x6_c00360{left:156.800133pt;}
.x7_c00360{left:180.794933pt;}
.x4_c00360{left:384.760000pt;}
.x8_c00360{left:696.796400pt;}
.x2_c00360{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00361{font-family:ff1_c00361;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00361;src:url('chunks/assets/font_39671a8759ec53c9817562b0.woff2')format("woff");}.ff2_c00361{font-family:ff2_c00361;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00361;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00361{font-family:ff3_c00361;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00361;src:url('chunks/assets/font_f7634ce5a9cd0f70be56a3ba.woff2')format("woff");}.ff4_c00361{font-family:ff4_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:ff5_c00361;src:url('chunks/assets/font_bcf57c31da031135582cc0fa.woff2')format("woff");}.ff5_c00361{font-family:ff5_c00361;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00361;src:url('chunks/assets/font_c15556af46a702c09621fbb1.woff2')format("woff");}.ff6_c00361{font-family:ff6_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;}
.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;}
.ls4_c00361{letter-spacing:-0.014400px;}
.ls2_c00361{letter-spacing:0.000000px;}
.ls3_c00361{letter-spacing:0.014400px;}
.ls0_c00361{letter-spacing:0.242208px;}
.ls1_c00361{letter-spacing:0.283968px;}
.sc__c00361{text-shadow:none;}
.sc0_c00361{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00361{-webkit-text-stroke:0px transparent;}
.sc0_c00361{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00361{word-spacing:-21.122208px;}
.ws0_c00361{word-spacing:-18.000000px;}
.ws2_c00361{word-spacing:0.000000px;}
._6_c00361{margin-left:-1.447200px;}
._b_c00361{width:1.058400px;}
._1_c00361{width:4.219200px;}
._3_c00361{width:11.059200px;}
._2_c00361{width:12.096000px;}
._4_c00361{width:13.629600px;}
._8_c00361{width:20.174400px;}
._9_c00361{width:22.608000px;}
._a_c00361{width:23.659200px;}
._7_c00361{width:24.696000px;}
._0_c00361{width:28.411200px;}
._5_c00361{width:29.880000px;}
.fc2_c00361{color:transparent;}
.fc1_c00361{color:rgb(127,127,127);}
.fc0_c00361{color:rgb(0,0,0);}
.fs0_c00361{font-size:64.800000px;}
.fs1_c00361{font-size:72.000000px;}
.fs2_c00361{font-size:83.520000px;}
.y0_c00361{bottom:0.000000px;}
.y5_c00361{bottom:1.440000px;}
.y1_c00361{bottom:12.735000px;}
.y3_c00361{bottom:45.405000px;}
.y4_c00361{bottom:56.700000px;}
.y21_c00361{bottom:110.924850px;}
.y20_c00361{bottom:146.924850px;}
.y1f_c00361{bottom:182.924850px;}
.y1e_c00361{bottom:218.924850px;}
.y1d_c00361{bottom:254.924850px;}
.y1c_c00361{bottom:290.924850px;}
.y1b_c00361{bottom:326.924850px;}
.y1a_c00361{bottom:362.924850px;}
.y19_c00361{bottom:398.924850px;}
.y18_c00361{bottom:434.924850px;}
.y17_c00361{bottom:470.924850px;}
.y16_c00361{bottom:506.924850px;}
.y15_c00361{bottom:542.924850px;}
.y14_c00361{bottom:578.924850px;}
.y13_c00361{bottom:614.924850px;}
.y12_c00361{bottom:650.924850px;}
.y11_c00361{bottom:686.924850px;}
.y10_c00361{bottom:722.924850px;}
.yf_c00361{bottom:758.924850px;}
.ye_c00361{bottom:795.645000px;}
.yd_c00361{bottom:830.924850px;}
.yc_c00361{bottom:866.924850px;}
.yb_c00361{bottom:902.924850px;}
.ya_c00361{bottom:938.924850px;}
.y9_c00361{bottom:974.924850px;}
.y8_c00361{bottom:1010.924850px;}
.y7_c00361{bottom:1046.924850px;}
.y6_c00361{bottom:1082.924850px;}
.y2_c00361{bottom:1165.365000px;}
.h5_c00361{height:17.280000px;}
.h3_c00361{height:43.189453px;}
.h4_c00361{height:70.664062px;}
.h7_c00361{height:71.824219px;}
.h8_c00361{height:72.562500px;}
.h6_c00361{height:81.929531px;}
.h2_c00361{height:1237.365000px;}
.h0_c00361{height:1262.835000px;}
.h1_c00361{height:1263.000000px;}
.w3_c00361{width:47.520000px;}
.w2_c00361{width:867.465000px;}
.w0_c00361{width:892.935000px;}
.w1_c00361{width:893.250000px;}
.x0_c00361{left:0.000000px;}
.x5_c00361{left:10.237500px;}
.x1_c00361{left:12.735000px;}
.x3_c00361{left:95.400150px;}
.x6_c00361{left:149.400150px;}
.x4_c00361{left:422.775000px;}
.x2_c00361{left:878.050050px;}
@media print{
.v0_c00361{vertical-align:0.000000pt;}
.ls4_c00361{letter-spacing:-0.012800pt;}
.ls2_c00361{letter-spacing:0.000000pt;}
.ls3_c00361{letter-spacing:0.012800pt;}
.ls0_c00361{letter-spacing:0.215296pt;}
.ls1_c00361{letter-spacing:0.252416pt;}
.ws1_c00361{word-spacing:-18.775296pt;}
.ws0_c00361{word-spacing:-16.000000pt;}
.ws2_c00361{word-spacing:0.000000pt;}
._6_c00361{margin-left:-1.286400pt;}
._b_c00361{width:0.940800pt;}
._1_c00361{width:3.750400pt;}
._3_c00361{width:9.830400pt;}
._2_c00361{width:10.752000pt;}
._4_c00361{width:12.115200pt;}
._8_c00361{width:17.932800pt;}
._9_c00361{width:20.096000pt;}
._a_c00361{width:21.030400pt;}
._7_c00361{width:21.952000pt;}
._0_c00361{width:25.254400pt;}
._5_c00361{width:26.560000pt;}
.fs0_c00361{font-size:57.600000pt;}
.fs1_c00361{font-size:64.000000pt;}
.fs2_c00361{font-size:74.240000pt;}
.y0_c00361{bottom:0.000000pt;}
.y5_c00361{bottom:1.280000pt;}
.y1_c00361{bottom:11.320000pt;}
.y3_c00361{bottom:40.360000pt;}
.y4_c00361{bottom:50.400000pt;}
.y21_c00361{bottom:98.599867pt;}
.y20_c00361{bottom:130.599867pt;}
.y1f_c00361{bottom:162.599867pt;}
.y1e_c00361{bottom:194.599867pt;}
.y1d_c00361{bottom:226.599867pt;}
.y1c_c00361{bottom:258.599867pt;}
.y1b_c00361{bottom:290.599867pt;}
.y1a_c00361{bottom:322.599867pt;}
.y19_c00361{bottom:354.599867pt;}
.y18_c00361{bottom:386.599867pt;}
.y17_c00361{bottom:418.599867pt;}
.y16_c00361{bottom:450.599867pt;}
.y15_c00361{bottom:482.599867pt;}
.y14_c00361{bottom:514.599867pt;}
.y13_c00361{bottom:546.599867pt;}
.y12_c00361{bottom:578.599867pt;}
.y11_c00361{bottom:610.599867pt;}
.y10_c00361{bottom:642.599867pt;}
.yf_c00361{bottom:674.599867pt;}
.ye_c00361{bottom:707.240000pt;}
.yd_c00361{bottom:738.599867pt;}
.yc_c00361{bottom:770.599867pt;}
.yb_c00361{bottom:802.599867pt;}
.ya_c00361{bottom:834.599867pt;}
.y9_c00361{bottom:866.599867pt;}
.y8_c00361{bottom:898.599867pt;}
.y7_c00361{bottom:930.599867pt;}
.y6_c00361{bottom:962.599867pt;}
.y2_c00361{bottom:1035.880000pt;}
.h5_c00361{height:15.360000pt;}
.h3_c00361{height:38.390625pt;}
.h4_c00361{height:62.812500pt;}
.h7_c00361{height:63.843750pt;}
.h8_c00361{height:64.500000pt;}
.h6_c00361{height:72.826250pt;}
.h2_c00361{height:1099.880000pt;}
.h0_c00361{height:1122.520000pt;}
.h1_c00361{height:1122.666667pt;}
.w3_c00361{width:42.240000pt;}
.w2_c00361{width:771.080000pt;}
.w0_c00361{width:793.720000pt;}
.w1_c00361{width:794.000000pt;}
.x0_c00361{left:0.000000pt;}
.x5_c00361{left:9.100000pt;}
.x1_c00361{left:11.320000pt;}
.x3_c00361{left:84.800133pt;}
.x6_c00361{left:132.800133pt;}
.x4_c00361{left:375.800000pt;}
.x2_c00361{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_76fab967289e6ee85940b4f5.woff2')format("woff");}.ff1_c00362{font-family:ff1_c00362;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00362;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00362{font-family:ff2_c00362;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00362;src:url('chunks/assets/font_44f13abb99bf5815da924196.woff2')format("woff");}.ff3_c00362{font-family:ff3_c00362;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00362{letter-spacing:0.142560px;}
.ls3_c00362{letter-spacing:0.242352px;}
.ls2_c00362{letter-spacing:0.285120px;}
.sc__c00362{text-shadow:none;}
.sc0_c00362{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00362{-webkit-text-stroke:0px transparent;}
.sc0_c00362{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00362{word-spacing:-18.000000px;}
.ws1_c00362{word-spacing:0.000000px;}
._0_c00362{margin-left:-1.188000px;}
.fc1_c00362{color:transparent;}
.fc0_c00362{color:rgb(0,0,0);}
.fs2_c00362{font-size:47.520000px;}
.fs1_c00362{font-size:64.800000px;}
.fs0_c00362{font-size:72.000000px;}
.y0_c00362{bottom:0.000000px;}
.y5_c00362{bottom:5.040000px;}
.y1_c00362{bottom:12.735000px;}
.y3_c00362{bottom:45.405000px;}
.y4_c00362{bottom:53.100000px;}
.y17_c00362{bottom:112.365000px;}
.y16_c00362{bottom:148.365000px;}
.y15_c00362{bottom:184.365000px;}
.y14_c00362{bottom:220.365000px;}
.y13_c00362{bottom:256.365000px;}
.y12_c00362{bottom:292.365000px;}
.y11_c00362{bottom:328.365000px;}
.y10_c00362{bottom:364.365000px;}
.yf_c00362{bottom:400.365000px;}
.ye_c00362{bottom:434.565000px;}
.yd_c00362{bottom:467.684850px;}
.yc_c00362{bottom:866.924850px;}
.yb_c00362{bottom:902.924850px;}
.ya_c00362{bottom:938.924850px;}
.y9_c00362{bottom:974.924850px;}
.y8_c00362{bottom:1010.924850px;}
.y7_c00362{bottom:1046.924850px;}
.y6_c00362{bottom:1082.924850px;}
.y2_c00362{bottom:1165.365000px;}
.h4_c00362{height:20.880000px;}
.h6_c00362{height:46.615078px;}
.h5_c00362{height:70.628906px;}
.h3_c00362{height:70.664062px;}
.h2_c00362{height:1237.365000px;}
.h0_c00362{height:1262.835000px;}
.h1_c00362{height:1263.000000px;}
.w3_c00362{width:27.000000px;}
.w2_c00362{width:867.465000px;}
.w0_c00362{width:892.935000px;}
.w1_c00362{width:893.250000px;}
.x0_c00362{left:0.000000px;}
.x1_c00362{left:12.735000px;}
.x3_c00362{left:95.392050px;}
.x5_c00362{left:149.391300px;}
.x4_c00362{left:432.855000px;}
.x6_c00362{left:776.385300px;}
.x2_c00362{left:878.050050px;}
@media print{
.v0_c00362{vertical-align:0.000000pt;}
.ls1_c00362{letter-spacing:0.000000pt;}
.ls0_c00362{letter-spacing:0.126720pt;}
.ls3_c00362{letter-spacing:0.215424pt;}
.ls2_c00362{letter-spacing:0.253440pt;}
.ws0_c00362{word-spacing:-16.000000pt;}
.ws1_c00362{word-spacing:0.000000pt;}
._0_c00362{margin-left:-1.056000pt;}
.fs2_c00362{font-size:42.240000pt;}
.fs1_c00362{font-size:57.600000pt;}
.fs0_c00362{font-size:64.000000pt;}
.y0_c00362{bottom:0.000000pt;}
.y5_c00362{bottom:4.480000pt;}
.y1_c00362{bottom:11.320000pt;}
.y3_c00362{bottom:40.360000pt;}
.y4_c00362{bottom:47.200000pt;}
.y17_c00362{bottom:99.880000pt;}
.y16_c00362{bottom:131.880000pt;}
.y15_c00362{bottom:163.880000pt;}
.y14_c00362{bottom:195.880000pt;}
.y13_c00362{bottom:227.880000pt;}
.y12_c00362{bottom:259.880000pt;}
.y11_c00362{bottom:291.880000pt;}
.y10_c00362{bottom:323.880000pt;}
.yf_c00362{bottom:355.880000pt;}
.ye_c00362{bottom:386.280000pt;}
.yd_c00362{bottom:415.719867pt;}
.yc_c00362{bottom:770.599867pt;}
.yb_c00362{bottom:802.599867pt;}
.ya_c00362{bottom:834.599867pt;}
.y9_c00362{bottom:866.599867pt;}
.y8_c00362{bottom:898.599867pt;}
.y7_c00362{bottom:930.599867pt;}
.y6_c00362{bottom:962.599867pt;}
.y2_c00362{bottom:1035.880000pt;}
.h4_c00362{height:18.560000pt;}
.h6_c00362{height:41.435625pt;}
.h5_c00362{height:62.781250pt;}
.h3_c00362{height:62.812500pt;}
.h2_c00362{height:1099.880000pt;}
.h0_c00362{height:1122.520000pt;}
.h1_c00362{height:1122.666667pt;}
.w3_c00362{width:24.000000pt;}
.w2_c00362{width:771.080000pt;}
.w0_c00362{width:793.720000pt;}
.w1_c00362{width:794.000000pt;}
.x0_c00362{left:0.000000pt;}
.x1_c00362{left:11.320000pt;}
.x3_c00362{left:84.792933pt;}
.x5_c00362{left:132.792267pt;}
.x4_c00362{left:384.760000pt;}
.x6_c00362{left:690.120267pt;}
.x2_c00362{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00363{font-family:ff1_c00363;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00363;src:url('chunks/assets/font_6b875819f7ced8c3edc0934a.woff2')format("woff");}.ff2_c00363{font-family:ff2_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:ff3_c00363;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00363{font-family:ff3_c00363;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00363;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff4_c00363{font-family:ff4_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;}
.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;}
.ls1_c00363{letter-spacing:0.000000px;}
.ls0_c00363{letter-spacing:0.142560px;}
.ls3_c00363{letter-spacing:0.242352px;}
.ls2_c00363{letter-spacing:0.285120px;}
.sc__c00363{text-shadow:none;}
.sc0_c00363{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00363{-webkit-text-stroke:0px transparent;}
.sc0_c00363{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00363{word-spacing:-18.000000px;}
.ws1_c00363{word-spacing:0.000000px;}
._0_c00363{margin-left:-1.188000px;}
._1_c00363{width:2.613600px;}
.fc1_c00363{color:transparent;}
.fc0_c00363{color:rgb(0,0,0);}
.fs2_c00363{font-size:47.520000px;}
.fs0_c00363{font-size:64.800000px;}
.fs1_c00363{font-size:72.000000px;}
.y0_c00363{bottom:0.000000px;}
.y5_c00363{bottom:1.440000px;}
.y1_c00363{bottom:12.735000px;}
.y3_c00363{bottom:45.405000px;}
.y4_c00363{bottom:56.700000px;}
.y16_c00363{bottom:125.685000px;}
.y15_c00363{bottom:161.685000px;}
.y14_c00363{bottom:197.685000px;}
.y13_c00363{bottom:233.685000px;}
.y12_c00363{bottom:269.685000px;}
.y11_c00363{bottom:305.685000px;}
.y10_c00363{bottom:341.685000px;}
.yf_c00363{bottom:377.685000px;}
.ye_c00363{bottom:413.685000px;}
.yd_c00363{bottom:447.888600px;}
.yc_c00363{bottom:483.885000px;}
.yb_c00363{bottom:517.004850px;}
.ya_c00363{bottom:938.924850px;}
.y9_c00363{bottom:974.924850px;}
.y8_c00363{bottom:1010.924850px;}
.y7_c00363{bottom:1046.924850px;}
.y6_c00363{bottom:1082.924850px;}
.y2_c00363{bottom:1165.365000px;}
.h5_c00363{height:17.280000px;}
.h3_c00363{height:43.189453px;}
.h6_c00363{height:46.615078px;}
.h4_c00363{height:70.664062px;}
.h2_c00363{height:1237.365000px;}
.h0_c00363{height:1262.835000px;}
.h1_c00363{height:1263.000000px;}
.w3_c00363{width:47.520000px;}
.w2_c00363{width:867.465000px;}
.w0_c00363{width:892.935000px;}
.w1_c00363{width:893.250000px;}
.x0_c00363{left:0.000000px;}
.x5_c00363{left:10.237500px;}
.x1_c00363{left:12.735000px;}
.x3_c00363{left:95.400150px;}
.x6_c00363{left:149.400150px;}
.x4_c00363{left:422.775000px;}
.x7_c00363{left:776.394150px;}
.x2_c00363{left:878.050050px;}
@media print{
.v0_c00363{vertical-align:0.000000pt;}
.ls1_c00363{letter-spacing:0.000000pt;}
.ls0_c00363{letter-spacing:0.126720pt;}
.ls3_c00363{letter-spacing:0.215424pt;}
.ls2_c00363{letter-spacing:0.253440pt;}
.ws0_c00363{word-spacing:-16.000000pt;}
.ws1_c00363{word-spacing:0.000000pt;}
._0_c00363{margin-left:-1.056000pt;}
._1_c00363{width:2.323200pt;}
.fs2_c00363{font-size:42.240000pt;}
.fs0_c00363{font-size:57.600000pt;}
.fs1_c00363{font-size:64.000000pt;}
.y0_c00363{bottom:0.000000pt;}
.y5_c00363{bottom:1.280000pt;}
.y1_c00363{bottom:11.320000pt;}
.y3_c00363{bottom:40.360000pt;}
.y4_c00363{bottom:50.400000pt;}
.y16_c00363{bottom:111.720000pt;}
.y15_c00363{bottom:143.720000pt;}
.y14_c00363{bottom:175.720000pt;}
.y13_c00363{bottom:207.720000pt;}
.y12_c00363{bottom:239.720000pt;}
.y11_c00363{bottom:271.720000pt;}
.y10_c00363{bottom:303.720000pt;}
.yf_c00363{bottom:335.720000pt;}
.ye_c00363{bottom:367.720000pt;}
.yd_c00363{bottom:398.123200pt;}
.yc_c00363{bottom:430.120000pt;}
.yb_c00363{bottom:459.559867pt;}
.ya_c00363{bottom:834.599867pt;}
.y9_c00363{bottom:866.599867pt;}
.y8_c00363{bottom:898.599867pt;}
.y7_c00363{bottom:930.599867pt;}
.y6_c00363{bottom:962.599867pt;}
.y2_c00363{bottom:1035.880000pt;}
.h5_c00363{height:15.360000pt;}
.h3_c00363{height:38.390625pt;}
.h6_c00363{height:41.435625pt;}
.h4_c00363{height:62.812500pt;}
.h2_c00363{height:1099.880000pt;}
.h0_c00363{height:1122.520000pt;}
.h1_c00363{height:1122.666667pt;}
.w3_c00363{width:42.240000pt;}
.w2_c00363{width:771.080000pt;}
.w0_c00363{width:793.720000pt;}
.w1_c00363{width:794.000000pt;}
.x0_c00363{left:0.000000pt;}
.x5_c00363{left:9.100000pt;}
.x1_c00363{left:11.320000pt;}
.x3_c00363{left:84.800133pt;}
.x6_c00363{left:132.800133pt;}
.x4_c00363{left:375.800000pt;}
.x7_c00363{left:690.128133pt;}
.x2_c00363{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_83b705468b38d229fe8da280.woff2')format("woff");}.ff1_c00364{font-family:ff1_c00364;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00364;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00364{font-family:ff2_c00364;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00364;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff3_c00364{font-family:ff3_c00364;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls3_c00364{letter-spacing:0.000000px;}
.ls0_c00364{letter-spacing:0.142560px;}
.ls1_c00364{letter-spacing:0.190080px;}
.ls2_c00364{letter-spacing:0.223344px;}
.ls4_c00364{letter-spacing:0.242352px;}
.sc__c00364{text-shadow:none;}
.sc0_c00364{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00364{-webkit-text-stroke:0px transparent;}
.sc0_c00364{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00364{word-spacing:-18.000000px;}
.ws1_c00364{word-spacing:-12.103344px;}
.ws2_c00364{word-spacing:0.000000px;}
._0_c00364{margin-left:-1.040688px;}
._1_c00364{width:2.613600px;}
.fc1_c00364{color:transparent;}
.fc0_c00364{color:rgb(0,0,0);}
.fs2_c00364{font-size:47.520000px;}
.fs1_c00364{font-size:64.800000px;}
.fs0_c00364{font-size:72.000000px;}
.y0_c00364{bottom:0.000000px;}
.y5_c00364{bottom:5.040000px;}
.y1_c00364{bottom:12.735000px;}
.y3_c00364{bottom:45.405000px;}
.y4_c00364{bottom:53.100000px;}
.y14_c00364{bottom:176.085000px;}
.y13_c00364{bottom:212.085000px;}
.y12_c00364{bottom:248.085000px;}
.y11_c00364{bottom:284.085000px;}
.y10_c00364{bottom:320.085000px;}
.yf_c00364{bottom:356.085000px;}
.ye_c00364{bottom:392.085000px;}
.yd_c00364{bottom:426.288600px;}
.yc_c00364{bottom:462.285000px;}
.yb_c00364{bottom:495.764850px;}
.ya_c00364{bottom:938.924850px;}
.y9_c00364{bottom:974.924850px;}
.y8_c00364{bottom:1010.924850px;}
.y7_c00364{bottom:1046.924850px;}
.y6_c00364{bottom:1082.924850px;}
.y2_c00364{bottom:1165.365000px;}
.h4_c00364{height:20.880000px;}
.h5_c00364{height:46.615078px;}
.h3_c00364{height:70.664062px;}
.h2_c00364{height:1237.365000px;}
.h0_c00364{height:1262.835000px;}
.h1_c00364{height:1263.000000px;}
.w3_c00364{width:27.000000px;}
.w2_c00364{width:867.465000px;}
.w0_c00364{width:892.935000px;}
.w1_c00364{width:893.250000px;}
.x0_c00364{left:0.000000px;}
.x1_c00364{left:12.735000px;}
.x3_c00364{left:95.392050px;}
.x5_c00364{left:149.400150px;}
.x4_c00364{left:432.855000px;}
.x6_c00364{left:776.394150px;}
.x2_c00364{left:878.050050px;}
@media print{
.v0_c00364{vertical-align:0.000000pt;}
.ls3_c00364{letter-spacing:0.000000pt;}
.ls0_c00364{letter-spacing:0.126720pt;}
.ls1_c00364{letter-spacing:0.168960pt;}
.ls2_c00364{letter-spacing:0.198528pt;}
.ls4_c00364{letter-spacing:0.215424pt;}
.ws0_c00364{word-spacing:-16.000000pt;}
.ws1_c00364{word-spacing:-10.758528pt;}
.ws2_c00364{word-spacing:0.000000pt;}
._0_c00364{margin-left:-0.925056pt;}
._1_c00364{width:2.323200pt;}
.fs2_c00364{font-size:42.240000pt;}
.fs1_c00364{font-size:57.600000pt;}
.fs0_c00364{font-size:64.000000pt;}
.y0_c00364{bottom:0.000000pt;}
.y5_c00364{bottom:4.480000pt;}
.y1_c00364{bottom:11.320000pt;}
.y3_c00364{bottom:40.360000pt;}
.y4_c00364{bottom:47.200000pt;}
.y14_c00364{bottom:156.520000pt;}
.y13_c00364{bottom:188.520000pt;}
.y12_c00364{bottom:220.520000pt;}
.y11_c00364{bottom:252.520000pt;}
.y10_c00364{bottom:284.520000pt;}
.yf_c00364{bottom:316.520000pt;}
.ye_c00364{bottom:348.520000pt;}
.yd_c00364{bottom:378.923200pt;}
.yc_c00364{bottom:410.920000pt;}
.yb_c00364{bottom:440.679867pt;}
.ya_c00364{bottom:834.599867pt;}
.y9_c00364{bottom:866.599867pt;}
.y8_c00364{bottom:898.599867pt;}
.y7_c00364{bottom:930.599867pt;}
.y6_c00364{bottom:962.599867pt;}
.y2_c00364{bottom:1035.880000pt;}
.h4_c00364{height:18.560000pt;}
.h5_c00364{height:41.435625pt;}
.h3_c00364{height:62.812500pt;}
.h2_c00364{height:1099.880000pt;}
.h0_c00364{height:1122.520000pt;}
.h1_c00364{height:1122.666667pt;}
.w3_c00364{width:24.000000pt;}
.w2_c00364{width:771.080000pt;}
.w0_c00364{width:793.720000pt;}
.w1_c00364{width:794.000000pt;}
.x0_c00364{left:0.000000pt;}
.x1_c00364{left:11.320000pt;}
.x3_c00364{left:84.792933pt;}
.x5_c00364{left:132.800133pt;}
.x4_c00364{left:384.760000pt;}
.x6_c00364{left:690.128133pt;}
.x2_c00364{left:780.488933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00365{font-family:ff1_c00365;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00365;src:url('chunks/assets/font_bb67530c26e6e134024b496b.woff2')format("woff");}.ff2_c00365{font-family:ff2_c00365;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00365;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00365{font-family:ff3_c00365;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00365;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff4_c00365{font-family:ff4_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:ff5_c00365;src:url('chunks/assets/font_3451fa4f325e62d47422eee5.woff2')format("woff");}.ff5_c00365{font-family:ff5_c00365;line-height:0.666000;font-style: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;}
.ls1_c00365{letter-spacing:0.000000px;}
.ls0_c00365{letter-spacing:0.142560px;}
.ls3_c00365{letter-spacing:0.242352px;}
.ls2_c00365{letter-spacing:0.285120px;}
.sc__c00365{text-shadow:none;}
.sc0_c00365{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00365{-webkit-text-stroke:0px transparent;}
.sc0_c00365{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00365{word-spacing:-18.000000px;}
.ws1_c00365{word-spacing:0.000000px;}
._0_c00365{margin-left:-1.188000px;}
.fc1_c00365{color:transparent;}
.fc0_c00365{color:rgb(0,0,0);}
.fs2_c00365{font-size:47.520000px;}
.fs0_c00365{font-size:64.800000px;}
.fs1_c00365{font-size:72.000000px;}
.y0_c00365{bottom:0.000000px;}
.y5_c00365{bottom:1.440000px;}
.y1_c00365{bottom:12.735000px;}
.y3_c00365{bottom:45.405000px;}
.y4_c00365{bottom:56.700000px;}
.y14_c00365{bottom:117.765000px;}
.y13_c00365{bottom:153.765000px;}
.y12_c00365{bottom:189.765000px;}
.y11_c00365{bottom:225.765000px;}
.y10_c00365{bottom:261.765000px;}
.yf_c00365{bottom:297.765000px;}
.ye_c00365{bottom:333.765000px;}
.yd_c00365{bottom:371.205000px;}
.yc_c00365{bottom:403.964850px;}
.yb_c00365{bottom:437.084850px;}
.ya_c00365{bottom:938.924850px;}
.y9_c00365{bottom:974.924850px;}
.y8_c00365{bottom:1010.924850px;}
.y7_c00365{bottom:1046.924850px;}
.y6_c00365{bottom:1082.924850px;}
.y2_c00365{bottom:1165.365000px;}
.h5_c00365{height:17.280000px;}
.h3_c00365{height:43.189453px;}
.h6_c00365{height:47.952000px;}
.h4_c00365{height:70.664062px;}
.h2_c00365{height:1237.365000px;}
.h0_c00365{height:1262.835000px;}
.h1_c00365{height:1263.000000px;}
.w3_c00365{width:47.520000px;}
.w2_c00365{width:867.465000px;}
.w0_c00365{width:892.935000px;}
.w1_c00365{width:893.250000px;}
.x0_c00365{left:0.000000px;}
.x5_c00365{left:10.237500px;}
.x1_c00365{left:12.735000px;}
.x3_c00365{left:95.400150px;}
.x7_c00365{left:149.400150px;}
.x4_c00365{left:422.775000px;}
.x6_c00365{left:776.394150px;}
.x2_c00365{left:878.550300px;}
@media print{
.v0_c00365{vertical-align:0.000000pt;}
.ls1_c00365{letter-spacing:0.000000pt;}
.ls0_c00365{letter-spacing:0.126720pt;}
.ls3_c00365{letter-spacing:0.215424pt;}
.ls2_c00365{letter-spacing:0.253440pt;}
.ws0_c00365{word-spacing:-16.000000pt;}
.ws1_c00365{word-spacing:0.000000pt;}
._0_c00365{margin-left:-1.056000pt;}
.fs2_c00365{font-size:42.240000pt;}
.fs0_c00365{font-size:57.600000pt;}
.fs1_c00365{font-size:64.000000pt;}
.y0_c00365{bottom:0.000000pt;}
.y5_c00365{bottom:1.280000pt;}
.y1_c00365{bottom:11.320000pt;}
.y3_c00365{bottom:40.360000pt;}
.y4_c00365{bottom:50.400000pt;}
.y14_c00365{bottom:104.680000pt;}
.y13_c00365{bottom:136.680000pt;}
.y12_c00365{bottom:168.680000pt;}
.y11_c00365{bottom:200.680000pt;}
.y10_c00365{bottom:232.680000pt;}
.yf_c00365{bottom:264.680000pt;}
.ye_c00365{bottom:296.680000pt;}
.yd_c00365{bottom:329.960000pt;}
.yc_c00365{bottom:359.079867pt;}
.yb_c00365{bottom:388.519867pt;}
.ya_c00365{bottom:834.599867pt;}
.y9_c00365{bottom:866.599867pt;}
.y8_c00365{bottom:898.599867pt;}
.y7_c00365{bottom:930.599867pt;}
.y6_c00365{bottom:962.599867pt;}
.y2_c00365{bottom:1035.880000pt;}
.h5_c00365{height:15.360000pt;}
.h3_c00365{height:38.390625pt;}
.h6_c00365{height:42.624000pt;}
.h4_c00365{height:62.812500pt;}
.h2_c00365{height:1099.880000pt;}
.h0_c00365{height:1122.520000pt;}
.h1_c00365{height:1122.666667pt;}
.w3_c00365{width:42.240000pt;}
.w2_c00365{width:771.080000pt;}
.w0_c00365{width:793.720000pt;}
.w1_c00365{width:794.000000pt;}
.x0_c00365{left:0.000000pt;}
.x5_c00365{left:9.100000pt;}
.x1_c00365{left:11.320000pt;}
.x3_c00365{left:84.800133pt;}
.x7_c00365{left:132.800133pt;}
.x4_c00365{left:375.800000pt;}
.x6_c00365{left:690.128133pt;}
.x2_c00365{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e0574d9310341ad5590c705.woff2')format("woff");}.ff1_c00366{font-family:ff1_c00366;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00366;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00366{font-family:ff2_c00366;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00366;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff3_c00366{font-family:ff3_c00366;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00366{letter-spacing:0.000000px;}
.ls0_c00366{letter-spacing:0.142560px;}
.ls3_c00366{letter-spacing:0.242352px;}
.ls2_c00366{letter-spacing:0.285120px;}
.sc__c00366{text-shadow:none;}
.sc0_c00366{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00366{-webkit-text-stroke:0px transparent;}
.sc0_c00366{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00366{word-spacing:-18.000000px;}
.ws1_c00366{word-spacing:0.000000px;}
._0_c00366{margin-left:-1.188000px;}
.fc1_c00366{color:transparent;}
.fc0_c00366{color:rgb(0,0,0);}
.fs2_c00366{font-size:47.520000px;}
.fs1_c00366{font-size:64.800000px;}
.fs0_c00366{font-size:72.000000px;}
.y0_c00366{bottom:0.000000px;}
.y5_c00366{bottom:5.040000px;}
.y1_c00366{bottom:12.735000px;}
.y3_c00366{bottom:45.405000px;}
.y4_c00366{bottom:53.100000px;}
.y14_c00366{bottom:108.405000px;}
.y13_c00366{bottom:144.405000px;}
.y12_c00366{bottom:180.405000px;}
.y11_c00366{bottom:216.405000px;}
.y10_c00366{bottom:252.405000px;}
.yf_c00366{bottom:288.405000px;}
.ye_c00366{bottom:324.405000px;}
.yd_c00366{bottom:360.405000px;}
.yc_c00366{bottom:394.605000px;}
.yb_c00366{bottom:427.724850px;}
.ya_c00366{bottom:938.924850px;}
.y9_c00366{bottom:974.924850px;}
.y8_c00366{bottom:1010.924850px;}
.y7_c00366{bottom:1046.924850px;}
.y6_c00366{bottom:1082.924850px;}
.y2_c00366{bottom:1165.365000px;}
.h4_c00366{height:20.880000px;}
.h5_c00366{height:46.615078px;}
.h3_c00366{height:70.664062px;}
.h2_c00366{height:1237.365000px;}
.h0_c00366{height:1262.835000px;}
.h1_c00366{height:1263.000000px;}
.w3_c00366{width:27.000000px;}
.w2_c00366{width:867.465000px;}
.w0_c00366{width:892.935000px;}
.w1_c00366{width:893.250000px;}
.x0_c00366{left:0.000000px;}
.x1_c00366{left:12.735000px;}
.x3_c00366{left:95.406300px;}
.x6_c00366{left:149.400150px;}
.x4_c00366{left:432.855000px;}
.x5_c00366{left:776.394150px;}
.x2_c00366{left:878.550300px;}
@media print{
.v0_c00366{vertical-align:0.000000pt;}
.ls1_c00366{letter-spacing:0.000000pt;}
.ls0_c00366{letter-spacing:0.126720pt;}
.ls3_c00366{letter-spacing:0.215424pt;}
.ls2_c00366{letter-spacing:0.253440pt;}
.ws0_c00366{word-spacing:-16.000000pt;}
.ws1_c00366{word-spacing:0.000000pt;}
._0_c00366{margin-left:-1.056000pt;}
.fs2_c00366{font-size:42.240000pt;}
.fs1_c00366{font-size:57.600000pt;}
.fs0_c00366{font-size:64.000000pt;}
.y0_c00366{bottom:0.000000pt;}
.y5_c00366{bottom:4.480000pt;}
.y1_c00366{bottom:11.320000pt;}
.y3_c00366{bottom:40.360000pt;}
.y4_c00366{bottom:47.200000pt;}
.y14_c00366{bottom:96.360000pt;}
.y13_c00366{bottom:128.360000pt;}
.y12_c00366{bottom:160.360000pt;}
.y11_c00366{bottom:192.360000pt;}
.y10_c00366{bottom:224.360000pt;}
.yf_c00366{bottom:256.360000pt;}
.ye_c00366{bottom:288.360000pt;}
.yd_c00366{bottom:320.360000pt;}
.yc_c00366{bottom:350.760000pt;}
.yb_c00366{bottom:380.199867pt;}
.ya_c00366{bottom:834.599867pt;}
.y9_c00366{bottom:866.599867pt;}
.y8_c00366{bottom:898.599867pt;}
.y7_c00366{bottom:930.599867pt;}
.y6_c00366{bottom:962.599867pt;}
.y2_c00366{bottom:1035.880000pt;}
.h4_c00366{height:18.560000pt;}
.h5_c00366{height:41.435625pt;}
.h3_c00366{height:62.812500pt;}
.h2_c00366{height:1099.880000pt;}
.h0_c00366{height:1122.520000pt;}
.h1_c00366{height:1122.666667pt;}
.w3_c00366{width:24.000000pt;}
.w2_c00366{width:771.080000pt;}
.w0_c00366{width:793.720000pt;}
.w1_c00366{width:794.000000pt;}
.x0_c00366{left:0.000000pt;}
.x1_c00366{left:11.320000pt;}
.x3_c00366{left:84.805600pt;}
.x6_c00366{left:132.800133pt;}
.x4_c00366{left:384.760000pt;}
.x5_c00366{left:690.128133pt;}
.x2_c00366{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00367{font-family:ff1_c00367;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00367;src:url('chunks/assets/font_c2c6b8c9b84ba6155e882605.woff2')format("woff");}.ff2_c00367{font-family:ff2_c00367;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00367;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00367{font-family:ff3_c00367;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00367;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff4_c00367{font-family:ff4_c00367;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00367;src:url('chunks/assets/font_3451fa4f325e62d47422eee5.woff2')format("woff");}.ff5_c00367{font-family:ff5_c00367;line-height:0.666000;font-style: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;}
.ls1_c00367{letter-spacing:0.000000px;}
.ls0_c00367{letter-spacing:0.142560px;}
.ls3_c00367{letter-spacing:0.242352px;}
.ls2_c00367{letter-spacing:0.285120px;}
.sc__c00367{text-shadow:none;}
.sc0_c00367{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00367{-webkit-text-stroke:0px transparent;}
.sc0_c00367{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00367{word-spacing:-18.000000px;}
.ws1_c00367{word-spacing:0.000000px;}
._0_c00367{margin-left:-1.188000px;}
.fc1_c00367{color:transparent;}
.fc0_c00367{color:rgb(0,0,0);}
.fs2_c00367{font-size:47.520000px;}
.fs0_c00367{font-size:64.800000px;}
.fs1_c00367{font-size:72.000000px;}
.y0_c00367{bottom:0.000000px;}
.y5_c00367{bottom:1.440000px;}
.y1_c00367{bottom:12.735000px;}
.y3_c00367{bottom:45.405000px;}
.y4_c00367{bottom:56.700000px;}
.y12_c00367{bottom:117.405000px;}
.y11_c00367{bottom:153.405000px;}
.y10_c00367{bottom:189.405000px;}
.yf_c00367{bottom:225.405000px;}
.ye_c00367{bottom:261.405000px;}
.yd_c00367{bottom:298.845000px;}
.yc_c00367{bottom:331.604850px;}
.yb_c00367{bottom:364.724850px;}
.ya_c00367{bottom:938.924850px;}
.y9_c00367{bottom:974.924850px;}
.y8_c00367{bottom:1010.924850px;}
.y7_c00367{bottom:1046.924850px;}
.y6_c00367{bottom:1082.924850px;}
.y2_c00367{bottom:1165.365000px;}
.h5_c00367{height:17.280000px;}
.h3_c00367{height:43.189453px;}
.h6_c00367{height:47.952000px;}
.h4_c00367{height:70.664062px;}
.h2_c00367{height:1237.365000px;}
.h0_c00367{height:1262.835000px;}
.h1_c00367{height:1263.000000px;}
.w3_c00367{width:47.520000px;}
.w2_c00367{width:867.465000px;}
.w0_c00367{width:892.935000px;}
.w1_c00367{width:893.250000px;}
.x0_c00367{left:0.000000px;}
.x5_c00367{left:10.237500px;}
.x1_c00367{left:12.735000px;}
.x3_c00367{left:95.400150px;}
.x7_c00367{left:149.400150px;}
.x4_c00367{left:422.775000px;}
.x6_c00367{left:776.394150px;}
.x2_c00367{left:878.550300px;}
@media print{
.v0_c00367{vertical-align:0.000000pt;}
.ls1_c00367{letter-spacing:0.000000pt;}
.ls0_c00367{letter-spacing:0.126720pt;}
.ls3_c00367{letter-spacing:0.215424pt;}
.ls2_c00367{letter-spacing:0.253440pt;}
.ws0_c00367{word-spacing:-16.000000pt;}
.ws1_c00367{word-spacing:0.000000pt;}
._0_c00367{margin-left:-1.056000pt;}
.fs2_c00367{font-size:42.240000pt;}
.fs0_c00367{font-size:57.600000pt;}
.fs1_c00367{font-size:64.000000pt;}
.y0_c00367{bottom:0.000000pt;}
.y5_c00367{bottom:1.280000pt;}
.y1_c00367{bottom:11.320000pt;}
.y3_c00367{bottom:40.360000pt;}
.y4_c00367{bottom:50.400000pt;}
.y12_c00367{bottom:104.360000pt;}
.y11_c00367{bottom:136.360000pt;}
.y10_c00367{bottom:168.360000pt;}
.yf_c00367{bottom:200.360000pt;}
.ye_c00367{bottom:232.360000pt;}
.yd_c00367{bottom:265.640000pt;}
.yc_c00367{bottom:294.759867pt;}
.yb_c00367{bottom:324.199867pt;}
.ya_c00367{bottom:834.599867pt;}
.y9_c00367{bottom:866.599867pt;}
.y8_c00367{bottom:898.599867pt;}
.y7_c00367{bottom:930.599867pt;}
.y6_c00367{bottom:962.599867pt;}
.y2_c00367{bottom:1035.880000pt;}
.h5_c00367{height:15.360000pt;}
.h3_c00367{height:38.390625pt;}
.h6_c00367{height:42.624000pt;}
.h4_c00367{height:62.812500pt;}
.h2_c00367{height:1099.880000pt;}
.h0_c00367{height:1122.520000pt;}
.h1_c00367{height:1122.666667pt;}
.w3_c00367{width:42.240000pt;}
.w2_c00367{width:771.080000pt;}
.w0_c00367{width:793.720000pt;}
.w1_c00367{width:794.000000pt;}
.x0_c00367{left:0.000000pt;}
.x5_c00367{left:9.100000pt;}
.x1_c00367{left:11.320000pt;}
.x3_c00367{left:84.800133pt;}
.x7_c00367{left:132.800133pt;}
.x4_c00367{left:375.800000pt;}
.x6_c00367{left:690.128133pt;}
.x2_c00367{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fa24af546f77bdc40506dfcf.woff2')format("woff");}.ff1_c00368{font-family:ff1_c00368;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00368;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00368{font-family:ff2_c00368;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00368;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff3_c00368{font-family:ff3_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:ff4_c00368;src:url('chunks/assets/font_3451fa4f325e62d47422eee5.woff2')format("woff");}.ff4_c00368{font-family:ff4_c00368;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00368{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00368{vertical-align:0.000000px;}
.ls1_c00368{letter-spacing:0.000000px;}
.ls0_c00368{letter-spacing:0.142560px;}
.ls3_c00368{letter-spacing:0.242352px;}
.ls2_c00368{letter-spacing:0.285120px;}
.sc__c00368{text-shadow:none;}
.sc0_c00368{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00368{-webkit-text-stroke:0px transparent;}
.sc0_c00368{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00368{word-spacing:-18.000000px;}
.ws1_c00368{word-spacing:0.000000px;}
._0_c00368{margin-left:-1.188000px;}
.fc1_c00368{color:transparent;}
.fc0_c00368{color:rgb(0,0,0);}
.fs2_c00368{font-size:47.520000px;}
.fs1_c00368{font-size:64.800000px;}
.fs0_c00368{font-size:72.000000px;}
.y0_c00368{bottom:0.000000px;}
.y5_c00368{bottom:5.040000px;}
.y1_c00368{bottom:12.735000px;}
.y3_c00368{bottom:45.405000px;}
.y4_c00368{bottom:53.100000px;}
.y12_c00368{bottom:122.445000px;}
.y11_c00368{bottom:158.445000px;}
.y10_c00368{bottom:194.445000px;}
.yf_c00368{bottom:230.445000px;}
.ye_c00368{bottom:266.445000px;}
.yd_c00368{bottom:303.885000px;}
.yc_c00368{bottom:336.644850px;}
.yb_c00368{bottom:369.764850px;}
.ya_c00368{bottom:938.924850px;}
.y9_c00368{bottom:974.924850px;}
.y8_c00368{bottom:1010.924850px;}
.y7_c00368{bottom:1046.924850px;}
.y6_c00368{bottom:1082.924850px;}
.y2_c00368{bottom:1165.365000px;}
.h4_c00368{height:20.880000px;}
.h5_c00368{height:47.952000px;}
.h3_c00368{height:70.664062px;}
.h2_c00368{height:1237.365000px;}
.h0_c00368{height:1262.835000px;}
.h1_c00368{height:1263.000000px;}
.w3_c00368{width:27.000000px;}
.w2_c00368{width:867.465000px;}
.w0_c00368{width:892.935000px;}
.w1_c00368{width:893.250000px;}
.x0_c00368{left:0.000000px;}
.x1_c00368{left:12.735000px;}
.x3_c00368{left:95.406300px;}
.x6_c00368{left:149.400150px;}
.x4_c00368{left:432.855000px;}
.x5_c00368{left:776.394150px;}
.x2_c00368{left:878.550300px;}
@media print{
.v0_c00368{vertical-align:0.000000pt;}
.ls1_c00368{letter-spacing:0.000000pt;}
.ls0_c00368{letter-spacing:0.126720pt;}
.ls3_c00368{letter-spacing:0.215424pt;}
.ls2_c00368{letter-spacing:0.253440pt;}
.ws0_c00368{word-spacing:-16.000000pt;}
.ws1_c00368{word-spacing:0.000000pt;}
._0_c00368{margin-left:-1.056000pt;}
.fs2_c00368{font-size:42.240000pt;}
.fs1_c00368{font-size:57.600000pt;}
.fs0_c00368{font-size:64.000000pt;}
.y0_c00368{bottom:0.000000pt;}
.y5_c00368{bottom:4.480000pt;}
.y1_c00368{bottom:11.320000pt;}
.y3_c00368{bottom:40.360000pt;}
.y4_c00368{bottom:47.200000pt;}
.y12_c00368{bottom:108.840000pt;}
.y11_c00368{bottom:140.840000pt;}
.y10_c00368{bottom:172.840000pt;}
.yf_c00368{bottom:204.840000pt;}
.ye_c00368{bottom:236.840000pt;}
.yd_c00368{bottom:270.120000pt;}
.yc_c00368{bottom:299.239867pt;}
.yb_c00368{bottom:328.679867pt;}
.ya_c00368{bottom:834.599867pt;}
.y9_c00368{bottom:866.599867pt;}
.y8_c00368{bottom:898.599867pt;}
.y7_c00368{bottom:930.599867pt;}
.y6_c00368{bottom:962.599867pt;}
.y2_c00368{bottom:1035.880000pt;}
.h4_c00368{height:18.560000pt;}
.h5_c00368{height:42.624000pt;}
.h3_c00368{height:62.812500pt;}
.h2_c00368{height:1099.880000pt;}
.h0_c00368{height:1122.520000pt;}
.h1_c00368{height:1122.666667pt;}
.w3_c00368{width:24.000000pt;}
.w2_c00368{width:771.080000pt;}
.w0_c00368{width:793.720000pt;}
.w1_c00368{width:794.000000pt;}
.x0_c00368{left:0.000000pt;}
.x1_c00368{left:11.320000pt;}
.x3_c00368{left:84.805600pt;}
.x6_c00368{left:132.800133pt;}
.x4_c00368{left:384.760000pt;}
.x5_c00368{left:690.128133pt;}
.x2_c00368{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00369{font-family:ff1_c00369;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00369;src:url('chunks/assets/font_b98f78da68a6e7640c1d478d.woff2')format("woff");}.ff2_c00369{font-family:ff2_c00369;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00369;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00369{font-family:ff3_c00369;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00369;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff4_c00369{font-family:ff4_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:ff5_c00369;src:url('chunks/assets/font_3451fa4f325e62d47422eee5.woff2')format("woff");}.ff5_c00369{font-family:ff5_c00369;line-height:0.666000;font-style: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;}
.ls1_c00369{letter-spacing:0.000000px;}
.ls4_c00369{letter-spacing:0.050400px;}
.ls0_c00369{letter-spacing:0.142560px;}
.ls3_c00369{letter-spacing:0.242352px;}
.ls2_c00369{letter-spacing:0.285120px;}
.sc__c00369{text-shadow:none;}
.sc0_c00369{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00369{-webkit-text-stroke:0px transparent;}
.sc0_c00369{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00369{word-spacing:-18.050400px;}
.ws0_c00369{word-spacing:-18.000000px;}
.ws2_c00369{word-spacing:0.000000px;}
._0_c00369{margin-left:-1.188000px;}
._1_c00369{width:10.144800px;}
._2_c00369{width:11.217600px;}
._5_c00369{width:15.242400px;}
._4_c00369{width:20.311200px;}
._3_c00369{width:28.699200px;}
.fc1_c00369{color:transparent;}
.fc0_c00369{color:rgb(0,0,0);}
.fs2_c00369{font-size:47.520000px;}
.fs0_c00369{font-size:64.800000px;}
.fs1_c00369{font-size:72.000000px;}
.y0_c00369{bottom:0.000000px;}
.y5_c00369{bottom:1.440000px;}
.y1_c00369{bottom:12.735000px;}
.y3_c00369{bottom:45.405000px;}
.y4_c00369{bottom:56.700000px;}
.y14_c00369{bottom:106.605000px;}
.y13_c00369{bottom:142.605000px;}
.y12_c00369{bottom:178.605000px;}
.y11_c00369{bottom:214.605000px;}
.y10_c00369{bottom:250.605000px;}
.yf_c00369{bottom:286.605000px;}
.ye_c00369{bottom:322.605000px;}
.yd_c00369{bottom:360.045000px;}
.yc_c00369{bottom:392.805000px;}
.yb_c00369{bottom:425.924850px;}
.ya_c00369{bottom:938.924850px;}
.y9_c00369{bottom:974.924850px;}
.y8_c00369{bottom:1010.924850px;}
.y7_c00369{bottom:1046.924850px;}
.y6_c00369{bottom:1082.924850px;}
.y2_c00369{bottom:1165.365000px;}
.h5_c00369{height:17.280000px;}
.h3_c00369{height:43.189453px;}
.h6_c00369{height:46.615078px;}
.h7_c00369{height:47.952000px;}
.h4_c00369{height:70.664062px;}
.h2_c00369{height:1237.365000px;}
.h0_c00369{height:1262.835000px;}
.h1_c00369{height:1263.000000px;}
.w3_c00369{width:47.520000px;}
.w2_c00369{width:867.465000px;}
.w0_c00369{width:892.935000px;}
.w1_c00369{width:893.250000px;}
.x0_c00369{left:0.000000px;}
.x5_c00369{left:10.237500px;}
.x1_c00369{left:12.735000px;}
.x3_c00369{left:95.400150px;}
.x7_c00369{left:149.400150px;}
.x4_c00369{left:422.775000px;}
.x6_c00369{left:776.394150px;}
.x2_c00369{left:878.550300px;}
@media print{
.v0_c00369{vertical-align:0.000000pt;}
.ls1_c00369{letter-spacing:0.000000pt;}
.ls4_c00369{letter-spacing:0.044800pt;}
.ls0_c00369{letter-spacing:0.126720pt;}
.ls3_c00369{letter-spacing:0.215424pt;}
.ls2_c00369{letter-spacing:0.253440pt;}
.ws1_c00369{word-spacing:-16.044800pt;}
.ws0_c00369{word-spacing:-16.000000pt;}
.ws2_c00369{word-spacing:0.000000pt;}
._0_c00369{margin-left:-1.056000pt;}
._1_c00369{width:9.017600pt;}
._2_c00369{width:9.971200pt;}
._5_c00369{width:13.548800pt;}
._4_c00369{width:18.054400pt;}
._3_c00369{width:25.510400pt;}
.fs2_c00369{font-size:42.240000pt;}
.fs0_c00369{font-size:57.600000pt;}
.fs1_c00369{font-size:64.000000pt;}
.y0_c00369{bottom:0.000000pt;}
.y5_c00369{bottom:1.280000pt;}
.y1_c00369{bottom:11.320000pt;}
.y3_c00369{bottom:40.360000pt;}
.y4_c00369{bottom:50.400000pt;}
.y14_c00369{bottom:94.760000pt;}
.y13_c00369{bottom:126.760000pt;}
.y12_c00369{bottom:158.760000pt;}
.y11_c00369{bottom:190.760000pt;}
.y10_c00369{bottom:222.760000pt;}
.yf_c00369{bottom:254.760000pt;}
.ye_c00369{bottom:286.760000pt;}
.yd_c00369{bottom:320.040000pt;}
.yc_c00369{bottom:349.160000pt;}
.yb_c00369{bottom:378.599867pt;}
.ya_c00369{bottom:834.599867pt;}
.y9_c00369{bottom:866.599867pt;}
.y8_c00369{bottom:898.599867pt;}
.y7_c00369{bottom:930.599867pt;}
.y6_c00369{bottom:962.599867pt;}
.y2_c00369{bottom:1035.880000pt;}
.h5_c00369{height:15.360000pt;}
.h3_c00369{height:38.390625pt;}
.h6_c00369{height:41.435625pt;}
.h7_c00369{height:42.624000pt;}
.h4_c00369{height:62.812500pt;}
.h2_c00369{height:1099.880000pt;}
.h0_c00369{height:1122.520000pt;}
.h1_c00369{height:1122.666667pt;}
.w3_c00369{width:42.240000pt;}
.w2_c00369{width:771.080000pt;}
.w0_c00369{width:793.720000pt;}
.w1_c00369{width:794.000000pt;}
.x0_c00369{left:0.000000pt;}
.x5_c00369{left:9.100000pt;}
.x1_c00369{left:11.320000pt;}
.x3_c00369{left:84.800133pt;}
.x7_c00369{left:132.800133pt;}
.x4_c00369{left:375.800000pt;}
.x6_c00369{left:690.128133pt;}
.x2_c00369{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c8133b80d3736729de1f351c.woff2')format("woff");}.ff1_c00370{font-family:ff1_c00370;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00370;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00370{font-family:ff2_c00370;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00370;src:url('chunks/assets/font_3a59d183ad29b88adb6d1bad.woff2')format("woff");}.ff3_c00370{font-family:ff3_c00370;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00370{letter-spacing:0.000000px;}
.sc__c00370{text-shadow:none;}
.sc0_c00370{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00370{-webkit-text-stroke:0px transparent;}
.sc0_c00370{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00370{word-spacing:-18.000000px;}
.ws1_c00370{word-spacing:0.000000px;}
._2_c00370{width:6.624000px;}
._0_c00370{width:19.857600px;}
._1_c00370{width:27.720000px;}
.fc1_c00370{color:transparent;}
.fc0_c00370{color:rgb(0,0,0);}
.fs1_c00370{font-size:64.800000px;}
.fs0_c00370{font-size:72.000000px;}
.y0_c00370{bottom:0.000000px;}
.y5_c00370{bottom:5.040000px;}
.y1_c00370{bottom:12.735000px;}
.y3_c00370{bottom:45.405000px;}
.y4_c00370{bottom:53.100000px;}
.ye_c00370{bottom:794.924850px;}
.yd_c00370{bottom:830.924850px;}
.yc_c00370{bottom:866.924850px;}
.yb_c00370{bottom:902.924850px;}
.ya_c00370{bottom:938.924850px;}
.y9_c00370{bottom:974.924850px;}
.y8_c00370{bottom:1010.924850px;}
.y7_c00370{bottom:1046.924850px;}
.y6_c00370{bottom:1082.924850px;}
.y2_c00370{bottom:1165.365000px;}
.h4_c00370{height:20.880000px;}
.h3_c00370{height:70.664062px;}
.h5_c00370{height:71.824219px;}
.h2_c00370{height:1237.365000px;}
.h0_c00370{height:1262.835000px;}
.h1_c00370{height:1263.000000px;}
.w3_c00370{width:27.000000px;}
.w2_c00370{width:867.465000px;}
.w0_c00370{width:892.935000px;}
.w1_c00370{width:893.250000px;}
.x0_c00370{left:0.000000px;}
.x1_c00370{left:12.735000px;}
.x3_c00370{left:95.406300px;}
.x5_c00370{left:149.400150px;}
.x4_c00370{left:432.855000px;}
.x2_c00370{left:878.550300px;}
@media print{
.v0_c00370{vertical-align:0.000000pt;}
.ls0_c00370{letter-spacing:0.000000pt;}
.ws0_c00370{word-spacing:-16.000000pt;}
.ws1_c00370{word-spacing:0.000000pt;}
._2_c00370{width:5.888000pt;}
._0_c00370{width:17.651200pt;}
._1_c00370{width:24.640000pt;}
.fs1_c00370{font-size:57.600000pt;}
.fs0_c00370{font-size:64.000000pt;}
.y0_c00370{bottom:0.000000pt;}
.y5_c00370{bottom:4.480000pt;}
.y1_c00370{bottom:11.320000pt;}
.y3_c00370{bottom:40.360000pt;}
.y4_c00370{bottom:47.200000pt;}
.ye_c00370{bottom:706.599867pt;}
.yd_c00370{bottom:738.599867pt;}
.yc_c00370{bottom:770.599867pt;}
.yb_c00370{bottom:802.599867pt;}
.ya_c00370{bottom:834.599867pt;}
.y9_c00370{bottom:866.599867pt;}
.y8_c00370{bottom:898.599867pt;}
.y7_c00370{bottom:930.599867pt;}
.y6_c00370{bottom:962.599867pt;}
.y2_c00370{bottom:1035.880000pt;}
.h4_c00370{height:18.560000pt;}
.h3_c00370{height:62.812500pt;}
.h5_c00370{height:63.843750pt;}
.h2_c00370{height:1099.880000pt;}
.h0_c00370{height:1122.520000pt;}
.h1_c00370{height:1122.666667pt;}
.w3_c00370{width:24.000000pt;}
.w2_c00370{width:771.080000pt;}
.w0_c00370{width:793.720000pt;}
.w1_c00370{width:794.000000pt;}
.x0_c00370{left:0.000000pt;}
.x1_c00370{left:11.320000pt;}
.x3_c00370{left:84.805600pt;}
.x5_c00370{left:132.800133pt;}
.x4_c00370{left:384.760000pt;}
.x2_c00370{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00371{font-family:ff1_c00371;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00371;src:url('chunks/assets/font_f516abb83e8c8778627fe1f6.woff2')format("woff");}.ff2_c00371{font-family:ff2_c00371;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00371;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00371{font-family:ff3_c00371;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00371;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.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;}
.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;}
.ls1_c00371{letter-spacing:0.000000px;}
.ls0_c00371{letter-spacing:0.142560px;}
.ls3_c00371{letter-spacing:0.242352px;}
.ls2_c00371{letter-spacing:0.285120px;}
.sc__c00371{text-shadow:none;}
.sc0_c00371{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00371{-webkit-text-stroke:0px transparent;}
.sc0_c00371{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00371{word-spacing:-18.000000px;}
.ws1_c00371{word-spacing:0.000000px;}
._0_c00371{margin-left:-1.188000px;}
.fc1_c00371{color:transparent;}
.fc0_c00371{color:rgb(0,0,0);}
.fs2_c00371{font-size:47.520000px;}
.fs0_c00371{font-size:64.800000px;}
.fs1_c00371{font-size:72.000000px;}
.y0_c00371{bottom:0.000000px;}
.y5_c00371{bottom:1.440000px;}
.y1_c00371{bottom:12.735000px;}
.y3_c00371{bottom:45.405000px;}
.y4_c00371{bottom:56.700000px;}
.yb_c00371{bottom:112.365000px;}
.ya_c00371{bottom:148.365000px;}
.y9_c00371{bottom:184.365000px;}
.y8_c00371{bottom:220.365000px;}
.y7_c00371{bottom:254.565000px;}
.y6_c00371{bottom:287.685000px;}
.y2_c00371{bottom:1165.365000px;}
.h5_c00371{height:17.280000px;}
.h3_c00371{height:43.189453px;}
.h6_c00371{height:46.615078px;}
.h4_c00371{height:70.664062px;}
.h2_c00371{height:1237.365000px;}
.h0_c00371{height:1262.835000px;}
.h1_c00371{height:1263.000000px;}
.w3_c00371{width:47.520000px;}
.w2_c00371{width:867.465000px;}
.w0_c00371{width:892.935000px;}
.w1_c00371{width:893.250000px;}
.x0_c00371{left:0.000000px;}
.x5_c00371{left:10.237500px;}
.x1_c00371{left:12.735000px;}
.x3_c00371{left:95.400150px;}
.x7_c00371{left:149.400150px;}
.x4_c00371{left:422.775000px;}
.x6_c00371{left:776.400150px;}
.x2_c00371{left:878.550300px;}
@media print{
.v0_c00371{vertical-align:0.000000pt;}
.ls1_c00371{letter-spacing:0.000000pt;}
.ls0_c00371{letter-spacing:0.126720pt;}
.ls3_c00371{letter-spacing:0.215424pt;}
.ls2_c00371{letter-spacing:0.253440pt;}
.ws0_c00371{word-spacing:-16.000000pt;}
.ws1_c00371{word-spacing:0.000000pt;}
._0_c00371{margin-left:-1.056000pt;}
.fs2_c00371{font-size:42.240000pt;}
.fs0_c00371{font-size:57.600000pt;}
.fs1_c00371{font-size:64.000000pt;}
.y0_c00371{bottom:0.000000pt;}
.y5_c00371{bottom:1.280000pt;}
.y1_c00371{bottom:11.320000pt;}
.y3_c00371{bottom:40.360000pt;}
.y4_c00371{bottom:50.400000pt;}
.yb_c00371{bottom:99.880000pt;}
.ya_c00371{bottom:131.880000pt;}
.y9_c00371{bottom:163.880000pt;}
.y8_c00371{bottom:195.880000pt;}
.y7_c00371{bottom:226.280000pt;}
.y6_c00371{bottom:255.720000pt;}
.y2_c00371{bottom:1035.880000pt;}
.h5_c00371{height:15.360000pt;}
.h3_c00371{height:38.390625pt;}
.h6_c00371{height:41.435625pt;}
.h4_c00371{height:62.812500pt;}
.h2_c00371{height:1099.880000pt;}
.h0_c00371{height:1122.520000pt;}
.h1_c00371{height:1122.666667pt;}
.w3_c00371{width:42.240000pt;}
.w2_c00371{width:771.080000pt;}
.w0_c00371{width:793.720000pt;}
.w1_c00371{width:794.000000pt;}
.x0_c00371{left:0.000000pt;}
.x5_c00371{left:9.100000pt;}
.x1_c00371{left:11.320000pt;}
.x3_c00371{left:84.800133pt;}
.x7_c00371{left:132.800133pt;}
.x4_c00371{left:375.800000pt;}
.x6_c00371{left:690.133467pt;}
.x2_c00371{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9dc44530af2d44ef0150f91b.woff2')format("woff");}.ff1_c00372{font-family:ff1_c00372;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00372;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00372{font-family:ff2_c00372;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00372;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff3_c00372{font-family:ff3_c00372;line-height:1.284180;font-style: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;}
.ls1_c00372{letter-spacing:0.000000px;}
.ls0_c00372{letter-spacing:0.142560px;}
.ls3_c00372{letter-spacing:0.242352px;}
.ls2_c00372{letter-spacing:0.285120px;}
.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:-18.000000px;}
.ws1_c00372{word-spacing:-12.165120px;}
.ws2_c00372{word-spacing:0.000000px;}
._0_c00372{margin-left:-1.130976px;}
._1_c00372{width:194.400000px;}
.fc1_c00372{color:transparent;}
.fc0_c00372{color:rgb(0,0,0);}
.fs2_c00372{font-size:47.520000px;}
.fs1_c00372{font-size:64.800000px;}
.fs0_c00372{font-size:72.000000px;}
.y0_c00372{bottom:0.000000px;}
.y5_c00372{bottom:5.040000px;}
.y1_c00372{bottom:12.735000px;}
.y3_c00372{bottom:45.405000px;}
.y4_c00372{bottom:53.100000px;}
.y16_c00372{bottom:117.045000px;}
.y15_c00372{bottom:153.045000px;}
.y14_c00372{bottom:189.045000px;}
.y13_c00372{bottom:225.045000px;}
.y12_c00372{bottom:261.045000px;}
.y11_c00372{bottom:297.045000px;}
.y10_c00372{bottom:333.045000px;}
.yf_c00372{bottom:369.045000px;}
.ye_c00372{bottom:405.045000px;}
.yd_c00372{bottom:441.045000px;}
.yc_c00372{bottom:477.045000px;}
.yb_c00372{bottom:513.045000px;}
.ya_c00372{bottom:549.045000px;}
.y9_c00372{bottom:583.245000px;}
.y8_c00372{bottom:616.364850px;}
.y7_c00372{bottom:1046.924850px;}
.y6_c00372{bottom:1082.924850px;}
.y2_c00372{bottom:1165.365000px;}
.h4_c00372{height:20.880000px;}
.h5_c00372{height:46.615078px;}
.h3_c00372{height:70.664062px;}
.h2_c00372{height:1237.365000px;}
.h0_c00372{height:1262.835000px;}
.h1_c00372{height:1263.000000px;}
.w3_c00372{width:27.000000px;}
.w2_c00372{width:867.465000px;}
.w0_c00372{width:892.935000px;}
.w1_c00372{width:893.250000px;}
.x0_c00372{left:0.000000px;}
.x1_c00372{left:12.735000px;}
.x3_c00372{left:95.406300px;}
.x5_c00372{left:149.400150px;}
.x4_c00372{left:432.855000px;}
.x6_c00372{left:776.394150px;}
.x2_c00372{left:878.550300px;}
@media print{
.v0_c00372{vertical-align:0.000000pt;}
.ls1_c00372{letter-spacing:0.000000pt;}
.ls0_c00372{letter-spacing:0.126720pt;}
.ls3_c00372{letter-spacing:0.215424pt;}
.ls2_c00372{letter-spacing:0.253440pt;}
.ws0_c00372{word-spacing:-16.000000pt;}
.ws1_c00372{word-spacing:-10.813440pt;}
.ws2_c00372{word-spacing:0.000000pt;}
._0_c00372{margin-left:-1.005312pt;}
._1_c00372{width:172.800000pt;}
.fs2_c00372{font-size:42.240000pt;}
.fs1_c00372{font-size:57.600000pt;}
.fs0_c00372{font-size:64.000000pt;}
.y0_c00372{bottom:0.000000pt;}
.y5_c00372{bottom:4.480000pt;}
.y1_c00372{bottom:11.320000pt;}
.y3_c00372{bottom:40.360000pt;}
.y4_c00372{bottom:47.200000pt;}
.y16_c00372{bottom:104.040000pt;}
.y15_c00372{bottom:136.040000pt;}
.y14_c00372{bottom:168.040000pt;}
.y13_c00372{bottom:200.040000pt;}
.y12_c00372{bottom:232.040000pt;}
.y11_c00372{bottom:264.040000pt;}
.y10_c00372{bottom:296.040000pt;}
.yf_c00372{bottom:328.040000pt;}
.ye_c00372{bottom:360.040000pt;}
.yd_c00372{bottom:392.040000pt;}
.yc_c00372{bottom:424.040000pt;}
.yb_c00372{bottom:456.040000pt;}
.ya_c00372{bottom:488.040000pt;}
.y9_c00372{bottom:518.440000pt;}
.y8_c00372{bottom:547.879867pt;}
.y7_c00372{bottom:930.599867pt;}
.y6_c00372{bottom:962.599867pt;}
.y2_c00372{bottom:1035.880000pt;}
.h4_c00372{height:18.560000pt;}
.h5_c00372{height:41.435625pt;}
.h3_c00372{height:62.812500pt;}
.h2_c00372{height:1099.880000pt;}
.h0_c00372{height:1122.520000pt;}
.h1_c00372{height:1122.666667pt;}
.w3_c00372{width:24.000000pt;}
.w2_c00372{width:771.080000pt;}
.w0_c00372{width:793.720000pt;}
.w1_c00372{width:794.000000pt;}
.x0_c00372{left:0.000000pt;}
.x1_c00372{left:11.320000pt;}
.x3_c00372{left:84.805600pt;}
.x5_c00372{left:132.800133pt;}
.x4_c00372{left:384.760000pt;}
.x6_c00372{left:690.128133pt;}
.x2_c00372{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00373{font-family:ff1_c00373;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00373;src:url('chunks/assets/font_0490fac03004f14efe0ef825.woff2')format("woff");}.ff2_c00373{font-family:ff2_c00373;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00373;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00373{font-family:ff3_c00373;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00373;src:url('chunks/assets/font_25bdd27bc2b0d97135c282ae.woff2')format("woff");}.ff4_c00373{font-family:ff4_c00373;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00373{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00373{vertical-align:0.000000px;}
.ls1_c00373{letter-spacing:0.000000px;}
.ls2_c00373{letter-spacing:0.118800px;}
.ls0_c00373{letter-spacing:0.142560px;}
.ls4_c00373{letter-spacing:0.242352px;}
.ls3_c00373{letter-spacing:0.285120px;}
.sc__c00373{text-shadow:none;}
.sc0_c00373{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00373{-webkit-text-stroke:0px transparent;}
.sc0_c00373{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00373{word-spacing:-18.000000px;}
.ws1_c00373{word-spacing:0.000000px;}
._0_c00373{margin-left:-1.188000px;}
.fc1_c00373{color:transparent;}
.fc0_c00373{color:rgb(0,0,0);}
.fs2_c00373{font-size:47.520000px;}
.fs0_c00373{font-size:64.800000px;}
.fs1_c00373{font-size:72.000000px;}
.y0_c00373{bottom:0.000000px;}
.y5_c00373{bottom:1.440000px;}
.y1_c00373{bottom:12.735000px;}
.y3_c00373{bottom:45.405000px;}
.y4_c00373{bottom:56.700000px;}
.y16_c00373{bottom:123.525000px;}
.y15_c00373{bottom:159.525000px;}
.y14_c00373{bottom:195.525000px;}
.y13_c00373{bottom:231.525000px;}
.y12_c00373{bottom:267.525000px;}
.y11_c00373{bottom:303.525000px;}
.y10_c00373{bottom:339.525000px;}
.yf_c00373{bottom:375.525000px;}
.ye_c00373{bottom:409.725000px;}
.yd_c00373{bottom:442.844850px;}
.yc_c00373{bottom:866.924850px;}
.yb_c00373{bottom:902.924850px;}
.ya_c00373{bottom:938.924850px;}
.y9_c00373{bottom:974.924850px;}
.y8_c00373{bottom:1010.924850px;}
.y7_c00373{bottom:1046.924850px;}
.y6_c00373{bottom:1082.924850px;}
.y2_c00373{bottom:1165.365000px;}
.h5_c00373{height:17.280000px;}
.h3_c00373{height:43.189453px;}
.h7_c00373{height:46.615078px;}
.h6_c00373{height:70.628906px;}
.h4_c00373{height:70.664062px;}
.h2_c00373{height:1237.365000px;}
.h0_c00373{height:1262.835000px;}
.h1_c00373{height:1263.000000px;}
.w3_c00373{width:47.520000px;}
.w2_c00373{width:867.465000px;}
.w0_c00373{width:892.935000px;}
.w1_c00373{width:893.250000px;}
.x0_c00373{left:0.000000px;}
.x5_c00373{left:10.237500px;}
.x1_c00373{left:12.735000px;}
.x3_c00373{left:95.400150px;}
.x6_c00373{left:149.391300px;}
.x4_c00373{left:422.775000px;}
.x7_c00373{left:776.385300px;}
.x2_c00373{left:878.550300px;}
@media print{
.v0_c00373{vertical-align:0.000000pt;}
.ls1_c00373{letter-spacing:0.000000pt;}
.ls2_c00373{letter-spacing:0.105600pt;}
.ls0_c00373{letter-spacing:0.126720pt;}
.ls4_c00373{letter-spacing:0.215424pt;}
.ls3_c00373{letter-spacing:0.253440pt;}
.ws0_c00373{word-spacing:-16.000000pt;}
.ws1_c00373{word-spacing:0.000000pt;}
._0_c00373{margin-left:-1.056000pt;}
.fs2_c00373{font-size:42.240000pt;}
.fs0_c00373{font-size:57.600000pt;}
.fs1_c00373{font-size:64.000000pt;}
.y0_c00373{bottom:0.000000pt;}
.y5_c00373{bottom:1.280000pt;}
.y1_c00373{bottom:11.320000pt;}
.y3_c00373{bottom:40.360000pt;}
.y4_c00373{bottom:50.400000pt;}
.y16_c00373{bottom:109.800000pt;}
.y15_c00373{bottom:141.800000pt;}
.y14_c00373{bottom:173.800000pt;}
.y13_c00373{bottom:205.800000pt;}
.y12_c00373{bottom:237.800000pt;}
.y11_c00373{bottom:269.800000pt;}
.y10_c00373{bottom:301.800000pt;}
.yf_c00373{bottom:333.800000pt;}
.ye_c00373{bottom:364.200000pt;}
.yd_c00373{bottom:393.639867pt;}
.yc_c00373{bottom:770.599867pt;}
.yb_c00373{bottom:802.599867pt;}
.ya_c00373{bottom:834.599867pt;}
.y9_c00373{bottom:866.599867pt;}
.y8_c00373{bottom:898.599867pt;}
.y7_c00373{bottom:930.599867pt;}
.y6_c00373{bottom:962.599867pt;}
.y2_c00373{bottom:1035.880000pt;}
.h5_c00373{height:15.360000pt;}
.h3_c00373{height:38.390625pt;}
.h7_c00373{height:41.435625pt;}
.h6_c00373{height:62.781250pt;}
.h4_c00373{height:62.812500pt;}
.h2_c00373{height:1099.880000pt;}
.h0_c00373{height:1122.520000pt;}
.h1_c00373{height:1122.666667pt;}
.w3_c00373{width:42.240000pt;}
.w2_c00373{width:771.080000pt;}
.w0_c00373{width:793.720000pt;}
.w1_c00373{width:794.000000pt;}
.x0_c00373{left:0.000000pt;}
.x5_c00373{left:9.100000pt;}
.x1_c00373{left:11.320000pt;}
.x3_c00373{left:84.800133pt;}
.x6_c00373{left:132.792267pt;}
.x4_c00373{left:375.800000pt;}
.x7_c00373{left:690.120267pt;}
.x2_c00373{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2a297fc7c9f07dc35edd1ba2.woff2')format("woff");}.ff1_c00374{font-family:ff1_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:ff2_c00374;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00374{font-family:ff2_c00374;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00374;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff3_c00374{font-family:ff3_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;}
.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;}
.ls1_c00374{letter-spacing:0.000000px;}
.ls0_c00374{letter-spacing:0.142560px;}
.ls3_c00374{letter-spacing:0.242352px;}
.ls2_c00374{letter-spacing:0.285120px;}
.sc__c00374{text-shadow:none;}
.sc0_c00374{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00374{-webkit-text-stroke:0px transparent;}
.sc0_c00374{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00374{word-spacing:-18.000000px;}
.ws1_c00374{word-spacing:0.000000px;}
._0_c00374{margin-left:-1.188000px;}
.fc1_c00374{color:transparent;}
.fc0_c00374{color:rgb(0,0,0);}
.fs2_c00374{font-size:47.520000px;}
.fs1_c00374{font-size:64.800000px;}
.fs0_c00374{font-size:72.000000px;}
.y0_c00374{bottom:0.000000px;}
.y5_c00374{bottom:5.040000px;}
.y1_c00374{bottom:12.735000px;}
.y3_c00374{bottom:45.405000px;}
.y4_c00374{bottom:53.100000px;}
.y13_c00374{bottom:135.765000px;}
.y12_c00374{bottom:171.765000px;}
.y11_c00374{bottom:207.765000px;}
.y10_c00374{bottom:243.765000px;}
.yf_c00374{bottom:279.765000px;}
.ye_c00374{bottom:315.765000px;}
.yd_c00374{bottom:351.765000px;}
.yc_c00374{bottom:385.965000px;}
.yb_c00374{bottom:419.084850px;}
.ya_c00374{bottom:938.924850px;}
.y9_c00374{bottom:974.924850px;}
.y8_c00374{bottom:1010.924850px;}
.y7_c00374{bottom:1046.924850px;}
.y6_c00374{bottom:1082.924850px;}
.y2_c00374{bottom:1165.365000px;}
.h4_c00374{height:20.880000px;}
.h5_c00374{height:46.615078px;}
.h3_c00374{height:70.664062px;}
.h2_c00374{height:1237.365000px;}
.h0_c00374{height:1262.835000px;}
.h1_c00374{height:1263.000000px;}
.w3_c00374{width:27.000000px;}
.w2_c00374{width:867.465000px;}
.w0_c00374{width:892.935000px;}
.w1_c00374{width:893.250000px;}
.x0_c00374{left:0.000000px;}
.x1_c00374{left:12.735000px;}
.x3_c00374{left:95.406300px;}
.x5_c00374{left:149.400150px;}
.x4_c00374{left:432.855000px;}
.x6_c00374{left:776.394150px;}
.x2_c00374{left:878.550300px;}
@media print{
.v0_c00374{vertical-align:0.000000pt;}
.ls1_c00374{letter-spacing:0.000000pt;}
.ls0_c00374{letter-spacing:0.126720pt;}
.ls3_c00374{letter-spacing:0.215424pt;}
.ls2_c00374{letter-spacing:0.253440pt;}
.ws0_c00374{word-spacing:-16.000000pt;}
.ws1_c00374{word-spacing:0.000000pt;}
._0_c00374{margin-left:-1.056000pt;}
.fs2_c00374{font-size:42.240000pt;}
.fs1_c00374{font-size:57.600000pt;}
.fs0_c00374{font-size:64.000000pt;}
.y0_c00374{bottom:0.000000pt;}
.y5_c00374{bottom:4.480000pt;}
.y1_c00374{bottom:11.320000pt;}
.y3_c00374{bottom:40.360000pt;}
.y4_c00374{bottom:47.200000pt;}
.y13_c00374{bottom:120.680000pt;}
.y12_c00374{bottom:152.680000pt;}
.y11_c00374{bottom:184.680000pt;}
.y10_c00374{bottom:216.680000pt;}
.yf_c00374{bottom:248.680000pt;}
.ye_c00374{bottom:280.680000pt;}
.yd_c00374{bottom:312.680000pt;}
.yc_c00374{bottom:343.080000pt;}
.yb_c00374{bottom:372.519867pt;}
.ya_c00374{bottom:834.599867pt;}
.y9_c00374{bottom:866.599867pt;}
.y8_c00374{bottom:898.599867pt;}
.y7_c00374{bottom:930.599867pt;}
.y6_c00374{bottom:962.599867pt;}
.y2_c00374{bottom:1035.880000pt;}
.h4_c00374{height:18.560000pt;}
.h5_c00374{height:41.435625pt;}
.h3_c00374{height:62.812500pt;}
.h2_c00374{height:1099.880000pt;}
.h0_c00374{height:1122.520000pt;}
.h1_c00374{height:1122.666667pt;}
.w3_c00374{width:24.000000pt;}
.w2_c00374{width:771.080000pt;}
.w0_c00374{width:793.720000pt;}
.w1_c00374{width:794.000000pt;}
.x0_c00374{left:0.000000pt;}
.x1_c00374{left:11.320000pt;}
.x3_c00374{left:84.805600pt;}
.x5_c00374{left:132.800133pt;}
.x4_c00374{left:384.760000pt;}
.x6_c00374{left:690.128133pt;}
.x2_c00374{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00375{font-family:ff1_c00375;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00375;src:url('chunks/assets/font_bfa62d8e73a1450abd7b5a6f.woff2')format("woff");}.ff2_c00375{font-family:ff2_c00375;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00375;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00375{font-family:ff3_c00375;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00375;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff4_c00375{font-family:ff4_c00375;line-height:1.284180;font-style: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;}
.ls1_c00375{letter-spacing:0.000000px;}
.ls0_c00375{letter-spacing:0.142560px;}
.ls3_c00375{letter-spacing:0.242352px;}
.ls2_c00375{letter-spacing:0.285120px;}
.sc__c00375{text-shadow:none;}
.sc0_c00375{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00375{-webkit-text-stroke:0px transparent;}
.sc0_c00375{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00375{word-spacing:-18.000000px;}
.ws1_c00375{word-spacing:0.000000px;}
._0_c00375{margin-left:-1.188000px;}
.fc1_c00375{color:transparent;}
.fc0_c00375{color:rgb(0,0,0);}
.fs2_c00375{font-size:47.520000px;}
.fs0_c00375{font-size:64.800000px;}
.fs1_c00375{font-size:72.000000px;}
.y0_c00375{bottom:0.000000px;}
.y5_c00375{bottom:1.440000px;}
.y1_c00375{bottom:12.735000px;}
.y3_c00375{bottom:45.405000px;}
.y4_c00375{bottom:56.700000px;}
.y14_c00375{bottom:116.325000px;}
.y13_c00375{bottom:152.325000px;}
.y12_c00375{bottom:188.325000px;}
.y11_c00375{bottom:224.325000px;}
.y10_c00375{bottom:260.325000px;}
.yf_c00375{bottom:296.325000px;}
.ye_c00375{bottom:332.325000px;}
.yd_c00375{bottom:368.325000px;}
.yc_c00375{bottom:402.525000px;}
.yb_c00375{bottom:436.004850px;}
.ya_c00375{bottom:938.924850px;}
.y9_c00375{bottom:974.924850px;}
.y8_c00375{bottom:1010.924850px;}
.y7_c00375{bottom:1046.924850px;}
.y6_c00375{bottom:1082.924850px;}
.y2_c00375{bottom:1165.365000px;}
.h5_c00375{height:17.280000px;}
.h3_c00375{height:43.189453px;}
.h6_c00375{height:46.615078px;}
.h4_c00375{height:70.664062px;}
.h2_c00375{height:1237.365000px;}
.h0_c00375{height:1262.835000px;}
.h1_c00375{height:1263.000000px;}
.w3_c00375{width:47.520000px;}
.w2_c00375{width:867.465000px;}
.w0_c00375{width:892.935000px;}
.w1_c00375{width:893.250000px;}
.x0_c00375{left:0.000000px;}
.x5_c00375{left:10.237500px;}
.x1_c00375{left:12.735000px;}
.x3_c00375{left:95.400150px;}
.x6_c00375{left:149.400150px;}
.x4_c00375{left:422.775000px;}
.x7_c00375{left:776.394150px;}
.x2_c00375{left:878.550300px;}
@media print{
.v0_c00375{vertical-align:0.000000pt;}
.ls1_c00375{letter-spacing:0.000000pt;}
.ls0_c00375{letter-spacing:0.126720pt;}
.ls3_c00375{letter-spacing:0.215424pt;}
.ls2_c00375{letter-spacing:0.253440pt;}
.ws0_c00375{word-spacing:-16.000000pt;}
.ws1_c00375{word-spacing:0.000000pt;}
._0_c00375{margin-left:-1.056000pt;}
.fs2_c00375{font-size:42.240000pt;}
.fs0_c00375{font-size:57.600000pt;}
.fs1_c00375{font-size:64.000000pt;}
.y0_c00375{bottom:0.000000pt;}
.y5_c00375{bottom:1.280000pt;}
.y1_c00375{bottom:11.320000pt;}
.y3_c00375{bottom:40.360000pt;}
.y4_c00375{bottom:50.400000pt;}
.y14_c00375{bottom:103.400000pt;}
.y13_c00375{bottom:135.400000pt;}
.y12_c00375{bottom:167.400000pt;}
.y11_c00375{bottom:199.400000pt;}
.y10_c00375{bottom:231.400000pt;}
.yf_c00375{bottom:263.400000pt;}
.ye_c00375{bottom:295.400000pt;}
.yd_c00375{bottom:327.400000pt;}
.yc_c00375{bottom:357.800000pt;}
.yb_c00375{bottom:387.559867pt;}
.ya_c00375{bottom:834.599867pt;}
.y9_c00375{bottom:866.599867pt;}
.y8_c00375{bottom:898.599867pt;}
.y7_c00375{bottom:930.599867pt;}
.y6_c00375{bottom:962.599867pt;}
.y2_c00375{bottom:1035.880000pt;}
.h5_c00375{height:15.360000pt;}
.h3_c00375{height:38.390625pt;}
.h6_c00375{height:41.435625pt;}
.h4_c00375{height:62.812500pt;}
.h2_c00375{height:1099.880000pt;}
.h0_c00375{height:1122.520000pt;}
.h1_c00375{height:1122.666667pt;}
.w3_c00375{width:42.240000pt;}
.w2_c00375{width:771.080000pt;}
.w0_c00375{width:793.720000pt;}
.w1_c00375{width:794.000000pt;}
.x0_c00375{left:0.000000pt;}
.x5_c00375{left:9.100000pt;}
.x1_c00375{left:11.320000pt;}
.x3_c00375{left:84.800133pt;}
.x6_c00375{left:132.800133pt;}
.x4_c00375{left:375.800000pt;}
.x7_c00375{left:690.128133pt;}
.x2_c00375{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_80b09001c7109ce082ed8ad8.woff2')format("woff");}.ff1_c00376{font-family:ff1_c00376;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00376;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00376{font-family:ff2_c00376;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00376;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff3_c00376{font-family:ff3_c00376;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00376{letter-spacing:0.000000px;}
.ls0_c00376{letter-spacing:0.142560px;}
.ls1_c00376{letter-spacing:0.161568px;}
.ls4_c00376{letter-spacing:0.242352px;}
.ls3_c00376{letter-spacing:0.285120px;}
.sc__c00376{text-shadow:none;}
.sc0_c00376{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00376{-webkit-text-stroke:0px transparent;}
.sc0_c00376{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00376{word-spacing:-18.000000px;}
.ws1_c00376{word-spacing:-12.122352px;}
.ws2_c00376{word-spacing:0.000000px;}
._0_c00376{margin-left:-1.188000px;}
.fc1_c00376{color:transparent;}
.fc0_c00376{color:rgb(0,0,0);}
.fs2_c00376{font-size:47.520000px;}
.fs1_c00376{font-size:64.800000px;}
.fs0_c00376{font-size:72.000000px;}
.y0_c00376{bottom:0.000000px;}
.y5_c00376{bottom:5.040000px;}
.y1_c00376{bottom:12.735000px;}
.y3_c00376{bottom:45.405000px;}
.y4_c00376{bottom:53.100000px;}
.y14_c00376{bottom:108.405000px;}
.y13_c00376{bottom:144.405000px;}
.y12_c00376{bottom:180.405000px;}
.y11_c00376{bottom:216.405000px;}
.y10_c00376{bottom:252.405000px;}
.yf_c00376{bottom:288.405000px;}
.ye_c00376{bottom:324.405000px;}
.yd_c00376{bottom:360.405000px;}
.yc_c00376{bottom:394.605000px;}
.yb_c00376{bottom:427.724850px;}
.ya_c00376{bottom:938.924850px;}
.y9_c00376{bottom:974.924850px;}
.y8_c00376{bottom:1010.924850px;}
.y7_c00376{bottom:1046.924850px;}
.y6_c00376{bottom:1082.924850px;}
.y2_c00376{bottom:1165.365000px;}
.h4_c00376{height:20.880000px;}
.h5_c00376{height:46.615078px;}
.h3_c00376{height:70.664062px;}
.h2_c00376{height:1237.365000px;}
.h0_c00376{height:1262.835000px;}
.h1_c00376{height:1263.000000px;}
.w3_c00376{width:27.000000px;}
.w2_c00376{width:867.465000px;}
.w0_c00376{width:892.935000px;}
.w1_c00376{width:893.250000px;}
.x0_c00376{left:0.000000px;}
.x1_c00376{left:12.735000px;}
.x3_c00376{left:95.406300px;}
.x5_c00376{left:149.400150px;}
.x4_c00376{left:432.855000px;}
.x6_c00376{left:776.394150px;}
.x2_c00376{left:878.550300px;}
@media print{
.v0_c00376{vertical-align:0.000000pt;}
.ls2_c00376{letter-spacing:0.000000pt;}
.ls0_c00376{letter-spacing:0.126720pt;}
.ls1_c00376{letter-spacing:0.143616pt;}
.ls4_c00376{letter-spacing:0.215424pt;}
.ls3_c00376{letter-spacing:0.253440pt;}
.ws0_c00376{word-spacing:-16.000000pt;}
.ws1_c00376{word-spacing:-10.775424pt;}
.ws2_c00376{word-spacing:0.000000pt;}
._0_c00376{margin-left:-1.056000pt;}
.fs2_c00376{font-size:42.240000pt;}
.fs1_c00376{font-size:57.600000pt;}
.fs0_c00376{font-size:64.000000pt;}
.y0_c00376{bottom:0.000000pt;}
.y5_c00376{bottom:4.480000pt;}
.y1_c00376{bottom:11.320000pt;}
.y3_c00376{bottom:40.360000pt;}
.y4_c00376{bottom:47.200000pt;}
.y14_c00376{bottom:96.360000pt;}
.y13_c00376{bottom:128.360000pt;}
.y12_c00376{bottom:160.360000pt;}
.y11_c00376{bottom:192.360000pt;}
.y10_c00376{bottom:224.360000pt;}
.yf_c00376{bottom:256.360000pt;}
.ye_c00376{bottom:288.360000pt;}
.yd_c00376{bottom:320.360000pt;}
.yc_c00376{bottom:350.760000pt;}
.yb_c00376{bottom:380.199867pt;}
.ya_c00376{bottom:834.599867pt;}
.y9_c00376{bottom:866.599867pt;}
.y8_c00376{bottom:898.599867pt;}
.y7_c00376{bottom:930.599867pt;}
.y6_c00376{bottom:962.599867pt;}
.y2_c00376{bottom:1035.880000pt;}
.h4_c00376{height:18.560000pt;}
.h5_c00376{height:41.435625pt;}
.h3_c00376{height:62.812500pt;}
.h2_c00376{height:1099.880000pt;}
.h0_c00376{height:1122.520000pt;}
.h1_c00376{height:1122.666667pt;}
.w3_c00376{width:24.000000pt;}
.w2_c00376{width:771.080000pt;}
.w0_c00376{width:793.720000pt;}
.w1_c00376{width:794.000000pt;}
.x0_c00376{left:0.000000pt;}
.x1_c00376{left:11.320000pt;}
.x3_c00376{left:84.805600pt;}
.x5_c00376{left:132.800133pt;}
.x4_c00376{left:384.760000pt;}
.x6_c00376{left:690.128133pt;}
.x2_c00376{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00377{font-family:ff1_c00377;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00377;src:url('chunks/assets/font_b705df915ba6a8a6c41b5707.woff2')format("woff");}.ff2_c00377{font-family:ff2_c00377;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00377;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00377{font-family:ff3_c00377;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00377;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff4_c00377{font-family:ff4_c00377;line-height:1.284180;font-style: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;}
.ls1_c00377{letter-spacing:0.000000px;}
.ls0_c00377{letter-spacing:0.142560px;}
.ls3_c00377{letter-spacing:0.242352px;}
.ls2_c00377{letter-spacing:0.285120px;}
.sc__c00377{text-shadow:none;}
.sc0_c00377{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00377{-webkit-text-stroke:0px transparent;}
.sc0_c00377{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00377{word-spacing:-18.000000px;}
.ws1_c00377{word-spacing:0.000000px;}
._0_c00377{margin-left:-1.188000px;}
.fc1_c00377{color:transparent;}
.fc0_c00377{color:rgb(0,0,0);}
.fs2_c00377{font-size:47.520000px;}
.fs0_c00377{font-size:64.800000px;}
.fs1_c00377{font-size:72.000000px;}
.y0_c00377{bottom:0.000000px;}
.y5_c00377{bottom:1.440000px;}
.y1_c00377{bottom:12.735000px;}
.y3_c00377{bottom:45.405000px;}
.y4_c00377{bottom:56.700000px;}
.y13_c00377{bottom:110.205000px;}
.y12_c00377{bottom:146.205000px;}
.y11_c00377{bottom:182.205000px;}
.y10_c00377{bottom:218.205000px;}
.yf_c00377{bottom:254.205000px;}
.ye_c00377{bottom:290.205000px;}
.yd_c00377{bottom:326.205000px;}
.yc_c00377{bottom:360.405000px;}
.yb_c00377{bottom:393.524850px;}
.ya_c00377{bottom:938.924850px;}
.y9_c00377{bottom:974.924850px;}
.y8_c00377{bottom:1010.924850px;}
.y7_c00377{bottom:1046.924850px;}
.y6_c00377{bottom:1082.924850px;}
.y2_c00377{bottom:1165.365000px;}
.h5_c00377{height:17.280000px;}
.h3_c00377{height:43.189453px;}
.h6_c00377{height:46.615078px;}
.h4_c00377{height:70.664062px;}
.h2_c00377{height:1237.365000px;}
.h0_c00377{height:1262.835000px;}
.h1_c00377{height:1263.000000px;}
.w3_c00377{width:47.520000px;}
.w2_c00377{width:867.465000px;}
.w0_c00377{width:892.935000px;}
.w1_c00377{width:893.250000px;}
.x0_c00377{left:0.000000px;}
.x5_c00377{left:10.237500px;}
.x1_c00377{left:12.735000px;}
.x3_c00377{left:95.400150px;}
.x6_c00377{left:149.400150px;}
.x4_c00377{left:422.775000px;}
.x7_c00377{left:776.394150px;}
.x2_c00377{left:878.550300px;}
@media print{
.v0_c00377{vertical-align:0.000000pt;}
.ls1_c00377{letter-spacing:0.000000pt;}
.ls0_c00377{letter-spacing:0.126720pt;}
.ls3_c00377{letter-spacing:0.215424pt;}
.ls2_c00377{letter-spacing:0.253440pt;}
.ws0_c00377{word-spacing:-16.000000pt;}
.ws1_c00377{word-spacing:0.000000pt;}
._0_c00377{margin-left:-1.056000pt;}
.fs2_c00377{font-size:42.240000pt;}
.fs0_c00377{font-size:57.600000pt;}
.fs1_c00377{font-size:64.000000pt;}
.y0_c00377{bottom:0.000000pt;}
.y5_c00377{bottom:1.280000pt;}
.y1_c00377{bottom:11.320000pt;}
.y3_c00377{bottom:40.360000pt;}
.y4_c00377{bottom:50.400000pt;}
.y13_c00377{bottom:97.960000pt;}
.y12_c00377{bottom:129.960000pt;}
.y11_c00377{bottom:161.960000pt;}
.y10_c00377{bottom:193.960000pt;}
.yf_c00377{bottom:225.960000pt;}
.ye_c00377{bottom:257.960000pt;}
.yd_c00377{bottom:289.960000pt;}
.yc_c00377{bottom:320.360000pt;}
.yb_c00377{bottom:349.799867pt;}
.ya_c00377{bottom:834.599867pt;}
.y9_c00377{bottom:866.599867pt;}
.y8_c00377{bottom:898.599867pt;}
.y7_c00377{bottom:930.599867pt;}
.y6_c00377{bottom:962.599867pt;}
.y2_c00377{bottom:1035.880000pt;}
.h5_c00377{height:15.360000pt;}
.h3_c00377{height:38.390625pt;}
.h6_c00377{height:41.435625pt;}
.h4_c00377{height:62.812500pt;}
.h2_c00377{height:1099.880000pt;}
.h0_c00377{height:1122.520000pt;}
.h1_c00377{height:1122.666667pt;}
.w3_c00377{width:42.240000pt;}
.w2_c00377{width:771.080000pt;}
.w0_c00377{width:793.720000pt;}
.w1_c00377{width:794.000000pt;}
.x0_c00377{left:0.000000pt;}
.x5_c00377{left:9.100000pt;}
.x1_c00377{left:11.320000pt;}
.x3_c00377{left:84.800133pt;}
.x6_c00377{left:132.800133pt;}
.x4_c00377{left:375.800000pt;}
.x7_c00377{left:690.128133pt;}
.x2_c00377{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_2db617038b686c75a307a8a9.woff2')format("woff");}.ff1_c00378{font-family:ff1_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:ff2_c00378;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00378{font-family:ff2_c00378;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00378;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff3_c00378{font-family:ff3_c00378;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00378{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00378{vertical-align:0.000000px;}
.ls1_c00378{letter-spacing:0.000000px;}
.ls0_c00378{letter-spacing:0.142560px;}
.ls3_c00378{letter-spacing:0.242352px;}
.ls2_c00378{letter-spacing:0.285120px;}
.sc__c00378{text-shadow:none;}
.sc0_c00378{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00378{-webkit-text-stroke:0px transparent;}
.sc0_c00378{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00378{word-spacing:-18.000000px;}
.ws1_c00378{word-spacing:0.000000px;}
._0_c00378{margin-left:-1.188000px;}
.fc1_c00378{color:transparent;}
.fc0_c00378{color:rgb(0,0,0);}
.fs2_c00378{font-size:47.520000px;}
.fs1_c00378{font-size:64.800000px;}
.fs0_c00378{font-size:72.000000px;}
.y0_c00378{bottom:0.000000px;}
.y5_c00378{bottom:5.040000px;}
.y1_c00378{bottom:12.735000px;}
.y3_c00378{bottom:45.405000px;}
.y4_c00378{bottom:53.100000px;}
.y13_c00378{bottom:117.045000px;}
.y12_c00378{bottom:153.045000px;}
.y11_c00378{bottom:189.045000px;}
.y10_c00378{bottom:225.045000px;}
.yf_c00378{bottom:261.045000px;}
.ye_c00378{bottom:297.045000px;}
.yd_c00378{bottom:333.045000px;}
.yc_c00378{bottom:367.245000px;}
.yb_c00378{bottom:400.724850px;}
.ya_c00378{bottom:938.924850px;}
.y9_c00378{bottom:974.924850px;}
.y8_c00378{bottom:1010.924850px;}
.y7_c00378{bottom:1046.924850px;}
.y6_c00378{bottom:1082.924850px;}
.y2_c00378{bottom:1165.365000px;}
.h4_c00378{height:20.880000px;}
.h5_c00378{height:46.615078px;}
.h3_c00378{height:70.664062px;}
.h2_c00378{height:1237.365000px;}
.h0_c00378{height:1262.835000px;}
.h1_c00378{height:1263.000000px;}
.w3_c00378{width:27.000000px;}
.w2_c00378{width:867.465000px;}
.w0_c00378{width:892.935000px;}
.w1_c00378{width:893.250000px;}
.x0_c00378{left:0.000000px;}
.x1_c00378{left:12.735000px;}
.x3_c00378{left:95.406300px;}
.x5_c00378{left:149.400150px;}
.x4_c00378{left:432.855000px;}
.x6_c00378{left:776.394150px;}
.x2_c00378{left:878.550300px;}
@media print{
.v0_c00378{vertical-align:0.000000pt;}
.ls1_c00378{letter-spacing:0.000000pt;}
.ls0_c00378{letter-spacing:0.126720pt;}
.ls3_c00378{letter-spacing:0.215424pt;}
.ls2_c00378{letter-spacing:0.253440pt;}
.ws0_c00378{word-spacing:-16.000000pt;}
.ws1_c00378{word-spacing:0.000000pt;}
._0_c00378{margin-left:-1.056000pt;}
.fs2_c00378{font-size:42.240000pt;}
.fs1_c00378{font-size:57.600000pt;}
.fs0_c00378{font-size:64.000000pt;}
.y0_c00378{bottom:0.000000pt;}
.y5_c00378{bottom:4.480000pt;}
.y1_c00378{bottom:11.320000pt;}
.y3_c00378{bottom:40.360000pt;}
.y4_c00378{bottom:47.200000pt;}
.y13_c00378{bottom:104.040000pt;}
.y12_c00378{bottom:136.040000pt;}
.y11_c00378{bottom:168.040000pt;}
.y10_c00378{bottom:200.040000pt;}
.yf_c00378{bottom:232.040000pt;}
.ye_c00378{bottom:264.040000pt;}
.yd_c00378{bottom:296.040000pt;}
.yc_c00378{bottom:326.440000pt;}
.yb_c00378{bottom:356.199867pt;}
.ya_c00378{bottom:834.599867pt;}
.y9_c00378{bottom:866.599867pt;}
.y8_c00378{bottom:898.599867pt;}
.y7_c00378{bottom:930.599867pt;}
.y6_c00378{bottom:962.599867pt;}
.y2_c00378{bottom:1035.880000pt;}
.h4_c00378{height:18.560000pt;}
.h5_c00378{height:41.435625pt;}
.h3_c00378{height:62.812500pt;}
.h2_c00378{height:1099.880000pt;}
.h0_c00378{height:1122.520000pt;}
.h1_c00378{height:1122.666667pt;}
.w3_c00378{width:24.000000pt;}
.w2_c00378{width:771.080000pt;}
.w0_c00378{width:793.720000pt;}
.w1_c00378{width:794.000000pt;}
.x0_c00378{left:0.000000pt;}
.x1_c00378{left:11.320000pt;}
.x3_c00378{left:84.805600pt;}
.x5_c00378{left:132.800133pt;}
.x4_c00378{left:384.760000pt;}
.x6_c00378{left:690.128133pt;}
.x2_c00378{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00379{font-family:ff1_c00379;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00379;src:url('chunks/assets/font_6ee8c52e15bbddecb5643a08.woff2')format("woff");}.ff2_c00379{font-family:ff2_c00379;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00379;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00379{font-family:ff3_c00379;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00379;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff4_c00379{font-family:ff4_c00379;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00379{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00379{vertical-align:0.000000px;}
.ls4_c00379{letter-spacing:-0.014400px;}
.ls1_c00379{letter-spacing:0.000000px;}
.ls5_c00379{letter-spacing:0.014400px;}
.ls0_c00379{letter-spacing:0.142560px;}
.ls3_c00379{letter-spacing:0.242352px;}
.ls2_c00379{letter-spacing:0.285120px;}
.sc__c00379{text-shadow:none;}
.sc0_c00379{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00379{-webkit-text-stroke:0px transparent;}
.sc0_c00379{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00379{word-spacing:-18.000000px;}
.ws1_c00379{word-spacing:0.000000px;}
._0_c00379{margin-left:-1.188000px;}
._4_c00379{width:5.925600px;}
._1_c00379{width:10.324800px;}
._3_c00379{width:20.311200px;}
._2_c00379{width:28.699200px;}
.fc1_c00379{color:transparent;}
.fc0_c00379{color:rgb(0,0,0);}
.fs2_c00379{font-size:47.520000px;}
.fs0_c00379{font-size:64.800000px;}
.fs1_c00379{font-size:72.000000px;}
.y0_c00379{bottom:0.000000px;}
.y5_c00379{bottom:1.440000px;}
.y1_c00379{bottom:12.735000px;}
.y3_c00379{bottom:45.405000px;}
.y4_c00379{bottom:56.700000px;}
.y16_c00379{bottom:137.565000px;}
.y15_c00379{bottom:173.565000px;}
.y14_c00379{bottom:209.565000px;}
.y13_c00379{bottom:245.565000px;}
.y12_c00379{bottom:281.565000px;}
.y11_c00379{bottom:317.565000px;}
.y10_c00379{bottom:353.565000px;}
.yf_c00379{bottom:389.565000px;}
.ye_c00379{bottom:425.565000px;}
.yd_c00379{bottom:461.565000px;}
.yc_c00379{bottom:495.765000px;}
.yb_c00379{bottom:528.884850px;}
.ya_c00379{bottom:938.924850px;}
.y9_c00379{bottom:974.924850px;}
.y8_c00379{bottom:1010.924850px;}
.y7_c00379{bottom:1046.924850px;}
.y6_c00379{bottom:1082.924850px;}
.y2_c00379{bottom:1165.365000px;}
.h5_c00379{height:17.280000px;}
.h3_c00379{height:43.189453px;}
.h6_c00379{height:46.615078px;}
.h4_c00379{height:70.664062px;}
.h2_c00379{height:1237.365000px;}
.h0_c00379{height:1262.835000px;}
.h1_c00379{height:1263.000000px;}
.w3_c00379{width:47.520000px;}
.w2_c00379{width:867.465000px;}
.w0_c00379{width:892.935000px;}
.w1_c00379{width:893.250000px;}
.x0_c00379{left:0.000000px;}
.x5_c00379{left:10.237500px;}
.x1_c00379{left:12.735000px;}
.x3_c00379{left:95.400150px;}
.x6_c00379{left:149.400150px;}
.x4_c00379{left:422.775000px;}
.x7_c00379{left:776.394150px;}
.x2_c00379{left:878.550300px;}
@media print{
.v0_c00379{vertical-align:0.000000pt;}
.ls4_c00379{letter-spacing:-0.012800pt;}
.ls1_c00379{letter-spacing:0.000000pt;}
.ls5_c00379{letter-spacing:0.012800pt;}
.ls0_c00379{letter-spacing:0.126720pt;}
.ls3_c00379{letter-spacing:0.215424pt;}
.ls2_c00379{letter-spacing:0.253440pt;}
.ws0_c00379{word-spacing:-16.000000pt;}
.ws1_c00379{word-spacing:0.000000pt;}
._0_c00379{margin-left:-1.056000pt;}
._4_c00379{width:5.267200pt;}
._1_c00379{width:9.177600pt;}
._3_c00379{width:18.054400pt;}
._2_c00379{width:25.510400pt;}
.fs2_c00379{font-size:42.240000pt;}
.fs0_c00379{font-size:57.600000pt;}
.fs1_c00379{font-size:64.000000pt;}
.y0_c00379{bottom:0.000000pt;}
.y5_c00379{bottom:1.280000pt;}
.y1_c00379{bottom:11.320000pt;}
.y3_c00379{bottom:40.360000pt;}
.y4_c00379{bottom:50.400000pt;}
.y16_c00379{bottom:122.280000pt;}
.y15_c00379{bottom:154.280000pt;}
.y14_c00379{bottom:186.280000pt;}
.y13_c00379{bottom:218.280000pt;}
.y12_c00379{bottom:250.280000pt;}
.y11_c00379{bottom:282.280000pt;}
.y10_c00379{bottom:314.280000pt;}
.yf_c00379{bottom:346.280000pt;}
.ye_c00379{bottom:378.280000pt;}
.yd_c00379{bottom:410.280000pt;}
.yc_c00379{bottom:440.680000pt;}
.yb_c00379{bottom:470.119867pt;}
.ya_c00379{bottom:834.599867pt;}
.y9_c00379{bottom:866.599867pt;}
.y8_c00379{bottom:898.599867pt;}
.y7_c00379{bottom:930.599867pt;}
.y6_c00379{bottom:962.599867pt;}
.y2_c00379{bottom:1035.880000pt;}
.h5_c00379{height:15.360000pt;}
.h3_c00379{height:38.390625pt;}
.h6_c00379{height:41.435625pt;}
.h4_c00379{height:62.812500pt;}
.h2_c00379{height:1099.880000pt;}
.h0_c00379{height:1122.520000pt;}
.h1_c00379{height:1122.666667pt;}
.w3_c00379{width:42.240000pt;}
.w2_c00379{width:771.080000pt;}
.w0_c00379{width:793.720000pt;}
.w1_c00379{width:794.000000pt;}
.x0_c00379{left:0.000000pt;}
.x5_c00379{left:9.100000pt;}
.x1_c00379{left:11.320000pt;}
.x3_c00379{left:84.800133pt;}
.x6_c00379{left:132.800133pt;}
.x4_c00379{left:375.800000pt;}
.x7_c00379{left:690.128133pt;}
.x2_c00379{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6604d81061049fe056b3a21f.woff2')format("woff");}.ff1_c00380{font-family:ff1_c00380;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00380;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00380{font-family:ff2_c00380;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00380;src:url('chunks/assets/font_1c8106756d629bce5d721628.woff2')format("woff");}.ff3_c00380{font-family:ff3_c00380;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.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:-18.000000px;}
.ws1_c00380{word-spacing:0.000000px;}
._1_c00380{width:6.624000px;}
._0_c00380{width:27.720000px;}
.fc1_c00380{color:transparent;}
.fc0_c00380{color:rgb(0,0,0);}
.fs1_c00380{font-size:64.800000px;}
.fs0_c00380{font-size:72.000000px;}
.y0_c00380{bottom:0.000000px;}
.y5_c00380{bottom:5.040000px;}
.y1_c00380{bottom:12.735000px;}
.y3_c00380{bottom:45.405000px;}
.y4_c00380{bottom:53.100000px;}
.yb_c00380{bottom:902.924850px;}
.ya_c00380{bottom:938.924850px;}
.y9_c00380{bottom:974.924850px;}
.y8_c00380{bottom:1010.924850px;}
.y7_c00380{bottom:1046.924850px;}
.y6_c00380{bottom:1082.924850px;}
.y2_c00380{bottom:1165.365000px;}
.h4_c00380{height:20.880000px;}
.h3_c00380{height:70.664062px;}
.h5_c00380{height:71.824219px;}
.h2_c00380{height:1237.365000px;}
.h0_c00380{height:1262.835000px;}
.h1_c00380{height:1263.000000px;}
.w3_c00380{width:27.000000px;}
.w2_c00380{width:867.465000px;}
.w0_c00380{width:892.935000px;}
.w1_c00380{width:893.250000px;}
.x0_c00380{left:0.000000px;}
.x1_c00380{left:12.735000px;}
.x3_c00380{left:95.406300px;}
.x5_c00380{left:149.400150px;}
.x4_c00380{left:432.855000px;}
.x2_c00380{left:878.550300px;}
@media print{
.v0_c00380{vertical-align:0.000000pt;}
.ls0_c00380{letter-spacing:0.000000pt;}
.ws0_c00380{word-spacing:-16.000000pt;}
.ws1_c00380{word-spacing:0.000000pt;}
._1_c00380{width:5.888000pt;}
._0_c00380{width:24.640000pt;}
.fs1_c00380{font-size:57.600000pt;}
.fs0_c00380{font-size:64.000000pt;}
.y0_c00380{bottom:0.000000pt;}
.y5_c00380{bottom:4.480000pt;}
.y1_c00380{bottom:11.320000pt;}
.y3_c00380{bottom:40.360000pt;}
.y4_c00380{bottom:47.200000pt;}
.yb_c00380{bottom:802.599867pt;}
.ya_c00380{bottom:834.599867pt;}
.y9_c00380{bottom:866.599867pt;}
.y8_c00380{bottom:898.599867pt;}
.y7_c00380{bottom:930.599867pt;}
.y6_c00380{bottom:962.599867pt;}
.y2_c00380{bottom:1035.880000pt;}
.h4_c00380{height:18.560000pt;}
.h3_c00380{height:62.812500pt;}
.h5_c00380{height:63.843750pt;}
.h2_c00380{height:1099.880000pt;}
.h0_c00380{height:1122.520000pt;}
.h1_c00380{height:1122.666667pt;}
.w3_c00380{width:24.000000pt;}
.w2_c00380{width:771.080000pt;}
.w0_c00380{width:793.720000pt;}
.w1_c00380{width:794.000000pt;}
.x0_c00380{left:0.000000pt;}
.x1_c00380{left:11.320000pt;}
.x3_c00380{left:84.805600pt;}
.x5_c00380{left:132.800133pt;}
.x4_c00380{left:384.760000pt;}
.x2_c00380{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00381{font-family:ff1_c00381;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00381;src:url('chunks/assets/font_ce0dba6be9eb8bb851f21cf8.woff2')format("woff");}.ff2_c00381{font-family:ff2_c00381;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00381;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00381{font-family:ff3_c00381;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00381;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff4_c00381{font-family:ff4_c00381;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00381{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00381{vertical-align:0.000000px;}
.ls1_c00381{letter-spacing:0.000000px;}
.ls0_c00381{letter-spacing:0.142560px;}
.ls3_c00381{letter-spacing:0.242352px;}
.ls2_c00381{letter-spacing:0.285120px;}
.sc__c00381{text-shadow:none;}
.sc0_c00381{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00381{-webkit-text-stroke:0px transparent;}
.sc0_c00381{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00381{word-spacing:-18.000000px;}
.ws1_c00381{word-spacing:0.000000px;}
._0_c00381{margin-left:-1.188000px;}
.fc1_c00381{color:transparent;}
.fc0_c00381{color:rgb(0,0,0);}
.fs2_c00381{font-size:47.520000px;}
.fs0_c00381{font-size:64.800000px;}
.fs1_c00381{font-size:72.000000px;}
.y0_c00381{bottom:0.000000px;}
.y5_c00381{bottom:1.440000px;}
.y1_c00381{bottom:12.735000px;}
.y3_c00381{bottom:45.405000px;}
.y4_c00381{bottom:56.700000px;}
.yb_c00381{bottom:112.365000px;}
.ya_c00381{bottom:148.365000px;}
.y9_c00381{bottom:184.365000px;}
.y8_c00381{bottom:220.365000px;}
.y7_c00381{bottom:254.565000px;}
.y6_c00381{bottom:287.685000px;}
.y2_c00381{bottom:1165.365000px;}
.h5_c00381{height:17.280000px;}
.h3_c00381{height:43.189453px;}
.h6_c00381{height:46.615078px;}
.h4_c00381{height:70.664062px;}
.h2_c00381{height:1237.365000px;}
.h0_c00381{height:1262.835000px;}
.h1_c00381{height:1263.000000px;}
.w3_c00381{width:47.520000px;}
.w2_c00381{width:867.465000px;}
.w0_c00381{width:892.935000px;}
.w1_c00381{width:893.250000px;}
.x0_c00381{left:0.000000px;}
.x5_c00381{left:10.237500px;}
.x1_c00381{left:12.735000px;}
.x3_c00381{left:95.400150px;}
.x7_c00381{left:149.400150px;}
.x4_c00381{left:422.775000px;}
.x6_c00381{left:776.400150px;}
.x2_c00381{left:878.550300px;}
@media print{
.v0_c00381{vertical-align:0.000000pt;}
.ls1_c00381{letter-spacing:0.000000pt;}
.ls0_c00381{letter-spacing:0.126720pt;}
.ls3_c00381{letter-spacing:0.215424pt;}
.ls2_c00381{letter-spacing:0.253440pt;}
.ws0_c00381{word-spacing:-16.000000pt;}
.ws1_c00381{word-spacing:0.000000pt;}
._0_c00381{margin-left:-1.056000pt;}
.fs2_c00381{font-size:42.240000pt;}
.fs0_c00381{font-size:57.600000pt;}
.fs1_c00381{font-size:64.000000pt;}
.y0_c00381{bottom:0.000000pt;}
.y5_c00381{bottom:1.280000pt;}
.y1_c00381{bottom:11.320000pt;}
.y3_c00381{bottom:40.360000pt;}
.y4_c00381{bottom:50.400000pt;}
.yb_c00381{bottom:99.880000pt;}
.ya_c00381{bottom:131.880000pt;}
.y9_c00381{bottom:163.880000pt;}
.y8_c00381{bottom:195.880000pt;}
.y7_c00381{bottom:226.280000pt;}
.y6_c00381{bottom:255.720000pt;}
.y2_c00381{bottom:1035.880000pt;}
.h5_c00381{height:15.360000pt;}
.h3_c00381{height:38.390625pt;}
.h6_c00381{height:41.435625pt;}
.h4_c00381{height:62.812500pt;}
.h2_c00381{height:1099.880000pt;}
.h0_c00381{height:1122.520000pt;}
.h1_c00381{height:1122.666667pt;}
.w3_c00381{width:42.240000pt;}
.w2_c00381{width:771.080000pt;}
.w0_c00381{width:793.720000pt;}
.w1_c00381{width:794.000000pt;}
.x0_c00381{left:0.000000pt;}
.x5_c00381{left:9.100000pt;}
.x1_c00381{left:11.320000pt;}
.x3_c00381{left:84.800133pt;}
.x7_c00381{left:132.800133pt;}
.x4_c00381{left:375.800000pt;}
.x6_c00381{left:690.133467pt;}
.x2_c00381{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9c4759b16a8b76aad9b4a176.woff2')format("woff");}.ff1_c00382{font-family:ff1_c00382;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00382;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00382{font-family:ff2_c00382;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00382;src:url('chunks/assets/font_c5901baa729f2c3946ad8810.woff2')format("woff");}.ff3_c00382{font-family:ff3_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:ff4_c00382;src:url('chunks/assets/font_042e11dac058186ac7799120.woff2')format("woff");}.ff4_c00382{font-family:ff4_c00382;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00382{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00382{vertical-align:0.000000px;}
.ls1_c00382{letter-spacing:0.000000px;}
.ls0_c00382{letter-spacing:0.142560px;}
.ls3_c00382{letter-spacing:0.242352px;}
.ls2_c00382{letter-spacing:0.285120px;}
.sc__c00382{text-shadow:none;}
.sc0_c00382{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00382{-webkit-text-stroke:0px transparent;}
.sc0_c00382{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00382{word-spacing:-18.000000px;}
.ws1_c00382{word-spacing:0.000000px;}
._0_c00382{margin-left:-1.188000px;}
._3_c00382{width:2.210400px;}
._5_c00382{width:4.248000px;}
._6_c00382{width:10.720800px;}
._4_c00382{width:19.972800px;}
._1_c00382{width:22.003200px;}
._2_c00382{width:23.450400px;}
.fc1_c00382{color:transparent;}
.fc0_c00382{color:rgb(0,0,0);}
.fs2_c00382{font-size:47.520000px;}
.fs1_c00382{font-size:64.800000px;}
.fs0_c00382{font-size:72.000000px;}
.y0_c00382{bottom:0.000000px;}
.y5_c00382{bottom:5.040000px;}
.y1_c00382{bottom:12.735000px;}
.y3_c00382{bottom:45.405000px;}
.y4_c00382{bottom:53.100000px;}
.y15_c00382{bottom:151.245000px;}
.y14_c00382{bottom:187.245000px;}
.y13_c00382{bottom:223.245000px;}
.y12_c00382{bottom:259.245000px;}
.y11_c00382{bottom:295.245000px;}
.y10_c00382{bottom:331.245000px;}
.yf_c00382{bottom:367.245000px;}
.ye_c00382{bottom:403.245000px;}
.yd_c00382{bottom:439.245000px;}
.yc_c00382{bottom:475.245000px;}
.yb_c00382{bottom:511.245000px;}
.ya_c00382{bottom:547.245000px;}
.y9_c00382{bottom:581.445000px;}
.y8_c00382{bottom:614.564850px;}
.y7_c00382{bottom:1046.924850px;}
.y6_c00382{bottom:1082.924850px;}
.y2_c00382{bottom:1165.365000px;}
.h4_c00382{height:20.880000px;}
.h5_c00382{height:46.615078px;}
.h3_c00382{height:70.664062px;}
.h6_c00382{height:72.562500px;}
.h2_c00382{height:1237.365000px;}
.h0_c00382{height:1262.835000px;}
.h1_c00382{height:1263.000000px;}
.w3_c00382{width:27.000000px;}
.w2_c00382{width:867.465000px;}
.w0_c00382{width:892.935000px;}
.w1_c00382{width:893.250000px;}
.x0_c00382{left:0.000000px;}
.x1_c00382{left:12.735000px;}
.x3_c00382{left:95.406300px;}
.x5_c00382{left:149.400150px;}
.x4_c00382{left:432.855000px;}
.x6_c00382{left:776.394150px;}
.x2_c00382{left:878.550300px;}
@media print{
.v0_c00382{vertical-align:0.000000pt;}
.ls1_c00382{letter-spacing:0.000000pt;}
.ls0_c00382{letter-spacing:0.126720pt;}
.ls3_c00382{letter-spacing:0.215424pt;}
.ls2_c00382{letter-spacing:0.253440pt;}
.ws0_c00382{word-spacing:-16.000000pt;}
.ws1_c00382{word-spacing:0.000000pt;}
._0_c00382{margin-left:-1.056000pt;}
._3_c00382{width:1.964800pt;}
._5_c00382{width:3.776000pt;}
._6_c00382{width:9.529600pt;}
._4_c00382{width:17.753600pt;}
._1_c00382{width:19.558400pt;}
._2_c00382{width:20.844800pt;}
.fs2_c00382{font-size:42.240000pt;}
.fs1_c00382{font-size:57.600000pt;}
.fs0_c00382{font-size:64.000000pt;}
.y0_c00382{bottom:0.000000pt;}
.y5_c00382{bottom:4.480000pt;}
.y1_c00382{bottom:11.320000pt;}
.y3_c00382{bottom:40.360000pt;}
.y4_c00382{bottom:47.200000pt;}
.y15_c00382{bottom:134.440000pt;}
.y14_c00382{bottom:166.440000pt;}
.y13_c00382{bottom:198.440000pt;}
.y12_c00382{bottom:230.440000pt;}
.y11_c00382{bottom:262.440000pt;}
.y10_c00382{bottom:294.440000pt;}
.yf_c00382{bottom:326.440000pt;}
.ye_c00382{bottom:358.440000pt;}
.yd_c00382{bottom:390.440000pt;}
.yc_c00382{bottom:422.440000pt;}
.yb_c00382{bottom:454.440000pt;}
.ya_c00382{bottom:486.440000pt;}
.y9_c00382{bottom:516.840000pt;}
.y8_c00382{bottom:546.279867pt;}
.y7_c00382{bottom:930.599867pt;}
.y6_c00382{bottom:962.599867pt;}
.y2_c00382{bottom:1035.880000pt;}
.h4_c00382{height:18.560000pt;}
.h5_c00382{height:41.435625pt;}
.h3_c00382{height:62.812500pt;}
.h6_c00382{height:64.500000pt;}
.h2_c00382{height:1099.880000pt;}
.h0_c00382{height:1122.520000pt;}
.h1_c00382{height:1122.666667pt;}
.w3_c00382{width:24.000000pt;}
.w2_c00382{width:771.080000pt;}
.w0_c00382{width:793.720000pt;}
.w1_c00382{width:794.000000pt;}
.x0_c00382{left:0.000000pt;}
.x1_c00382{left:11.320000pt;}
.x3_c00382{left:84.805600pt;}
.x5_c00382{left:132.800133pt;}
.x4_c00382{left:384.760000pt;}
.x6_c00382{left:690.128133pt;}
.x2_c00382{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00383{font-family:ff1_c00383;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00383;src:url('chunks/assets/font_33c3727e1b57286d0d87c19d.woff2')format("woff");}.ff2_c00383{font-family:ff2_c00383;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00383;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00383{font-family:ff3_c00383;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls2_c00383{letter-spacing:-0.014400px;}
.ls1_c00383{letter-spacing:0.000000px;}
.ls0_c00383{letter-spacing:0.014400px;}
.sc__c00383{text-shadow:none;}
.sc0_c00383{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00383{-webkit-text-stroke:0px transparent;}
.sc0_c00383{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00383{word-spacing:-18.000000px;}
.ws1_c00383{word-spacing:0.000000px;}
._9_c00383{width:1.029600px;}
._b_c00383{width:2.397600px;}
._6_c00383{width:3.492000px;}
._a_c00383{width:4.752000px;}
._3_c00383{width:6.480000px;}
._7_c00383{width:7.790400px;}
._4_c00383{width:10.778400px;}
._0_c00383{width:12.074400px;}
._1_c00383{width:13.399200px;}
._2_c00383{width:15.192000px;}
._8_c00383{width:19.231200px;}
._d_c00383{width:21.283200px;}
._5_c00383{width:23.328000px;}
._c_c00383{width:24.602400px;}
.fc1_c00383{color:transparent;}
.fc0_c00383{color:rgb(0,0,0);}
.fs0_c00383{font-size:64.800000px;}
.fs1_c00383{font-size:72.000000px;}
.y0_c00383{bottom:0.000000px;}
.y5_c00383{bottom:1.440000px;}
.y1_c00383{bottom:12.735000px;}
.y3_c00383{bottom:45.405000px;}
.y4_c00383{bottom:56.700000px;}
.y21_c00383{bottom:110.924850px;}
.y20_c00383{bottom:146.924850px;}
.y1f_c00383{bottom:182.924850px;}
.y1e_c00383{bottom:218.924850px;}
.y1d_c00383{bottom:254.924850px;}
.y1c_c00383{bottom:290.924850px;}
.y1b_c00383{bottom:326.924850px;}
.y1a_c00383{bottom:362.924850px;}
.y19_c00383{bottom:398.924850px;}
.y18_c00383{bottom:434.924850px;}
.y17_c00383{bottom:470.924850px;}
.y16_c00383{bottom:506.924850px;}
.y15_c00383{bottom:542.924850px;}
.y14_c00383{bottom:578.924850px;}
.y13_c00383{bottom:614.924850px;}
.y12_c00383{bottom:650.924850px;}
.y11_c00383{bottom:686.924850px;}
.y10_c00383{bottom:722.924850px;}
.yf_c00383{bottom:758.924850px;}
.ye_c00383{bottom:794.924850px;}
.yd_c00383{bottom:830.924850px;}
.yc_c00383{bottom:866.924850px;}
.yb_c00383{bottom:902.924850px;}
.ya_c00383{bottom:938.924850px;}
.y9_c00383{bottom:974.924850px;}
.y8_c00383{bottom:1010.924850px;}
.y7_c00383{bottom:1046.924850px;}
.y6_c00383{bottom:1082.924850px;}
.y2_c00383{bottom:1165.365000px;}
.h5_c00383{height:17.280000px;}
.h3_c00383{height:43.189453px;}
.h4_c00383{height:70.664062px;}
.h2_c00383{height:1237.365000px;}
.h0_c00383{height:1262.835000px;}
.h1_c00383{height:1263.000000px;}
.w3_c00383{width:47.520000px;}
.w2_c00383{width:867.465000px;}
.w0_c00383{width:892.935000px;}
.w1_c00383{width:893.250000px;}
.x0_c00383{left:0.000000px;}
.x5_c00383{left:10.237500px;}
.x1_c00383{left:12.735000px;}
.x3_c00383{left:95.400150px;}
.x6_c00383{left:149.400150px;}
.x4_c00383{left:422.775000px;}
.x2_c00383{left:878.550300px;}
@media print{
.v0_c00383{vertical-align:0.000000pt;}
.ls2_c00383{letter-spacing:-0.012800pt;}
.ls1_c00383{letter-spacing:0.000000pt;}
.ls0_c00383{letter-spacing:0.012800pt;}
.ws0_c00383{word-spacing:-16.000000pt;}
.ws1_c00383{word-spacing:0.000000pt;}
._9_c00383{width:0.915200pt;}
._b_c00383{width:2.131200pt;}
._6_c00383{width:3.104000pt;}
._a_c00383{width:4.224000pt;}
._3_c00383{width:5.760000pt;}
._7_c00383{width:6.924800pt;}
._4_c00383{width:9.580800pt;}
._0_c00383{width:10.732800pt;}
._1_c00383{width:11.910400pt;}
._2_c00383{width:13.504000pt;}
._8_c00383{width:17.094400pt;}
._d_c00383{width:18.918400pt;}
._5_c00383{width:20.736000pt;}
._c_c00383{width:21.868800pt;}
.fs0_c00383{font-size:57.600000pt;}
.fs1_c00383{font-size:64.000000pt;}
.y0_c00383{bottom:0.000000pt;}
.y5_c00383{bottom:1.280000pt;}
.y1_c00383{bottom:11.320000pt;}
.y3_c00383{bottom:40.360000pt;}
.y4_c00383{bottom:50.400000pt;}
.y21_c00383{bottom:98.599867pt;}
.y20_c00383{bottom:130.599867pt;}
.y1f_c00383{bottom:162.599867pt;}
.y1e_c00383{bottom:194.599867pt;}
.y1d_c00383{bottom:226.599867pt;}
.y1c_c00383{bottom:258.599867pt;}
.y1b_c00383{bottom:290.599867pt;}
.y1a_c00383{bottom:322.599867pt;}
.y19_c00383{bottom:354.599867pt;}
.y18_c00383{bottom:386.599867pt;}
.y17_c00383{bottom:418.599867pt;}
.y16_c00383{bottom:450.599867pt;}
.y15_c00383{bottom:482.599867pt;}
.y14_c00383{bottom:514.599867pt;}
.y13_c00383{bottom:546.599867pt;}
.y12_c00383{bottom:578.599867pt;}
.y11_c00383{bottom:610.599867pt;}
.y10_c00383{bottom:642.599867pt;}
.yf_c00383{bottom:674.599867pt;}
.ye_c00383{bottom:706.599867pt;}
.yd_c00383{bottom:738.599867pt;}
.yc_c00383{bottom:770.599867pt;}
.yb_c00383{bottom:802.599867pt;}
.ya_c00383{bottom:834.599867pt;}
.y9_c00383{bottom:866.599867pt;}
.y8_c00383{bottom:898.599867pt;}
.y7_c00383{bottom:930.599867pt;}
.y6_c00383{bottom:962.599867pt;}
.y2_c00383{bottom:1035.880000pt;}
.h5_c00383{height:15.360000pt;}
.h3_c00383{height:38.390625pt;}
.h4_c00383{height:62.812500pt;}
.h2_c00383{height:1099.880000pt;}
.h0_c00383{height:1122.520000pt;}
.h1_c00383{height:1122.666667pt;}
.w3_c00383{width:42.240000pt;}
.w2_c00383{width:771.080000pt;}
.w0_c00383{width:793.720000pt;}
.w1_c00383{width:794.000000pt;}
.x0_c00383{left:0.000000pt;}
.x5_c00383{left:9.100000pt;}
.x1_c00383{left:11.320000pt;}
.x3_c00383{left:84.800133pt;}
.x6_c00383{left:132.800133pt;}
.x4_c00383{left:375.800000pt;}
.x2_c00383{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d2dcacee02381c2a458c99ff.woff2')format("woff");}.ff1_c00384{font-family:ff1_c00384;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00384;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00384{font-family:ff2_c00384;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00384{letter-spacing:0.000000px;}
.sc__c00384{text-shadow:none;}
.sc0_c00384{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00384{-webkit-text-stroke:0px transparent;}
.sc0_c00384{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00384{word-spacing:-18.000000px;}
.ws1_c00384{word-spacing:0.000000px;}
._0_c00384{width:1.843200px;}
._1_c00384{width:3.405600px;}
._5_c00384{width:4.773600px;}
._6_c00384{width:5.788800px;}
._4_c00384{width:8.064000px;}
._2_c00384{width:9.201600px;}
._7_c00384{width:14.097600px;}
._3_c00384{width:15.271200px;}
.fc1_c00384{color:transparent;}
.fc0_c00384{color:rgb(0,0,0);}
.fs1_c00384{font-size:64.800000px;}
.fs0_c00384{font-size:72.000000px;}
.y0_c00384{bottom:0.000000px;}
.y5_c00384{bottom:5.040000px;}
.y1_c00384{bottom:12.735000px;}
.y3_c00384{bottom:45.405000px;}
.y4_c00384{bottom:53.100000px;}
.y21_c00384{bottom:110.924850px;}
.y20_c00384{bottom:146.924850px;}
.y1f_c00384{bottom:182.924850px;}
.y1e_c00384{bottom:218.924850px;}
.y1d_c00384{bottom:254.924850px;}
.y1c_c00384{bottom:290.924850px;}
.y1b_c00384{bottom:326.924850px;}
.y1a_c00384{bottom:362.924850px;}
.y19_c00384{bottom:398.924850px;}
.y18_c00384{bottom:434.924850px;}
.y17_c00384{bottom:470.924850px;}
.y16_c00384{bottom:506.924850px;}
.y15_c00384{bottom:542.924850px;}
.y14_c00384{bottom:578.924850px;}
.y13_c00384{bottom:614.924850px;}
.y12_c00384{bottom:650.924850px;}
.y11_c00384{bottom:686.924850px;}
.y10_c00384{bottom:722.924850px;}
.yf_c00384{bottom:758.924850px;}
.ye_c00384{bottom:794.924850px;}
.yd_c00384{bottom:830.924850px;}
.yc_c00384{bottom:866.924850px;}
.yb_c00384{bottom:902.924850px;}
.ya_c00384{bottom:938.924850px;}
.y9_c00384{bottom:974.924850px;}
.y8_c00384{bottom:1010.924850px;}
.y7_c00384{bottom:1046.924850px;}
.y6_c00384{bottom:1082.924850px;}
.y2_c00384{bottom:1165.365000px;}
.h4_c00384{height:20.880000px;}
.h3_c00384{height:70.664062px;}
.h2_c00384{height:1237.365000px;}
.h0_c00384{height:1262.835000px;}
.h1_c00384{height:1263.000000px;}
.w3_c00384{width:27.000000px;}
.w2_c00384{width:867.465000px;}
.w0_c00384{width:892.935000px;}
.w1_c00384{width:893.250000px;}
.x0_c00384{left:0.000000px;}
.x1_c00384{left:12.735000px;}
.x3_c00384{left:95.406300px;}
.x5_c00384{left:149.400150px;}
.x4_c00384{left:432.855000px;}
.x2_c00384{left:878.550300px;}
@media print{
.v0_c00384{vertical-align:0.000000pt;}
.ls0_c00384{letter-spacing:0.000000pt;}
.ws0_c00384{word-spacing:-16.000000pt;}
.ws1_c00384{word-spacing:0.000000pt;}
._0_c00384{width:1.638400pt;}
._1_c00384{width:3.027200pt;}
._5_c00384{width:4.243200pt;}
._6_c00384{width:5.145600pt;}
._4_c00384{width:7.168000pt;}
._2_c00384{width:8.179200pt;}
._7_c00384{width:12.531200pt;}
._3_c00384{width:13.574400pt;}
.fs1_c00384{font-size:57.600000pt;}
.fs0_c00384{font-size:64.000000pt;}
.y0_c00384{bottom:0.000000pt;}
.y5_c00384{bottom:4.480000pt;}
.y1_c00384{bottom:11.320000pt;}
.y3_c00384{bottom:40.360000pt;}
.y4_c00384{bottom:47.200000pt;}
.y21_c00384{bottom:98.599867pt;}
.y20_c00384{bottom:130.599867pt;}
.y1f_c00384{bottom:162.599867pt;}
.y1e_c00384{bottom:194.599867pt;}
.y1d_c00384{bottom:226.599867pt;}
.y1c_c00384{bottom:258.599867pt;}
.y1b_c00384{bottom:290.599867pt;}
.y1a_c00384{bottom:322.599867pt;}
.y19_c00384{bottom:354.599867pt;}
.y18_c00384{bottom:386.599867pt;}
.y17_c00384{bottom:418.599867pt;}
.y16_c00384{bottom:450.599867pt;}
.y15_c00384{bottom:482.599867pt;}
.y14_c00384{bottom:514.599867pt;}
.y13_c00384{bottom:546.599867pt;}
.y12_c00384{bottom:578.599867pt;}
.y11_c00384{bottom:610.599867pt;}
.y10_c00384{bottom:642.599867pt;}
.yf_c00384{bottom:674.599867pt;}
.ye_c00384{bottom:706.599867pt;}
.yd_c00384{bottom:738.599867pt;}
.yc_c00384{bottom:770.599867pt;}
.yb_c00384{bottom:802.599867pt;}
.ya_c00384{bottom:834.599867pt;}
.y9_c00384{bottom:866.599867pt;}
.y8_c00384{bottom:898.599867pt;}
.y7_c00384{bottom:930.599867pt;}
.y6_c00384{bottom:962.599867pt;}
.y2_c00384{bottom:1035.880000pt;}
.h4_c00384{height:18.560000pt;}
.h3_c00384{height:62.812500pt;}
.h2_c00384{height:1099.880000pt;}
.h0_c00384{height:1122.520000pt;}
.h1_c00384{height:1122.666667pt;}
.w3_c00384{width:24.000000pt;}
.w2_c00384{width:771.080000pt;}
.w0_c00384{width:793.720000pt;}
.w1_c00384{width:794.000000pt;}
.x0_c00384{left:0.000000pt;}
.x1_c00384{left:11.320000pt;}
.x3_c00384{left:84.805600pt;}
.x5_c00384{left:132.800133pt;}
.x4_c00384{left:384.760000pt;}
.x2_c00384{left:780.933600pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00385{font-family:ff1_c00385;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00385;src:url('chunks/assets/font_bab7451793a48b8e676c24d7.woff2')format("woff");}.ff2_c00385{font-family:ff2_c00385;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00385;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00385{font-family:ff3_c00385;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00385{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00385{vertical-align:0.000000px;}
.ls1_c00385{letter-spacing:0.000000px;}
.ls0_c00385{letter-spacing:0.014400px;}
.ls2_c00385{letter-spacing:0.036000px;}
.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;}
}
.ws1_c00385{word-spacing:-18.036000px;}
.ws0_c00385{word-spacing:-18.000000px;}
.ws2_c00385{word-spacing:0.000000px;}
._2_c00385{width:1.922400px;}
._3_c00385{width:3.218400px;}
._7_c00385{width:6.177600px;}
._1_c00385{width:9.612000px;}
._0_c00385{width:10.785600px;}
._8_c00385{width:14.472000px;}
._4_c00385{width:20.088000px;}
._6_c00385{width:21.873600px;}
._5_c00385{width:26.092800px;}
.fc1_c00385{color:transparent;}
.fc0_c00385{color:rgb(0,0,0);}
.fs0_c00385{font-size:64.800000px;}
.fs1_c00385{font-size:72.000000px;}
.y0_c00385{bottom:0.000000px;}
.y5_c00385{bottom:1.440000px;}
.y1_c00385{bottom:12.735000px;}
.y3_c00385{bottom:45.405000px;}
.y4_c00385{bottom:56.700000px;}
.y20_c00385{bottom:146.924850px;}
.y1f_c00385{bottom:182.924850px;}
.y1e_c00385{bottom:218.924850px;}
.y1d_c00385{bottom:254.924850px;}
.y1c_c00385{bottom:290.924850px;}
.y1b_c00385{bottom:326.924850px;}
.y1a_c00385{bottom:362.924850px;}
.y19_c00385{bottom:398.924850px;}
.y18_c00385{bottom:434.924850px;}
.y17_c00385{bottom:470.924850px;}
.y16_c00385{bottom:506.924850px;}
.y15_c00385{bottom:542.924850px;}
.y14_c00385{bottom:578.924850px;}
.y13_c00385{bottom:614.924850px;}
.y12_c00385{bottom:650.924850px;}
.y11_c00385{bottom:686.924850px;}
.y10_c00385{bottom:722.924850px;}
.yf_c00385{bottom:758.924850px;}
.ye_c00385{bottom:794.924850px;}
.yd_c00385{bottom:830.924850px;}
.yc_c00385{bottom:866.924850px;}
.yb_c00385{bottom:902.924850px;}
.ya_c00385{bottom:938.924850px;}
.y9_c00385{bottom:974.924850px;}
.y8_c00385{bottom:1010.924850px;}
.y7_c00385{bottom:1046.924850px;}
.y6_c00385{bottom:1082.924850px;}
.y2_c00385{bottom:1165.365000px;}
.h5_c00385{height:17.280000px;}
.h3_c00385{height:43.189453px;}
.h4_c00385{height:70.664062px;}
.h2_c00385{height:1237.365000px;}
.h0_c00385{height:1262.835000px;}
.h1_c00385{height:1263.000000px;}
.w3_c00385{width:47.520000px;}
.w2_c00385{width:867.465000px;}
.w0_c00385{width:892.935000px;}
.w1_c00385{width:893.250000px;}
.x3_c00385{left:-39.599850px;}
.x0_c00385{left:0.000000px;}
.x5_c00385{left:10.237500px;}
.x1_c00385{left:12.735000px;}
.x7_c00385{left:95.400150px;}
.x6_c00385{left:149.400150px;}
.x4_c00385{left:422.775000px;}
.x2_c00385{left:880.050300px;}
@media print{
.v0_c00385{vertical-align:0.000000pt;}
.ls1_c00385{letter-spacing:0.000000pt;}
.ls0_c00385{letter-spacing:0.012800pt;}
.ls2_c00385{letter-spacing:0.032000pt;}
.ws1_c00385{word-spacing:-16.032000pt;}
.ws0_c00385{word-spacing:-16.000000pt;}
.ws2_c00385{word-spacing:0.000000pt;}
._2_c00385{width:1.708800pt;}
._3_c00385{width:2.860800pt;}
._7_c00385{width:5.491200pt;}
._1_c00385{width:8.544000pt;}
._0_c00385{width:9.587200pt;}
._8_c00385{width:12.864000pt;}
._4_c00385{width:17.856000pt;}
._6_c00385{width:19.443200pt;}
._5_c00385{width:23.193600pt;}
.fs0_c00385{font-size:57.600000pt;}
.fs1_c00385{font-size:64.000000pt;}
.y0_c00385{bottom:0.000000pt;}
.y5_c00385{bottom:1.280000pt;}
.y1_c00385{bottom:11.320000pt;}
.y3_c00385{bottom:40.360000pt;}
.y4_c00385{bottom:50.400000pt;}
.y20_c00385{bottom:130.599867pt;}
.y1f_c00385{bottom:162.599867pt;}
.y1e_c00385{bottom:194.599867pt;}
.y1d_c00385{bottom:226.599867pt;}
.y1c_c00385{bottom:258.599867pt;}
.y1b_c00385{bottom:290.599867pt;}
.y1a_c00385{bottom:322.599867pt;}
.y19_c00385{bottom:354.599867pt;}
.y18_c00385{bottom:386.599867pt;}
.y17_c00385{bottom:418.599867pt;}
.y16_c00385{bottom:450.599867pt;}
.y15_c00385{bottom:482.599867pt;}
.y14_c00385{bottom:514.599867pt;}
.y13_c00385{bottom:546.599867pt;}
.y12_c00385{bottom:578.599867pt;}
.y11_c00385{bottom:610.599867pt;}
.y10_c00385{bottom:642.599867pt;}
.yf_c00385{bottom:674.599867pt;}
.ye_c00385{bottom:706.599867pt;}
.yd_c00385{bottom:738.599867pt;}
.yc_c00385{bottom:770.599867pt;}
.yb_c00385{bottom:802.599867pt;}
.ya_c00385{bottom:834.599867pt;}
.y9_c00385{bottom:866.599867pt;}
.y8_c00385{bottom:898.599867pt;}
.y7_c00385{bottom:930.599867pt;}
.y6_c00385{bottom:962.599867pt;}
.y2_c00385{bottom:1035.880000pt;}
.h5_c00385{height:15.360000pt;}
.h3_c00385{height:38.390625pt;}
.h4_c00385{height:62.812500pt;}
.h2_c00385{height:1099.880000pt;}
.h0_c00385{height:1122.520000pt;}
.h1_c00385{height:1122.666667pt;}
.w3_c00385{width:42.240000pt;}
.w2_c00385{width:771.080000pt;}
.w0_c00385{width:793.720000pt;}
.w1_c00385{width:794.000000pt;}
.x3_c00385{left:-35.199867pt;}
.x0_c00385{left:0.000000pt;}
.x5_c00385{left:9.100000pt;}
.x1_c00385{left:11.320000pt;}
.x7_c00385{left:84.800133pt;}
.x6_c00385{left:132.800133pt;}
.x4_c00385{left:375.800000pt;}
.x2_c00385{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d080f364692daab112104f28.woff2')format("woff");}.ff1_c00386{font-family:ff1_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:ff2_c00386;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00386{font-family:ff2_c00386;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00386;src:url('chunks/assets/font_84a95919e42dd4bd1c45d179.woff2')format("woff");}.ff3_c00386{font-family:ff3_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;}
.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;}
.ls2_c00386{letter-spacing:0.000000px;}
.ls3_c00386{letter-spacing:0.014400px;}
.ls1_c00386{letter-spacing:0.118800px;}
.ls0_c00386{letter-spacing:0.142560px;}
.ls5_c00386{letter-spacing:0.242352px;}
.ls4_c00386{letter-spacing:0.285120px;}
.sc__c00386{text-shadow:none;}
.sc0_c00386{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00386{-webkit-text-stroke:0px transparent;}
.sc0_c00386{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00386{word-spacing:-18.000000px;}
.ws1_c00386{word-spacing:0.000000px;}
._4_c00386{margin-left:-1.188000px;}
._2_c00386{width:4.723200px;}
._1_c00386{width:6.372000px;}
._0_c00386{width:7.380000px;}
._3_c00386{width:19.296000px;}
._5_c00386{width:27.475200px;}
.fc1_c00386{color:transparent;}
.fc0_c00386{color:rgb(0,0,0);}
.fs2_c00386{font-size:47.520000px;}
.fs1_c00386{font-size:64.800000px;}
.fs0_c00386{font-size:72.000000px;}
.y0_c00386{bottom:0.000000px;}
.y5_c00386{bottom:5.040000px;}
.y1_c00386{bottom:12.735000px;}
.y3_c00386{bottom:45.405000px;}
.y4_c00386{bottom:53.100000px;}
.y18_c00386{bottom:122.445000px;}
.y17_c00386{bottom:158.445000px;}
.y16_c00386{bottom:194.445000px;}
.y15_c00386{bottom:230.445000px;}
.y14_c00386{bottom:266.445000px;}
.y13_c00386{bottom:302.445000px;}
.y12_c00386{bottom:336.645000px;}
.y11_c00386{bottom:370.125000px;}
.y10_c00386{bottom:564.885000px;}
.yf_c00386{bottom:599.085000px;}
.ye_c00386{bottom:632.204850px;}
.yd_c00386{bottom:830.924850px;}
.yc_c00386{bottom:866.924850px;}
.yb_c00386{bottom:902.924850px;}
.ya_c00386{bottom:938.924850px;}
.y9_c00386{bottom:974.924850px;}
.y8_c00386{bottom:1010.924850px;}
.y7_c00386{bottom:1046.924850px;}
.y6_c00386{bottom:1082.924850px;}
.y2_c00386{bottom:1165.365000px;}
.h4_c00386{height:20.880000px;}
.h5_c00386{height:70.628906px;}
.h3_c00386{height:70.664062px;}
.h2_c00386{height:1237.365000px;}
.h0_c00386{height:1262.835000px;}
.h1_c00386{height:1263.000000px;}
.w3_c00386{width:27.000000px;}
.w2_c00386{width:867.465000px;}
.w0_c00386{width:892.935000px;}
.w1_c00386{width:893.250000px;}
.x0_c00386{left:0.000000px;}
.x1_c00386{left:12.735000px;}
.x3_c00386{left:95.394300px;}
.x5_c00386{left:149.400150px;}
.x4_c00386{left:432.855000px;}
.x6_c00386{left:776.412150px;}
.x2_c00386{left:880.050300px;}
@media print{
.v0_c00386{vertical-align:0.000000pt;}
.ls2_c00386{letter-spacing:0.000000pt;}
.ls3_c00386{letter-spacing:0.012800pt;}
.ls1_c00386{letter-spacing:0.105600pt;}
.ls0_c00386{letter-spacing:0.126720pt;}
.ls5_c00386{letter-spacing:0.215424pt;}
.ls4_c00386{letter-spacing:0.253440pt;}
.ws0_c00386{word-spacing:-16.000000pt;}
.ws1_c00386{word-spacing:0.000000pt;}
._4_c00386{margin-left:-1.056000pt;}
._2_c00386{width:4.198400pt;}
._1_c00386{width:5.664000pt;}
._0_c00386{width:6.560000pt;}
._3_c00386{width:17.152000pt;}
._5_c00386{width:24.422400pt;}
.fs2_c00386{font-size:42.240000pt;}
.fs1_c00386{font-size:57.600000pt;}
.fs0_c00386{font-size:64.000000pt;}
.y0_c00386{bottom:0.000000pt;}
.y5_c00386{bottom:4.480000pt;}
.y1_c00386{bottom:11.320000pt;}
.y3_c00386{bottom:40.360000pt;}
.y4_c00386{bottom:47.200000pt;}
.y18_c00386{bottom:108.840000pt;}
.y17_c00386{bottom:140.840000pt;}
.y16_c00386{bottom:172.840000pt;}
.y15_c00386{bottom:204.840000pt;}
.y14_c00386{bottom:236.840000pt;}
.y13_c00386{bottom:268.840000pt;}
.y12_c00386{bottom:299.240000pt;}
.y11_c00386{bottom:329.000000pt;}
.y10_c00386{bottom:502.120000pt;}
.yf_c00386{bottom:532.520000pt;}
.ye_c00386{bottom:561.959867pt;}
.yd_c00386{bottom:738.599867pt;}
.yc_c00386{bottom:770.599867pt;}
.yb_c00386{bottom:802.599867pt;}
.ya_c00386{bottom:834.599867pt;}
.y9_c00386{bottom:866.599867pt;}
.y8_c00386{bottom:898.599867pt;}
.y7_c00386{bottom:930.599867pt;}
.y6_c00386{bottom:962.599867pt;}
.y2_c00386{bottom:1035.880000pt;}
.h4_c00386{height:18.560000pt;}
.h5_c00386{height:62.781250pt;}
.h3_c00386{height:62.812500pt;}
.h2_c00386{height:1099.880000pt;}
.h0_c00386{height:1122.520000pt;}
.h1_c00386{height:1122.666667pt;}
.w3_c00386{width:24.000000pt;}
.w2_c00386{width:771.080000pt;}
.w0_c00386{width:793.720000pt;}
.w1_c00386{width:794.000000pt;}
.x0_c00386{left:0.000000pt;}
.x1_c00386{left:11.320000pt;}
.x3_c00386{left:84.794933pt;}
.x5_c00386{left:132.800133pt;}
.x4_c00386{left:384.760000pt;}
.x6_c00386{left:690.144133pt;}
.x2_c00386{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00387{font-family:ff1_c00387;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00387;src:url('chunks/assets/font_8f60da75436723145288bb54.woff2')format("woff");}.ff2_c00387{font-family:ff2_c00387;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00387;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00387{font-family:ff3_c00387;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00387;src:url('chunks/assets/font_90bb1956938097203294bad0.woff2')format("woff");}.ff4_c00387{font-family:ff4_c00387;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00387{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00387{vertical-align:0.000000px;}
.ls1_c00387{letter-spacing:0.000000px;}
.ls2_c00387{letter-spacing:0.118800px;}
.ls0_c00387{letter-spacing:0.142560px;}
.ls3_c00387{letter-spacing:0.242352px;}
.sc__c00387{text-shadow:none;}
.sc0_c00387{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00387{-webkit-text-stroke:0px transparent;}
.sc0_c00387{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00387{word-spacing:-18.000000px;}
.ws1_c00387{word-spacing:0.000000px;}
._3_c00387{width:1.045440px;}
._4_c00387{width:2.613600px;}
._1_c00387{width:10.540800px;}
._0_c00387{width:15.307200px;}
._2_c00387{width:19.180800px;}
.fc1_c00387{color:transparent;}
.fc0_c00387{color:rgb(0,0,0);}
.fs2_c00387{font-size:47.520000px;}
.fs0_c00387{font-size:64.800000px;}
.fs1_c00387{font-size:72.000000px;}
.y0_c00387{bottom:0.000000px;}
.y5_c00387{bottom:1.440000px;}
.y1_c00387{bottom:12.735000px;}
.y3_c00387{bottom:45.405000px;}
.y4_c00387{bottom:56.700000px;}
.y17_c00387{bottom:105.165000px;}
.y16_c00387{bottom:141.165000px;}
.y15_c00387{bottom:177.165000px;}
.y14_c00387{bottom:213.165000px;}
.y13_c00387{bottom:249.165000px;}
.y12_c00387{bottom:285.165000px;}
.y11_c00387{bottom:321.165000px;}
.y10_c00387{bottom:357.165000px;}
.yf_c00387{bottom:393.165000px;}
.ye_c00387{bottom:427.365000px;}
.yd_c00387{bottom:460.484850px;}
.yc_c00387{bottom:866.924850px;}
.yb_c00387{bottom:902.924850px;}
.ya_c00387{bottom:938.924850px;}
.y9_c00387{bottom:974.924850px;}
.y8_c00387{bottom:1010.924850px;}
.y7_c00387{bottom:1046.924850px;}
.y6_c00387{bottom:1082.924850px;}
.y2_c00387{bottom:1165.365000px;}
.h5_c00387{height:17.280000px;}
.h3_c00387{height:43.189453px;}
.h7_c00387{height:46.615078px;}
.h6_c00387{height:70.628906px;}
.h4_c00387{height:70.664062px;}
.h2_c00387{height:1237.365000px;}
.h0_c00387{height:1262.835000px;}
.h1_c00387{height:1263.000000px;}
.w3_c00387{width:47.520000px;}
.w2_c00387{width:867.465000px;}
.w0_c00387{width:892.935000px;}
.w1_c00387{width:893.250000px;}
.x3_c00387{left:-39.599850px;}
.x0_c00387{left:0.000000px;}
.x5_c00387{left:10.237500px;}
.x1_c00387{left:12.735000px;}
.x7_c00387{left:95.400150px;}
.x6_c00387{left:149.400150px;}
.x4_c00387{left:422.775000px;}
.x8_c00387{left:776.394150px;}
.x2_c00387{left:880.050300px;}
@media print{
.v0_c00387{vertical-align:0.000000pt;}
.ls1_c00387{letter-spacing:0.000000pt;}
.ls2_c00387{letter-spacing:0.105600pt;}
.ls0_c00387{letter-spacing:0.126720pt;}
.ls3_c00387{letter-spacing:0.215424pt;}
.ws0_c00387{word-spacing:-16.000000pt;}
.ws1_c00387{word-spacing:0.000000pt;}
._3_c00387{width:0.929280pt;}
._4_c00387{width:2.323200pt;}
._1_c00387{width:9.369600pt;}
._0_c00387{width:13.606400pt;}
._2_c00387{width:17.049600pt;}
.fs2_c00387{font-size:42.240000pt;}
.fs0_c00387{font-size:57.600000pt;}
.fs1_c00387{font-size:64.000000pt;}
.y0_c00387{bottom:0.000000pt;}
.y5_c00387{bottom:1.280000pt;}
.y1_c00387{bottom:11.320000pt;}
.y3_c00387{bottom:40.360000pt;}
.y4_c00387{bottom:50.400000pt;}
.y17_c00387{bottom:93.480000pt;}
.y16_c00387{bottom:125.480000pt;}
.y15_c00387{bottom:157.480000pt;}
.y14_c00387{bottom:189.480000pt;}
.y13_c00387{bottom:221.480000pt;}
.y12_c00387{bottom:253.480000pt;}
.y11_c00387{bottom:285.480000pt;}
.y10_c00387{bottom:317.480000pt;}
.yf_c00387{bottom:349.480000pt;}
.ye_c00387{bottom:379.880000pt;}
.yd_c00387{bottom:409.319867pt;}
.yc_c00387{bottom:770.599867pt;}
.yb_c00387{bottom:802.599867pt;}
.ya_c00387{bottom:834.599867pt;}
.y9_c00387{bottom:866.599867pt;}
.y8_c00387{bottom:898.599867pt;}
.y7_c00387{bottom:930.599867pt;}
.y6_c00387{bottom:962.599867pt;}
.y2_c00387{bottom:1035.880000pt;}
.h5_c00387{height:15.360000pt;}
.h3_c00387{height:38.390625pt;}
.h7_c00387{height:41.435625pt;}
.h6_c00387{height:62.781250pt;}
.h4_c00387{height:62.812500pt;}
.h2_c00387{height:1099.880000pt;}
.h0_c00387{height:1122.520000pt;}
.h1_c00387{height:1122.666667pt;}
.w3_c00387{width:42.240000pt;}
.w2_c00387{width:771.080000pt;}
.w0_c00387{width:793.720000pt;}
.w1_c00387{width:794.000000pt;}
.x3_c00387{left:-35.199867pt;}
.x0_c00387{left:0.000000pt;}
.x5_c00387{left:9.100000pt;}
.x1_c00387{left:11.320000pt;}
.x7_c00387{left:84.800133pt;}
.x6_c00387{left:132.800133pt;}
.x4_c00387{left:375.800000pt;}
.x8_c00387{left:690.128133pt;}
.x2_c00387{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1d91154e185b4332ff59ee93.woff2')format("woff");}.ff1_c00388{font-family:ff1_c00388;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00388;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00388{font-family:ff2_c00388;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00388;src:url('chunks/assets/font_cb0aa32be5453c5a8f7ccd0e.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;}
.m0_c00388{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00388{vertical-align:0.000000px;}
.ls5_c00388{letter-spacing:-0.014400px;}
.ls1_c00388{letter-spacing:0.000000px;}
.ls6_c00388{letter-spacing:0.014400px;}
.ls4_c00388{letter-spacing:0.050400px;}
.ls2_c00388{letter-spacing:0.118800px;}
.ls0_c00388{letter-spacing:0.142560px;}
.ls3_c00388{letter-spacing:0.242352px;}
.sc__c00388{text-shadow:none;}
.sc0_c00388{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00388{-webkit-text-stroke:0px transparent;}
.sc0_c00388{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00388{word-spacing:-18.000000px;}
.ws1_c00388{word-spacing:0.000000px;}
._0_c00388{width:1.045440px;}
._1_c00388{width:2.613600px;}
._2_c00388{width:5.968800px;}
._3_c00388{width:6.991200px;}
._5_c00388{width:9.000000px;}
._7_c00388{width:10.447200px;}
._6_c00388{width:14.875200px;}
._8_c00388{width:16.639200px;}
._4_c00388{width:19.569600px;}
.fc1_c00388{color:transparent;}
.fc0_c00388{color:rgb(0,0,0);}
.fs2_c00388{font-size:47.520000px;}
.fs1_c00388{font-size:64.800000px;}
.fs0_c00388{font-size:72.000000px;}
.y0_c00388{bottom:0.000000px;}
.y5_c00388{bottom:5.040000px;}
.y1_c00388{bottom:12.735000px;}
.y3_c00388{bottom:45.405000px;}
.y4_c00388{bottom:53.100000px;}
.y15_c00388{bottom:108.045000px;}
.y14_c00388{bottom:144.045000px;}
.y13_c00388{bottom:180.045000px;}
.y12_c00388{bottom:216.045000px;}
.y11_c00388{bottom:252.045000px;}
.y10_c00388{bottom:288.045000px;}
.yf_c00388{bottom:324.045000px;}
.ye_c00388{bottom:360.045000px;}
.yd_c00388{bottom:396.045000px;}
.yc_c00388{bottom:432.045000px;}
.yb_c00388{bottom:468.045000px;}
.ya_c00388{bottom:504.045000px;}
.y9_c00388{bottom:538.245000px;}
.y8_c00388{bottom:571.724850px;}
.y7_c00388{bottom:1046.924850px;}
.y6_c00388{bottom:1082.924850px;}
.y2_c00388{bottom:1165.365000px;}
.h4_c00388{height:20.880000px;}
.h6_c00388{height:46.615078px;}
.h5_c00388{height:70.628906px;}
.h3_c00388{height:70.664062px;}
.h2_c00388{height:1237.365000px;}
.h0_c00388{height:1262.835000px;}
.h1_c00388{height:1263.000000px;}
.w3_c00388{width:27.000000px;}
.w2_c00388{width:867.465000px;}
.w0_c00388{width:892.935000px;}
.w1_c00388{width:893.250000px;}
.x0_c00388{left:0.000000px;}
.x1_c00388{left:12.735000px;}
.x3_c00388{left:95.394300px;}
.x5_c00388{left:149.400150px;}
.x4_c00388{left:432.855000px;}
.x6_c00388{left:776.394150px;}
.x2_c00388{left:880.050300px;}
@media print{
.v0_c00388{vertical-align:0.000000pt;}
.ls5_c00388{letter-spacing:-0.012800pt;}
.ls1_c00388{letter-spacing:0.000000pt;}
.ls6_c00388{letter-spacing:0.012800pt;}
.ls4_c00388{letter-spacing:0.044800pt;}
.ls2_c00388{letter-spacing:0.105600pt;}
.ls0_c00388{letter-spacing:0.126720pt;}
.ls3_c00388{letter-spacing:0.215424pt;}
.ws0_c00388{word-spacing:-16.000000pt;}
.ws1_c00388{word-spacing:0.000000pt;}
._0_c00388{width:0.929280pt;}
._1_c00388{width:2.323200pt;}
._2_c00388{width:5.305600pt;}
._3_c00388{width:6.214400pt;}
._5_c00388{width:8.000000pt;}
._7_c00388{width:9.286400pt;}
._6_c00388{width:13.222400pt;}
._8_c00388{width:14.790400pt;}
._4_c00388{width:17.395200pt;}
.fs2_c00388{font-size:42.240000pt;}
.fs1_c00388{font-size:57.600000pt;}
.fs0_c00388{font-size:64.000000pt;}
.y0_c00388{bottom:0.000000pt;}
.y5_c00388{bottom:4.480000pt;}
.y1_c00388{bottom:11.320000pt;}
.y3_c00388{bottom:40.360000pt;}
.y4_c00388{bottom:47.200000pt;}
.y15_c00388{bottom:96.040000pt;}
.y14_c00388{bottom:128.040000pt;}
.y13_c00388{bottom:160.040000pt;}
.y12_c00388{bottom:192.040000pt;}
.y11_c00388{bottom:224.040000pt;}
.y10_c00388{bottom:256.040000pt;}
.yf_c00388{bottom:288.040000pt;}
.ye_c00388{bottom:320.040000pt;}
.yd_c00388{bottom:352.040000pt;}
.yc_c00388{bottom:384.040000pt;}
.yb_c00388{bottom:416.040000pt;}
.ya_c00388{bottom:448.040000pt;}
.y9_c00388{bottom:478.440000pt;}
.y8_c00388{bottom:508.199867pt;}
.y7_c00388{bottom:930.599867pt;}
.y6_c00388{bottom:962.599867pt;}
.y2_c00388{bottom:1035.880000pt;}
.h4_c00388{height:18.560000pt;}
.h6_c00388{height:41.435625pt;}
.h5_c00388{height:62.781250pt;}
.h3_c00388{height:62.812500pt;}
.h2_c00388{height:1099.880000pt;}
.h0_c00388{height:1122.520000pt;}
.h1_c00388{height:1122.666667pt;}
.w3_c00388{width:24.000000pt;}
.w2_c00388{width:771.080000pt;}
.w0_c00388{width:793.720000pt;}
.w1_c00388{width:794.000000pt;}
.x0_c00388{left:0.000000pt;}
.x1_c00388{left:11.320000pt;}
.x3_c00388{left:84.794933pt;}
.x5_c00388{left:132.800133pt;}
.x4_c00388{left:384.760000pt;}
.x6_c00388{left:690.128133pt;}
.x2_c00388{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00389{font-family:ff1_c00389;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00389;src:url('chunks/assets/font_5e2448641a0e2cbd4e7882d1.woff2')format("woff");}.ff2_c00389{font-family:ff2_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:ff3_c00389;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00389{font-family:ff3_c00389;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00389;src:url('chunks/assets/font_a29ea9e4dad0b1de55d4e91c.woff2')format("woff");}.ff4_c00389{font-family:ff4_c00389;line-height:1.284180;font-style: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;}
.ls1_c00389{letter-spacing:0.000000px;}
.ls0_c00389{letter-spacing:0.014400px;}
.sc__c00389{text-shadow:none;}
.sc0_c00389{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00389{-webkit-text-stroke:0px transparent;}
.sc0_c00389{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00389{word-spacing:-18.014400px;}
.ws0_c00389{word-spacing:-18.000000px;}
.ws2_c00389{word-spacing:0.000000px;}
._c_c00389{margin-left:-1.123200px;}
._6_c00389{width:1.735200px;}
._2_c00389{width:3.621600px;}
._1_c00389{width:5.227200px;}
._0_c00389{width:6.904800px;}
._5_c00389{width:8.762400px;}
._4_c00389{width:9.928800px;}
._7_c00389{width:11.887200px;}
._9_c00389{width:12.931200px;}
._3_c00389{width:14.911200px;}
._a_c00389{width:16.056000px;}
._d_c00389{width:19.065600px;}
._b_c00389{width:20.498400px;}
._8_c00389{width:23.198400px;}
.fc1_c00389{color:transparent;}
.fc0_c00389{color:rgb(0,0,0);}
.fs0_c00389{font-size:64.800000px;}
.fs1_c00389{font-size:72.000000px;}
.y0_c00389{bottom:0.000000px;}
.y5_c00389{bottom:1.440000px;}
.y1_c00389{bottom:12.735000px;}
.y3_c00389{bottom:45.405000px;}
.y4_c00389{bottom:56.700000px;}
.y20_c00389{bottom:146.924850px;}
.y1f_c00389{bottom:182.924850px;}
.y1e_c00389{bottom:218.924850px;}
.y1d_c00389{bottom:254.924850px;}
.y1c_c00389{bottom:290.924850px;}
.y1b_c00389{bottom:326.924850px;}
.y1a_c00389{bottom:362.924850px;}
.y19_c00389{bottom:398.924850px;}
.y18_c00389{bottom:434.924850px;}
.y17_c00389{bottom:470.924850px;}
.y16_c00389{bottom:506.924850px;}
.y15_c00389{bottom:542.924850px;}
.y14_c00389{bottom:578.924850px;}
.y13_c00389{bottom:614.924850px;}
.y12_c00389{bottom:650.924850px;}
.y11_c00389{bottom:686.924850px;}
.y10_c00389{bottom:722.924850px;}
.yf_c00389{bottom:758.924850px;}
.ye_c00389{bottom:794.924850px;}
.yd_c00389{bottom:830.924850px;}
.yc_c00389{bottom:866.924850px;}
.yb_c00389{bottom:902.924850px;}
.ya_c00389{bottom:938.924850px;}
.y9_c00389{bottom:974.924850px;}
.y8_c00389{bottom:1010.924850px;}
.y7_c00389{bottom:1046.924850px;}
.y6_c00389{bottom:1082.924850px;}
.y2_c00389{bottom:1165.365000px;}
.h5_c00389{height:17.280000px;}
.h3_c00389{height:43.189453px;}
.h4_c00389{height:70.664062px;}
.h2_c00389{height:1237.365000px;}
.h0_c00389{height:1262.835000px;}
.h1_c00389{height:1263.000000px;}
.w3_c00389{width:47.520000px;}
.w2_c00389{width:867.465000px;}
.w0_c00389{width:892.935000px;}
.w1_c00389{width:893.250000px;}
.x3_c00389{left:-39.599850px;}
.x0_c00389{left:0.000000px;}
.x5_c00389{left:10.237500px;}
.x1_c00389{left:12.735000px;}
.x6_c00389{left:95.400150px;}
.x7_c00389{left:149.400150px;}
.x4_c00389{left:422.775000px;}
.x2_c00389{left:880.050300px;}
@media print{
.v0_c00389{vertical-align:0.000000pt;}
.ls1_c00389{letter-spacing:0.000000pt;}
.ls0_c00389{letter-spacing:0.012800pt;}
.ws1_c00389{word-spacing:-16.012800pt;}
.ws0_c00389{word-spacing:-16.000000pt;}
.ws2_c00389{word-spacing:0.000000pt;}
._c_c00389{margin-left:-0.998400pt;}
._6_c00389{width:1.542400pt;}
._2_c00389{width:3.219200pt;}
._1_c00389{width:4.646400pt;}
._0_c00389{width:6.137600pt;}
._5_c00389{width:7.788800pt;}
._4_c00389{width:8.825600pt;}
._7_c00389{width:10.566400pt;}
._9_c00389{width:11.494400pt;}
._3_c00389{width:13.254400pt;}
._a_c00389{width:14.272000pt;}
._d_c00389{width:16.947200pt;}
._b_c00389{width:18.220800pt;}
._8_c00389{width:20.620800pt;}
.fs0_c00389{font-size:57.600000pt;}
.fs1_c00389{font-size:64.000000pt;}
.y0_c00389{bottom:0.000000pt;}
.y5_c00389{bottom:1.280000pt;}
.y1_c00389{bottom:11.320000pt;}
.y3_c00389{bottom:40.360000pt;}
.y4_c00389{bottom:50.400000pt;}
.y20_c00389{bottom:130.599867pt;}
.y1f_c00389{bottom:162.599867pt;}
.y1e_c00389{bottom:194.599867pt;}
.y1d_c00389{bottom:226.599867pt;}
.y1c_c00389{bottom:258.599867pt;}
.y1b_c00389{bottom:290.599867pt;}
.y1a_c00389{bottom:322.599867pt;}
.y19_c00389{bottom:354.599867pt;}
.y18_c00389{bottom:386.599867pt;}
.y17_c00389{bottom:418.599867pt;}
.y16_c00389{bottom:450.599867pt;}
.y15_c00389{bottom:482.599867pt;}
.y14_c00389{bottom:514.599867pt;}
.y13_c00389{bottom:546.599867pt;}
.y12_c00389{bottom:578.599867pt;}
.y11_c00389{bottom:610.599867pt;}
.y10_c00389{bottom:642.599867pt;}
.yf_c00389{bottom:674.599867pt;}
.ye_c00389{bottom:706.599867pt;}
.yd_c00389{bottom:738.599867pt;}
.yc_c00389{bottom:770.599867pt;}
.yb_c00389{bottom:802.599867pt;}
.ya_c00389{bottom:834.599867pt;}
.y9_c00389{bottom:866.599867pt;}
.y8_c00389{bottom:898.599867pt;}
.y7_c00389{bottom:930.599867pt;}
.y6_c00389{bottom:962.599867pt;}
.y2_c00389{bottom:1035.880000pt;}
.h5_c00389{height:15.360000pt;}
.h3_c00389{height:38.390625pt;}
.h4_c00389{height:62.812500pt;}
.h2_c00389{height:1099.880000pt;}
.h0_c00389{height:1122.520000pt;}
.h1_c00389{height:1122.666667pt;}
.w3_c00389{width:42.240000pt;}
.w2_c00389{width:771.080000pt;}
.w0_c00389{width:793.720000pt;}
.w1_c00389{width:794.000000pt;}
.x3_c00389{left:-35.199867pt;}
.x0_c00389{left:0.000000pt;}
.x5_c00389{left:9.100000pt;}
.x1_c00389{left:11.320000pt;}
.x6_c00389{left:84.800133pt;}
.x7_c00389{left:132.800133pt;}
.x4_c00389{left:375.800000pt;}
.x2_c00389{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_7c1e8739a50c754eabb614ab.woff2')format("woff");}.ff1_c00390{font-family:ff1_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:ff2_c00390;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00390{font-family:ff2_c00390;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00390;src:url('chunks/assets/font_9d24ff347462dc920081804d.woff2')format("woff");}.ff3_c00390{font-family:ff3_c00390;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00390;src:url('chunks/assets/font_b04752f3f3e004bacb1a9b90.woff2')format("woff");}.ff4_c00390{font-family:ff4_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:ff5_c00390;src:url('chunks/assets/font_c15556af46a702c09621fbb1.woff2')format("woff");}.ff5_c00390{font-family:ff5_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;}
.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;}
.ls2_c00390{letter-spacing:-0.115200px;}
.ls3_c00390{letter-spacing:-0.014400px;}
.ls1_c00390{letter-spacing:0.000000px;}
.ls5_c00390{letter-spacing:0.116928px;}
.ls0_c00390{letter-spacing:0.242208px;}
.ls6_c00390{letter-spacing:0.359136px;}
.ls8_c00390{letter-spacing:1.238400px;}
.ls7_c00390{letter-spacing:3.088800px;}
.ls4_c00390{letter-spacing:6.962400px;}
.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;}
}
.ws2_c00390{word-spacing:-21.239136px;}
.ws1_c00390{word-spacing:-21.122208px;}
.ws0_c00390{word-spacing:-18.000000px;}
.ws3_c00390{word-spacing:0.000000px;}
._4_c00390{margin-left:-6.811200px;}
._d_c00390{margin-left:-2.836800px;}
._5_c00390{margin-left:-1.447200px;}
._1_c00390{width:1.224000px;}
._a_c00390{width:2.908800px;}
._c_c00390{width:3.988800px;}
._7_c00390{width:5.608800px;}
._3_c00390{width:6.912000px;}
._0_c00390{width:8.899200px;}
._e_c00390{width:10.339200px;}
._b_c00390{width:11.440800px;}
._9_c00390{width:12.535200px;}
._8_c00390{width:13.543200px;}
._6_c00390{width:23.248800px;}
._2_c00390{width:27.691200px;}
.fc2_c00390{color:transparent;}
.fc1_c00390{color:rgb(127,127,127);}
.fc0_c00390{color:rgb(0,0,0);}
.fs1_c00390{font-size:64.800000px;}
.fs0_c00390{font-size:72.000000px;}
.fs2_c00390{font-size:83.520000px;}
.y0_c00390{bottom:0.000000px;}
.y5_c00390{bottom:5.040000px;}
.y1_c00390{bottom:12.735000px;}
.y3_c00390{bottom:45.405000px;}
.y4_c00390{bottom:53.100000px;}
.y20_c00390{bottom:146.924850px;}
.y1f_c00390{bottom:182.924850px;}
.y1e_c00390{bottom:218.924850px;}
.y1d_c00390{bottom:254.924850px;}
.y1c_c00390{bottom:290.924850px;}
.y1b_c00390{bottom:326.924850px;}
.y1a_c00390{bottom:362.924850px;}
.y19_c00390{bottom:398.924850px;}
.y18_c00390{bottom:434.924850px;}
.y17_c00390{bottom:470.924850px;}
.y16_c00390{bottom:506.924850px;}
.y15_c00390{bottom:542.924850px;}
.y14_c00390{bottom:578.924850px;}
.y13_c00390{bottom:614.924850px;}
.y12_c00390{bottom:650.924850px;}
.y11_c00390{bottom:686.924850px;}
.y10_c00390{bottom:722.924850px;}
.yf_c00390{bottom:758.924850px;}
.ye_c00390{bottom:794.924850px;}
.yd_c00390{bottom:830.924850px;}
.yc_c00390{bottom:867.645000px;}
.yb_c00390{bottom:902.924850px;}
.ya_c00390{bottom:938.924850px;}
.y9_c00390{bottom:974.924850px;}
.y8_c00390{bottom:1010.924850px;}
.y7_c00390{bottom:1046.924850px;}
.y6_c00390{bottom:1082.924850px;}
.y2_c00390{bottom:1165.365000px;}
.h4_c00390{height:20.880000px;}
.h3_c00390{height:70.664062px;}
.h5_c00390{height:71.824219px;}
.h7_c00390{height:72.562500px;}
.h6_c00390{height:81.929531px;}
.h2_c00390{height:1237.365000px;}
.h0_c00390{height:1262.835000px;}
.h1_c00390{height:1263.000000px;}
.w3_c00390{width:27.000000px;}
.w2_c00390{width:867.465000px;}
.w0_c00390{width:892.935000px;}
.w1_c00390{width:893.250000px;}
.x0_c00390{left:0.000000px;}
.x1_c00390{left:12.735000px;}
.x3_c00390{left:95.394300px;}
.x5_c00390{left:149.400150px;}
.x4_c00390{left:432.855000px;}
.x2_c00390{left:880.050300px;}
@media print{
.v0_c00390{vertical-align:0.000000pt;}
.ls2_c00390{letter-spacing:-0.102400pt;}
.ls3_c00390{letter-spacing:-0.012800pt;}
.ls1_c00390{letter-spacing:0.000000pt;}
.ls5_c00390{letter-spacing:0.103936pt;}
.ls0_c00390{letter-spacing:0.215296pt;}
.ls6_c00390{letter-spacing:0.319232pt;}
.ls8_c00390{letter-spacing:1.100800pt;}
.ls7_c00390{letter-spacing:2.745600pt;}
.ls4_c00390{letter-spacing:6.188800pt;}
.ws2_c00390{word-spacing:-18.879232pt;}
.ws1_c00390{word-spacing:-18.775296pt;}
.ws0_c00390{word-spacing:-16.000000pt;}
.ws3_c00390{word-spacing:0.000000pt;}
._4_c00390{margin-left:-6.054400pt;}
._d_c00390{margin-left:-2.521600pt;}
._5_c00390{margin-left:-1.286400pt;}
._1_c00390{width:1.088000pt;}
._a_c00390{width:2.585600pt;}
._c_c00390{width:3.545600pt;}
._7_c00390{width:4.985600pt;}
._3_c00390{width:6.144000pt;}
._0_c00390{width:7.910400pt;}
._e_c00390{width:9.190400pt;}
._b_c00390{width:10.169600pt;}
._9_c00390{width:11.142400pt;}
._8_c00390{width:12.038400pt;}
._6_c00390{width:20.665600pt;}
._2_c00390{width:24.614400pt;}
.fs1_c00390{font-size:57.600000pt;}
.fs0_c00390{font-size:64.000000pt;}
.fs2_c00390{font-size:74.240000pt;}
.y0_c00390{bottom:0.000000pt;}
.y5_c00390{bottom:4.480000pt;}
.y1_c00390{bottom:11.320000pt;}
.y3_c00390{bottom:40.360000pt;}
.y4_c00390{bottom:47.200000pt;}
.y20_c00390{bottom:130.599867pt;}
.y1f_c00390{bottom:162.599867pt;}
.y1e_c00390{bottom:194.599867pt;}
.y1d_c00390{bottom:226.599867pt;}
.y1c_c00390{bottom:258.599867pt;}
.y1b_c00390{bottom:290.599867pt;}
.y1a_c00390{bottom:322.599867pt;}
.y19_c00390{bottom:354.599867pt;}
.y18_c00390{bottom:386.599867pt;}
.y17_c00390{bottom:418.599867pt;}
.y16_c00390{bottom:450.599867pt;}
.y15_c00390{bottom:482.599867pt;}
.y14_c00390{bottom:514.599867pt;}
.y13_c00390{bottom:546.599867pt;}
.y12_c00390{bottom:578.599867pt;}
.y11_c00390{bottom:610.599867pt;}
.y10_c00390{bottom:642.599867pt;}
.yf_c00390{bottom:674.599867pt;}
.ye_c00390{bottom:706.599867pt;}
.yd_c00390{bottom:738.599867pt;}
.yc_c00390{bottom:771.240000pt;}
.yb_c00390{bottom:802.599867pt;}
.ya_c00390{bottom:834.599867pt;}
.y9_c00390{bottom:866.599867pt;}
.y8_c00390{bottom:898.599867pt;}
.y7_c00390{bottom:930.599867pt;}
.y6_c00390{bottom:962.599867pt;}
.y2_c00390{bottom:1035.880000pt;}
.h4_c00390{height:18.560000pt;}
.h3_c00390{height:62.812500pt;}
.h5_c00390{height:63.843750pt;}
.h7_c00390{height:64.500000pt;}
.h6_c00390{height:72.826250pt;}
.h2_c00390{height:1099.880000pt;}
.h0_c00390{height:1122.520000pt;}
.h1_c00390{height:1122.666667pt;}
.w3_c00390{width:24.000000pt;}
.w2_c00390{width:771.080000pt;}
.w0_c00390{width:793.720000pt;}
.w1_c00390{width:794.000000pt;}
.x0_c00390{left:0.000000pt;}
.x1_c00390{left:11.320000pt;}
.x3_c00390{left:84.794933pt;}
.x5_c00390{left:132.800133pt;}
.x4_c00390{left:384.760000pt;}
.x2_c00390{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00391{font-family:ff1_c00391;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00391;src:url('chunks/assets/font_44bd57551d8fbae912b920a7.woff2')format("woff");}.ff2_c00391{font-family:ff2_c00391;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00391;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00391{font-family:ff3_c00391;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls2_c00391{letter-spacing:-0.014400px;}
.ls0_c00391{letter-spacing:0.000000px;}
.ls1_c00391{letter-spacing:2.066400px;}
.sc__c00391{text-shadow:none;}
.sc0_c00391{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00391{-webkit-text-stroke:0px transparent;}
.sc0_c00391{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00391{word-spacing:-18.000000px;}
.ws1_c00391{word-spacing:0.000000px;}
._1_c00391{margin-left:-2.275200px;}
._6_c00391{width:1.058400px;}
._0_c00391{width:2.066400px;}
._4_c00391{width:3.772800px;}
._a_c00391{width:5.925600px;}
._c_c00391{width:7.243200px;}
._9_c00391{width:8.323200px;}
._7_c00391{width:10.432800px;}
._3_c00391{width:11.757600px;}
._b_c00391{width:13.615200px;}
._2_c00391{width:16.243200px;}
._8_c00391{width:24.357600px;}
._5_c00391{width:32.263200px;}
.fc1_c00391{color:transparent;}
.fc0_c00391{color:rgb(0,0,0);}
.fs0_c00391{font-size:64.800000px;}
.fs1_c00391{font-size:72.000000px;}
.y0_c00391{bottom:0.000000px;}
.y5_c00391{bottom:1.440000px;}
.y1_c00391{bottom:12.735000px;}
.y3_c00391{bottom:45.405000px;}
.y4_c00391{bottom:56.700000px;}
.y20_c00391{bottom:146.924850px;}
.y1f_c00391{bottom:182.924850px;}
.y1e_c00391{bottom:218.924850px;}
.y1d_c00391{bottom:254.924850px;}
.y1c_c00391{bottom:290.924850px;}
.y1b_c00391{bottom:326.924850px;}
.y1a_c00391{bottom:362.924850px;}
.y19_c00391{bottom:398.924850px;}
.y18_c00391{bottom:434.924850px;}
.y17_c00391{bottom:470.924850px;}
.y16_c00391{bottom:506.924850px;}
.y15_c00391{bottom:542.924850px;}
.y14_c00391{bottom:578.924850px;}
.y13_c00391{bottom:614.924850px;}
.y12_c00391{bottom:650.924850px;}
.y11_c00391{bottom:686.924850px;}
.y10_c00391{bottom:722.924850px;}
.yf_c00391{bottom:758.924850px;}
.ye_c00391{bottom:794.924850px;}
.yd_c00391{bottom:830.924850px;}
.yc_c00391{bottom:866.924850px;}
.yb_c00391{bottom:902.924850px;}
.ya_c00391{bottom:938.924850px;}
.y9_c00391{bottom:974.924850px;}
.y8_c00391{bottom:1010.924850px;}
.y7_c00391{bottom:1046.924850px;}
.y6_c00391{bottom:1082.924850px;}
.y2_c00391{bottom:1165.365000px;}
.h5_c00391{height:17.280000px;}
.h3_c00391{height:43.189453px;}
.h4_c00391{height:70.664062px;}
.h2_c00391{height:1237.365000px;}
.h0_c00391{height:1262.835000px;}
.h1_c00391{height:1263.000000px;}
.w3_c00391{width:47.520000px;}
.w2_c00391{width:867.465000px;}
.w0_c00391{width:892.935000px;}
.w1_c00391{width:893.250000px;}
.x3_c00391{left:-39.599850px;}
.x0_c00391{left:0.000000px;}
.x5_c00391{left:10.237500px;}
.x1_c00391{left:12.735000px;}
.x6_c00391{left:95.400150px;}
.x7_c00391{left:149.400150px;}
.x4_c00391{left:422.775000px;}
.x2_c00391{left:880.050300px;}
@media print{
.v0_c00391{vertical-align:0.000000pt;}
.ls2_c00391{letter-spacing:-0.012800pt;}
.ls0_c00391{letter-spacing:0.000000pt;}
.ls1_c00391{letter-spacing:1.836800pt;}
.ws0_c00391{word-spacing:-16.000000pt;}
.ws1_c00391{word-spacing:0.000000pt;}
._1_c00391{margin-left:-2.022400pt;}
._6_c00391{width:0.940800pt;}
._0_c00391{width:1.836800pt;}
._4_c00391{width:3.353600pt;}
._a_c00391{width:5.267200pt;}
._c_c00391{width:6.438400pt;}
._9_c00391{width:7.398400pt;}
._7_c00391{width:9.273600pt;}
._3_c00391{width:10.451200pt;}
._b_c00391{width:12.102400pt;}
._2_c00391{width:14.438400pt;}
._8_c00391{width:21.651200pt;}
._5_c00391{width:28.678400pt;}
.fs0_c00391{font-size:57.600000pt;}
.fs1_c00391{font-size:64.000000pt;}
.y0_c00391{bottom:0.000000pt;}
.y5_c00391{bottom:1.280000pt;}
.y1_c00391{bottom:11.320000pt;}
.y3_c00391{bottom:40.360000pt;}
.y4_c00391{bottom:50.400000pt;}
.y20_c00391{bottom:130.599867pt;}
.y1f_c00391{bottom:162.599867pt;}
.y1e_c00391{bottom:194.599867pt;}
.y1d_c00391{bottom:226.599867pt;}
.y1c_c00391{bottom:258.599867pt;}
.y1b_c00391{bottom:290.599867pt;}
.y1a_c00391{bottom:322.599867pt;}
.y19_c00391{bottom:354.599867pt;}
.y18_c00391{bottom:386.599867pt;}
.y17_c00391{bottom:418.599867pt;}
.y16_c00391{bottom:450.599867pt;}
.y15_c00391{bottom:482.599867pt;}
.y14_c00391{bottom:514.599867pt;}
.y13_c00391{bottom:546.599867pt;}
.y12_c00391{bottom:578.599867pt;}
.y11_c00391{bottom:610.599867pt;}
.y10_c00391{bottom:642.599867pt;}
.yf_c00391{bottom:674.599867pt;}
.ye_c00391{bottom:706.599867pt;}
.yd_c00391{bottom:738.599867pt;}
.yc_c00391{bottom:770.599867pt;}
.yb_c00391{bottom:802.599867pt;}
.ya_c00391{bottom:834.599867pt;}
.y9_c00391{bottom:866.599867pt;}
.y8_c00391{bottom:898.599867pt;}
.y7_c00391{bottom:930.599867pt;}
.y6_c00391{bottom:962.599867pt;}
.y2_c00391{bottom:1035.880000pt;}
.h5_c00391{height:15.360000pt;}
.h3_c00391{height:38.390625pt;}
.h4_c00391{height:62.812500pt;}
.h2_c00391{height:1099.880000pt;}
.h0_c00391{height:1122.520000pt;}
.h1_c00391{height:1122.666667pt;}
.w3_c00391{width:42.240000pt;}
.w2_c00391{width:771.080000pt;}
.w0_c00391{width:793.720000pt;}
.w1_c00391{width:794.000000pt;}
.x3_c00391{left:-35.199867pt;}
.x0_c00391{left:0.000000pt;}
.x5_c00391{left:9.100000pt;}
.x1_c00391{left:11.320000pt;}
.x6_c00391{left:84.800133pt;}
.x7_c00391{left:132.800133pt;}
.x4_c00391{left:375.800000pt;}
.x2_c00391{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_a88aac48e686540a397fde58.woff2')format("woff");}.ff1_c00392{font-family:ff1_c00392;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00392;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00392{font-family:ff2_c00392;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00392{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00392{vertical-align:0.000000px;}
.ls0_c00392{letter-spacing:0.000000px;}
.sc__c00392{text-shadow:none;}
.sc0_c00392{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00392{-webkit-text-stroke:0px transparent;}
.sc0_c00392{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00392{word-spacing:-18.000000px;}
.ws1_c00392{word-spacing:0.000000px;}
._c_c00392{margin-left:-1.080000px;}
._2_c00392{width:1.677600px;}
._3_c00392{width:2.736000px;}
._0_c00392{width:3.924000px;}
._1_c00392{width:5.198400px;}
._7_c00392{width:6.516000px;}
._b_c00392{width:8.488800px;}
._a_c00392{width:10.087200px;}
._4_c00392{width:11.088000px;}
._6_c00392{width:16.502400px;}
._8_c00392{width:19.612800px;}
._5_c00392{width:20.779200px;}
._9_c00392{width:22.586400px;}
._d_c00392{width:23.738400px;}
.fc1_c00392{color:transparent;}
.fc0_c00392{color:rgb(0,0,0);}
.fs1_c00392{font-size:64.800000px;}
.fs0_c00392{font-size:72.000000px;}
.y0_c00392{bottom:0.000000px;}
.y5_c00392{bottom:5.040000px;}
.y1_c00392{bottom:12.735000px;}
.y3_c00392{bottom:45.405000px;}
.y4_c00392{bottom:53.100000px;}
.y20_c00392{bottom:146.924850px;}
.y1f_c00392{bottom:182.924850px;}
.y1e_c00392{bottom:218.924850px;}
.y1d_c00392{bottom:254.924850px;}
.y1c_c00392{bottom:290.924850px;}
.y1b_c00392{bottom:326.924850px;}
.y1a_c00392{bottom:362.924850px;}
.y19_c00392{bottom:398.924850px;}
.y18_c00392{bottom:434.924850px;}
.y17_c00392{bottom:470.924850px;}
.y16_c00392{bottom:506.924850px;}
.y15_c00392{bottom:542.924850px;}
.y14_c00392{bottom:578.924850px;}
.y13_c00392{bottom:614.924850px;}
.y12_c00392{bottom:650.924850px;}
.y11_c00392{bottom:686.924850px;}
.y10_c00392{bottom:722.924850px;}
.yf_c00392{bottom:758.924850px;}
.ye_c00392{bottom:794.924850px;}
.yd_c00392{bottom:830.924850px;}
.yc_c00392{bottom:866.924850px;}
.yb_c00392{bottom:902.924850px;}
.ya_c00392{bottom:938.924850px;}
.y9_c00392{bottom:974.924850px;}
.y8_c00392{bottom:1010.924850px;}
.y7_c00392{bottom:1046.924850px;}
.y6_c00392{bottom:1082.924850px;}
.y2_c00392{bottom:1165.365000px;}
.h4_c00392{height:20.880000px;}
.h3_c00392{height:70.664062px;}
.h2_c00392{height:1237.365000px;}
.h0_c00392{height:1262.835000px;}
.h1_c00392{height:1263.000000px;}
.w3_c00392{width:27.000000px;}
.w2_c00392{width:867.465000px;}
.w0_c00392{width:892.935000px;}
.w1_c00392{width:893.250000px;}
.x0_c00392{left:0.000000px;}
.x1_c00392{left:12.735000px;}
.x3_c00392{left:95.394300px;}
.x5_c00392{left:149.400150px;}
.x4_c00392{left:432.855000px;}
.x2_c00392{left:880.050300px;}
@media print{
.v0_c00392{vertical-align:0.000000pt;}
.ls0_c00392{letter-spacing:0.000000pt;}
.ws0_c00392{word-spacing:-16.000000pt;}
.ws1_c00392{word-spacing:0.000000pt;}
._c_c00392{margin-left:-0.960000pt;}
._2_c00392{width:1.491200pt;}
._3_c00392{width:2.432000pt;}
._0_c00392{width:3.488000pt;}
._1_c00392{width:4.620800pt;}
._7_c00392{width:5.792000pt;}
._b_c00392{width:7.545600pt;}
._a_c00392{width:8.966400pt;}
._4_c00392{width:9.856000pt;}
._6_c00392{width:14.668800pt;}
._8_c00392{width:17.433600pt;}
._5_c00392{width:18.470400pt;}
._9_c00392{width:20.076800pt;}
._d_c00392{width:21.100800pt;}
.fs1_c00392{font-size:57.600000pt;}
.fs0_c00392{font-size:64.000000pt;}
.y0_c00392{bottom:0.000000pt;}
.y5_c00392{bottom:4.480000pt;}
.y1_c00392{bottom:11.320000pt;}
.y3_c00392{bottom:40.360000pt;}
.y4_c00392{bottom:47.200000pt;}
.y20_c00392{bottom:130.599867pt;}
.y1f_c00392{bottom:162.599867pt;}
.y1e_c00392{bottom:194.599867pt;}
.y1d_c00392{bottom:226.599867pt;}
.y1c_c00392{bottom:258.599867pt;}
.y1b_c00392{bottom:290.599867pt;}
.y1a_c00392{bottom:322.599867pt;}
.y19_c00392{bottom:354.599867pt;}
.y18_c00392{bottom:386.599867pt;}
.y17_c00392{bottom:418.599867pt;}
.y16_c00392{bottom:450.599867pt;}
.y15_c00392{bottom:482.599867pt;}
.y14_c00392{bottom:514.599867pt;}
.y13_c00392{bottom:546.599867pt;}
.y12_c00392{bottom:578.599867pt;}
.y11_c00392{bottom:610.599867pt;}
.y10_c00392{bottom:642.599867pt;}
.yf_c00392{bottom:674.599867pt;}
.ye_c00392{bottom:706.599867pt;}
.yd_c00392{bottom:738.599867pt;}
.yc_c00392{bottom:770.599867pt;}
.yb_c00392{bottom:802.599867pt;}
.ya_c00392{bottom:834.599867pt;}
.y9_c00392{bottom:866.599867pt;}
.y8_c00392{bottom:898.599867pt;}
.y7_c00392{bottom:930.599867pt;}
.y6_c00392{bottom:962.599867pt;}
.y2_c00392{bottom:1035.880000pt;}
.h4_c00392{height:18.560000pt;}
.h3_c00392{height:62.812500pt;}
.h2_c00392{height:1099.880000pt;}
.h0_c00392{height:1122.520000pt;}
.h1_c00392{height:1122.666667pt;}
.w3_c00392{width:24.000000pt;}
.w2_c00392{width:771.080000pt;}
.w0_c00392{width:793.720000pt;}
.w1_c00392{width:794.000000pt;}
.x0_c00392{left:0.000000pt;}
.x1_c00392{left:11.320000pt;}
.x3_c00392{left:84.794933pt;}
.x5_c00392{left:132.800133pt;}
.x4_c00392{left:384.760000pt;}
.x2_c00392{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00393{font-family:ff1_c00393;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00393;src:url('chunks/assets/font_cfe218d0c1178ebfef208e9e.woff2')format("woff");}.ff2_c00393{font-family:ff2_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:ff3_c00393;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00393{font-family:ff3_c00393;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00393;src:url('chunks/assets/font_0e3f8514eb46bbb2813d9310.woff2')format("woff");}.ff4_c00393{font-family:ff4_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;}
.m0_c00393{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00393{vertical-align:0.000000px;}
.ls1_c00393{letter-spacing:-0.014400px;}
.ls0_c00393{letter-spacing:0.000000px;}
.sc__c00393{text-shadow:none;}
.sc0_c00393{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00393{-webkit-text-stroke:0px transparent;}
.sc0_c00393{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00393{word-spacing:-18.000000px;}
.ws1_c00393{word-spacing:0.000000px;}
._3_c00393{width:1.180800px;}
._6_c00393{width:2.210400px;}
._0_c00393{width:3.506400px;}
._2_c00393{width:4.536000px;}
._1_c00393{width:5.702400px;}
._8_c00393{width:7.574400px;}
._9_c00393{width:10.533600px;}
._a_c00393{width:11.728800px;}
._4_c00393{width:12.787200px;}
._5_c00393{width:16.221600px;}
._7_c00393{width:19.468800px;}
._c_c00393{width:21.312000px;}
._b_c00393{width:23.148000px;}
._d_c00393{width:24.912000px;}
.fc1_c00393{color:transparent;}
.fc0_c00393{color:rgb(0,0,0);}
.fs0_c00393{font-size:64.800000px;}
.fs1_c00393{font-size:72.000000px;}
.y0_c00393{bottom:0.000000px;}
.y5_c00393{bottom:1.440000px;}
.y1_c00393{bottom:12.735000px;}
.y3_c00393{bottom:45.405000px;}
.y4_c00393{bottom:56.700000px;}
.y21_c00393{bottom:110.924850px;}
.y20_c00393{bottom:146.924850px;}
.y1f_c00393{bottom:182.924850px;}
.y1e_c00393{bottom:218.924850px;}
.y1d_c00393{bottom:254.924850px;}
.y1c_c00393{bottom:290.924850px;}
.y1b_c00393{bottom:326.924850px;}
.y1a_c00393{bottom:362.924850px;}
.y19_c00393{bottom:398.924850px;}
.y18_c00393{bottom:434.924850px;}
.y17_c00393{bottom:470.924850px;}
.y16_c00393{bottom:506.924850px;}
.y15_c00393{bottom:542.924850px;}
.y14_c00393{bottom:578.924850px;}
.y13_c00393{bottom:614.924850px;}
.y12_c00393{bottom:650.924850px;}
.y11_c00393{bottom:686.924850px;}
.y10_c00393{bottom:722.924850px;}
.yf_c00393{bottom:758.924850px;}
.ye_c00393{bottom:794.924850px;}
.yd_c00393{bottom:830.924850px;}
.yc_c00393{bottom:866.924850px;}
.yb_c00393{bottom:902.924850px;}
.ya_c00393{bottom:938.924850px;}
.y9_c00393{bottom:974.924850px;}
.y8_c00393{bottom:1010.924850px;}
.y7_c00393{bottom:1046.924850px;}
.y6_c00393{bottom:1082.924850px;}
.y2_c00393{bottom:1165.365000px;}
.h5_c00393{height:17.280000px;}
.h3_c00393{height:43.189453px;}
.h6_c00393{height:70.628906px;}
.h4_c00393{height:70.664062px;}
.h2_c00393{height:1237.365000px;}
.h0_c00393{height:1262.835000px;}
.h1_c00393{height:1263.000000px;}
.w3_c00393{width:47.520000px;}
.w2_c00393{width:867.465000px;}
.w0_c00393{width:892.935000px;}
.w1_c00393{width:893.250000px;}
.x3_c00393{left:-39.599850px;}
.x0_c00393{left:0.000000px;}
.x5_c00393{left:10.237500px;}
.x1_c00393{left:12.735000px;}
.x6_c00393{left:95.400150px;}
.x7_c00393{left:149.400150px;}
.x4_c00393{left:422.775000px;}
.x2_c00393{left:880.050300px;}
@media print{
.v0_c00393{vertical-align:0.000000pt;}
.ls1_c00393{letter-spacing:-0.012800pt;}
.ls0_c00393{letter-spacing:0.000000pt;}
.ws0_c00393{word-spacing:-16.000000pt;}
.ws1_c00393{word-spacing:0.000000pt;}
._3_c00393{width:1.049600pt;}
._6_c00393{width:1.964800pt;}
._0_c00393{width:3.116800pt;}
._2_c00393{width:4.032000pt;}
._1_c00393{width:5.068800pt;}
._8_c00393{width:6.732800pt;}
._9_c00393{width:9.363200pt;}
._a_c00393{width:10.425600pt;}
._4_c00393{width:11.366400pt;}
._5_c00393{width:14.419200pt;}
._7_c00393{width:17.305600pt;}
._c_c00393{width:18.944000pt;}
._b_c00393{width:20.576000pt;}
._d_c00393{width:22.144000pt;}
.fs0_c00393{font-size:57.600000pt;}
.fs1_c00393{font-size:64.000000pt;}
.y0_c00393{bottom:0.000000pt;}
.y5_c00393{bottom:1.280000pt;}
.y1_c00393{bottom:11.320000pt;}
.y3_c00393{bottom:40.360000pt;}
.y4_c00393{bottom:50.400000pt;}
.y21_c00393{bottom:98.599867pt;}
.y20_c00393{bottom:130.599867pt;}
.y1f_c00393{bottom:162.599867pt;}
.y1e_c00393{bottom:194.599867pt;}
.y1d_c00393{bottom:226.599867pt;}
.y1c_c00393{bottom:258.599867pt;}
.y1b_c00393{bottom:290.599867pt;}
.y1a_c00393{bottom:322.599867pt;}
.y19_c00393{bottom:354.599867pt;}
.y18_c00393{bottom:386.599867pt;}
.y17_c00393{bottom:418.599867pt;}
.y16_c00393{bottom:450.599867pt;}
.y15_c00393{bottom:482.599867pt;}
.y14_c00393{bottom:514.599867pt;}
.y13_c00393{bottom:546.599867pt;}
.y12_c00393{bottom:578.599867pt;}
.y11_c00393{bottom:610.599867pt;}
.y10_c00393{bottom:642.599867pt;}
.yf_c00393{bottom:674.599867pt;}
.ye_c00393{bottom:706.599867pt;}
.yd_c00393{bottom:738.599867pt;}
.yc_c00393{bottom:770.599867pt;}
.yb_c00393{bottom:802.599867pt;}
.ya_c00393{bottom:834.599867pt;}
.y9_c00393{bottom:866.599867pt;}
.y8_c00393{bottom:898.599867pt;}
.y7_c00393{bottom:930.599867pt;}
.y6_c00393{bottom:962.599867pt;}
.y2_c00393{bottom:1035.880000pt;}
.h5_c00393{height:15.360000pt;}
.h3_c00393{height:38.390625pt;}
.h6_c00393{height:62.781250pt;}
.h4_c00393{height:62.812500pt;}
.h2_c00393{height:1099.880000pt;}
.h0_c00393{height:1122.520000pt;}
.h1_c00393{height:1122.666667pt;}
.w3_c00393{width:42.240000pt;}
.w2_c00393{width:771.080000pt;}
.w0_c00393{width:793.720000pt;}
.w1_c00393{width:794.000000pt;}
.x3_c00393{left:-35.199867pt;}
.x0_c00393{left:0.000000pt;}
.x5_c00393{left:9.100000pt;}
.x1_c00393{left:11.320000pt;}
.x6_c00393{left:84.800133pt;}
.x7_c00393{left:132.800133pt;}
.x4_c00393{left:375.800000pt;}
.x2_c00393{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c2ef8c88410db605fe5ae0a6.woff2')format("woff");}.ff1_c00394{font-family:ff1_c00394;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00394;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00394{font-family:ff2_c00394;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00394;src:url('chunks/assets/font_fc24cb5ea3363e5c59e715e3.woff2')format("woff");}.ff3_c00394{font-family:ff3_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;}
.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;}
.ls0_c00394{letter-spacing:0.000000px;}
.ls1_c00394{letter-spacing:0.014400px;}
.sc__c00394{text-shadow:none;}
.sc0_c00394{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00394{-webkit-text-stroke:0px transparent;}
.sc0_c00394{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00394{word-spacing:-18.000000px;}
.ws1_c00394{word-spacing:0.000000px;}
._1_c00394{width:1.094400px;}
._e_c00394{width:2.368800px;}
._3_c00394{width:3.427200px;}
._a_c00394{width:4.550400px;}
._9_c00394{width:5.580000px;}
._4_c00394{width:6.609600px;}
._2_c00394{width:7.732800px;}
._8_c00394{width:9.259200px;}
._b_c00394{width:12.758400px;}
._5_c00394{width:14.205600px;}
._0_c00394{width:15.523200px;}
._6_c00394{width:16.581600px;}
._c_c00394{width:19.339200px;}
._d_c00394{width:22.298400px;}
._7_c00394{width:24.098400px;}
.fc1_c00394{color:transparent;}
.fc0_c00394{color:rgb(0,0,0);}
.fs1_c00394{font-size:64.800000px;}
.fs0_c00394{font-size:72.000000px;}
.y0_c00394{bottom:0.000000px;}
.y5_c00394{bottom:5.040000px;}
.y1_c00394{bottom:12.735000px;}
.y3_c00394{bottom:45.405000px;}
.y4_c00394{bottom:53.100000px;}
.y21_c00394{bottom:110.924850px;}
.y20_c00394{bottom:146.924850px;}
.y1f_c00394{bottom:182.924850px;}
.y1e_c00394{bottom:218.924850px;}
.y1d_c00394{bottom:254.924850px;}
.y1c_c00394{bottom:290.924850px;}
.y1b_c00394{bottom:326.924850px;}
.y1a_c00394{bottom:362.924850px;}
.y19_c00394{bottom:398.924850px;}
.y18_c00394{bottom:434.924850px;}
.y17_c00394{bottom:470.924850px;}
.y16_c00394{bottom:506.924850px;}
.y15_c00394{bottom:542.924850px;}
.y14_c00394{bottom:578.924850px;}
.y13_c00394{bottom:614.924850px;}
.y12_c00394{bottom:650.924850px;}
.y11_c00394{bottom:686.924850px;}
.y10_c00394{bottom:722.924850px;}
.yf_c00394{bottom:758.924850px;}
.ye_c00394{bottom:794.924850px;}
.yd_c00394{bottom:830.924850px;}
.yc_c00394{bottom:866.924850px;}
.yb_c00394{bottom:902.924850px;}
.ya_c00394{bottom:938.924850px;}
.y9_c00394{bottom:974.924850px;}
.y8_c00394{bottom:1010.924850px;}
.y7_c00394{bottom:1046.924850px;}
.y6_c00394{bottom:1082.924850px;}
.y2_c00394{bottom:1165.365000px;}
.h4_c00394{height:20.880000px;}
.h5_c00394{height:70.628906px;}
.h3_c00394{height:70.664062px;}
.h2_c00394{height:1237.365000px;}
.h0_c00394{height:1262.835000px;}
.h1_c00394{height:1263.000000px;}
.w3_c00394{width:27.000000px;}
.w2_c00394{width:867.465000px;}
.w0_c00394{width:892.935000px;}
.w1_c00394{width:893.250000px;}
.x0_c00394{left:0.000000px;}
.x1_c00394{left:12.735000px;}
.x3_c00394{left:95.394300px;}
.x5_c00394{left:149.400150px;}
.x4_c00394{left:432.855000px;}
.x2_c00394{left:880.050300px;}
@media print{
.v0_c00394{vertical-align:0.000000pt;}
.ls0_c00394{letter-spacing:0.000000pt;}
.ls1_c00394{letter-spacing:0.012800pt;}
.ws0_c00394{word-spacing:-16.000000pt;}
.ws1_c00394{word-spacing:0.000000pt;}
._1_c00394{width:0.972800pt;}
._e_c00394{width:2.105600pt;}
._3_c00394{width:3.046400pt;}
._a_c00394{width:4.044800pt;}
._9_c00394{width:4.960000pt;}
._4_c00394{width:5.875200pt;}
._2_c00394{width:6.873600pt;}
._8_c00394{width:8.230400pt;}
._b_c00394{width:11.340800pt;}
._5_c00394{width:12.627200pt;}
._0_c00394{width:13.798400pt;}
._6_c00394{width:14.739200pt;}
._c_c00394{width:17.190400pt;}
._d_c00394{width:19.820800pt;}
._7_c00394{width:21.420800pt;}
.fs1_c00394{font-size:57.600000pt;}
.fs0_c00394{font-size:64.000000pt;}
.y0_c00394{bottom:0.000000pt;}
.y5_c00394{bottom:4.480000pt;}
.y1_c00394{bottom:11.320000pt;}
.y3_c00394{bottom:40.360000pt;}
.y4_c00394{bottom:47.200000pt;}
.y21_c00394{bottom:98.599867pt;}
.y20_c00394{bottom:130.599867pt;}
.y1f_c00394{bottom:162.599867pt;}
.y1e_c00394{bottom:194.599867pt;}
.y1d_c00394{bottom:226.599867pt;}
.y1c_c00394{bottom:258.599867pt;}
.y1b_c00394{bottom:290.599867pt;}
.y1a_c00394{bottom:322.599867pt;}
.y19_c00394{bottom:354.599867pt;}
.y18_c00394{bottom:386.599867pt;}
.y17_c00394{bottom:418.599867pt;}
.y16_c00394{bottom:450.599867pt;}
.y15_c00394{bottom:482.599867pt;}
.y14_c00394{bottom:514.599867pt;}
.y13_c00394{bottom:546.599867pt;}
.y12_c00394{bottom:578.599867pt;}
.y11_c00394{bottom:610.599867pt;}
.y10_c00394{bottom:642.599867pt;}
.yf_c00394{bottom:674.599867pt;}
.ye_c00394{bottom:706.599867pt;}
.yd_c00394{bottom:738.599867pt;}
.yc_c00394{bottom:770.599867pt;}
.yb_c00394{bottom:802.599867pt;}
.ya_c00394{bottom:834.599867pt;}
.y9_c00394{bottom:866.599867pt;}
.y8_c00394{bottom:898.599867pt;}
.y7_c00394{bottom:930.599867pt;}
.y6_c00394{bottom:962.599867pt;}
.y2_c00394{bottom:1035.880000pt;}
.h4_c00394{height:18.560000pt;}
.h5_c00394{height:62.781250pt;}
.h3_c00394{height:62.812500pt;}
.h2_c00394{height:1099.880000pt;}
.h0_c00394{height:1122.520000pt;}
.h1_c00394{height:1122.666667pt;}
.w3_c00394{width:24.000000pt;}
.w2_c00394{width:771.080000pt;}
.w0_c00394{width:793.720000pt;}
.w1_c00394{width:794.000000pt;}
.x0_c00394{left:0.000000pt;}
.x1_c00394{left:11.320000pt;}
.x3_c00394{left:84.794933pt;}
.x5_c00394{left:132.800133pt;}
.x4_c00394{left:384.760000pt;}
.x2_c00394{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00395{font-family:ff1_c00395;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00395;src:url('chunks/assets/font_ea11691cd98d6a73232c92a5.woff2')format("woff");}.ff2_c00395{font-family:ff2_c00395;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00395;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00395{font-family:ff3_c00395;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00395;src:url('chunks/assets/font_e2326d56a810ed0d9e748251.woff2')format("woff");}.ff4_c00395{font-family:ff4_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;}
.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;}
.ls1_c00395{letter-spacing:-0.014400px;}
.ls0_c00395{letter-spacing:0.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;}
}
.ws0_c00395{word-spacing:-18.000000px;}
.ws1_c00395{word-spacing:0.000000px;}
._6_c00395{width:1.375200px;}
._0_c00395{width:2.570400px;}
._5_c00395{width:3.600000px;}
._c_c00395{width:4.608000px;}
._1_c00395{width:5.644800px;}
._4_c00395{width:6.789600px;}
._9_c00395{width:7.898400px;}
._3_c00395{width:9.223200px;}
._a_c00395{width:13.226400px;}
._b_c00395{width:16.646400px;}
._7_c00395{width:19.641600px;}
._2_c00395{width:20.851200px;}
._8_c00395{width:22.435200px;}
._d_c00395{width:25.876800px;}
.fc1_c00395{color:transparent;}
.fc0_c00395{color:rgb(0,0,0);}
.fs0_c00395{font-size:64.800000px;}
.fs1_c00395{font-size:72.000000px;}
.y0_c00395{bottom:0.000000px;}
.y5_c00395{bottom:1.440000px;}
.y1_c00395{bottom:12.735000px;}
.y3_c00395{bottom:45.405000px;}
.y4_c00395{bottom:56.700000px;}
.y21_c00395{bottom:110.924850px;}
.y20_c00395{bottom:146.924850px;}
.y1f_c00395{bottom:182.924850px;}
.y1e_c00395{bottom:218.924850px;}
.y1d_c00395{bottom:254.924850px;}
.y1c_c00395{bottom:290.924850px;}
.y1b_c00395{bottom:326.924850px;}
.y1a_c00395{bottom:362.924850px;}
.y19_c00395{bottom:398.924850px;}
.y18_c00395{bottom:434.924850px;}
.y17_c00395{bottom:470.924850px;}
.y16_c00395{bottom:506.924850px;}
.y15_c00395{bottom:542.924850px;}
.y14_c00395{bottom:578.924850px;}
.y13_c00395{bottom:614.924850px;}
.y12_c00395{bottom:650.924850px;}
.y11_c00395{bottom:686.924850px;}
.y10_c00395{bottom:722.924850px;}
.yf_c00395{bottom:758.924850px;}
.ye_c00395{bottom:794.924850px;}
.yd_c00395{bottom:830.924850px;}
.yc_c00395{bottom:866.924850px;}
.yb_c00395{bottom:902.924850px;}
.ya_c00395{bottom:938.924850px;}
.y9_c00395{bottom:974.924850px;}
.y8_c00395{bottom:1010.924850px;}
.y7_c00395{bottom:1046.924850px;}
.y6_c00395{bottom:1082.924850px;}
.y2_c00395{bottom:1165.365000px;}
.h5_c00395{height:17.280000px;}
.h3_c00395{height:43.189453px;}
.h6_c00395{height:70.628906px;}
.h4_c00395{height:70.664062px;}
.h2_c00395{height:1237.365000px;}
.h0_c00395{height:1262.835000px;}
.h1_c00395{height:1263.000000px;}
.w3_c00395{width:47.520000px;}
.w2_c00395{width:867.465000px;}
.w0_c00395{width:892.935000px;}
.w1_c00395{width:893.250000px;}
.x3_c00395{left:-39.599850px;}
.x0_c00395{left:0.000000px;}
.x5_c00395{left:10.237500px;}
.x1_c00395{left:12.735000px;}
.x6_c00395{left:95.400150px;}
.x7_c00395{left:149.400150px;}
.x4_c00395{left:422.775000px;}
.x2_c00395{left:880.050300px;}
@media print{
.v0_c00395{vertical-align:0.000000pt;}
.ls1_c00395{letter-spacing:-0.012800pt;}
.ls0_c00395{letter-spacing:0.000000pt;}
.ws0_c00395{word-spacing:-16.000000pt;}
.ws1_c00395{word-spacing:0.000000pt;}
._6_c00395{width:1.222400pt;}
._0_c00395{width:2.284800pt;}
._5_c00395{width:3.200000pt;}
._c_c00395{width:4.096000pt;}
._1_c00395{width:5.017600pt;}
._4_c00395{width:6.035200pt;}
._9_c00395{width:7.020800pt;}
._3_c00395{width:8.198400pt;}
._a_c00395{width:11.756800pt;}
._b_c00395{width:14.796800pt;}
._7_c00395{width:17.459200pt;}
._2_c00395{width:18.534400pt;}
._8_c00395{width:19.942400pt;}
._d_c00395{width:23.001600pt;}
.fs0_c00395{font-size:57.600000pt;}
.fs1_c00395{font-size:64.000000pt;}
.y0_c00395{bottom:0.000000pt;}
.y5_c00395{bottom:1.280000pt;}
.y1_c00395{bottom:11.320000pt;}
.y3_c00395{bottom:40.360000pt;}
.y4_c00395{bottom:50.400000pt;}
.y21_c00395{bottom:98.599867pt;}
.y20_c00395{bottom:130.599867pt;}
.y1f_c00395{bottom:162.599867pt;}
.y1e_c00395{bottom:194.599867pt;}
.y1d_c00395{bottom:226.599867pt;}
.y1c_c00395{bottom:258.599867pt;}
.y1b_c00395{bottom:290.599867pt;}
.y1a_c00395{bottom:322.599867pt;}
.y19_c00395{bottom:354.599867pt;}
.y18_c00395{bottom:386.599867pt;}
.y17_c00395{bottom:418.599867pt;}
.y16_c00395{bottom:450.599867pt;}
.y15_c00395{bottom:482.599867pt;}
.y14_c00395{bottom:514.599867pt;}
.y13_c00395{bottom:546.599867pt;}
.y12_c00395{bottom:578.599867pt;}
.y11_c00395{bottom:610.599867pt;}
.y10_c00395{bottom:642.599867pt;}
.yf_c00395{bottom:674.599867pt;}
.ye_c00395{bottom:706.599867pt;}
.yd_c00395{bottom:738.599867pt;}
.yc_c00395{bottom:770.599867pt;}
.yb_c00395{bottom:802.599867pt;}
.ya_c00395{bottom:834.599867pt;}
.y9_c00395{bottom:866.599867pt;}
.y8_c00395{bottom:898.599867pt;}
.y7_c00395{bottom:930.599867pt;}
.y6_c00395{bottom:962.599867pt;}
.y2_c00395{bottom:1035.880000pt;}
.h5_c00395{height:15.360000pt;}
.h3_c00395{height:38.390625pt;}
.h6_c00395{height:62.781250pt;}
.h4_c00395{height:62.812500pt;}
.h2_c00395{height:1099.880000pt;}
.h0_c00395{height:1122.520000pt;}
.h1_c00395{height:1122.666667pt;}
.w3_c00395{width:42.240000pt;}
.w2_c00395{width:771.080000pt;}
.w0_c00395{width:793.720000pt;}
.w1_c00395{width:794.000000pt;}
.x3_c00395{left:-35.199867pt;}
.x0_c00395{left:0.000000pt;}
.x5_c00395{left:9.100000pt;}
.x1_c00395{left:11.320000pt;}
.x6_c00395{left:84.800133pt;}
.x7_c00395{left:132.800133pt;}
.x4_c00395{left:375.800000pt;}
.x2_c00395{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_21444c677a59defbd758cd49.woff2')format("woff");}.ff1_c00396{font-family:ff1_c00396;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00396;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00396{font-family:ff2_c00396;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00396;src:url('chunks/assets/font_f32b86ad6c260309d38bbf21.woff2')format("woff");}.ff3_c00396{font-family:ff3_c00396;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00396{letter-spacing:0.000000px;}
.sc__c00396{text-shadow:none;}
.sc0_c00396{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00396{-webkit-text-stroke:0px transparent;}
.sc0_c00396{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00396{word-spacing:-18.000000px;}
.ws1_c00396{word-spacing:0.000000px;}
._7_c00396{width:1.468800px;}
._8_c00396{width:2.750400px;}
._9_c00396{width:4.104000px;}
._1_c00396{width:5.299200px;}
._3_c00396{width:6.681600px;}
._4_c00396{width:8.467200px;}
._b_c00396{width:9.979200px;}
._a_c00396{width:11.505600px;}
._2_c00396{width:12.722400px;}
._5_c00396{width:14.601600px;}
._0_c00396{width:16.315200px;}
._6_c00396{width:21.679200px;}
.fc1_c00396{color:transparent;}
.fc0_c00396{color:rgb(0,0,0);}
.fs1_c00396{font-size:64.800000px;}
.fs0_c00396{font-size:72.000000px;}
.y0_c00396{bottom:0.000000px;}
.y5_c00396{bottom:5.040000px;}
.y1_c00396{bottom:12.735000px;}
.y3_c00396{bottom:45.405000px;}
.y4_c00396{bottom:53.100000px;}
.y21_c00396{bottom:110.924850px;}
.y20_c00396{bottom:146.924850px;}
.y1f_c00396{bottom:182.924850px;}
.y1e_c00396{bottom:218.924850px;}
.y1d_c00396{bottom:254.924850px;}
.y1c_c00396{bottom:290.924850px;}
.y1b_c00396{bottom:326.924850px;}
.y1a_c00396{bottom:362.924850px;}
.y19_c00396{bottom:398.924850px;}
.y18_c00396{bottom:434.924850px;}
.y17_c00396{bottom:470.924850px;}
.y16_c00396{bottom:506.924850px;}
.y15_c00396{bottom:542.924850px;}
.y14_c00396{bottom:578.924850px;}
.y13_c00396{bottom:614.924850px;}
.y12_c00396{bottom:650.924850px;}
.y11_c00396{bottom:686.924850px;}
.y10_c00396{bottom:722.924850px;}
.yf_c00396{bottom:758.924850px;}
.ye_c00396{bottom:794.924850px;}
.yd_c00396{bottom:830.924850px;}
.yc_c00396{bottom:866.924850px;}
.yb_c00396{bottom:902.924850px;}
.ya_c00396{bottom:938.924850px;}
.y9_c00396{bottom:974.924850px;}
.y8_c00396{bottom:1010.924850px;}
.y7_c00396{bottom:1046.924850px;}
.y6_c00396{bottom:1082.924850px;}
.y2_c00396{bottom:1165.365000px;}
.h4_c00396{height:20.880000px;}
.h5_c00396{height:70.628906px;}
.h3_c00396{height:70.664062px;}
.h2_c00396{height:1237.365000px;}
.h0_c00396{height:1262.835000px;}
.h1_c00396{height:1263.000000px;}
.w3_c00396{width:27.000000px;}
.w2_c00396{width:867.465000px;}
.w0_c00396{width:892.935000px;}
.w1_c00396{width:893.250000px;}
.x0_c00396{left:0.000000px;}
.x1_c00396{left:12.735000px;}
.x3_c00396{left:95.394300px;}
.x5_c00396{left:149.400150px;}
.x4_c00396{left:432.855000px;}
.x2_c00396{left:880.050300px;}
@media print{
.v0_c00396{vertical-align:0.000000pt;}
.ls0_c00396{letter-spacing:0.000000pt;}
.ws0_c00396{word-spacing:-16.000000pt;}
.ws1_c00396{word-spacing:0.000000pt;}
._7_c00396{width:1.305600pt;}
._8_c00396{width:2.444800pt;}
._9_c00396{width:3.648000pt;}
._1_c00396{width:4.710400pt;}
._3_c00396{width:5.939200pt;}
._4_c00396{width:7.526400pt;}
._b_c00396{width:8.870400pt;}
._a_c00396{width:10.227200pt;}
._2_c00396{width:11.308800pt;}
._5_c00396{width:12.979200pt;}
._0_c00396{width:14.502400pt;}
._6_c00396{width:19.270400pt;}
.fs1_c00396{font-size:57.600000pt;}
.fs0_c00396{font-size:64.000000pt;}
.y0_c00396{bottom:0.000000pt;}
.y5_c00396{bottom:4.480000pt;}
.y1_c00396{bottom:11.320000pt;}
.y3_c00396{bottom:40.360000pt;}
.y4_c00396{bottom:47.200000pt;}
.y21_c00396{bottom:98.599867pt;}
.y20_c00396{bottom:130.599867pt;}
.y1f_c00396{bottom:162.599867pt;}
.y1e_c00396{bottom:194.599867pt;}
.y1d_c00396{bottom:226.599867pt;}
.y1c_c00396{bottom:258.599867pt;}
.y1b_c00396{bottom:290.599867pt;}
.y1a_c00396{bottom:322.599867pt;}
.y19_c00396{bottom:354.599867pt;}
.y18_c00396{bottom:386.599867pt;}
.y17_c00396{bottom:418.599867pt;}
.y16_c00396{bottom:450.599867pt;}
.y15_c00396{bottom:482.599867pt;}
.y14_c00396{bottom:514.599867pt;}
.y13_c00396{bottom:546.599867pt;}
.y12_c00396{bottom:578.599867pt;}
.y11_c00396{bottom:610.599867pt;}
.y10_c00396{bottom:642.599867pt;}
.yf_c00396{bottom:674.599867pt;}
.ye_c00396{bottom:706.599867pt;}
.yd_c00396{bottom:738.599867pt;}
.yc_c00396{bottom:770.599867pt;}
.yb_c00396{bottom:802.599867pt;}
.ya_c00396{bottom:834.599867pt;}
.y9_c00396{bottom:866.599867pt;}
.y8_c00396{bottom:898.599867pt;}
.y7_c00396{bottom:930.599867pt;}
.y6_c00396{bottom:962.599867pt;}
.y2_c00396{bottom:1035.880000pt;}
.h4_c00396{height:18.560000pt;}
.h5_c00396{height:62.781250pt;}
.h3_c00396{height:62.812500pt;}
.h2_c00396{height:1099.880000pt;}
.h0_c00396{height:1122.520000pt;}
.h1_c00396{height:1122.666667pt;}
.w3_c00396{width:24.000000pt;}
.w2_c00396{width:771.080000pt;}
.w0_c00396{width:793.720000pt;}
.w1_c00396{width:794.000000pt;}
.x0_c00396{left:0.000000pt;}
.x1_c00396{left:11.320000pt;}
.x3_c00396{left:84.794933pt;}
.x5_c00396{left:132.800133pt;}
.x4_c00396{left:384.760000pt;}
.x2_c00396{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00397{font-family:ff1_c00397;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00397;src:url('chunks/assets/font_02eebac7113ad9e357786b2c.woff2')format("woff");}.ff2_c00397{font-family:ff2_c00397;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00397;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00397{font-family:ff3_c00397;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00397;src:url('chunks/assets/font_e012c41463c762ed78445cca.woff2')format("woff");}.ff4_c00397{font-family:ff4_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:ff5_c00397;src:url('chunks/assets/font_59724ad09d5b724dfa672b41.woff2')format("woff");}.ff5_c00397{font-family:ff5_c00397;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00397{letter-spacing:-0.014400px;}
.ls0_c00397{letter-spacing:0.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:-18.000000px;}
.ws1_c00397{word-spacing:0.000000px;}
._2_c00397{width:1.886400px;}
._a_c00397{width:3.924000px;}
._7_c00397{width:5.004000px;}
._b_c00397{width:7.718400px;}
._5_c00397{width:9.129600px;}
._4_c00397{width:10.130400px;}
._6_c00397{width:11.304000px;}
._1_c00397{width:13.096800px;}
._8_c00397{width:14.601600px;}
._9_c00397{width:15.768000px;}
._0_c00397{width:20.073600px;}
._3_c00397{width:23.184000px;}
.fc1_c00397{color:transparent;}
.fc0_c00397{color:rgb(0,0,0);}
.fs0_c00397{font-size:64.800000px;}
.fs1_c00397{font-size:72.000000px;}
.y0_c00397{bottom:0.000000px;}
.y5_c00397{bottom:1.440000px;}
.y1_c00397{bottom:12.735000px;}
.y3_c00397{bottom:45.405000px;}
.y4_c00397{bottom:56.700000px;}
.y21_c00397{bottom:110.924850px;}
.y20_c00397{bottom:146.924850px;}
.y1f_c00397{bottom:182.924850px;}
.y1e_c00397{bottom:218.924850px;}
.y1d_c00397{bottom:254.924850px;}
.y1c_c00397{bottom:290.924850px;}
.y1b_c00397{bottom:326.924850px;}
.y1a_c00397{bottom:362.924850px;}
.y19_c00397{bottom:398.924850px;}
.y18_c00397{bottom:434.924850px;}
.y17_c00397{bottom:470.924850px;}
.y16_c00397{bottom:506.924850px;}
.y15_c00397{bottom:542.924850px;}
.y14_c00397{bottom:578.924850px;}
.y13_c00397{bottom:614.924850px;}
.y12_c00397{bottom:650.924850px;}
.y11_c00397{bottom:686.924850px;}
.y10_c00397{bottom:722.924850px;}
.yf_c00397{bottom:758.924850px;}
.ye_c00397{bottom:794.924850px;}
.yd_c00397{bottom:830.924850px;}
.yc_c00397{bottom:866.924850px;}
.yb_c00397{bottom:902.924850px;}
.ya_c00397{bottom:938.924850px;}
.y9_c00397{bottom:974.924850px;}
.y8_c00397{bottom:1010.924850px;}
.y7_c00397{bottom:1046.924850px;}
.y6_c00397{bottom:1082.924850px;}
.y2_c00397{bottom:1165.365000px;}
.h5_c00397{height:17.280000px;}
.h3_c00397{height:43.189453px;}
.h4_c00397{height:70.664062px;}
.h6_c00397{height:72.562500px;}
.h2_c00397{height:1237.365000px;}
.h0_c00397{height:1262.835000px;}
.h1_c00397{height:1263.000000px;}
.w3_c00397{width:47.520000px;}
.w2_c00397{width:867.465000px;}
.w0_c00397{width:892.935000px;}
.w1_c00397{width:893.250000px;}
.x3_c00397{left:-39.599850px;}
.x0_c00397{left:0.000000px;}
.x5_c00397{left:10.237500px;}
.x1_c00397{left:12.735000px;}
.x7_c00397{left:95.400150px;}
.x6_c00397{left:149.400150px;}
.x4_c00397{left:422.775000px;}
.x2_c00397{left:880.050300px;}
@media print{
.v0_c00397{vertical-align:0.000000pt;}
.ls1_c00397{letter-spacing:-0.012800pt;}
.ls0_c00397{letter-spacing:0.000000pt;}
.ws0_c00397{word-spacing:-16.000000pt;}
.ws1_c00397{word-spacing:0.000000pt;}
._2_c00397{width:1.676800pt;}
._a_c00397{width:3.488000pt;}
._7_c00397{width:4.448000pt;}
._b_c00397{width:6.860800pt;}
._5_c00397{width:8.115200pt;}
._4_c00397{width:9.004800pt;}
._6_c00397{width:10.048000pt;}
._1_c00397{width:11.641600pt;}
._8_c00397{width:12.979200pt;}
._9_c00397{width:14.016000pt;}
._0_c00397{width:17.843200pt;}
._3_c00397{width:20.608000pt;}
.fs0_c00397{font-size:57.600000pt;}
.fs1_c00397{font-size:64.000000pt;}
.y0_c00397{bottom:0.000000pt;}
.y5_c00397{bottom:1.280000pt;}
.y1_c00397{bottom:11.320000pt;}
.y3_c00397{bottom:40.360000pt;}
.y4_c00397{bottom:50.400000pt;}
.y21_c00397{bottom:98.599867pt;}
.y20_c00397{bottom:130.599867pt;}
.y1f_c00397{bottom:162.599867pt;}
.y1e_c00397{bottom:194.599867pt;}
.y1d_c00397{bottom:226.599867pt;}
.y1c_c00397{bottom:258.599867pt;}
.y1b_c00397{bottom:290.599867pt;}
.y1a_c00397{bottom:322.599867pt;}
.y19_c00397{bottom:354.599867pt;}
.y18_c00397{bottom:386.599867pt;}
.y17_c00397{bottom:418.599867pt;}
.y16_c00397{bottom:450.599867pt;}
.y15_c00397{bottom:482.599867pt;}
.y14_c00397{bottom:514.599867pt;}
.y13_c00397{bottom:546.599867pt;}
.y12_c00397{bottom:578.599867pt;}
.y11_c00397{bottom:610.599867pt;}
.y10_c00397{bottom:642.599867pt;}
.yf_c00397{bottom:674.599867pt;}
.ye_c00397{bottom:706.599867pt;}
.yd_c00397{bottom:738.599867pt;}
.yc_c00397{bottom:770.599867pt;}
.yb_c00397{bottom:802.599867pt;}
.ya_c00397{bottom:834.599867pt;}
.y9_c00397{bottom:866.599867pt;}
.y8_c00397{bottom:898.599867pt;}
.y7_c00397{bottom:930.599867pt;}
.y6_c00397{bottom:962.599867pt;}
.y2_c00397{bottom:1035.880000pt;}
.h5_c00397{height:15.360000pt;}
.h3_c00397{height:38.390625pt;}
.h4_c00397{height:62.812500pt;}
.h6_c00397{height:64.500000pt;}
.h2_c00397{height:1099.880000pt;}
.h0_c00397{height:1122.520000pt;}
.h1_c00397{height:1122.666667pt;}
.w3_c00397{width:42.240000pt;}
.w2_c00397{width:771.080000pt;}
.w0_c00397{width:793.720000pt;}
.w1_c00397{width:794.000000pt;}
.x3_c00397{left:-35.199867pt;}
.x0_c00397{left:0.000000pt;}
.x5_c00397{left:9.100000pt;}
.x1_c00397{left:11.320000pt;}
.x7_c00397{left:84.800133pt;}
.x6_c00397{left:132.800133pt;}
.x4_c00397{left:375.800000pt;}
.x2_c00397{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_fcf3eb32b0f70185c3dd57a7.woff2')format("woff");}.ff1_c00398{font-family:ff1_c00398;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00398;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00398{font-family:ff2_c00398;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00398;src:url('chunks/assets/font_ed0bf2480d2288f1304c221e.woff2')format("woff");}.ff3_c00398{font-family:ff3_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;}
.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:-0.014400px;}
.ls0_c00398{letter-spacing:0.000000px;}
.ls2_c00398{letter-spacing:0.050400px;}
.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:-18.000000px;}
.ws1_c00398{word-spacing:-17.985600px;}
.ws2_c00398{word-spacing:0.000000px;}
._9_c00398{width:1.029600px;}
._5_c00398{width:3.974400px;}
._1_c00398{width:5.241600px;}
._7_c00398{width:6.710400px;}
._8_c00398{width:8.157600px;}
._2_c00398{width:9.201600px;}
._3_c00398{width:10.209600px;}
._4_c00398{width:11.412000px;}
._c_c00398{width:15.753600px;}
._a_c00398{width:16.920000px;}
._b_c00398{width:19.461600px;}
._0_c00398{width:23.508000px;}
._6_c00398{width:24.688800px;}
.fc1_c00398{color:transparent;}
.fc0_c00398{color:rgb(0,0,0);}
.fs1_c00398{font-size:64.800000px;}
.fs0_c00398{font-size:72.000000px;}
.y0_c00398{bottom:0.000000px;}
.y5_c00398{bottom:5.040000px;}
.y1_c00398{bottom:12.735000px;}
.y3_c00398{bottom:45.405000px;}
.y4_c00398{bottom:53.100000px;}
.y20_c00398{bottom:146.924850px;}
.y1f_c00398{bottom:182.924850px;}
.y1e_c00398{bottom:218.924850px;}
.y1d_c00398{bottom:254.924850px;}
.y1c_c00398{bottom:290.924850px;}
.y1b_c00398{bottom:326.924850px;}
.y1a_c00398{bottom:362.924850px;}
.y19_c00398{bottom:398.924850px;}
.y18_c00398{bottom:434.924850px;}
.y17_c00398{bottom:470.924850px;}
.y16_c00398{bottom:506.924850px;}
.y15_c00398{bottom:542.924850px;}
.y14_c00398{bottom:578.924850px;}
.y13_c00398{bottom:614.924850px;}
.y12_c00398{bottom:650.924850px;}
.y11_c00398{bottom:686.924850px;}
.y10_c00398{bottom:722.924850px;}
.yf_c00398{bottom:758.924850px;}
.ye_c00398{bottom:794.924850px;}
.yd_c00398{bottom:830.924850px;}
.yc_c00398{bottom:866.924850px;}
.yb_c00398{bottom:902.924850px;}
.ya_c00398{bottom:938.924850px;}
.y9_c00398{bottom:974.924850px;}
.y8_c00398{bottom:1010.924850px;}
.y7_c00398{bottom:1046.924850px;}
.y6_c00398{bottom:1082.924850px;}
.y2_c00398{bottom:1165.365000px;}
.h4_c00398{height:20.880000px;}
.h5_c00398{height:70.628906px;}
.h3_c00398{height:70.664062px;}
.h2_c00398{height:1237.365000px;}
.h0_c00398{height:1262.835000px;}
.h1_c00398{height:1263.000000px;}
.w3_c00398{width:27.000000px;}
.w2_c00398{width:867.465000px;}
.w0_c00398{width:892.935000px;}
.w1_c00398{width:893.250000px;}
.x0_c00398{left:0.000000px;}
.x1_c00398{left:12.735000px;}
.x3_c00398{left:95.394300px;}
.x5_c00398{left:149.400150px;}
.x4_c00398{left:432.855000px;}
.x2_c00398{left:880.050300px;}
@media print{
.v0_c00398{vertical-align:0.000000pt;}
.ls1_c00398{letter-spacing:-0.012800pt;}
.ls0_c00398{letter-spacing:0.000000pt;}
.ls2_c00398{letter-spacing:0.044800pt;}
.ws0_c00398{word-spacing:-16.000000pt;}
.ws1_c00398{word-spacing:-15.987200pt;}
.ws2_c00398{word-spacing:0.000000pt;}
._9_c00398{width:0.915200pt;}
._5_c00398{width:3.532800pt;}
._1_c00398{width:4.659200pt;}
._7_c00398{width:5.964800pt;}
._8_c00398{width:7.251200pt;}
._2_c00398{width:8.179200pt;}
._3_c00398{width:9.075200pt;}
._4_c00398{width:10.144000pt;}
._c_c00398{width:14.003200pt;}
._a_c00398{width:15.040000pt;}
._b_c00398{width:17.299200pt;}
._0_c00398{width:20.896000pt;}
._6_c00398{width:21.945600pt;}
.fs1_c00398{font-size:57.600000pt;}
.fs0_c00398{font-size:64.000000pt;}
.y0_c00398{bottom:0.000000pt;}
.y5_c00398{bottom:4.480000pt;}
.y1_c00398{bottom:11.320000pt;}
.y3_c00398{bottom:40.360000pt;}
.y4_c00398{bottom:47.200000pt;}
.y20_c00398{bottom:130.599867pt;}
.y1f_c00398{bottom:162.599867pt;}
.y1e_c00398{bottom:194.599867pt;}
.y1d_c00398{bottom:226.599867pt;}
.y1c_c00398{bottom:258.599867pt;}
.y1b_c00398{bottom:290.599867pt;}
.y1a_c00398{bottom:322.599867pt;}
.y19_c00398{bottom:354.599867pt;}
.y18_c00398{bottom:386.599867pt;}
.y17_c00398{bottom:418.599867pt;}
.y16_c00398{bottom:450.599867pt;}
.y15_c00398{bottom:482.599867pt;}
.y14_c00398{bottom:514.599867pt;}
.y13_c00398{bottom:546.599867pt;}
.y12_c00398{bottom:578.599867pt;}
.y11_c00398{bottom:610.599867pt;}
.y10_c00398{bottom:642.599867pt;}
.yf_c00398{bottom:674.599867pt;}
.ye_c00398{bottom:706.599867pt;}
.yd_c00398{bottom:738.599867pt;}
.yc_c00398{bottom:770.599867pt;}
.yb_c00398{bottom:802.599867pt;}
.ya_c00398{bottom:834.599867pt;}
.y9_c00398{bottom:866.599867pt;}
.y8_c00398{bottom:898.599867pt;}
.y7_c00398{bottom:930.599867pt;}
.y6_c00398{bottom:962.599867pt;}
.y2_c00398{bottom:1035.880000pt;}
.h4_c00398{height:18.560000pt;}
.h5_c00398{height:62.781250pt;}
.h3_c00398{height:62.812500pt;}
.h2_c00398{height:1099.880000pt;}
.h0_c00398{height:1122.520000pt;}
.h1_c00398{height:1122.666667pt;}
.w3_c00398{width:24.000000pt;}
.w2_c00398{width:771.080000pt;}
.w0_c00398{width:793.720000pt;}
.w1_c00398{width:794.000000pt;}
.x0_c00398{left:0.000000pt;}
.x1_c00398{left:11.320000pt;}
.x3_c00398{left:84.794933pt;}
.x5_c00398{left:132.800133pt;}
.x4_c00398{left:384.760000pt;}
.x2_c00398{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00399{font-family:ff1_c00399;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00399;src:url('chunks/assets/font_51c4a9c01eed07519eeada80.woff2')format("woff");}.ff2_c00399{font-family:ff2_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:ff3_c00399;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00399{font-family:ff3_c00399;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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:-0.014400px;}
.ls2_c00399{letter-spacing:0.000000px;}
.ls4_c00399{letter-spacing:0.014400px;}
.ls1_c00399{letter-spacing:5.393400px;}
.ls0_c00399{letter-spacing:6.470400px;}
.sc__c00399{text-shadow:none;}
.sc0_c00399{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00399{-webkit-text-stroke:0px transparent;}
.sc0_c00399{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00399{word-spacing:-18.000000px;}
.ws1_c00399{word-spacing:0.000000px;}
._c_c00399{width:1.987200px;}
._8_c00399{width:4.838400px;}
._2_c00399{width:6.292800px;}
._9_c00399{width:7.524000px;}
._3_c00399{width:8.625600px;}
._6_c00399{width:10.836000px;}
._b_c00399{width:12.477600px;}
._0_c00399{width:13.600800px;}
._5_c00399{width:15.091200px;}
._1_c00399{width:16.704000px;}
._a_c00399{width:21.859200px;}
._7_c00399{width:25.236000px;}
._4_c00399{width:26.272800px;}
.fc1_c00399{color:transparent;}
.fc0_c00399{color:rgb(0,0,0);}
.fs2_c00399{font-size:53.280000px;}
.fs0_c00399{font-size:64.800000px;}
.fs1_c00399{font-size:72.000000px;}
.y0_c00399{bottom:0.000000px;}
.y5_c00399{bottom:1.440000px;}
.y1_c00399{bottom:12.735000px;}
.y3_c00399{bottom:45.405000px;}
.y4_c00399{bottom:56.700000px;}
.y20_c00399{bottom:146.925000px;}
.y1f_c00399{bottom:182.925000px;}
.y1e_c00399{bottom:218.925000px;}
.y1d_c00399{bottom:254.924850px;}
.y1c_c00399{bottom:290.924850px;}
.y1b_c00399{bottom:326.924850px;}
.y1a_c00399{bottom:362.924850px;}
.y19_c00399{bottom:398.924850px;}
.y18_c00399{bottom:434.924850px;}
.y17_c00399{bottom:470.924850px;}
.y16_c00399{bottom:506.924850px;}
.y15_c00399{bottom:542.924850px;}
.y14_c00399{bottom:578.924850px;}
.y13_c00399{bottom:614.924850px;}
.y12_c00399{bottom:650.924850px;}
.y11_c00399{bottom:686.924850px;}
.y10_c00399{bottom:722.924850px;}
.yf_c00399{bottom:758.924850px;}
.ye_c00399{bottom:794.924850px;}
.yd_c00399{bottom:830.924850px;}
.yc_c00399{bottom:866.924850px;}
.yb_c00399{bottom:902.924850px;}
.ya_c00399{bottom:938.924850px;}
.y9_c00399{bottom:974.924850px;}
.y8_c00399{bottom:1010.924850px;}
.y7_c00399{bottom:1046.924850px;}
.y6_c00399{bottom:1082.924850px;}
.y2_c00399{bottom:1165.365000px;}
.h5_c00399{height:17.280000px;}
.h3_c00399{height:43.189453px;}
.h4_c00399{height:70.664062px;}
.h6_c00399{height:70.664662px;}
.h2_c00399{height:1237.365000px;}
.h0_c00399{height:1262.835000px;}
.h1_c00399{height:1263.000000px;}
.w3_c00399{width:47.520000px;}
.w2_c00399{width:867.465000px;}
.w0_c00399{width:892.935000px;}
.w1_c00399{width:893.250000px;}
.x3_c00399{left:-39.599850px;}
.x0_c00399{left:0.000000px;}
.x5_c00399{left:10.237500px;}
.x1_c00399{left:12.735000px;}
.x6_c00399{left:95.400150px;}
.x7_c00399{left:149.400150px;}
.x4_c00399{left:422.775000px;}
.x2_c00399{left:880.050300px;}
@media print{
.v0_c00399{vertical-align:0.000000pt;}
.ls3_c00399{letter-spacing:-0.012800pt;}
.ls2_c00399{letter-spacing:0.000000pt;}
.ls4_c00399{letter-spacing:0.012800pt;}
.ls1_c00399{letter-spacing:4.794133pt;}
.ls0_c00399{letter-spacing:5.751467pt;}
.ws0_c00399{word-spacing:-16.000000pt;}
.ws1_c00399{word-spacing:0.000000pt;}
._c_c00399{width:1.766400pt;}
._8_c00399{width:4.300800pt;}
._2_c00399{width:5.593600pt;}
._9_c00399{width:6.688000pt;}
._3_c00399{width:7.667200pt;}
._6_c00399{width:9.632000pt;}
._b_c00399{width:11.091200pt;}
._0_c00399{width:12.089600pt;}
._5_c00399{width:13.414400pt;}
._1_c00399{width:14.848000pt;}
._a_c00399{width:19.430400pt;}
._7_c00399{width:22.432000pt;}
._4_c00399{width:23.353600pt;}
.fs2_c00399{font-size:47.360000pt;}
.fs0_c00399{font-size:57.600000pt;}
.fs1_c00399{font-size:64.000000pt;}
.y0_c00399{bottom:0.000000pt;}
.y5_c00399{bottom:1.280000pt;}
.y1_c00399{bottom:11.320000pt;}
.y3_c00399{bottom:40.360000pt;}
.y4_c00399{bottom:50.400000pt;}
.y20_c00399{bottom:130.600000pt;}
.y1f_c00399{bottom:162.600000pt;}
.y1e_c00399{bottom:194.600000pt;}
.y1d_c00399{bottom:226.599867pt;}
.y1c_c00399{bottom:258.599867pt;}
.y1b_c00399{bottom:290.599867pt;}
.y1a_c00399{bottom:322.599867pt;}
.y19_c00399{bottom:354.599867pt;}
.y18_c00399{bottom:386.599867pt;}
.y17_c00399{bottom:418.599867pt;}
.y16_c00399{bottom:450.599867pt;}
.y15_c00399{bottom:482.599867pt;}
.y14_c00399{bottom:514.599867pt;}
.y13_c00399{bottom:546.599867pt;}
.y12_c00399{bottom:578.599867pt;}
.y11_c00399{bottom:610.599867pt;}
.y10_c00399{bottom:642.599867pt;}
.yf_c00399{bottom:674.599867pt;}
.ye_c00399{bottom:706.599867pt;}
.yd_c00399{bottom:738.599867pt;}
.yc_c00399{bottom:770.599867pt;}
.yb_c00399{bottom:802.599867pt;}
.ya_c00399{bottom:834.599867pt;}
.y9_c00399{bottom:866.599867pt;}
.y8_c00399{bottom:898.599867pt;}
.y7_c00399{bottom:930.599867pt;}
.y6_c00399{bottom:962.599867pt;}
.y2_c00399{bottom:1035.880000pt;}
.h5_c00399{height:15.360000pt;}
.h3_c00399{height:38.390625pt;}
.h4_c00399{height:62.812500pt;}
.h6_c00399{height:62.813033pt;}
.h2_c00399{height:1099.880000pt;}
.h0_c00399{height:1122.520000pt;}
.h1_c00399{height:1122.666667pt;}
.w3_c00399{width:42.240000pt;}
.w2_c00399{width:771.080000pt;}
.w0_c00399{width:793.720000pt;}
.w1_c00399{width:794.000000pt;}
.x3_c00399{left:-35.199867pt;}
.x0_c00399{left:0.000000pt;}
.x5_c00399{left:9.100000pt;}
.x1_c00399{left:11.320000pt;}
.x6_c00399{left:84.800133pt;}
.x7_c00399{left:132.800133pt;}
.x4_c00399{left:375.800000pt;}
.x2_c00399{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b7aafbeb0c9ee9692cbaddbd.woff2')format("woff");}.ff1_c00400{font-family:ff1_c00400;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00400;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00400{font-family:ff2_c00400;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00400;src:url('chunks/assets/font_13c0340bbd5a224923cde329.woff2')format("woff");}.ff3_c00400{font-family:ff3_c00400;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00400;src:url('chunks/assets/font_79f3b0329df7928b67c2a4e9.woff2')format("woff");}.ff4_c00400{font-family:ff4_c00400;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00400;src:url('chunks/assets/font_f7df7d1ce85f9e6e3d76cc22.woff2')format("woff");}.ff5_c00400{font-family:ff5_c00400;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00400{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00400{vertical-align:0.000000px;}
.ls3_c00400{letter-spacing:0.000000px;}
.ls4_c00400{letter-spacing:0.014400px;}
.ls1_c00400{letter-spacing:0.142560px;}
.ls6_c00400{letter-spacing:0.242352px;}
.ls5_c00400{letter-spacing:0.285120px;}
.ls0_c00400{letter-spacing:13.305600px;}
.ls2_c00400{letter-spacing:44.784000px;}
.sc__c00400{text-shadow:none;}
.sc0_c00400{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00400{-webkit-text-stroke:0px transparent;}
.sc0_c00400{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00400{word-spacing:-18.000000px;}
.ws1_c00400{word-spacing:0.000000px;}
._5_c00400{margin-left:-1.188000px;}
._4_c00400{width:2.671200px;}
._1_c00400{width:3.902400px;}
._0_c00400{width:7.653600px;}
._3_c00400{width:9.288000px;}
._2_c00400{width:13.334400px;}
.fc1_c00400{color:transparent;}
.fc0_c00400{color:rgb(0,0,0);}
.fs2_c00400{font-size:47.520000px;}
.fs1_c00400{font-size:64.800000px;}
.fs0_c00400{font-size:72.000000px;}
.y0_c00400{bottom:0.000000px;}
.y5_c00400{bottom:5.040000px;}
.y1_c00400{bottom:12.735000px;}
.y3_c00400{bottom:45.405000px;}
.y4_c00400{bottom:53.100000px;}
.y18_c00400{bottom:100.485000px;}
.y17_c00400{bottom:136.485000px;}
.y16_c00400{bottom:172.485000px;}
.y15_c00400{bottom:208.485000px;}
.y14_c00400{bottom:244.485000px;}
.y13_c00400{bottom:278.688600px;}
.y12_c00400{bottom:314.685000px;}
.y11_c00400{bottom:348.164850px;}
.y10_c00400{bottom:722.924850px;}
.yf_c00400{bottom:758.924850px;}
.ye_c00400{bottom:794.924850px;}
.yd_c00400{bottom:830.924850px;}
.yc_c00400{bottom:866.924850px;}
.yb_c00400{bottom:902.924850px;}
.ya_c00400{bottom:938.924850px;}
.y9_c00400{bottom:974.924850px;}
.y8_c00400{bottom:1010.924850px;}
.y7_c00400{bottom:1046.924850px;}
.y6_c00400{bottom:1082.924850px;}
.y2_c00400{bottom:1165.365000px;}
.h4_c00400{height:20.880000px;}
.h6_c00400{height:46.615078px;}
.h5_c00400{height:70.628906px;}
.h3_c00400{height:70.664062px;}
.h7_c00400{height:74.004654px;}
.h2_c00400{height:1237.365000px;}
.h0_c00400{height:1262.835000px;}
.h1_c00400{height:1263.000000px;}
.w3_c00400{width:27.000000px;}
.w2_c00400{width:867.465000px;}
.w0_c00400{width:892.935000px;}
.w1_c00400{width:893.250000px;}
.x0_c00400{left:0.000000px;}
.x1_c00400{left:12.735000px;}
.x3_c00400{left:95.394300px;}
.x5_c00400{left:149.400150px;}
.x7_c00400{left:198.072150px;}
.x4_c00400{left:432.855000px;}
.x6_c00400{left:776.376150px;}
.x2_c00400{left:880.050300px;}
@media print{
.v0_c00400{vertical-align:0.000000pt;}
.ls3_c00400{letter-spacing:0.000000pt;}
.ls4_c00400{letter-spacing:0.012800pt;}
.ls1_c00400{letter-spacing:0.126720pt;}
.ls6_c00400{letter-spacing:0.215424pt;}
.ls5_c00400{letter-spacing:0.253440pt;}
.ls0_c00400{letter-spacing:11.827200pt;}
.ls2_c00400{letter-spacing:39.808000pt;}
.ws0_c00400{word-spacing:-16.000000pt;}
.ws1_c00400{word-spacing:0.000000pt;}
._5_c00400{margin-left:-1.056000pt;}
._4_c00400{width:2.374400pt;}
._1_c00400{width:3.468800pt;}
._0_c00400{width:6.803200pt;}
._3_c00400{width:8.256000pt;}
._2_c00400{width:11.852800pt;}
.fs2_c00400{font-size:42.240000pt;}
.fs1_c00400{font-size:57.600000pt;}
.fs0_c00400{font-size:64.000000pt;}
.y0_c00400{bottom:0.000000pt;}
.y5_c00400{bottom:4.480000pt;}
.y1_c00400{bottom:11.320000pt;}
.y3_c00400{bottom:40.360000pt;}
.y4_c00400{bottom:47.200000pt;}
.y18_c00400{bottom:89.320000pt;}
.y17_c00400{bottom:121.320000pt;}
.y16_c00400{bottom:153.320000pt;}
.y15_c00400{bottom:185.320000pt;}
.y14_c00400{bottom:217.320000pt;}
.y13_c00400{bottom:247.723200pt;}
.y12_c00400{bottom:279.720000pt;}
.y11_c00400{bottom:309.479867pt;}
.y10_c00400{bottom:642.599867pt;}
.yf_c00400{bottom:674.599867pt;}
.ye_c00400{bottom:706.599867pt;}
.yd_c00400{bottom:738.599867pt;}
.yc_c00400{bottom:770.599867pt;}
.yb_c00400{bottom:802.599867pt;}
.ya_c00400{bottom:834.599867pt;}
.y9_c00400{bottom:866.599867pt;}
.y8_c00400{bottom:898.599867pt;}
.y7_c00400{bottom:930.599867pt;}
.y6_c00400{bottom:962.599867pt;}
.y2_c00400{bottom:1035.880000pt;}
.h4_c00400{height:18.560000pt;}
.h6_c00400{height:41.435625pt;}
.h5_c00400{height:62.781250pt;}
.h3_c00400{height:62.812500pt;}
.h7_c00400{height:65.781915pt;}
.h2_c00400{height:1099.880000pt;}
.h0_c00400{height:1122.520000pt;}
.h1_c00400{height:1122.666667pt;}
.w3_c00400{width:24.000000pt;}
.w2_c00400{width:771.080000pt;}
.w0_c00400{width:793.720000pt;}
.w1_c00400{width:794.000000pt;}
.x0_c00400{left:0.000000pt;}
.x1_c00400{left:11.320000pt;}
.x3_c00400{left:84.794933pt;}
.x5_c00400{left:132.800133pt;}
.x7_c00400{left:176.064133pt;}
.x4_c00400{left:384.760000pt;}
.x6_c00400{left:690.112133pt;}
.x2_c00400{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00401{font-family:ff1_c00401;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00401;src:url('chunks/assets/font_00b2ec2fb23763cf539bf8ab.woff2')format("woff");}.ff2_c00401{font-family:ff2_c00401;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00401;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00401{font-family:ff3_c00401;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00401;src:url('chunks/assets/font_79771af1afba6d0c026e7ac1.woff2')format("woff");}.ff4_c00401{font-family:ff4_c00401;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00401;src:url('chunks/assets/font_e04013b7d16bd5fc5ce0f735.woff2')format("woff");}.ff5_c00401{font-family:ff5_c00401;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_c00401;src:url('chunks/assets/font_54511ad3dc188aeed60841d6.woff2')format("woff");}.ff6_c00401{font-family:ff6_c00401;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_c00401;src:url('chunks/assets/font_f6ff8d204063414c192d1c06.woff2')format("woff");}.ff7_c00401{font-family:ff7_c00401;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00401;src:url('chunks/assets/font_ac6267cac54669af5faecb66.woff2')format("woff");}.ff8_c00401{font-family:ff8_c00401;line-height:1.372070;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v2_c00401{vertical-align:-30.240000px;}
.v0_c00401{vertical-align:0.000000px;}
.v1_c00401{vertical-align:30.240600px;}
.ls2_c00401{letter-spacing:0.000000px;}
.ls5_c00401{letter-spacing:0.036000px;}
.ls7_c00401{letter-spacing:0.058464px;}
.ls8_c00401{letter-spacing:0.079344px;}
.ls4_c00401{letter-spacing:0.100224px;}
.ls6_c00401{letter-spacing:0.121104px;}
.ls3_c00401{letter-spacing:4.226400px;}
.ls1_c00401{letter-spacing:33.984000px;}
.ls0_c00401{letter-spacing:44.784000px;}
.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:-18.036000px;}
.ws0_c00401{word-spacing:-18.000000px;}
.ws3_c00401{word-spacing:-10.561104px;}
.ws1_c00401{word-spacing:-10.540224px;}
.ws5_c00401{word-spacing:-10.519344px;}
.ws4_c00401{word-spacing:-10.498464px;}
.ws6_c00401{word-spacing:0.000000px;}
._1_c00401{margin-left:-4.176000px;}
._2_c00401{width:1.324800px;}
._3_c00401{width:2.995200px;}
._0_c00401{width:4.226400px;}
.fc1_c00401{color:transparent;}
.fc0_c00401{color:rgb(0,0,0);}
.fs2_c00401{font-size:41.760000px;}
.fs0_c00401{font-size:64.800000px;}
.fs1_c00401{font-size:72.000000px;}
.y0_c00401{bottom:0.000000px;}
.y5_c00401{bottom:1.440000px;}
.y1_c00401{bottom:12.735000px;}
.y3_c00401{bottom:45.405000px;}
.y4_c00401{bottom:56.700000px;}
.y20_c00401{bottom:146.925000px;}
.y1f_c00401{bottom:182.925000px;}
.y1e_c00401{bottom:218.925000px;}
.y1d_c00401{bottom:254.925000px;}
.y1c_c00401{bottom:290.925000px;}
.y1b_c00401{bottom:326.925000px;}
.y1a_c00401{bottom:362.925000px;}
.y19_c00401{bottom:398.925000px;}
.y18_c00401{bottom:434.925000px;}
.y17_c00401{bottom:470.925000px;}
.y16_c00401{bottom:506.925000px;}
.y15_c00401{bottom:542.925000px;}
.y14_c00401{bottom:578.924850px;}
.y13_c00401{bottom:614.924850px;}
.y12_c00401{bottom:650.924850px;}
.y11_c00401{bottom:686.924850px;}
.y10_c00401{bottom:722.924850px;}
.yf_c00401{bottom:758.924850px;}
.ye_c00401{bottom:794.924850px;}
.yd_c00401{bottom:830.924850px;}
.yc_c00401{bottom:866.924850px;}
.yb_c00401{bottom:902.924850px;}
.ya_c00401{bottom:938.924850px;}
.y9_c00401{bottom:974.924850px;}
.y8_c00401{bottom:1010.924850px;}
.y7_c00401{bottom:1046.924850px;}
.y6_c00401{bottom:1082.924850px;}
.y2_c00401{bottom:1165.365000px;}
.h5_c00401{height:17.280000px;}
.h3_c00401{height:43.189453px;}
.h4_c00401{height:70.664062px;}
.h9_c00401{height:71.225156px;}
.h8_c00401{height:71.225756px;}
.ha_c00401{height:71.824219px;}
.h6_c00401{height:74.004654px;}
.h7_c00401{height:74.953125px;}
.h2_c00401{height:1237.365000px;}
.h0_c00401{height:1262.835000px;}
.h1_c00401{height:1263.000000px;}
.w3_c00401{width:47.520000px;}
.w2_c00401{width:867.465000px;}
.w0_c00401{width:892.935000px;}
.w1_c00401{width:893.250000px;}
.x3_c00401{left:-39.599850px;}
.x0_c00401{left:0.000000px;}
.x5_c00401{left:10.237500px;}
.x1_c00401{left:12.735000px;}
.x7_c00401{left:95.403150px;}
.x8_c00401{left:149.403150px;}
.x9_c00401{left:176.403150px;}
.x6_c00401{left:198.075150px;}
.x4_c00401{left:422.775000px;}
.x2_c00401{left:880.050300px;}
@media print{
.v2_c00401{vertical-align:-26.880000pt;}
.v0_c00401{vertical-align:0.000000pt;}
.v1_c00401{vertical-align:26.880533pt;}
.ls2_c00401{letter-spacing:0.000000pt;}
.ls5_c00401{letter-spacing:0.032000pt;}
.ls7_c00401{letter-spacing:0.051968pt;}
.ls8_c00401{letter-spacing:0.070528pt;}
.ls4_c00401{letter-spacing:0.089088pt;}
.ls6_c00401{letter-spacing:0.107648pt;}
.ls3_c00401{letter-spacing:3.756800pt;}
.ls1_c00401{letter-spacing:30.208000pt;}
.ls0_c00401{letter-spacing:39.808000pt;}
.ws2_c00401{word-spacing:-16.032000pt;}
.ws0_c00401{word-spacing:-16.000000pt;}
.ws3_c00401{word-spacing:-9.387648pt;}
.ws1_c00401{word-spacing:-9.369088pt;}
.ws5_c00401{word-spacing:-9.350528pt;}
.ws4_c00401{word-spacing:-9.331968pt;}
.ws6_c00401{word-spacing:0.000000pt;}
._1_c00401{margin-left:-3.712000pt;}
._2_c00401{width:1.177600pt;}
._3_c00401{width:2.662400pt;}
._0_c00401{width:3.756800pt;}
.fs2_c00401{font-size:37.120000pt;}
.fs0_c00401{font-size:57.600000pt;}
.fs1_c00401{font-size:64.000000pt;}
.y0_c00401{bottom:0.000000pt;}
.y5_c00401{bottom:1.280000pt;}
.y1_c00401{bottom:11.320000pt;}
.y3_c00401{bottom:40.360000pt;}
.y4_c00401{bottom:50.400000pt;}
.y20_c00401{bottom:130.600000pt;}
.y1f_c00401{bottom:162.600000pt;}
.y1e_c00401{bottom:194.600000pt;}
.y1d_c00401{bottom:226.600000pt;}
.y1c_c00401{bottom:258.600000pt;}
.y1b_c00401{bottom:290.600000pt;}
.y1a_c00401{bottom:322.600000pt;}
.y19_c00401{bottom:354.600000pt;}
.y18_c00401{bottom:386.600000pt;}
.y17_c00401{bottom:418.600000pt;}
.y16_c00401{bottom:450.600000pt;}
.y15_c00401{bottom:482.600000pt;}
.y14_c00401{bottom:514.599867pt;}
.y13_c00401{bottom:546.599867pt;}
.y12_c00401{bottom:578.599867pt;}
.y11_c00401{bottom:610.599867pt;}
.y10_c00401{bottom:642.599867pt;}
.yf_c00401{bottom:674.599867pt;}
.ye_c00401{bottom:706.599867pt;}
.yd_c00401{bottom:738.599867pt;}
.yc_c00401{bottom:770.599867pt;}
.yb_c00401{bottom:802.599867pt;}
.ya_c00401{bottom:834.599867pt;}
.y9_c00401{bottom:866.599867pt;}
.y8_c00401{bottom:898.599867pt;}
.y7_c00401{bottom:930.599867pt;}
.y6_c00401{bottom:962.599867pt;}
.y2_c00401{bottom:1035.880000pt;}
.h5_c00401{height:15.360000pt;}
.h3_c00401{height:38.390625pt;}
.h4_c00401{height:62.812500pt;}
.h9_c00401{height:63.311250pt;}
.h8_c00401{height:63.311783pt;}
.ha_c00401{height:63.843750pt;}
.h6_c00401{height:65.781915pt;}
.h7_c00401{height:66.625000pt;}
.h2_c00401{height:1099.880000pt;}
.h0_c00401{height:1122.520000pt;}
.h1_c00401{height:1122.666667pt;}
.w3_c00401{width:42.240000pt;}
.w2_c00401{width:771.080000pt;}
.w0_c00401{width:793.720000pt;}
.w1_c00401{width:794.000000pt;}
.x3_c00401{left:-35.199867pt;}
.x0_c00401{left:0.000000pt;}
.x5_c00401{left:9.100000pt;}
.x1_c00401{left:11.320000pt;}
.x7_c00401{left:84.802800pt;}
.x8_c00401{left:132.802800pt;}
.x9_c00401{left:156.802800pt;}
.x6_c00401{left:176.066800pt;}
.x4_c00401{left:375.800000pt;}
.x2_c00401{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_c876e3fe582f9c5d24d14cda.woff2')format("woff");}.ff1_c00402{font-family:ff1_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:ff2_c00402;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00402{font-family:ff2_c00402;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00402;src:url('chunks/assets/font_186a5fc9d49bec2173899b3b.woff2')format("woff");}.ff3_c00402{font-family:ff3_c00402;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00402;src:url('chunks/assets/font_9f6dd4423b8400aa8a65fbdc.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;}
.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);}
.v2_c00402{vertical-align:-30.240000px;}
.v0_c00402{vertical-align:0.000000px;}
.v1_c00402{vertical-align:30.240600px;}
.ls2_c00402{letter-spacing:0.000000px;}
.ls4_c00402{letter-spacing:0.014400px;}
.ls1_c00402{letter-spacing:0.026400px;}
.ls3_c00402{letter-spacing:0.058464px;}
.ls5_c00402{letter-spacing:0.100224px;}
.ls6_c00402{letter-spacing:0.121104px;}
.ls7_c00402{letter-spacing:4.334400px;}
.ls8_c00402{letter-spacing:8.474400px;}
.ls0_c00402{letter-spacing:33.984000px;}
.sc__c00402{text-shadow:none;}
.sc0_c00402{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00402{-webkit-text-stroke:0px transparent;}
.sc0_c00402{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00402{word-spacing:-18.000000px;}
.ws3_c00402{word-spacing:-10.561104px;}
.ws2_c00402{word-spacing:-10.540224px;}
.ws1_c00402{word-spacing:-10.498464px;}
.ws4_c00402{word-spacing:0.000000px;}
._7_c00402{margin-left:-7.797600px;}
._6_c00402{margin-left:-4.348800px;}
._4_c00402{width:1.512000px;}
._9_c00402{width:3.312000px;}
._5_c00402{width:4.334400px;}
._8_c00402{width:6.084000px;}
._3_c00402{width:8.114400px;}
._2_c00402{width:9.151200px;}
._b_c00402{width:10.274400px;}
._a_c00402{width:11.289600px;}
._1_c00402{width:15.112800px;}
._0_c00402{width:16.531200px;}
._c_c00402{width:25.293600px;}
.fc1_c00402{color:transparent;}
.fc0_c00402{color:rgb(0,0,0);}
.fs2_c00402{font-size:41.760000px;}
.fs1_c00402{font-size:64.800000px;}
.fs0_c00402{font-size:72.000000px;}
.y0_c00402{bottom:0.000000px;}
.y5_c00402{bottom:5.040000px;}
.y1_c00402{bottom:12.735000px;}
.y3_c00402{bottom:45.405000px;}
.y4_c00402{bottom:53.100000px;}
.y20_c00402{bottom:146.925000px;}
.y1f_c00402{bottom:182.925000px;}
.y1e_c00402{bottom:218.925000px;}
.y1d_c00402{bottom:254.925000px;}
.y1c_c00402{bottom:290.925000px;}
.y1b_c00402{bottom:326.925000px;}
.y1a_c00402{bottom:362.925000px;}
.y19_c00402{bottom:398.925000px;}
.y18_c00402{bottom:434.925000px;}
.y17_c00402{bottom:470.925000px;}
.y16_c00402{bottom:506.925000px;}
.y15_c00402{bottom:542.925000px;}
.y14_c00402{bottom:578.925000px;}
.y13_c00402{bottom:614.925000px;}
.y12_c00402{bottom:650.925000px;}
.y11_c00402{bottom:686.925000px;}
.y10_c00402{bottom:722.924850px;}
.yf_c00402{bottom:758.924850px;}
.ye_c00402{bottom:794.924850px;}
.yd_c00402{bottom:830.924850px;}
.yc_c00402{bottom:866.924850px;}
.yb_c00402{bottom:902.924850px;}
.ya_c00402{bottom:938.924850px;}
.y9_c00402{bottom:974.924850px;}
.y8_c00402{bottom:1010.924850px;}
.y7_c00402{bottom:1046.924850px;}
.y6_c00402{bottom:1082.924850px;}
.y2_c00402{bottom:1165.365000px;}
.h4_c00402{height:20.880000px;}
.h3_c00402{height:70.664062px;}
.h7_c00402{height:71.225156px;}
.h6_c00402{height:71.225756px;}
.h5_c00402{height:74.004654px;}
.h2_c00402{height:1237.365000px;}
.h0_c00402{height:1262.835000px;}
.h1_c00402{height:1263.000000px;}
.w3_c00402{width:27.000000px;}
.w2_c00402{width:867.465000px;}
.w0_c00402{width:892.935000px;}
.w1_c00402{width:893.250000px;}
.x0_c00402{left:0.000000px;}
.x1_c00402{left:12.735000px;}
.x3_c00402{left:95.394300px;}
.x5_c00402{left:149.400150px;}
.x6_c00402{left:176.400150px;}
.x4_c00402{left:432.855000px;}
.x2_c00402{left:880.050300px;}
@media print{
.v2_c00402{vertical-align:-26.880000pt;}
.v0_c00402{vertical-align:0.000000pt;}
.v1_c00402{vertical-align:26.880533pt;}
.ls2_c00402{letter-spacing:0.000000pt;}
.ls4_c00402{letter-spacing:0.012800pt;}
.ls1_c00402{letter-spacing:0.023467pt;}
.ls3_c00402{letter-spacing:0.051968pt;}
.ls5_c00402{letter-spacing:0.089088pt;}
.ls6_c00402{letter-spacing:0.107648pt;}
.ls7_c00402{letter-spacing:3.852800pt;}
.ls8_c00402{letter-spacing:7.532800pt;}
.ls0_c00402{letter-spacing:30.208000pt;}
.ws0_c00402{word-spacing:-16.000000pt;}
.ws3_c00402{word-spacing:-9.387648pt;}
.ws2_c00402{word-spacing:-9.369088pt;}
.ws1_c00402{word-spacing:-9.331968pt;}
.ws4_c00402{word-spacing:0.000000pt;}
._7_c00402{margin-left:-6.931200pt;}
._6_c00402{margin-left:-3.865600pt;}
._4_c00402{width:1.344000pt;}
._9_c00402{width:2.944000pt;}
._5_c00402{width:3.852800pt;}
._8_c00402{width:5.408000pt;}
._3_c00402{width:7.212800pt;}
._2_c00402{width:8.134400pt;}
._b_c00402{width:9.132800pt;}
._a_c00402{width:10.035200pt;}
._1_c00402{width:13.433600pt;}
._0_c00402{width:14.694400pt;}
._c_c00402{width:22.483200pt;}
.fs2_c00402{font-size:37.120000pt;}
.fs1_c00402{font-size:57.600000pt;}
.fs0_c00402{font-size:64.000000pt;}
.y0_c00402{bottom:0.000000pt;}
.y5_c00402{bottom:4.480000pt;}
.y1_c00402{bottom:11.320000pt;}
.y3_c00402{bottom:40.360000pt;}
.y4_c00402{bottom:47.200000pt;}
.y20_c00402{bottom:130.600000pt;}
.y1f_c00402{bottom:162.600000pt;}
.y1e_c00402{bottom:194.600000pt;}
.y1d_c00402{bottom:226.600000pt;}
.y1c_c00402{bottom:258.600000pt;}
.y1b_c00402{bottom:290.600000pt;}
.y1a_c00402{bottom:322.600000pt;}
.y19_c00402{bottom:354.600000pt;}
.y18_c00402{bottom:386.600000pt;}
.y17_c00402{bottom:418.600000pt;}
.y16_c00402{bottom:450.600000pt;}
.y15_c00402{bottom:482.600000pt;}
.y14_c00402{bottom:514.600000pt;}
.y13_c00402{bottom:546.600000pt;}
.y12_c00402{bottom:578.600000pt;}
.y11_c00402{bottom:610.600000pt;}
.y10_c00402{bottom:642.599867pt;}
.yf_c00402{bottom:674.599867pt;}
.ye_c00402{bottom:706.599867pt;}
.yd_c00402{bottom:738.599867pt;}
.yc_c00402{bottom:770.599867pt;}
.yb_c00402{bottom:802.599867pt;}
.ya_c00402{bottom:834.599867pt;}
.y9_c00402{bottom:866.599867pt;}
.y8_c00402{bottom:898.599867pt;}
.y7_c00402{bottom:930.599867pt;}
.y6_c00402{bottom:962.599867pt;}
.y2_c00402{bottom:1035.880000pt;}
.h4_c00402{height:18.560000pt;}
.h3_c00402{height:62.812500pt;}
.h7_c00402{height:63.311250pt;}
.h6_c00402{height:63.311783pt;}
.h5_c00402{height:65.781915pt;}
.h2_c00402{height:1099.880000pt;}
.h0_c00402{height:1122.520000pt;}
.h1_c00402{height:1122.666667pt;}
.w3_c00402{width:24.000000pt;}
.w2_c00402{width:771.080000pt;}
.w0_c00402{width:793.720000pt;}
.w1_c00402{width:794.000000pt;}
.x0_c00402{left:0.000000pt;}
.x1_c00402{left:11.320000pt;}
.x3_c00402{left:84.794933pt;}
.x5_c00402{left:132.800133pt;}
.x6_c00402{left:156.800133pt;}
.x4_c00402{left:384.760000pt;}
.x2_c00402{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00403{font-family:ff1_c00403;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00403;src:url('chunks/assets/font_795b18e217356cd6a99c7a5a.woff2')format("woff");}.ff2_c00403{font-family:ff2_c00403;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00403;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00403{font-family:ff3_c00403;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00403;src:url('chunks/assets/font_bb5949f99111ee92a78df697.woff2')format("woff");}.ff4_c00403{font-family:ff4_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;}
.m0_c00403{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00403{vertical-align:0.000000px;}
.v1_c00403{vertical-align:30.240600px;}
.ls1_c00403{letter-spacing:0.000000px;}
.ls2_c00403{letter-spacing:0.058464px;}
.ls0_c00403{letter-spacing:5.688000px;}
.sc__c00403{text-shadow:none;}
.sc0_c00403{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00403{-webkit-text-stroke:0px transparent;}
.sc0_c00403{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00403{word-spacing:-18.000000px;}
.ws1_c00403{word-spacing:-10.498464px;}
.ws2_c00403{word-spacing:0.000000px;}
._9_c00403{width:1.029600px;}
._2_c00403{width:3.931200px;}
._3_c00403{width:5.342400px;}
._a_c00403{width:6.868800px;}
._7_c00403{width:7.977600px;}
._0_c00403{width:9.691200px;}
._8_c00403{width:12.902400px;}
._5_c00403{width:14.097600px;}
._1_c00403{width:15.379200px;}
._c_c00403{width:16.927200px;}
._4_c00403{width:19.065600px;}
._6_c00403{width:20.620800px;}
._b_c00403{width:26.913600px;}
.fc1_c00403{color:transparent;}
.fc0_c00403{color:rgb(0,0,0);}
.fs2_c00403{font-size:41.760000px;}
.fs0_c00403{font-size:64.800000px;}
.fs1_c00403{font-size:72.000000px;}
.y0_c00403{bottom:0.000000px;}
.y5_c00403{bottom:1.440000px;}
.y1_c00403{bottom:12.735000px;}
.y3_c00403{bottom:45.405000px;}
.y4_c00403{bottom:56.700000px;}
.y21_c00403{bottom:110.924850px;}
.y20_c00403{bottom:146.924850px;}
.y1f_c00403{bottom:182.924850px;}
.y1e_c00403{bottom:218.924850px;}
.y1d_c00403{bottom:254.924850px;}
.y1c_c00403{bottom:290.924850px;}
.y1b_c00403{bottom:326.924850px;}
.y1a_c00403{bottom:362.924850px;}
.y19_c00403{bottom:398.924850px;}
.y18_c00403{bottom:434.924850px;}
.y17_c00403{bottom:470.924850px;}
.y16_c00403{bottom:506.924850px;}
.y15_c00403{bottom:542.924850px;}
.y14_c00403{bottom:578.924850px;}
.y13_c00403{bottom:614.924850px;}
.y12_c00403{bottom:650.924850px;}
.y11_c00403{bottom:686.924850px;}
.y10_c00403{bottom:722.924850px;}
.yf_c00403{bottom:758.924850px;}
.ye_c00403{bottom:794.924850px;}
.yd_c00403{bottom:830.924850px;}
.yc_c00403{bottom:866.924850px;}
.yb_c00403{bottom:902.924850px;}
.ya_c00403{bottom:938.924850px;}
.y9_c00403{bottom:974.924850px;}
.y8_c00403{bottom:1010.924850px;}
.y7_c00403{bottom:1046.924850px;}
.y6_c00403{bottom:1082.924850px;}
.y2_c00403{bottom:1165.365000px;}
.h5_c00403{height:17.280000px;}
.h3_c00403{height:43.189453px;}
.h7_c00403{height:70.628906px;}
.h4_c00403{height:70.664062px;}
.h6_c00403{height:71.225756px;}
.h2_c00403{height:1237.365000px;}
.h0_c00403{height:1262.835000px;}
.h1_c00403{height:1263.000000px;}
.w3_c00403{width:47.520000px;}
.w2_c00403{width:867.465000px;}
.w0_c00403{width:892.935000px;}
.w1_c00403{width:893.250000px;}
.x3_c00403{left:-39.599850px;}
.x0_c00403{left:0.000000px;}
.x5_c00403{left:10.237500px;}
.x1_c00403{left:12.735000px;}
.x6_c00403{left:95.400150px;}
.x7_c00403{left:149.395200px;}
.x4_c00403{left:422.775000px;}
.x2_c00403{left:880.050300px;}
@media print{
.v0_c00403{vertical-align:0.000000pt;}
.v1_c00403{vertical-align:26.880533pt;}
.ls1_c00403{letter-spacing:0.000000pt;}
.ls2_c00403{letter-spacing:0.051968pt;}
.ls0_c00403{letter-spacing:5.056000pt;}
.ws0_c00403{word-spacing:-16.000000pt;}
.ws1_c00403{word-spacing:-9.331968pt;}
.ws2_c00403{word-spacing:0.000000pt;}
._9_c00403{width:0.915200pt;}
._2_c00403{width:3.494400pt;}
._3_c00403{width:4.748800pt;}
._a_c00403{width:6.105600pt;}
._7_c00403{width:7.091200pt;}
._0_c00403{width:8.614400pt;}
._8_c00403{width:11.468800pt;}
._5_c00403{width:12.531200pt;}
._1_c00403{width:13.670400pt;}
._c_c00403{width:15.046400pt;}
._4_c00403{width:16.947200pt;}
._6_c00403{width:18.329600pt;}
._b_c00403{width:23.923200pt;}
.fs2_c00403{font-size:37.120000pt;}
.fs0_c00403{font-size:57.600000pt;}
.fs1_c00403{font-size:64.000000pt;}
.y0_c00403{bottom:0.000000pt;}
.y5_c00403{bottom:1.280000pt;}
.y1_c00403{bottom:11.320000pt;}
.y3_c00403{bottom:40.360000pt;}
.y4_c00403{bottom:50.400000pt;}
.y21_c00403{bottom:98.599867pt;}
.y20_c00403{bottom:130.599867pt;}
.y1f_c00403{bottom:162.599867pt;}
.y1e_c00403{bottom:194.599867pt;}
.y1d_c00403{bottom:226.599867pt;}
.y1c_c00403{bottom:258.599867pt;}
.y1b_c00403{bottom:290.599867pt;}
.y1a_c00403{bottom:322.599867pt;}
.y19_c00403{bottom:354.599867pt;}
.y18_c00403{bottom:386.599867pt;}
.y17_c00403{bottom:418.599867pt;}
.y16_c00403{bottom:450.599867pt;}
.y15_c00403{bottom:482.599867pt;}
.y14_c00403{bottom:514.599867pt;}
.y13_c00403{bottom:546.599867pt;}
.y12_c00403{bottom:578.599867pt;}
.y11_c00403{bottom:610.599867pt;}
.y10_c00403{bottom:642.599867pt;}
.yf_c00403{bottom:674.599867pt;}
.ye_c00403{bottom:706.599867pt;}
.yd_c00403{bottom:738.599867pt;}
.yc_c00403{bottom:770.599867pt;}
.yb_c00403{bottom:802.599867pt;}
.ya_c00403{bottom:834.599867pt;}
.y9_c00403{bottom:866.599867pt;}
.y8_c00403{bottom:898.599867pt;}
.y7_c00403{bottom:930.599867pt;}
.y6_c00403{bottom:962.599867pt;}
.y2_c00403{bottom:1035.880000pt;}
.h5_c00403{height:15.360000pt;}
.h3_c00403{height:38.390625pt;}
.h7_c00403{height:62.781250pt;}
.h4_c00403{height:62.812500pt;}
.h6_c00403{height:63.311783pt;}
.h2_c00403{height:1099.880000pt;}
.h0_c00403{height:1122.520000pt;}
.h1_c00403{height:1122.666667pt;}
.w3_c00403{width:42.240000pt;}
.w2_c00403{width:771.080000pt;}
.w0_c00403{width:793.720000pt;}
.w1_c00403{width:794.000000pt;}
.x3_c00403{left:-35.199867pt;}
.x0_c00403{left:0.000000pt;}
.x5_c00403{left:9.100000pt;}
.x1_c00403{left:11.320000pt;}
.x6_c00403{left:84.800133pt;}
.x7_c00403{left:132.795733pt;}
.x4_c00403{left:375.800000pt;}
.x2_c00403{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e5b67f48d29a7c041cc41391.woff2')format("woff");}.ff1_c00404{font-family:ff1_c00404;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00404;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00404{font-family:ff2_c00404;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00404;src:url('chunks/assets/font_f95edc625be72198a9115a8e.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;}
.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;}
.ls1_c00404{letter-spacing:-0.014400px;}
.ls0_c00404{letter-spacing:0.000000px;}
.sc__c00404{text-shadow:none;}
.sc0_c00404{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00404{-webkit-text-stroke:0px transparent;}
.sc0_c00404{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00404{word-spacing:-18.000000px;}
.ws1_c00404{word-spacing:0.000000px;}
._b_c00404{margin-left:-1.051200px;}
._9_c00404{width:1.188000px;}
._a_c00404{width:2.563200px;}
._2_c00404{width:3.643200px;}
._3_c00404{width:5.047200px;}
._5_c00404{width:6.336000px;}
._c_c00404{width:7.466400px;}
._8_c00404{width:8.676000px;}
._6_c00404{width:9.900000px;}
._0_c00404{width:11.505600px;}
._7_c00404{width:16.545600px;}
._1_c00404{width:19.404000px;}
._4_c00404{width:20.671200px;}
.fc1_c00404{color:transparent;}
.fc0_c00404{color:rgb(0,0,0);}
.fs1_c00404{font-size:64.800000px;}
.fs0_c00404{font-size:72.000000px;}
.y0_c00404{bottom:0.000000px;}
.y5_c00404{bottom:5.040000px;}
.y1_c00404{bottom:12.735000px;}
.y3_c00404{bottom:45.405000px;}
.y4_c00404{bottom:53.100000px;}
.y21_c00404{bottom:110.924850px;}
.y20_c00404{bottom:146.924850px;}
.y1f_c00404{bottom:182.924850px;}
.y1e_c00404{bottom:218.924850px;}
.y1d_c00404{bottom:254.924850px;}
.y1c_c00404{bottom:290.924850px;}
.y1b_c00404{bottom:326.924850px;}
.y1a_c00404{bottom:362.924850px;}
.y19_c00404{bottom:398.924850px;}
.y18_c00404{bottom:434.924850px;}
.y17_c00404{bottom:470.924850px;}
.y16_c00404{bottom:506.924850px;}
.y15_c00404{bottom:542.924850px;}
.y14_c00404{bottom:578.924850px;}
.y13_c00404{bottom:614.924850px;}
.y12_c00404{bottom:650.924850px;}
.y11_c00404{bottom:686.924850px;}
.y10_c00404{bottom:722.924850px;}
.yf_c00404{bottom:758.924850px;}
.ye_c00404{bottom:794.924850px;}
.yd_c00404{bottom:830.924850px;}
.yc_c00404{bottom:866.924850px;}
.yb_c00404{bottom:902.924850px;}
.ya_c00404{bottom:938.924850px;}
.y9_c00404{bottom:974.924850px;}
.y8_c00404{bottom:1010.924850px;}
.y7_c00404{bottom:1046.924850px;}
.y6_c00404{bottom:1082.924850px;}
.y2_c00404{bottom:1165.365000px;}
.h4_c00404{height:20.880000px;}
.h5_c00404{height:70.628906px;}
.h3_c00404{height:70.664062px;}
.h2_c00404{height:1237.365000px;}
.h0_c00404{height:1262.835000px;}
.h1_c00404{height:1263.000000px;}
.w3_c00404{width:27.000000px;}
.w2_c00404{width:867.465000px;}
.w0_c00404{width:892.935000px;}
.w1_c00404{width:893.250000px;}
.x0_c00404{left:0.000000px;}
.x1_c00404{left:12.735000px;}
.x3_c00404{left:95.394300px;}
.x5_c00404{left:149.400150px;}
.x4_c00404{left:432.855000px;}
.x2_c00404{left:880.050300px;}
@media print{
.v0_c00404{vertical-align:0.000000pt;}
.ls1_c00404{letter-spacing:-0.012800pt;}
.ls0_c00404{letter-spacing:0.000000pt;}
.ws0_c00404{word-spacing:-16.000000pt;}
.ws1_c00404{word-spacing:0.000000pt;}
._b_c00404{margin-left:-0.934400pt;}
._9_c00404{width:1.056000pt;}
._a_c00404{width:2.278400pt;}
._2_c00404{width:3.238400pt;}
._3_c00404{width:4.486400pt;}
._5_c00404{width:5.632000pt;}
._c_c00404{width:6.636800pt;}
._8_c00404{width:7.712000pt;}
._6_c00404{width:8.800000pt;}
._0_c00404{width:10.227200pt;}
._7_c00404{width:14.707200pt;}
._1_c00404{width:17.248000pt;}
._4_c00404{width:18.374400pt;}
.fs1_c00404{font-size:57.600000pt;}
.fs0_c00404{font-size:64.000000pt;}
.y0_c00404{bottom:0.000000pt;}
.y5_c00404{bottom:4.480000pt;}
.y1_c00404{bottom:11.320000pt;}
.y3_c00404{bottom:40.360000pt;}
.y4_c00404{bottom:47.200000pt;}
.y21_c00404{bottom:98.599867pt;}
.y20_c00404{bottom:130.599867pt;}
.y1f_c00404{bottom:162.599867pt;}
.y1e_c00404{bottom:194.599867pt;}
.y1d_c00404{bottom:226.599867pt;}
.y1c_c00404{bottom:258.599867pt;}
.y1b_c00404{bottom:290.599867pt;}
.y1a_c00404{bottom:322.599867pt;}
.y19_c00404{bottom:354.599867pt;}
.y18_c00404{bottom:386.599867pt;}
.y17_c00404{bottom:418.599867pt;}
.y16_c00404{bottom:450.599867pt;}
.y15_c00404{bottom:482.599867pt;}
.y14_c00404{bottom:514.599867pt;}
.y13_c00404{bottom:546.599867pt;}
.y12_c00404{bottom:578.599867pt;}
.y11_c00404{bottom:610.599867pt;}
.y10_c00404{bottom:642.599867pt;}
.yf_c00404{bottom:674.599867pt;}
.ye_c00404{bottom:706.599867pt;}
.yd_c00404{bottom:738.599867pt;}
.yc_c00404{bottom:770.599867pt;}
.yb_c00404{bottom:802.599867pt;}
.ya_c00404{bottom:834.599867pt;}
.y9_c00404{bottom:866.599867pt;}
.y8_c00404{bottom:898.599867pt;}
.y7_c00404{bottom:930.599867pt;}
.y6_c00404{bottom:962.599867pt;}
.y2_c00404{bottom:1035.880000pt;}
.h4_c00404{height:18.560000pt;}
.h5_c00404{height:62.781250pt;}
.h3_c00404{height:62.812500pt;}
.h2_c00404{height:1099.880000pt;}
.h0_c00404{height:1122.520000pt;}
.h1_c00404{height:1122.666667pt;}
.w3_c00404{width:24.000000pt;}
.w2_c00404{width:771.080000pt;}
.w0_c00404{width:793.720000pt;}
.w1_c00404{width:794.000000pt;}
.x0_c00404{left:0.000000pt;}
.x1_c00404{left:11.320000pt;}
.x3_c00404{left:84.794933pt;}
.x5_c00404{left:132.800133pt;}
.x4_c00404{left:384.760000pt;}
.x2_c00404{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00405{font-family:ff1_c00405;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00405;src:url('chunks/assets/font_3b85d81dc3fd5a211a823a3c.woff2')format("woff");}.ff2_c00405{font-family:ff2_c00405;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00405;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00405{font-family:ff3_c00405;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00405{letter-spacing:0.000000px;}
.sc__c00405{text-shadow:none;}
.sc0_c00405{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00405{-webkit-text-stroke:0px transparent;}
.sc0_c00405{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00405{word-spacing:-18.000000px;}
.ws1_c00405{word-spacing:0.000000px;}
._2_c00405{width:1.166400px;}
._3_c00405{width:2.181600px;}
._4_c00405{width:3.182400px;}
._5_c00405{width:4.953600px;}
._7_c00405{width:6.429600px;}
._1_c00405{width:9.309600px;}
._8_c00405{width:11.498400px;}
._6_c00405{width:15.163200px;}
._0_c00405{width:22.975200px;}
.fc1_c00405{color:transparent;}
.fc0_c00405{color:rgb(0,0,0);}
.fs0_c00405{font-size:64.800000px;}
.fs1_c00405{font-size:72.000000px;}
.y0_c00405{bottom:0.000000px;}
.y5_c00405{bottom:1.440000px;}
.y1_c00405{bottom:12.735000px;}
.y3_c00405{bottom:45.405000px;}
.y4_c00405{bottom:56.700000px;}
.y21_c00405{bottom:110.924850px;}
.y20_c00405{bottom:146.924850px;}
.y1f_c00405{bottom:182.924850px;}
.y1e_c00405{bottom:218.924850px;}
.y1d_c00405{bottom:254.924850px;}
.y1c_c00405{bottom:290.924850px;}
.y1b_c00405{bottom:326.924850px;}
.y1a_c00405{bottom:362.924850px;}
.y19_c00405{bottom:398.924850px;}
.y18_c00405{bottom:434.924850px;}
.y17_c00405{bottom:470.924850px;}
.y16_c00405{bottom:506.924850px;}
.y15_c00405{bottom:542.924850px;}
.y14_c00405{bottom:578.924850px;}
.y13_c00405{bottom:614.924850px;}
.y12_c00405{bottom:650.924850px;}
.y11_c00405{bottom:686.924850px;}
.y10_c00405{bottom:722.924850px;}
.yf_c00405{bottom:758.924850px;}
.ye_c00405{bottom:794.924850px;}
.yd_c00405{bottom:830.924850px;}
.yc_c00405{bottom:866.924850px;}
.yb_c00405{bottom:902.924850px;}
.ya_c00405{bottom:938.924850px;}
.y9_c00405{bottom:974.924850px;}
.y8_c00405{bottom:1010.924850px;}
.y7_c00405{bottom:1046.924850px;}
.y6_c00405{bottom:1082.924850px;}
.y2_c00405{bottom:1165.365000px;}
.h5_c00405{height:17.280000px;}
.h3_c00405{height:43.189453px;}
.h4_c00405{height:70.664062px;}
.h2_c00405{height:1237.365000px;}
.h0_c00405{height:1262.835000px;}
.h1_c00405{height:1263.000000px;}
.w3_c00405{width:47.520000px;}
.w2_c00405{width:867.465000px;}
.w0_c00405{width:892.935000px;}
.w1_c00405{width:893.250000px;}
.x3_c00405{left:-39.599850px;}
.x0_c00405{left:0.000000px;}
.x5_c00405{left:10.237500px;}
.x1_c00405{left:12.735000px;}
.x7_c00405{left:95.400150px;}
.x6_c00405{left:149.400150px;}
.x4_c00405{left:422.775000px;}
.x2_c00405{left:880.050300px;}
@media print{
.v0_c00405{vertical-align:0.000000pt;}
.ls0_c00405{letter-spacing:0.000000pt;}
.ws0_c00405{word-spacing:-16.000000pt;}
.ws1_c00405{word-spacing:0.000000pt;}
._2_c00405{width:1.036800pt;}
._3_c00405{width:1.939200pt;}
._4_c00405{width:2.828800pt;}
._5_c00405{width:4.403200pt;}
._7_c00405{width:5.715200pt;}
._1_c00405{width:8.275200pt;}
._8_c00405{width:10.220800pt;}
._6_c00405{width:13.478400pt;}
._0_c00405{width:20.422400pt;}
.fs0_c00405{font-size:57.600000pt;}
.fs1_c00405{font-size:64.000000pt;}
.y0_c00405{bottom:0.000000pt;}
.y5_c00405{bottom:1.280000pt;}
.y1_c00405{bottom:11.320000pt;}
.y3_c00405{bottom:40.360000pt;}
.y4_c00405{bottom:50.400000pt;}
.y21_c00405{bottom:98.599867pt;}
.y20_c00405{bottom:130.599867pt;}
.y1f_c00405{bottom:162.599867pt;}
.y1e_c00405{bottom:194.599867pt;}
.y1d_c00405{bottom:226.599867pt;}
.y1c_c00405{bottom:258.599867pt;}
.y1b_c00405{bottom:290.599867pt;}
.y1a_c00405{bottom:322.599867pt;}
.y19_c00405{bottom:354.599867pt;}
.y18_c00405{bottom:386.599867pt;}
.y17_c00405{bottom:418.599867pt;}
.y16_c00405{bottom:450.599867pt;}
.y15_c00405{bottom:482.599867pt;}
.y14_c00405{bottom:514.599867pt;}
.y13_c00405{bottom:546.599867pt;}
.y12_c00405{bottom:578.599867pt;}
.y11_c00405{bottom:610.599867pt;}
.y10_c00405{bottom:642.599867pt;}
.yf_c00405{bottom:674.599867pt;}
.ye_c00405{bottom:706.599867pt;}
.yd_c00405{bottom:738.599867pt;}
.yc_c00405{bottom:770.599867pt;}
.yb_c00405{bottom:802.599867pt;}
.ya_c00405{bottom:834.599867pt;}
.y9_c00405{bottom:866.599867pt;}
.y8_c00405{bottom:898.599867pt;}
.y7_c00405{bottom:930.599867pt;}
.y6_c00405{bottom:962.599867pt;}
.y2_c00405{bottom:1035.880000pt;}
.h5_c00405{height:15.360000pt;}
.h3_c00405{height:38.390625pt;}
.h4_c00405{height:62.812500pt;}
.h2_c00405{height:1099.880000pt;}
.h0_c00405{height:1122.520000pt;}
.h1_c00405{height:1122.666667pt;}
.w3_c00405{width:42.240000pt;}
.w2_c00405{width:771.080000pt;}
.w0_c00405{width:793.720000pt;}
.w1_c00405{width:794.000000pt;}
.x3_c00405{left:-35.199867pt;}
.x0_c00405{left:0.000000pt;}
.x5_c00405{left:9.100000pt;}
.x1_c00405{left:11.320000pt;}
.x7_c00405{left:84.800133pt;}
.x6_c00405{left:132.800133pt;}
.x4_c00405{left:375.800000pt;}
.x2_c00405{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8a9d2e4f49f0765916ed939.woff2')format("woff");}.ff1_c00406{font-family:ff1_c00406;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00406;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00406{font-family:ff2_c00406;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00406;src:url('chunks/assets/font_495baf339fd427f672169cca.woff2')format("woff");}.ff3_c00406{font-family:ff3_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;}
.m0_c00406{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00406{vertical-align:0.000000px;}
.v1_c00406{vertical-align:30.240600px;}
.ls3_c00406{letter-spacing:-0.014400px;}
.ls0_c00406{letter-spacing:0.000000px;}
.ls1_c00406{letter-spacing:0.058464px;}
.ls2_c00406{letter-spacing:0.079344px;}
.sc__c00406{text-shadow:none;}
.sc0_c00406{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00406{-webkit-text-stroke:0px transparent;}
.sc0_c00406{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00406{word-spacing:-18.000000px;}
.ws2_c00406{word-spacing:-10.519344px;}
.ws1_c00406{word-spacing:-10.498464px;}
.ws3_c00406{word-spacing:0.000000px;}
._0_c00406{width:1.209600px;}
._8_c00406{width:3.182400px;}
._2_c00406{width:4.464000px;}
._3_c00406{width:5.832000px;}
._4_c00406{width:7.603200px;}
._a_c00406{width:8.769600px;}
._6_c00406{width:11.923200px;}
._7_c00406{width:13.003200px;}
._1_c00406{width:14.076000px;}
._9_c00406{width:15.746400px;}
._5_c00406{width:16.761600px;}
.fc1_c00406{color:transparent;}
.fc0_c00406{color:rgb(0,0,0);}
.fs3_c00406{font-size:41.760000px;}
.fs2_c00406{font-size:53.280000px;}
.fs1_c00406{font-size:64.800000px;}
.fs0_c00406{font-size:72.000000px;}
.y0_c00406{bottom:0.000000px;}
.y5_c00406{bottom:5.040000px;}
.y1_c00406{bottom:12.735000px;}
.y3_c00406{bottom:45.405000px;}
.y4_c00406{bottom:53.100000px;}
.y21_c00406{bottom:110.924850px;}
.y20_c00406{bottom:146.924850px;}
.y1f_c00406{bottom:182.924850px;}
.y1e_c00406{bottom:218.924850px;}
.y1d_c00406{bottom:254.924850px;}
.y1c_c00406{bottom:290.924850px;}
.y1b_c00406{bottom:326.924850px;}
.y1a_c00406{bottom:362.924850px;}
.y19_c00406{bottom:398.924850px;}
.y18_c00406{bottom:434.924850px;}
.y17_c00406{bottom:470.924850px;}
.y16_c00406{bottom:506.924850px;}
.y15_c00406{bottom:542.924850px;}
.y14_c00406{bottom:578.924850px;}
.y13_c00406{bottom:614.924850px;}
.y12_c00406{bottom:650.924850px;}
.y11_c00406{bottom:686.924850px;}
.y10_c00406{bottom:722.924850px;}
.yf_c00406{bottom:758.924850px;}
.ye_c00406{bottom:794.924850px;}
.yd_c00406{bottom:830.924850px;}
.yc_c00406{bottom:866.924850px;}
.yb_c00406{bottom:902.924850px;}
.ya_c00406{bottom:938.924850px;}
.y9_c00406{bottom:973.485000px;}
.y8_c00406{bottom:1010.924850px;}
.y7_c00406{bottom:1046.924850px;}
.y6_c00406{bottom:1082.924850px;}
.y2_c00406{bottom:1165.365000px;}
.h4_c00406{height:20.880000px;}
.h5_c00406{height:52.291406px;}
.h3_c00406{height:70.664062px;}
.h6_c00406{height:71.225756px;}
.h2_c00406{height:1237.365000px;}
.h0_c00406{height:1262.835000px;}
.h1_c00406{height:1263.000000px;}
.w3_c00406{width:27.000000px;}
.w2_c00406{width:867.465000px;}
.w0_c00406{width:892.935000px;}
.w1_c00406{width:893.250000px;}
.x0_c00406{left:0.000000px;}
.x1_c00406{left:12.735000px;}
.x3_c00406{left:95.394300px;}
.x5_c00406{left:149.400150px;}
.x4_c00406{left:432.855000px;}
.x2_c00406{left:880.050300px;}
@media print{
.v0_c00406{vertical-align:0.000000pt;}
.v1_c00406{vertical-align:26.880533pt;}
.ls3_c00406{letter-spacing:-0.012800pt;}
.ls0_c00406{letter-spacing:0.000000pt;}
.ls1_c00406{letter-spacing:0.051968pt;}
.ls2_c00406{letter-spacing:0.070528pt;}
.ws0_c00406{word-spacing:-16.000000pt;}
.ws2_c00406{word-spacing:-9.350528pt;}
.ws1_c00406{word-spacing:-9.331968pt;}
.ws3_c00406{word-spacing:0.000000pt;}
._0_c00406{width:1.075200pt;}
._8_c00406{width:2.828800pt;}
._2_c00406{width:3.968000pt;}
._3_c00406{width:5.184000pt;}
._4_c00406{width:6.758400pt;}
._a_c00406{width:7.795200pt;}
._6_c00406{width:10.598400pt;}
._7_c00406{width:11.558400pt;}
._1_c00406{width:12.512000pt;}
._9_c00406{width:13.996800pt;}
._5_c00406{width:14.899200pt;}
.fs3_c00406{font-size:37.120000pt;}
.fs2_c00406{font-size:47.360000pt;}
.fs1_c00406{font-size:57.600000pt;}
.fs0_c00406{font-size:64.000000pt;}
.y0_c00406{bottom:0.000000pt;}
.y5_c00406{bottom:4.480000pt;}
.y1_c00406{bottom:11.320000pt;}
.y3_c00406{bottom:40.360000pt;}
.y4_c00406{bottom:47.200000pt;}
.y21_c00406{bottom:98.599867pt;}
.y20_c00406{bottom:130.599867pt;}
.y1f_c00406{bottom:162.599867pt;}
.y1e_c00406{bottom:194.599867pt;}
.y1d_c00406{bottom:226.599867pt;}
.y1c_c00406{bottom:258.599867pt;}
.y1b_c00406{bottom:290.599867pt;}
.y1a_c00406{bottom:322.599867pt;}
.y19_c00406{bottom:354.599867pt;}
.y18_c00406{bottom:386.599867pt;}
.y17_c00406{bottom:418.599867pt;}
.y16_c00406{bottom:450.599867pt;}
.y15_c00406{bottom:482.599867pt;}
.y14_c00406{bottom:514.599867pt;}
.y13_c00406{bottom:546.599867pt;}
.y12_c00406{bottom:578.599867pt;}
.y11_c00406{bottom:610.599867pt;}
.y10_c00406{bottom:642.599867pt;}
.yf_c00406{bottom:674.599867pt;}
.ye_c00406{bottom:706.599867pt;}
.yd_c00406{bottom:738.599867pt;}
.yc_c00406{bottom:770.599867pt;}
.yb_c00406{bottom:802.599867pt;}
.ya_c00406{bottom:834.599867pt;}
.y9_c00406{bottom:865.320000pt;}
.y8_c00406{bottom:898.599867pt;}
.y7_c00406{bottom:930.599867pt;}
.y6_c00406{bottom:962.599867pt;}
.y2_c00406{bottom:1035.880000pt;}
.h4_c00406{height:18.560000pt;}
.h5_c00406{height:46.481250pt;}
.h3_c00406{height:62.812500pt;}
.h6_c00406{height:63.311783pt;}
.h2_c00406{height:1099.880000pt;}
.h0_c00406{height:1122.520000pt;}
.h1_c00406{height:1122.666667pt;}
.w3_c00406{width:24.000000pt;}
.w2_c00406{width:771.080000pt;}
.w0_c00406{width:793.720000pt;}
.w1_c00406{width:794.000000pt;}
.x0_c00406{left:0.000000pt;}
.x1_c00406{left:11.320000pt;}
.x3_c00406{left:84.794933pt;}
.x5_c00406{left:132.800133pt;}
.x4_c00406{left:384.760000pt;}
.x2_c00406{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00407{font-family:ff1_c00407;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00407;src:url('chunks/assets/font_b927c314b824749c30acb389.woff2')format("woff");}.ff2_c00407{font-family:ff2_c00407;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00407;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00407{font-family:ff3_c00407;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00407;src:url('chunks/assets/font_e2a200ede5dff50ea2c892a5.woff2')format("woff");}.ff4_c00407{font-family:ff4_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;}
.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;}
.ls2_c00407{letter-spacing:-0.014400px;}
.ls0_c00407{letter-spacing:0.000000px;}
.ls1_c00407{letter-spacing:0.014400px;}
.sc__c00407{text-shadow:none;}
.sc0_c00407{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00407{-webkit-text-stroke:0px transparent;}
.sc0_c00407{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00407{word-spacing:-18.000000px;}
.ws1_c00407{word-spacing:0.000000px;}
._0_c00407{width:1.353600px;}
._5_c00407{width:2.829600px;}
._6_c00407{width:4.024800px;}
._7_c00407{width:5.212800px;}
._b_c00407{width:6.336000px;}
._3_c00407{width:9.460800px;}
._1_c00407{width:10.728000px;}
._4_c00407{width:11.966400px;}
._2_c00407{width:13.680000px;}
._9_c00407{width:14.788800px;}
._a_c00407{width:21.412800px;}
._8_c00407{width:198.000000px;}
.fc1_c00407{color:transparent;}
.fc0_c00407{color:rgb(0,0,0);}
.fs0_c00407{font-size:64.800000px;}
.fs1_c00407{font-size:72.000000px;}
.y0_c00407{bottom:0.000000px;}
.y5_c00407{bottom:1.440000px;}
.y1_c00407{bottom:12.735000px;}
.y3_c00407{bottom:45.405000px;}
.y4_c00407{bottom:56.700000px;}
.y21_c00407{bottom:110.924850px;}
.y20_c00407{bottom:146.924850px;}
.y1f_c00407{bottom:182.924850px;}
.y1e_c00407{bottom:218.924850px;}
.y1d_c00407{bottom:254.924850px;}
.y1c_c00407{bottom:290.924850px;}
.y1b_c00407{bottom:326.924850px;}
.y1a_c00407{bottom:362.924850px;}
.y19_c00407{bottom:398.924850px;}
.y18_c00407{bottom:434.924850px;}
.y17_c00407{bottom:470.924850px;}
.y16_c00407{bottom:506.924850px;}
.y15_c00407{bottom:542.924850px;}
.y14_c00407{bottom:578.924850px;}
.y13_c00407{bottom:614.924850px;}
.y12_c00407{bottom:650.924850px;}
.y11_c00407{bottom:686.924850px;}
.y10_c00407{bottom:722.924850px;}
.yf_c00407{bottom:758.924850px;}
.ye_c00407{bottom:794.924850px;}
.yd_c00407{bottom:830.924850px;}
.yc_c00407{bottom:866.924850px;}
.yb_c00407{bottom:902.924850px;}
.ya_c00407{bottom:938.924850px;}
.y9_c00407{bottom:974.924850px;}
.y8_c00407{bottom:1010.924850px;}
.y7_c00407{bottom:1046.924850px;}
.y6_c00407{bottom:1082.924850px;}
.y2_c00407{bottom:1165.365000px;}
.h5_c00407{height:17.280000px;}
.h3_c00407{height:43.189453px;}
.h4_c00407{height:70.664062px;}
.h2_c00407{height:1237.365000px;}
.h0_c00407{height:1262.835000px;}
.h1_c00407{height:1263.000000px;}
.w3_c00407{width:47.520000px;}
.w2_c00407{width:867.465000px;}
.w0_c00407{width:892.935000px;}
.w1_c00407{width:893.250000px;}
.x3_c00407{left:-39.599850px;}
.x0_c00407{left:0.000000px;}
.x5_c00407{left:10.237500px;}
.x1_c00407{left:12.735000px;}
.x7_c00407{left:95.400150px;}
.x6_c00407{left:149.400150px;}
.x4_c00407{left:422.775000px;}
.x2_c00407{left:880.050300px;}
@media print{
.v0_c00407{vertical-align:0.000000pt;}
.ls2_c00407{letter-spacing:-0.012800pt;}
.ls0_c00407{letter-spacing:0.000000pt;}
.ls1_c00407{letter-spacing:0.012800pt;}
.ws0_c00407{word-spacing:-16.000000pt;}
.ws1_c00407{word-spacing:0.000000pt;}
._0_c00407{width:1.203200pt;}
._5_c00407{width:2.515200pt;}
._6_c00407{width:3.577600pt;}
._7_c00407{width:4.633600pt;}
._b_c00407{width:5.632000pt;}
._3_c00407{width:8.409600pt;}
._1_c00407{width:9.536000pt;}
._4_c00407{width:10.636800pt;}
._2_c00407{width:12.160000pt;}
._9_c00407{width:13.145600pt;}
._a_c00407{width:19.033600pt;}
._8_c00407{width:176.000000pt;}
.fs0_c00407{font-size:57.600000pt;}
.fs1_c00407{font-size:64.000000pt;}
.y0_c00407{bottom:0.000000pt;}
.y5_c00407{bottom:1.280000pt;}
.y1_c00407{bottom:11.320000pt;}
.y3_c00407{bottom:40.360000pt;}
.y4_c00407{bottom:50.400000pt;}
.y21_c00407{bottom:98.599867pt;}
.y20_c00407{bottom:130.599867pt;}
.y1f_c00407{bottom:162.599867pt;}
.y1e_c00407{bottom:194.599867pt;}
.y1d_c00407{bottom:226.599867pt;}
.y1c_c00407{bottom:258.599867pt;}
.y1b_c00407{bottom:290.599867pt;}
.y1a_c00407{bottom:322.599867pt;}
.y19_c00407{bottom:354.599867pt;}
.y18_c00407{bottom:386.599867pt;}
.y17_c00407{bottom:418.599867pt;}
.y16_c00407{bottom:450.599867pt;}
.y15_c00407{bottom:482.599867pt;}
.y14_c00407{bottom:514.599867pt;}
.y13_c00407{bottom:546.599867pt;}
.y12_c00407{bottom:578.599867pt;}
.y11_c00407{bottom:610.599867pt;}
.y10_c00407{bottom:642.599867pt;}
.yf_c00407{bottom:674.599867pt;}
.ye_c00407{bottom:706.599867pt;}
.yd_c00407{bottom:738.599867pt;}
.yc_c00407{bottom:770.599867pt;}
.yb_c00407{bottom:802.599867pt;}
.ya_c00407{bottom:834.599867pt;}
.y9_c00407{bottom:866.599867pt;}
.y8_c00407{bottom:898.599867pt;}
.y7_c00407{bottom:930.599867pt;}
.y6_c00407{bottom:962.599867pt;}
.y2_c00407{bottom:1035.880000pt;}
.h5_c00407{height:15.360000pt;}
.h3_c00407{height:38.390625pt;}
.h4_c00407{height:62.812500pt;}
.h2_c00407{height:1099.880000pt;}
.h0_c00407{height:1122.520000pt;}
.h1_c00407{height:1122.666667pt;}
.w3_c00407{width:42.240000pt;}
.w2_c00407{width:771.080000pt;}
.w0_c00407{width:793.720000pt;}
.w1_c00407{width:794.000000pt;}
.x3_c00407{left:-35.199867pt;}
.x0_c00407{left:0.000000pt;}
.x5_c00407{left:9.100000pt;}
.x1_c00407{left:11.320000pt;}
.x7_c00407{left:84.800133pt;}
.x6_c00407{left:132.800133pt;}
.x4_c00407{left:375.800000pt;}
.x2_c00407{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3e739e2a7b5f5458c0083361.woff2')format("woff");}.ff1_c00408{font-family:ff1_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:ff2_c00408;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00408{font-family:ff2_c00408;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00408;src:url('chunks/assets/font_0d3ec3fa95c93c1accba94a3.woff2')format("woff");}.ff3_c00408{font-family:ff3_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;}
.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;}
.ls3_c00408{letter-spacing:-0.014400px;}
.ls0_c00408{letter-spacing:0.000000px;}
.ls2_c00408{letter-spacing:0.014400px;}
.ls4_c00408{letter-spacing:0.036000px;}
.ls1_c00408{letter-spacing:3.600000px;}
.sc__c00408{text-shadow:none;}
.sc0_c00408{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00408{-webkit-text-stroke:0px transparent;}
.sc0_c00408{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00408{word-spacing:-18.036000px;}
.ws0_c00408{word-spacing:-18.000000px;}
.ws2_c00408{word-spacing:0.000000px;}
._6_c00408{margin-left:-3.600000px;}
._9_c00408{width:1.022400px;}
._e_c00408{width:2.433600px;}
._5_c00408{width:3.600000px;}
._7_c00408{width:5.392800px;}
._3_c00408{width:7.185600px;}
._8_c00408{width:8.344800px;}
._c_c00408{width:9.669600px;}
._a_c00408{width:11.340000px;}
._f_c00408{width:13.104000px;}
._d_c00408{width:14.313600px;}
._10_c00408{width:15.912000px;}
._4_c00408{width:19.008000px;}
._2_c00408{width:20.210400px;}
._0_c00408{width:21.240000px;}
._1_c00408{width:22.996800px;}
._b_c00408{width:32.270400px;}
.fc1_c00408{color:transparent;}
.fc0_c00408{color:rgb(0,0,0);}
.fs1_c00408{font-size:64.800000px;}
.fs0_c00408{font-size:72.000000px;}
.y0_c00408{bottom:0.000000px;}
.y5_c00408{bottom:5.040000px;}
.y1_c00408{bottom:12.735000px;}
.y3_c00408{bottom:45.405000px;}
.y4_c00408{bottom:53.100000px;}
.y21_c00408{bottom:110.924850px;}
.y20_c00408{bottom:146.924850px;}
.y1f_c00408{bottom:182.924850px;}
.y1e_c00408{bottom:218.924850px;}
.y1d_c00408{bottom:254.924850px;}
.y1c_c00408{bottom:290.924850px;}
.y1b_c00408{bottom:326.924850px;}
.y1a_c00408{bottom:362.924850px;}
.y19_c00408{bottom:398.924850px;}
.y18_c00408{bottom:434.924850px;}
.y17_c00408{bottom:470.924850px;}
.y16_c00408{bottom:506.924850px;}
.y15_c00408{bottom:542.924850px;}
.y14_c00408{bottom:578.924850px;}
.y13_c00408{bottom:614.924850px;}
.y12_c00408{bottom:650.924850px;}
.y11_c00408{bottom:686.924850px;}
.y10_c00408{bottom:722.924850px;}
.yf_c00408{bottom:758.924850px;}
.ye_c00408{bottom:794.924850px;}
.yd_c00408{bottom:830.924850px;}
.yc_c00408{bottom:866.924850px;}
.yb_c00408{bottom:902.924850px;}
.ya_c00408{bottom:938.924850px;}
.y9_c00408{bottom:974.924850px;}
.y8_c00408{bottom:1010.924850px;}
.y7_c00408{bottom:1046.924850px;}
.y6_c00408{bottom:1082.924850px;}
.y2_c00408{bottom:1165.365000px;}
.h4_c00408{height:20.880000px;}
.h3_c00408{height:70.664062px;}
.h2_c00408{height:1237.365000px;}
.h0_c00408{height:1262.835000px;}
.h1_c00408{height:1263.000000px;}
.w3_c00408{width:27.000000px;}
.w2_c00408{width:867.465000px;}
.w0_c00408{width:892.935000px;}
.w1_c00408{width:893.250000px;}
.x0_c00408{left:0.000000px;}
.x1_c00408{left:12.735000px;}
.x3_c00408{left:95.394300px;}
.x5_c00408{left:149.400150px;}
.x4_c00408{left:432.855000px;}
.x2_c00408{left:880.050300px;}
@media print{
.v0_c00408{vertical-align:0.000000pt;}
.ls3_c00408{letter-spacing:-0.012800pt;}
.ls0_c00408{letter-spacing:0.000000pt;}
.ls2_c00408{letter-spacing:0.012800pt;}
.ls4_c00408{letter-spacing:0.032000pt;}
.ls1_c00408{letter-spacing:3.200000pt;}
.ws1_c00408{word-spacing:-16.032000pt;}
.ws0_c00408{word-spacing:-16.000000pt;}
.ws2_c00408{word-spacing:0.000000pt;}
._6_c00408{margin-left:-3.200000pt;}
._9_c00408{width:0.908800pt;}
._e_c00408{width:2.163200pt;}
._5_c00408{width:3.200000pt;}
._7_c00408{width:4.793600pt;}
._3_c00408{width:6.387200pt;}
._8_c00408{width:7.417600pt;}
._c_c00408{width:8.595200pt;}
._a_c00408{width:10.080000pt;}
._f_c00408{width:11.648000pt;}
._d_c00408{width:12.723200pt;}
._10_c00408{width:14.144000pt;}
._4_c00408{width:16.896000pt;}
._2_c00408{width:17.964800pt;}
._0_c00408{width:18.880000pt;}
._1_c00408{width:20.441600pt;}
._b_c00408{width:28.684800pt;}
.fs1_c00408{font-size:57.600000pt;}
.fs0_c00408{font-size:64.000000pt;}
.y0_c00408{bottom:0.000000pt;}
.y5_c00408{bottom:4.480000pt;}
.y1_c00408{bottom:11.320000pt;}
.y3_c00408{bottom:40.360000pt;}
.y4_c00408{bottom:47.200000pt;}
.y21_c00408{bottom:98.599867pt;}
.y20_c00408{bottom:130.599867pt;}
.y1f_c00408{bottom:162.599867pt;}
.y1e_c00408{bottom:194.599867pt;}
.y1d_c00408{bottom:226.599867pt;}
.y1c_c00408{bottom:258.599867pt;}
.y1b_c00408{bottom:290.599867pt;}
.y1a_c00408{bottom:322.599867pt;}
.y19_c00408{bottom:354.599867pt;}
.y18_c00408{bottom:386.599867pt;}
.y17_c00408{bottom:418.599867pt;}
.y16_c00408{bottom:450.599867pt;}
.y15_c00408{bottom:482.599867pt;}
.y14_c00408{bottom:514.599867pt;}
.y13_c00408{bottom:546.599867pt;}
.y12_c00408{bottom:578.599867pt;}
.y11_c00408{bottom:610.599867pt;}
.y10_c00408{bottom:642.599867pt;}
.yf_c00408{bottom:674.599867pt;}
.ye_c00408{bottom:706.599867pt;}
.yd_c00408{bottom:738.599867pt;}
.yc_c00408{bottom:770.599867pt;}
.yb_c00408{bottom:802.599867pt;}
.ya_c00408{bottom:834.599867pt;}
.y9_c00408{bottom:866.599867pt;}
.y8_c00408{bottom:898.599867pt;}
.y7_c00408{bottom:930.599867pt;}
.y6_c00408{bottom:962.599867pt;}
.y2_c00408{bottom:1035.880000pt;}
.h4_c00408{height:18.560000pt;}
.h3_c00408{height:62.812500pt;}
.h2_c00408{height:1099.880000pt;}
.h0_c00408{height:1122.520000pt;}
.h1_c00408{height:1122.666667pt;}
.w3_c00408{width:24.000000pt;}
.w2_c00408{width:771.080000pt;}
.w0_c00408{width:793.720000pt;}
.w1_c00408{width:794.000000pt;}
.x0_c00408{left:0.000000pt;}
.x1_c00408{left:11.320000pt;}
.x3_c00408{left:84.794933pt;}
.x5_c00408{left:132.800133pt;}
.x4_c00408{left:384.760000pt;}
.x2_c00408{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00409{font-family:ff1_c00409;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00409;src:url('chunks/assets/font_6a6983e93ed6aaa02623c9f9.woff2')format("woff");}.ff2_c00409{font-family:ff2_c00409;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00409;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00409{font-family:ff3_c00409;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00409;src:url('chunks/assets/font_0924f9f1cf0852a30dc603f7.woff2')format("woff");}.ff4_c00409{font-family:ff4_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;}
.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;}
.ls4_c00409{letter-spacing:-0.014400px;}
.ls1_c00409{letter-spacing:0.000000px;}
.ls0_c00409{letter-spacing:0.014400px;}
.ls3_c00409{letter-spacing:0.604800px;}
.ls2_c00409{letter-spacing:1.749600px;}
.sc__c00409{text-shadow:none;}
.sc0_c00409{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00409{-webkit-text-stroke:0px transparent;}
.sc0_c00409{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00409{word-spacing:-18.014400px;}
.ws0_c00409{word-spacing:-18.000000px;}
.ws2_c00409{word-spacing:0.000000px;}
._3_c00409{margin-left:-1.173600px;}
._0_c00409{width:1.015200px;}
._2_c00409{width:2.469600px;}
._5_c00409{width:4.140000px;}
._7_c00409{width:5.716800px;}
._6_c00409{width:6.811200px;}
._9_c00409{width:8.524800px;}
._1_c00409{width:9.568800px;}
._a_c00409{width:13.924800px;}
._b_c00409{width:15.681600px;}
._4_c00409{width:16.804800px;}
._8_c00409{width:30.124800px;}
.fc1_c00409{color:transparent;}
.fc0_c00409{color:rgb(0,0,0);}
.fs0_c00409{font-size:64.800000px;}
.fs1_c00409{font-size:72.000000px;}
.y0_c00409{bottom:0.000000px;}
.y5_c00409{bottom:1.440000px;}
.y1_c00409{bottom:12.735000px;}
.y3_c00409{bottom:45.405000px;}
.y4_c00409{bottom:56.700000px;}
.y20_c00409{bottom:146.924850px;}
.y1f_c00409{bottom:182.924850px;}
.y1e_c00409{bottom:218.924850px;}
.y1d_c00409{bottom:254.924850px;}
.y1c_c00409{bottom:290.924850px;}
.y1b_c00409{bottom:326.924850px;}
.y1a_c00409{bottom:362.924850px;}
.y19_c00409{bottom:398.924850px;}
.y18_c00409{bottom:434.924850px;}
.y17_c00409{bottom:470.924850px;}
.y16_c00409{bottom:506.924850px;}
.y15_c00409{bottom:542.924850px;}
.y14_c00409{bottom:578.924850px;}
.y13_c00409{bottom:614.924850px;}
.y12_c00409{bottom:650.924850px;}
.y11_c00409{bottom:686.924850px;}
.y10_c00409{bottom:722.924850px;}
.yf_c00409{bottom:758.924850px;}
.ye_c00409{bottom:794.924850px;}
.yd_c00409{bottom:830.924850px;}
.yc_c00409{bottom:866.924850px;}
.yb_c00409{bottom:902.924850px;}
.ya_c00409{bottom:938.924850px;}
.y9_c00409{bottom:974.924850px;}
.y8_c00409{bottom:1010.924850px;}
.y7_c00409{bottom:1046.924850px;}
.y6_c00409{bottom:1082.924850px;}
.y2_c00409{bottom:1165.365000px;}
.h5_c00409{height:17.280000px;}
.h3_c00409{height:43.189453px;}
.h6_c00409{height:70.628906px;}
.h4_c00409{height:70.664062px;}
.h2_c00409{height:1237.365000px;}
.h0_c00409{height:1262.835000px;}
.h1_c00409{height:1263.000000px;}
.w3_c00409{width:47.520000px;}
.w2_c00409{width:867.465000px;}
.w0_c00409{width:892.935000px;}
.w1_c00409{width:893.250000px;}
.x3_c00409{left:-39.599850px;}
.x0_c00409{left:0.000000px;}
.x5_c00409{left:10.237500px;}
.x1_c00409{left:12.735000px;}
.x6_c00409{left:95.400150px;}
.x7_c00409{left:149.418150px;}
.x4_c00409{left:422.775000px;}
.x2_c00409{left:880.050300px;}
@media print{
.v0_c00409{vertical-align:0.000000pt;}
.ls4_c00409{letter-spacing:-0.012800pt;}
.ls1_c00409{letter-spacing:0.000000pt;}
.ls0_c00409{letter-spacing:0.012800pt;}
.ls3_c00409{letter-spacing:0.537600pt;}
.ls2_c00409{letter-spacing:1.555200pt;}
.ws1_c00409{word-spacing:-16.012800pt;}
.ws0_c00409{word-spacing:-16.000000pt;}
.ws2_c00409{word-spacing:0.000000pt;}
._3_c00409{margin-left:-1.043200pt;}
._0_c00409{width:0.902400pt;}
._2_c00409{width:2.195200pt;}
._5_c00409{width:3.680000pt;}
._7_c00409{width:5.081600pt;}
._6_c00409{width:6.054400pt;}
._9_c00409{width:7.577600pt;}
._1_c00409{width:8.505600pt;}
._a_c00409{width:12.377600pt;}
._b_c00409{width:13.939200pt;}
._4_c00409{width:14.937600pt;}
._8_c00409{width:26.777600pt;}
.fs0_c00409{font-size:57.600000pt;}
.fs1_c00409{font-size:64.000000pt;}
.y0_c00409{bottom:0.000000pt;}
.y5_c00409{bottom:1.280000pt;}
.y1_c00409{bottom:11.320000pt;}
.y3_c00409{bottom:40.360000pt;}
.y4_c00409{bottom:50.400000pt;}
.y20_c00409{bottom:130.599867pt;}
.y1f_c00409{bottom:162.599867pt;}
.y1e_c00409{bottom:194.599867pt;}
.y1d_c00409{bottom:226.599867pt;}
.y1c_c00409{bottom:258.599867pt;}
.y1b_c00409{bottom:290.599867pt;}
.y1a_c00409{bottom:322.599867pt;}
.y19_c00409{bottom:354.599867pt;}
.y18_c00409{bottom:386.599867pt;}
.y17_c00409{bottom:418.599867pt;}
.y16_c00409{bottom:450.599867pt;}
.y15_c00409{bottom:482.599867pt;}
.y14_c00409{bottom:514.599867pt;}
.y13_c00409{bottom:546.599867pt;}
.y12_c00409{bottom:578.599867pt;}
.y11_c00409{bottom:610.599867pt;}
.y10_c00409{bottom:642.599867pt;}
.yf_c00409{bottom:674.599867pt;}
.ye_c00409{bottom:706.599867pt;}
.yd_c00409{bottom:738.599867pt;}
.yc_c00409{bottom:770.599867pt;}
.yb_c00409{bottom:802.599867pt;}
.ya_c00409{bottom:834.599867pt;}
.y9_c00409{bottom:866.599867pt;}
.y8_c00409{bottom:898.599867pt;}
.y7_c00409{bottom:930.599867pt;}
.y6_c00409{bottom:962.599867pt;}
.y2_c00409{bottom:1035.880000pt;}
.h5_c00409{height:15.360000pt;}
.h3_c00409{height:38.390625pt;}
.h6_c00409{height:62.781250pt;}
.h4_c00409{height:62.812500pt;}
.h2_c00409{height:1099.880000pt;}
.h0_c00409{height:1122.520000pt;}
.h1_c00409{height:1122.666667pt;}
.w3_c00409{width:42.240000pt;}
.w2_c00409{width:771.080000pt;}
.w0_c00409{width:793.720000pt;}
.w1_c00409{width:794.000000pt;}
.x3_c00409{left:-35.199867pt;}
.x0_c00409{left:0.000000pt;}
.x5_c00409{left:9.100000pt;}
.x1_c00409{left:11.320000pt;}
.x6_c00409{left:84.800133pt;}
.x7_c00409{left:132.816133pt;}
.x4_c00409{left:375.800000pt;}
.x2_c00409{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_6d5278df31ed52e64f0a6083.woff2')format("woff");}.ff1_c00410{font-family:ff1_c00410;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00410;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00410{font-family:ff2_c00410;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00410;src:url('chunks/assets/font_9fc9bc59b2cd5d4a0e60580c.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;}
.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;}
.ls7_c00410{letter-spacing:-0.014400px;}
.ls3_c00410{letter-spacing:0.000000px;}
.ls0_c00410{letter-spacing:0.014400px;}
.ls6_c00410{letter-spacing:0.021600px;}
.ls5_c00410{letter-spacing:0.036000px;}
.ls1_c00410{letter-spacing:1.984800px;}
.ls4_c00410{letter-spacing:3.304800px;}
.ls2_c00410{letter-spacing:12.146400px;}
.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;}
}
.ws2_c00410{word-spacing:-18.036000px;}
.ws3_c00410{word-spacing:-18.021600px;}
.ws1_c00410{word-spacing:-18.014400px;}
.ws0_c00410{word-spacing:-18.000000px;}
.ws4_c00410{word-spacing:0.000000px;}
._a_c00410{margin-left:-3.340800px;}
._4_c00410{width:1.807200px;}
._9_c00410{width:3.304800px;}
._d_c00410{width:5.162400px;}
._3_c00410{width:8.244000px;}
._c_c00410{width:9.763200px;}
._8_c00410{width:10.857600px;}
._5_c00410{width:11.966400px;}
._7_c00410{width:13.233600px;}
._b_c00410{width:14.428800px;}
._0_c00410{width:19.123200px;}
._6_c00410{width:21.045600px;}
._2_c00410{width:22.240800px;}
._1_c00410{width:36.756000px;}
.fc1_c00410{color:transparent;}
.fc0_c00410{color:rgb(0,0,0);}
.fs2_c00410{font-size:53.280000px;}
.fs1_c00410{font-size:64.800000px;}
.fs0_c00410{font-size:72.000000px;}
.y0_c00410{bottom:0.000000px;}
.y5_c00410{bottom:5.040000px;}
.y1_c00410{bottom:12.735000px;}
.y3_c00410{bottom:45.405000px;}
.y4_c00410{bottom:53.100000px;}
.y21_c00410{bottom:110.924850px;}
.y20_c00410{bottom:146.924850px;}
.y1f_c00410{bottom:182.924850px;}
.y1e_c00410{bottom:218.924850px;}
.y1d_c00410{bottom:254.924850px;}
.y1c_c00410{bottom:290.924850px;}
.y1b_c00410{bottom:326.924850px;}
.y1a_c00410{bottom:362.924850px;}
.y19_c00410{bottom:398.924850px;}
.y18_c00410{bottom:434.924850px;}
.y17_c00410{bottom:470.924850px;}
.y16_c00410{bottom:506.924850px;}
.y15_c00410{bottom:542.924850px;}
.y14_c00410{bottom:578.924850px;}
.y13_c00410{bottom:614.924850px;}
.y12_c00410{bottom:650.924850px;}
.y11_c00410{bottom:686.924850px;}
.y10_c00410{bottom:722.924850px;}
.yf_c00410{bottom:758.924850px;}
.ye_c00410{bottom:794.924850px;}
.yd_c00410{bottom:830.924850px;}
.yc_c00410{bottom:866.924850px;}
.yb_c00410{bottom:902.924850px;}
.ya_c00410{bottom:938.924850px;}
.y9_c00410{bottom:974.924850px;}
.y8_c00410{bottom:1010.924850px;}
.y7_c00410{bottom:1046.924850px;}
.y6_c00410{bottom:1082.924850px;}
.y2_c00410{bottom:1165.365000px;}
.h4_c00410{height:20.880000px;}
.h5_c00410{height:70.628906px;}
.h3_c00410{height:70.664062px;}
.h2_c00410{height:1237.365000px;}
.h0_c00410{height:1262.835000px;}
.h1_c00410{height:1263.000000px;}
.w3_c00410{width:27.000000px;}
.w2_c00410{width:867.465000px;}
.w0_c00410{width:892.935000px;}
.w1_c00410{width:893.250000px;}
.x0_c00410{left:0.000000px;}
.x1_c00410{left:12.735000px;}
.x3_c00410{left:95.394300px;}
.x5_c00410{left:149.400150px;}
.x4_c00410{left:432.855000px;}
.x2_c00410{left:880.050300px;}
@media print{
.v0_c00410{vertical-align:0.000000pt;}
.ls7_c00410{letter-spacing:-0.012800pt;}
.ls3_c00410{letter-spacing:0.000000pt;}
.ls0_c00410{letter-spacing:0.012800pt;}
.ls6_c00410{letter-spacing:0.019200pt;}
.ls5_c00410{letter-spacing:0.032000pt;}
.ls1_c00410{letter-spacing:1.764267pt;}
.ls4_c00410{letter-spacing:2.937600pt;}
.ls2_c00410{letter-spacing:10.796800pt;}
.ws2_c00410{word-spacing:-16.032000pt;}
.ws3_c00410{word-spacing:-16.019200pt;}
.ws1_c00410{word-spacing:-16.012800pt;}
.ws0_c00410{word-spacing:-16.000000pt;}
.ws4_c00410{word-spacing:0.000000pt;}
._a_c00410{margin-left:-2.969600pt;}
._4_c00410{width:1.606400pt;}
._9_c00410{width:2.937600pt;}
._d_c00410{width:4.588800pt;}
._3_c00410{width:7.328000pt;}
._c_c00410{width:8.678400pt;}
._8_c00410{width:9.651200pt;}
._5_c00410{width:10.636800pt;}
._7_c00410{width:11.763200pt;}
._b_c00410{width:12.825600pt;}
._0_c00410{width:16.998400pt;}
._6_c00410{width:18.707200pt;}
._2_c00410{width:19.769600pt;}
._1_c00410{width:32.672000pt;}
.fs2_c00410{font-size:47.360000pt;}
.fs1_c00410{font-size:57.600000pt;}
.fs0_c00410{font-size:64.000000pt;}
.y0_c00410{bottom:0.000000pt;}
.y5_c00410{bottom:4.480000pt;}
.y1_c00410{bottom:11.320000pt;}
.y3_c00410{bottom:40.360000pt;}
.y4_c00410{bottom:47.200000pt;}
.y21_c00410{bottom:98.599867pt;}
.y20_c00410{bottom:130.599867pt;}
.y1f_c00410{bottom:162.599867pt;}
.y1e_c00410{bottom:194.599867pt;}
.y1d_c00410{bottom:226.599867pt;}
.y1c_c00410{bottom:258.599867pt;}
.y1b_c00410{bottom:290.599867pt;}
.y1a_c00410{bottom:322.599867pt;}
.y19_c00410{bottom:354.599867pt;}
.y18_c00410{bottom:386.599867pt;}
.y17_c00410{bottom:418.599867pt;}
.y16_c00410{bottom:450.599867pt;}
.y15_c00410{bottom:482.599867pt;}
.y14_c00410{bottom:514.599867pt;}
.y13_c00410{bottom:546.599867pt;}
.y12_c00410{bottom:578.599867pt;}
.y11_c00410{bottom:610.599867pt;}
.y10_c00410{bottom:642.599867pt;}
.yf_c00410{bottom:674.599867pt;}
.ye_c00410{bottom:706.599867pt;}
.yd_c00410{bottom:738.599867pt;}
.yc_c00410{bottom:770.599867pt;}
.yb_c00410{bottom:802.599867pt;}
.ya_c00410{bottom:834.599867pt;}
.y9_c00410{bottom:866.599867pt;}
.y8_c00410{bottom:898.599867pt;}
.y7_c00410{bottom:930.599867pt;}
.y6_c00410{bottom:962.599867pt;}
.y2_c00410{bottom:1035.880000pt;}
.h4_c00410{height:18.560000pt;}
.h5_c00410{height:62.781250pt;}
.h3_c00410{height:62.812500pt;}
.h2_c00410{height:1099.880000pt;}
.h0_c00410{height:1122.520000pt;}
.h1_c00410{height:1122.666667pt;}
.w3_c00410{width:24.000000pt;}
.w2_c00410{width:771.080000pt;}
.w0_c00410{width:793.720000pt;}
.w1_c00410{width:794.000000pt;}
.x0_c00410{left:0.000000pt;}
.x1_c00410{left:11.320000pt;}
.x3_c00410{left:84.794933pt;}
.x5_c00410{left:132.800133pt;}
.x4_c00410{left:384.760000pt;}
.x2_c00410{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00411{font-family:ff1_c00411;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00411;src:url('chunks/assets/font_d9d4ac2188bcc36ea9a08553.woff2')format("woff");}.ff2_c00411{font-family:ff2_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:ff3_c00411;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00411{font-family:ff3_c00411;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00411;src:url('chunks/assets/font_e012c41463c762ed78445cca.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;}
.m0_c00411{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00411{vertical-align:0.000000px;}
.ls3_c00411{letter-spacing:-0.014400px;}
.ls1_c00411{letter-spacing:0.000000px;}
.ls0_c00411{letter-spacing:0.036000px;}
.ls2_c00411{letter-spacing:9.338400px;}
.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;}
}
.ws1_c00411{word-spacing:-18.036000px;}
.ws0_c00411{word-spacing:-18.000000px;}
.ws2_c00411{word-spacing:0.000000px;}
._8_c00411{margin-left:-8.604000px;}
._4_c00411{width:1.454400px;}
._5_c00411{width:3.362400px;}
._7_c00411{width:4.600800px;}
._2_c00411{width:6.336000px;}
._9_c00411{width:7.502400px;}
._0_c00411{width:8.956800px;}
._3_c00411{width:10.346400px;}
._6_c00411{width:11.829600px;}
._b_c00411{width:13.060800px;}
._1_c00411{width:19.080000px;}
._a_c00411{width:22.233600px;}
.fc1_c00411{color:transparent;}
.fc0_c00411{color:rgb(0,0,0);}
.fs0_c00411{font-size:64.800000px;}
.fs1_c00411{font-size:72.000000px;}
.y0_c00411{bottom:0.000000px;}
.y5_c00411{bottom:1.440000px;}
.y1_c00411{bottom:12.735000px;}
.y3_c00411{bottom:45.405000px;}
.y4_c00411{bottom:56.700000px;}
.y21_c00411{bottom:110.924850px;}
.y20_c00411{bottom:146.924850px;}
.y1f_c00411{bottom:182.924850px;}
.y1e_c00411{bottom:218.924850px;}
.y1d_c00411{bottom:254.924850px;}
.y1c_c00411{bottom:290.924850px;}
.y1b_c00411{bottom:326.924850px;}
.y1a_c00411{bottom:362.924850px;}
.y19_c00411{bottom:398.924850px;}
.y18_c00411{bottom:434.924850px;}
.y17_c00411{bottom:470.924850px;}
.y16_c00411{bottom:506.924850px;}
.y15_c00411{bottom:542.924850px;}
.y14_c00411{bottom:578.924850px;}
.y13_c00411{bottom:614.924850px;}
.y12_c00411{bottom:650.924850px;}
.y11_c00411{bottom:686.924850px;}
.y10_c00411{bottom:722.924850px;}
.yf_c00411{bottom:758.924850px;}
.ye_c00411{bottom:794.924850px;}
.yd_c00411{bottom:830.924850px;}
.yc_c00411{bottom:866.924850px;}
.yb_c00411{bottom:902.924850px;}
.ya_c00411{bottom:938.924850px;}
.y9_c00411{bottom:974.924850px;}
.y8_c00411{bottom:1010.924850px;}
.y7_c00411{bottom:1046.924850px;}
.y6_c00411{bottom:1082.924850px;}
.y2_c00411{bottom:1165.365000px;}
.h5_c00411{height:17.280000px;}
.h3_c00411{height:43.189453px;}
.h4_c00411{height:70.664062px;}
.h2_c00411{height:1237.365000px;}
.h0_c00411{height:1262.835000px;}
.h1_c00411{height:1263.000000px;}
.w3_c00411{width:47.520000px;}
.w2_c00411{width:867.465000px;}
.w0_c00411{width:892.935000px;}
.w1_c00411{width:893.250000px;}
.x3_c00411{left:-39.599850px;}
.x0_c00411{left:0.000000px;}
.x5_c00411{left:10.237500px;}
.x1_c00411{left:12.735000px;}
.x6_c00411{left:95.400150px;}
.x7_c00411{left:149.400150px;}
.x4_c00411{left:422.775000px;}
.x2_c00411{left:880.050300px;}
@media print{
.v0_c00411{vertical-align:0.000000pt;}
.ls3_c00411{letter-spacing:-0.012800pt;}
.ls1_c00411{letter-spacing:0.000000pt;}
.ls0_c00411{letter-spacing:0.032000pt;}
.ls2_c00411{letter-spacing:8.300800pt;}
.ws1_c00411{word-spacing:-16.032000pt;}
.ws0_c00411{word-spacing:-16.000000pt;}
.ws2_c00411{word-spacing:0.000000pt;}
._8_c00411{margin-left:-7.648000pt;}
._4_c00411{width:1.292800pt;}
._5_c00411{width:2.988800pt;}
._7_c00411{width:4.089600pt;}
._2_c00411{width:5.632000pt;}
._9_c00411{width:6.668800pt;}
._0_c00411{width:7.961600pt;}
._3_c00411{width:9.196800pt;}
._6_c00411{width:10.515200pt;}
._b_c00411{width:11.609600pt;}
._1_c00411{width:16.960000pt;}
._a_c00411{width:19.763200pt;}
.fs0_c00411{font-size:57.600000pt;}
.fs1_c00411{font-size:64.000000pt;}
.y0_c00411{bottom:0.000000pt;}
.y5_c00411{bottom:1.280000pt;}
.y1_c00411{bottom:11.320000pt;}
.y3_c00411{bottom:40.360000pt;}
.y4_c00411{bottom:50.400000pt;}
.y21_c00411{bottom:98.599867pt;}
.y20_c00411{bottom:130.599867pt;}
.y1f_c00411{bottom:162.599867pt;}
.y1e_c00411{bottom:194.599867pt;}
.y1d_c00411{bottom:226.599867pt;}
.y1c_c00411{bottom:258.599867pt;}
.y1b_c00411{bottom:290.599867pt;}
.y1a_c00411{bottom:322.599867pt;}
.y19_c00411{bottom:354.599867pt;}
.y18_c00411{bottom:386.599867pt;}
.y17_c00411{bottom:418.599867pt;}
.y16_c00411{bottom:450.599867pt;}
.y15_c00411{bottom:482.599867pt;}
.y14_c00411{bottom:514.599867pt;}
.y13_c00411{bottom:546.599867pt;}
.y12_c00411{bottom:578.599867pt;}
.y11_c00411{bottom:610.599867pt;}
.y10_c00411{bottom:642.599867pt;}
.yf_c00411{bottom:674.599867pt;}
.ye_c00411{bottom:706.599867pt;}
.yd_c00411{bottom:738.599867pt;}
.yc_c00411{bottom:770.599867pt;}
.yb_c00411{bottom:802.599867pt;}
.ya_c00411{bottom:834.599867pt;}
.y9_c00411{bottom:866.599867pt;}
.y8_c00411{bottom:898.599867pt;}
.y7_c00411{bottom:930.599867pt;}
.y6_c00411{bottom:962.599867pt;}
.y2_c00411{bottom:1035.880000pt;}
.h5_c00411{height:15.360000pt;}
.h3_c00411{height:38.390625pt;}
.h4_c00411{height:62.812500pt;}
.h2_c00411{height:1099.880000pt;}
.h0_c00411{height:1122.520000pt;}
.h1_c00411{height:1122.666667pt;}
.w3_c00411{width:42.240000pt;}
.w2_c00411{width:771.080000pt;}
.w0_c00411{width:793.720000pt;}
.w1_c00411{width:794.000000pt;}
.x3_c00411{left:-35.199867pt;}
.x0_c00411{left:0.000000pt;}
.x5_c00411{left:9.100000pt;}
.x1_c00411{left:11.320000pt;}
.x6_c00411{left:84.800133pt;}
.x7_c00411{left:132.800133pt;}
.x4_c00411{left:375.800000pt;}
.x2_c00411{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1296b548fc9f1bb5a18f1bbe.woff2')format("woff");}.ff1_c00412{font-family:ff1_c00412;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00412;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00412{font-family:ff2_c00412;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00412{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00412{vertical-align:0.000000px;}
.ls2_c00412{letter-spacing:-0.014400px;}
.ls0_c00412{letter-spacing:0.000000px;}
.ls3_c00412{letter-spacing:0.036000px;}
.ls1_c00412{letter-spacing:10.065600px;}
.sc__c00412{text-shadow:none;}
.sc0_c00412{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00412{-webkit-text-stroke:0px transparent;}
.sc0_c00412{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00412{word-spacing:-18.036000px;}
.ws0_c00412{word-spacing:-18.000000px;}
.ws2_c00412{word-spacing:0.000000px;}
._5_c00412{margin-left:-10.972800px;}
._e_c00412{margin-left:-1.051200px;}
._1_c00412{width:1.778400px;}
._2_c00412{width:3.045600px;}
._a_c00412{width:4.550400px;}
._3_c00412{width:5.616000px;}
._d_c00412{width:7.228800px;}
._6_c00412{width:9.259200px;}
._0_c00412{width:10.468800px;}
._f_c00412{width:11.613600px;}
._b_c00412{width:13.744800px;}
._10_c00412{width:15.631200px;}
._c_c00412{width:16.790400px;}
._4_c00412{width:20.786400px;}
._9_c00412{width:21.801600px;}
._7_c00412{width:26.690400px;}
._8_c00412{width:33.480000px;}
.fc1_c00412{color:transparent;}
.fc0_c00412{color:rgb(0,0,0);}
.fs1_c00412{font-size:64.800000px;}
.fs0_c00412{font-size:72.000000px;}
.y0_c00412{bottom:0.000000px;}
.y5_c00412{bottom:5.040000px;}
.y1_c00412{bottom:12.735000px;}
.y3_c00412{bottom:45.405000px;}
.y4_c00412{bottom:53.100000px;}
.y20_c00412{bottom:146.924850px;}
.y1f_c00412{bottom:182.924850px;}
.y1e_c00412{bottom:218.924850px;}
.y1d_c00412{bottom:254.924850px;}
.y1c_c00412{bottom:290.924850px;}
.y1b_c00412{bottom:326.924850px;}
.y1a_c00412{bottom:362.924850px;}
.y19_c00412{bottom:398.924850px;}
.y18_c00412{bottom:434.924850px;}
.y17_c00412{bottom:470.924850px;}
.y16_c00412{bottom:506.924850px;}
.y15_c00412{bottom:542.924850px;}
.y14_c00412{bottom:578.924850px;}
.y13_c00412{bottom:614.924850px;}
.y12_c00412{bottom:650.924850px;}
.y11_c00412{bottom:686.924850px;}
.y10_c00412{bottom:722.924850px;}
.yf_c00412{bottom:758.924850px;}
.ye_c00412{bottom:794.924850px;}
.yd_c00412{bottom:830.924850px;}
.yc_c00412{bottom:866.924850px;}
.yb_c00412{bottom:902.924850px;}
.ya_c00412{bottom:938.924850px;}
.y9_c00412{bottom:974.924850px;}
.y8_c00412{bottom:1010.924850px;}
.y7_c00412{bottom:1046.924850px;}
.y6_c00412{bottom:1082.924850px;}
.y2_c00412{bottom:1165.365000px;}
.h4_c00412{height:20.880000px;}
.h3_c00412{height:70.664062px;}
.h2_c00412{height:1237.365000px;}
.h0_c00412{height:1262.835000px;}
.h1_c00412{height:1263.000000px;}
.w3_c00412{width:27.000000px;}
.w2_c00412{width:867.465000px;}
.w0_c00412{width:892.935000px;}
.w1_c00412{width:893.250000px;}
.x0_c00412{left:0.000000px;}
.x1_c00412{left:12.735000px;}
.x3_c00412{left:95.394300px;}
.x5_c00412{left:149.400150px;}
.x4_c00412{left:432.855000px;}
.x2_c00412{left:880.050300px;}
@media print{
.v0_c00412{vertical-align:0.000000pt;}
.ls2_c00412{letter-spacing:-0.012800pt;}
.ls0_c00412{letter-spacing:0.000000pt;}
.ls3_c00412{letter-spacing:0.032000pt;}
.ls1_c00412{letter-spacing:8.947200pt;}
.ws1_c00412{word-spacing:-16.032000pt;}
.ws0_c00412{word-spacing:-16.000000pt;}
.ws2_c00412{word-spacing:0.000000pt;}
._5_c00412{margin-left:-9.753600pt;}
._e_c00412{margin-left:-0.934400pt;}
._1_c00412{width:1.580800pt;}
._2_c00412{width:2.707200pt;}
._a_c00412{width:4.044800pt;}
._3_c00412{width:4.992000pt;}
._d_c00412{width:6.425600pt;}
._6_c00412{width:8.230400pt;}
._0_c00412{width:9.305600pt;}
._f_c00412{width:10.323200pt;}
._b_c00412{width:12.217600pt;}
._10_c00412{width:13.894400pt;}
._c_c00412{width:14.924800pt;}
._4_c00412{width:18.476800pt;}
._9_c00412{width:19.379200pt;}
._7_c00412{width:23.724800pt;}
._8_c00412{width:29.760000pt;}
.fs1_c00412{font-size:57.600000pt;}
.fs0_c00412{font-size:64.000000pt;}
.y0_c00412{bottom:0.000000pt;}
.y5_c00412{bottom:4.480000pt;}
.y1_c00412{bottom:11.320000pt;}
.y3_c00412{bottom:40.360000pt;}
.y4_c00412{bottom:47.200000pt;}
.y20_c00412{bottom:130.599867pt;}
.y1f_c00412{bottom:162.599867pt;}
.y1e_c00412{bottom:194.599867pt;}
.y1d_c00412{bottom:226.599867pt;}
.y1c_c00412{bottom:258.599867pt;}
.y1b_c00412{bottom:290.599867pt;}
.y1a_c00412{bottom:322.599867pt;}
.y19_c00412{bottom:354.599867pt;}
.y18_c00412{bottom:386.599867pt;}
.y17_c00412{bottom:418.599867pt;}
.y16_c00412{bottom:450.599867pt;}
.y15_c00412{bottom:482.599867pt;}
.y14_c00412{bottom:514.599867pt;}
.y13_c00412{bottom:546.599867pt;}
.y12_c00412{bottom:578.599867pt;}
.y11_c00412{bottom:610.599867pt;}
.y10_c00412{bottom:642.599867pt;}
.yf_c00412{bottom:674.599867pt;}
.ye_c00412{bottom:706.599867pt;}
.yd_c00412{bottom:738.599867pt;}
.yc_c00412{bottom:770.599867pt;}
.yb_c00412{bottom:802.599867pt;}
.ya_c00412{bottom:834.599867pt;}
.y9_c00412{bottom:866.599867pt;}
.y8_c00412{bottom:898.599867pt;}
.y7_c00412{bottom:930.599867pt;}
.y6_c00412{bottom:962.599867pt;}
.y2_c00412{bottom:1035.880000pt;}
.h4_c00412{height:18.560000pt;}
.h3_c00412{height:62.812500pt;}
.h2_c00412{height:1099.880000pt;}
.h0_c00412{height:1122.520000pt;}
.h1_c00412{height:1122.666667pt;}
.w3_c00412{width:24.000000pt;}
.w2_c00412{width:771.080000pt;}
.w0_c00412{width:793.720000pt;}
.w1_c00412{width:794.000000pt;}
.x0_c00412{left:0.000000pt;}
.x1_c00412{left:11.320000pt;}
.x3_c00412{left:84.794933pt;}
.x5_c00412{left:132.800133pt;}
.x4_c00412{left:384.760000pt;}
.x2_c00412{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00413{font-family:ff1_c00413;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00413;src:url('chunks/assets/font_7fde72bef421dcc7c5cc9ab2.woff2')format("woff");}.ff2_c00413{font-family:ff2_c00413;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00413;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00413{font-family:ff3_c00413;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00413;src:url('chunks/assets/font_ba672a6a6371d62116bcb5e2.woff2')format("woff");}.ff4_c00413{font-family:ff4_c00413;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00413{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00413{vertical-align:0.000000px;}
.v1_c00413{vertical-align:30.240600px;}
.ls2_c00413{letter-spacing:-0.014400px;}
.ls1_c00413{letter-spacing:0.000000px;}
.ls0_c00413{letter-spacing:0.014400px;}
.ls3_c00413{letter-spacing:0.058464px;}
.ls4_c00413{letter-spacing:11.613600px;}
.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:-18.014400px;}
.ws0_c00413{word-spacing:-18.000000px;}
.ws1_c00413{word-spacing:-10.498464px;}
.ws3_c00413{word-spacing:0.000000px;}
._9_c00413{margin-left:-11.224992px;}
._a_c00413{width:1.144800px;}
._3_c00413{width:2.880000px;}
._0_c00413{width:4.464000px;}
._4_c00413{width:5.536800px;}
._2_c00413{width:6.991200px;}
._1_c00413{width:8.971200px;}
._6_c00413{width:10.049088px;}
._5_c00413{width:11.073792px;}
._8_c00413{width:12.203808px;}
._7_c00413{width:15.062400px;}
.fc2_c00413{color:transparent;}
.fc1_c00413{color:rgb(255,0,0);}
.fc0_c00413{color:rgb(0,0,0);}
.fs2_c00413{font-size:41.760000px;}
.fs0_c00413{font-size:64.800000px;}
.fs1_c00413{font-size:72.000000px;}
.y0_c00413{bottom:0.000000px;}
.y5_c00413{bottom:1.440000px;}
.y1_c00413{bottom:12.735000px;}
.y3_c00413{bottom:45.405000px;}
.y4_c00413{bottom:56.700000px;}
.y20_c00413{bottom:146.924850px;}
.y1f_c00413{bottom:182.924850px;}
.y1e_c00413{bottom:218.924850px;}
.y1d_c00413{bottom:254.924850px;}
.y1c_c00413{bottom:290.924850px;}
.y1b_c00413{bottom:326.924850px;}
.y1a_c00413{bottom:362.924850px;}
.y19_c00413{bottom:398.924850px;}
.y18_c00413{bottom:434.924850px;}
.y17_c00413{bottom:470.924850px;}
.y16_c00413{bottom:506.924850px;}
.y15_c00413{bottom:542.924850px;}
.y14_c00413{bottom:578.924850px;}
.y13_c00413{bottom:614.924850px;}
.y12_c00413{bottom:650.924850px;}
.y11_c00413{bottom:686.924850px;}
.y10_c00413{bottom:722.924850px;}
.yf_c00413{bottom:758.924850px;}
.ye_c00413{bottom:794.924850px;}
.yd_c00413{bottom:830.924850px;}
.yc_c00413{bottom:866.924850px;}
.yb_c00413{bottom:902.924850px;}
.ya_c00413{bottom:938.924850px;}
.y9_c00413{bottom:974.924850px;}
.y8_c00413{bottom:1010.924850px;}
.y7_c00413{bottom:1046.924850px;}
.y6_c00413{bottom:1082.924850px;}
.y2_c00413{bottom:1165.365000px;}
.h5_c00413{height:17.280000px;}
.h3_c00413{height:43.189453px;}
.h8_c00413{height:70.628906px;}
.h4_c00413{height:70.664062px;}
.h7_c00413{height:71.205366px;}
.h6_c00413{height:71.225756px;}
.h2_c00413{height:1237.365000px;}
.h0_c00413{height:1262.835000px;}
.h1_c00413{height:1263.000000px;}
.w3_c00413{width:47.520000px;}
.w2_c00413{width:867.465000px;}
.w0_c00413{width:892.935000px;}
.w1_c00413{width:893.250000px;}
.x3_c00413{left:-39.599850px;}
.x0_c00413{left:0.000000px;}
.x5_c00413{left:10.237500px;}
.x1_c00413{left:12.735000px;}
.x7_c00413{left:95.418150px;}
.x6_c00413{left:149.400150px;}
.x4_c00413{left:422.775000px;}
.x2_c00413{left:880.050300px;}
@media print{
.v0_c00413{vertical-align:0.000000pt;}
.v1_c00413{vertical-align:26.880533pt;}
.ls2_c00413{letter-spacing:-0.012800pt;}
.ls1_c00413{letter-spacing:0.000000pt;}
.ls0_c00413{letter-spacing:0.012800pt;}
.ls3_c00413{letter-spacing:0.051968pt;}
.ls4_c00413{letter-spacing:10.323200pt;}
.ws2_c00413{word-spacing:-16.012800pt;}
.ws0_c00413{word-spacing:-16.000000pt;}
.ws1_c00413{word-spacing:-9.331968pt;}
.ws3_c00413{word-spacing:0.000000pt;}
._9_c00413{margin-left:-9.977771pt;}
._a_c00413{width:1.017600pt;}
._3_c00413{width:2.560000pt;}
._0_c00413{width:3.968000pt;}
._4_c00413{width:4.921600pt;}
._2_c00413{width:6.214400pt;}
._1_c00413{width:7.974400pt;}
._6_c00413{width:8.932523pt;}
._5_c00413{width:9.843371pt;}
._8_c00413{width:10.847829pt;}
._7_c00413{width:13.388800pt;}
.fs2_c00413{font-size:37.120000pt;}
.fs0_c00413{font-size:57.600000pt;}
.fs1_c00413{font-size:64.000000pt;}
.y0_c00413{bottom:0.000000pt;}
.y5_c00413{bottom:1.280000pt;}
.y1_c00413{bottom:11.320000pt;}
.y3_c00413{bottom:40.360000pt;}
.y4_c00413{bottom:50.400000pt;}
.y20_c00413{bottom:130.599867pt;}
.y1f_c00413{bottom:162.599867pt;}
.y1e_c00413{bottom:194.599867pt;}
.y1d_c00413{bottom:226.599867pt;}
.y1c_c00413{bottom:258.599867pt;}
.y1b_c00413{bottom:290.599867pt;}
.y1a_c00413{bottom:322.599867pt;}
.y19_c00413{bottom:354.599867pt;}
.y18_c00413{bottom:386.599867pt;}
.y17_c00413{bottom:418.599867pt;}
.y16_c00413{bottom:450.599867pt;}
.y15_c00413{bottom:482.599867pt;}
.y14_c00413{bottom:514.599867pt;}
.y13_c00413{bottom:546.599867pt;}
.y12_c00413{bottom:578.599867pt;}
.y11_c00413{bottom:610.599867pt;}
.y10_c00413{bottom:642.599867pt;}
.yf_c00413{bottom:674.599867pt;}
.ye_c00413{bottom:706.599867pt;}
.yd_c00413{bottom:738.599867pt;}
.yc_c00413{bottom:770.599867pt;}
.yb_c00413{bottom:802.599867pt;}
.ya_c00413{bottom:834.599867pt;}
.y9_c00413{bottom:866.599867pt;}
.y8_c00413{bottom:898.599867pt;}
.y7_c00413{bottom:930.599867pt;}
.y6_c00413{bottom:962.599867pt;}
.y2_c00413{bottom:1035.880000pt;}
.h5_c00413{height:15.360000pt;}
.h3_c00413{height:38.390625pt;}
.h8_c00413{height:62.781250pt;}
.h4_c00413{height:62.812500pt;}
.h7_c00413{height:63.293658pt;}
.h6_c00413{height:63.311783pt;}
.h2_c00413{height:1099.880000pt;}
.h0_c00413{height:1122.520000pt;}
.h1_c00413{height:1122.666667pt;}
.w3_c00413{width:42.240000pt;}
.w2_c00413{width:771.080000pt;}
.w0_c00413{width:793.720000pt;}
.w1_c00413{width:794.000000pt;}
.x3_c00413{left:-35.199867pt;}
.x0_c00413{left:0.000000pt;}
.x5_c00413{left:9.100000pt;}
.x1_c00413{left:11.320000pt;}
.x7_c00413{left:84.816133pt;}
.x6_c00413{left:132.800133pt;}
.x4_c00413{left:375.800000pt;}
.x2_c00413{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b83c575ddded8042253a5a4c.woff2')format("woff");}.ff1_c00414{font-family:ff1_c00414;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00414;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00414{font-family:ff2_c00414;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00414;src:url('chunks/assets/font_7e88d61ee2e6b47747e83f7d.woff2')format("woff");}.ff3_c00414{font-family:ff3_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;}
.m0_c00414{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00414{vertical-align:0.000000px;}
.ls2_c00414{letter-spacing:-0.014400px;}
.ls1_c00414{letter-spacing:0.000000px;}
.ls3_c00414{letter-spacing:0.014400px;}
.ls0_c00414{letter-spacing:0.021600px;}
.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;}
}
.ws1_c00414{word-spacing:-18.021600px;}
.ws0_c00414{word-spacing:-18.000000px;}
.ws2_c00414{word-spacing:0.000000px;}
._3_c00414{width:1.555200px;}
._1_c00414{width:3.096000px;}
._5_c00414{width:4.593600px;}
._4_c00414{width:7.776000px;}
._7_c00414{width:9.525600px;}
._6_c00414{width:10.728000px;}
._9_c00414{width:11.772000px;}
._8_c00414{width:13.125600px;}
._0_c00414{width:14.839200px;}
._2_c00414{width:19.152000px;}
._a_c00414{width:27.712800px;}
.fc1_c00414{color:transparent;}
.fc0_c00414{color:rgb(0,0,0);}
.fs1_c00414{font-size:64.800000px;}
.fs0_c00414{font-size:72.000000px;}
.y0_c00414{bottom:0.000000px;}
.y5_c00414{bottom:5.040000px;}
.y1_c00414{bottom:12.735000px;}
.y3_c00414{bottom:45.405000px;}
.y4_c00414{bottom:53.100000px;}
.y21_c00414{bottom:110.924850px;}
.y20_c00414{bottom:146.924850px;}
.y1f_c00414{bottom:182.924850px;}
.y1e_c00414{bottom:218.924850px;}
.y1d_c00414{bottom:254.924850px;}
.y1c_c00414{bottom:290.924850px;}
.y1b_c00414{bottom:326.924850px;}
.y1a_c00414{bottom:362.924850px;}
.y19_c00414{bottom:398.924850px;}
.y18_c00414{bottom:434.924850px;}
.y17_c00414{bottom:470.924850px;}
.y16_c00414{bottom:506.924850px;}
.y15_c00414{bottom:542.924850px;}
.y14_c00414{bottom:578.924850px;}
.y13_c00414{bottom:614.924850px;}
.y12_c00414{bottom:650.924850px;}
.y11_c00414{bottom:686.924850px;}
.y10_c00414{bottom:722.924850px;}
.yf_c00414{bottom:758.924850px;}
.ye_c00414{bottom:794.924850px;}
.yd_c00414{bottom:830.924850px;}
.yc_c00414{bottom:866.924850px;}
.yb_c00414{bottom:902.924850px;}
.ya_c00414{bottom:938.924850px;}
.y9_c00414{bottom:974.924850px;}
.y8_c00414{bottom:1010.924850px;}
.y7_c00414{bottom:1046.924850px;}
.y6_c00414{bottom:1082.924850px;}
.y2_c00414{bottom:1165.365000px;}
.h4_c00414{height:20.880000px;}
.h3_c00414{height:70.664062px;}
.h2_c00414{height:1237.365000px;}
.h0_c00414{height:1262.835000px;}
.h1_c00414{height:1263.000000px;}
.w3_c00414{width:27.000000px;}
.w2_c00414{width:867.465000px;}
.w0_c00414{width:892.935000px;}
.w1_c00414{width:893.250000px;}
.x0_c00414{left:0.000000px;}
.x1_c00414{left:12.735000px;}
.x3_c00414{left:95.394300px;}
.x5_c00414{left:149.400150px;}
.x4_c00414{left:432.855000px;}
.x2_c00414{left:880.050300px;}
@media print{
.v0_c00414{vertical-align:0.000000pt;}
.ls2_c00414{letter-spacing:-0.012800pt;}
.ls1_c00414{letter-spacing:0.000000pt;}
.ls3_c00414{letter-spacing:0.012800pt;}
.ls0_c00414{letter-spacing:0.019200pt;}
.ws1_c00414{word-spacing:-16.019200pt;}
.ws0_c00414{word-spacing:-16.000000pt;}
.ws2_c00414{word-spacing:0.000000pt;}
._3_c00414{width:1.382400pt;}
._1_c00414{width:2.752000pt;}
._5_c00414{width:4.083200pt;}
._4_c00414{width:6.912000pt;}
._7_c00414{width:8.467200pt;}
._6_c00414{width:9.536000pt;}
._9_c00414{width:10.464000pt;}
._8_c00414{width:11.667200pt;}
._0_c00414{width:13.190400pt;}
._2_c00414{width:17.024000pt;}
._a_c00414{width:24.633600pt;}
.fs1_c00414{font-size:57.600000pt;}
.fs0_c00414{font-size:64.000000pt;}
.y0_c00414{bottom:0.000000pt;}
.y5_c00414{bottom:4.480000pt;}
.y1_c00414{bottom:11.320000pt;}
.y3_c00414{bottom:40.360000pt;}
.y4_c00414{bottom:47.200000pt;}
.y21_c00414{bottom:98.599867pt;}
.y20_c00414{bottom:130.599867pt;}
.y1f_c00414{bottom:162.599867pt;}
.y1e_c00414{bottom:194.599867pt;}
.y1d_c00414{bottom:226.599867pt;}
.y1c_c00414{bottom:258.599867pt;}
.y1b_c00414{bottom:290.599867pt;}
.y1a_c00414{bottom:322.599867pt;}
.y19_c00414{bottom:354.599867pt;}
.y18_c00414{bottom:386.599867pt;}
.y17_c00414{bottom:418.599867pt;}
.y16_c00414{bottom:450.599867pt;}
.y15_c00414{bottom:482.599867pt;}
.y14_c00414{bottom:514.599867pt;}
.y13_c00414{bottom:546.599867pt;}
.y12_c00414{bottom:578.599867pt;}
.y11_c00414{bottom:610.599867pt;}
.y10_c00414{bottom:642.599867pt;}
.yf_c00414{bottom:674.599867pt;}
.ye_c00414{bottom:706.599867pt;}
.yd_c00414{bottom:738.599867pt;}
.yc_c00414{bottom:770.599867pt;}
.yb_c00414{bottom:802.599867pt;}
.ya_c00414{bottom:834.599867pt;}
.y9_c00414{bottom:866.599867pt;}
.y8_c00414{bottom:898.599867pt;}
.y7_c00414{bottom:930.599867pt;}
.y6_c00414{bottom:962.599867pt;}
.y2_c00414{bottom:1035.880000pt;}
.h4_c00414{height:18.560000pt;}
.h3_c00414{height:62.812500pt;}
.h2_c00414{height:1099.880000pt;}
.h0_c00414{height:1122.520000pt;}
.h1_c00414{height:1122.666667pt;}
.w3_c00414{width:24.000000pt;}
.w2_c00414{width:771.080000pt;}
.w0_c00414{width:793.720000pt;}
.w1_c00414{width:794.000000pt;}
.x0_c00414{left:0.000000pt;}
.x1_c00414{left:11.320000pt;}
.x3_c00414{left:84.794933pt;}
.x5_c00414{left:132.800133pt;}
.x4_c00414{left:384.760000pt;}
.x2_c00414{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00415{font-family:ff1_c00415;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00415;src:url('chunks/assets/font_fec664b52fe8b08232acc7cd.woff2')format("woff");}.ff2_c00415{font-family:ff2_c00415;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00415;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00415{font-family:ff3_c00415;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00415;src:url('chunks/assets/font_922a13a68e14b6aeb36e1fda.woff2')format("woff");}.ff4_c00415{font-family:ff4_c00415;line-height:1.284180;font-style: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;}
.v1_c00415{vertical-align:30.240600px;}
.ls4_c00415{letter-spacing:-0.014400px;}
.ls1_c00415{letter-spacing:0.000000px;}
.ls3_c00415{letter-spacing:0.021600px;}
.ls2_c00415{letter-spacing:0.058464px;}
.ls0_c00415{letter-spacing:38.406600px;}
.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:-18.000000px;}
.ws2_c00415{word-spacing:-17.985600px;}
.ws1_c00415{word-spacing:-10.498464px;}
.ws3_c00415{word-spacing:0.000000px;}
._8_c00415{width:1.461600px;}
._9_c00415{width:3.340800px;}
._0_c00415{width:5.025600px;}
._7_c00415{width:6.818400px;}
._4_c00415{width:7.920000px;}
._3_c00415{width:9.345600px;}
._6_c00415{width:11.217600px;}
._1_c00415{width:13.075200px;}
._5_c00415{width:14.083200px;}
._b_c00415{width:16.639200px;}
._2_c00415{width:26.265600px;}
._a_c00415{width:38.347200px;}
.fc1_c00415{color:transparent;}
.fc0_c00415{color:rgb(0,0,0);}
.fs2_c00415{font-size:41.760000px;}
.fs0_c00415{font-size:64.800000px;}
.fs1_c00415{font-size:72.000000px;}
.fs3_c00415{font-size:77.760000px;}
.y0_c00415{bottom:0.000000px;}
.y5_c00415{bottom:1.440000px;}
.y1_c00415{bottom:12.735000px;}
.y3_c00415{bottom:45.405000px;}
.y4_c00415{bottom:56.700000px;}
.y21_c00415{bottom:110.925000px;}
.y20_c00415{bottom:146.925000px;}
.y1f_c00415{bottom:182.925000px;}
.y1e_c00415{bottom:218.925000px;}
.y1d_c00415{bottom:254.925000px;}
.y1c_c00415{bottom:290.925000px;}
.y1b_c00415{bottom:326.925000px;}
.y1a_c00415{bottom:362.925000px;}
.y19_c00415{bottom:398.925000px;}
.y18_c00415{bottom:434.925000px;}
.y17_c00415{bottom:470.924850px;}
.y16_c00415{bottom:506.924850px;}
.y15_c00415{bottom:542.924850px;}
.y14_c00415{bottom:578.924850px;}
.y13_c00415{bottom:614.924850px;}
.y12_c00415{bottom:650.924850px;}
.y11_c00415{bottom:686.924850px;}
.y10_c00415{bottom:722.924850px;}
.yf_c00415{bottom:758.924850px;}
.ye_c00415{bottom:794.924850px;}
.yd_c00415{bottom:830.924850px;}
.yc_c00415{bottom:866.924850px;}
.yb_c00415{bottom:902.924850px;}
.ya_c00415{bottom:938.924850px;}
.y9_c00415{bottom:974.924850px;}
.y8_c00415{bottom:1010.924850px;}
.y7_c00415{bottom:1046.924850px;}
.y6_c00415{bottom:1082.924850px;}
.y2_c00415{bottom:1165.365000px;}
.h5_c00415{height:17.280000px;}
.h3_c00415{height:43.189453px;}
.h4_c00415{height:70.664062px;}
.h6_c00415{height:71.225756px;}
.h7_c00415{height:76.317787px;}
.h2_c00415{height:1237.365000px;}
.h0_c00415{height:1262.835000px;}
.h1_c00415{height:1263.000000px;}
.w3_c00415{width:47.520000px;}
.w2_c00415{width:867.465000px;}
.w0_c00415{width:892.935000px;}
.w1_c00415{width:893.250000px;}
.x3_c00415{left:-39.599850px;}
.x0_c00415{left:0.000000px;}
.x5_c00415{left:10.237500px;}
.x1_c00415{left:12.735000px;}
.x7_c00415{left:95.400150px;}
.x6_c00415{left:149.400150px;}
.x4_c00415{left:422.775000px;}
.x2_c00415{left:880.050300px;}
@media print{
.v0_c00415{vertical-align:0.000000pt;}
.v1_c00415{vertical-align:26.880533pt;}
.ls4_c00415{letter-spacing:-0.012800pt;}
.ls1_c00415{letter-spacing:0.000000pt;}
.ls3_c00415{letter-spacing:0.019200pt;}
.ls2_c00415{letter-spacing:0.051968pt;}
.ls0_c00415{letter-spacing:34.139200pt;}
.ws0_c00415{word-spacing:-16.000000pt;}
.ws2_c00415{word-spacing:-15.987200pt;}
.ws1_c00415{word-spacing:-9.331968pt;}
.ws3_c00415{word-spacing:0.000000pt;}
._8_c00415{width:1.299200pt;}
._9_c00415{width:2.969600pt;}
._0_c00415{width:4.467200pt;}
._7_c00415{width:6.060800pt;}
._4_c00415{width:7.040000pt;}
._3_c00415{width:8.307200pt;}
._6_c00415{width:9.971200pt;}
._1_c00415{width:11.622400pt;}
._5_c00415{width:12.518400pt;}
._b_c00415{width:14.790400pt;}
._2_c00415{width:23.347200pt;}
._a_c00415{width:34.086400pt;}
.fs2_c00415{font-size:37.120000pt;}
.fs0_c00415{font-size:57.600000pt;}
.fs1_c00415{font-size:64.000000pt;}
.fs3_c00415{font-size:69.120000pt;}
.y0_c00415{bottom:0.000000pt;}
.y5_c00415{bottom:1.280000pt;}
.y1_c00415{bottom:11.320000pt;}
.y3_c00415{bottom:40.360000pt;}
.y4_c00415{bottom:50.400000pt;}
.y21_c00415{bottom:98.600000pt;}
.y20_c00415{bottom:130.600000pt;}
.y1f_c00415{bottom:162.600000pt;}
.y1e_c00415{bottom:194.600000pt;}
.y1d_c00415{bottom:226.600000pt;}
.y1c_c00415{bottom:258.600000pt;}
.y1b_c00415{bottom:290.600000pt;}
.y1a_c00415{bottom:322.600000pt;}
.y19_c00415{bottom:354.600000pt;}
.y18_c00415{bottom:386.600000pt;}
.y17_c00415{bottom:418.599867pt;}
.y16_c00415{bottom:450.599867pt;}
.y15_c00415{bottom:482.599867pt;}
.y14_c00415{bottom:514.599867pt;}
.y13_c00415{bottom:546.599867pt;}
.y12_c00415{bottom:578.599867pt;}
.y11_c00415{bottom:610.599867pt;}
.y10_c00415{bottom:642.599867pt;}
.yf_c00415{bottom:674.599867pt;}
.ye_c00415{bottom:706.599867pt;}
.yd_c00415{bottom:738.599867pt;}
.yc_c00415{bottom:770.599867pt;}
.yb_c00415{bottom:802.599867pt;}
.ya_c00415{bottom:834.599867pt;}
.y9_c00415{bottom:866.599867pt;}
.y8_c00415{bottom:898.599867pt;}
.y7_c00415{bottom:930.599867pt;}
.y6_c00415{bottom:962.599867pt;}
.y2_c00415{bottom:1035.880000pt;}
.h5_c00415{height:15.360000pt;}
.h3_c00415{height:38.390625pt;}
.h4_c00415{height:62.812500pt;}
.h6_c00415{height:63.311783pt;}
.h7_c00415{height:67.838033pt;}
.h2_c00415{height:1099.880000pt;}
.h0_c00415{height:1122.520000pt;}
.h1_c00415{height:1122.666667pt;}
.w3_c00415{width:42.240000pt;}
.w2_c00415{width:771.080000pt;}
.w0_c00415{width:793.720000pt;}
.w1_c00415{width:794.000000pt;}
.x3_c00415{left:-35.199867pt;}
.x0_c00415{left:0.000000pt;}
.x5_c00415{left:9.100000pt;}
.x1_c00415{left:11.320000pt;}
.x7_c00415{left:84.800133pt;}
.x6_c00415{left:132.800133pt;}
.x4_c00415{left:375.800000pt;}
.x2_c00415{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_018502f4a88566a3da844d56.woff2')format("woff");}.ff1_c00416{font-family:ff1_c00416;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00416;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00416{font-family:ff2_c00416;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00416;src:url('chunks/assets/font_5d23a66d33d7ca7ef0337954.woff2')format("woff");}.ff3_c00416{font-family:ff3_c00416;line-height:1.284180;font-style:normal;font-weight:normal;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_a7fe67f58aa0f0c640200b5b.woff2')format("woff");}.ff4_c00416{font-family:ff4_c00416;line-height:1.284180;font-style: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;}
.ls0_c00416{letter-spacing:0.000000px;}
.ls1_c00416{letter-spacing:5.875200px;}
.sc__c00416{text-shadow:none;}
.sc0_c00416{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00416{-webkit-text-stroke:0px transparent;}
.sc0_c00416{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00416{word-spacing:-18.000000px;}
.ws1_c00416{word-spacing:0.000000px;}
._8_c00416{margin-left:-6.681600px;}
._9_c00416{margin-left:-5.126400px;}
._6_c00416{width:1.915200px;}
._b_c00416{width:3.067200px;}
._4_c00416{width:4.492800px;}
._5_c00416{width:5.551200px;}
._3_c00416{width:7.430400px;}
._a_c00416{width:9.252000px;}
._0_c00416{width:10.584000px;}
._2_c00416{width:11.995200px;}
._1_c00416{width:13.752000px;}
._7_c00416{width:16.725600px;}
.fc1_c00416{color:transparent;}
.fc0_c00416{color:rgb(0,0,0);}
.fs1_c00416{font-size:64.800000px;}
.fs0_c00416{font-size:72.000000px;}
.y0_c00416{bottom:0.000000px;}
.y5_c00416{bottom:5.040000px;}
.y1_c00416{bottom:12.735000px;}
.y3_c00416{bottom:45.405000px;}
.y4_c00416{bottom:53.100000px;}
.y21_c00416{bottom:110.924850px;}
.y20_c00416{bottom:146.924850px;}
.y1f_c00416{bottom:182.924850px;}
.y1e_c00416{bottom:218.924850px;}
.y1d_c00416{bottom:254.924850px;}
.y1c_c00416{bottom:290.924850px;}
.y1b_c00416{bottom:326.924850px;}
.y1a_c00416{bottom:362.924850px;}
.y19_c00416{bottom:398.924850px;}
.y18_c00416{bottom:434.924850px;}
.y17_c00416{bottom:470.924850px;}
.y16_c00416{bottom:506.924850px;}
.y15_c00416{bottom:542.924850px;}
.y14_c00416{bottom:578.924850px;}
.y13_c00416{bottom:614.924850px;}
.y12_c00416{bottom:650.924850px;}
.y11_c00416{bottom:686.924850px;}
.y10_c00416{bottom:722.924850px;}
.yf_c00416{bottom:758.924850px;}
.ye_c00416{bottom:794.924850px;}
.yd_c00416{bottom:830.924850px;}
.yc_c00416{bottom:866.924850px;}
.yb_c00416{bottom:902.924850px;}
.ya_c00416{bottom:938.924850px;}
.y9_c00416{bottom:974.924850px;}
.y8_c00416{bottom:1010.924850px;}
.y7_c00416{bottom:1046.924850px;}
.y6_c00416{bottom:1082.924850px;}
.y2_c00416{bottom:1165.365000px;}
.h4_c00416{height:20.880000px;}
.h5_c00416{height:70.628906px;}
.h3_c00416{height:70.664062px;}
.h2_c00416{height:1237.365000px;}
.h0_c00416{height:1262.835000px;}
.h1_c00416{height:1263.000000px;}
.w3_c00416{width:27.000000px;}
.w2_c00416{width:867.465000px;}
.w0_c00416{width:892.935000px;}
.w1_c00416{width:893.250000px;}
.x0_c00416{left:0.000000px;}
.x1_c00416{left:12.735000px;}
.x3_c00416{left:95.394300px;}
.x5_c00416{left:149.400150px;}
.x4_c00416{left:432.855000px;}
.x2_c00416{left:880.050300px;}
@media print{
.v0_c00416{vertical-align:0.000000pt;}
.ls0_c00416{letter-spacing:0.000000pt;}
.ls1_c00416{letter-spacing:5.222400pt;}
.ws0_c00416{word-spacing:-16.000000pt;}
.ws1_c00416{word-spacing:0.000000pt;}
._8_c00416{margin-left:-5.939200pt;}
._9_c00416{margin-left:-4.556800pt;}
._6_c00416{width:1.702400pt;}
._b_c00416{width:2.726400pt;}
._4_c00416{width:3.993600pt;}
._5_c00416{width:4.934400pt;}
._3_c00416{width:6.604800pt;}
._a_c00416{width:8.224000pt;}
._0_c00416{width:9.408000pt;}
._2_c00416{width:10.662400pt;}
._1_c00416{width:12.224000pt;}
._7_c00416{width:14.867200pt;}
.fs1_c00416{font-size:57.600000pt;}
.fs0_c00416{font-size:64.000000pt;}
.y0_c00416{bottom:0.000000pt;}
.y5_c00416{bottom:4.480000pt;}
.y1_c00416{bottom:11.320000pt;}
.y3_c00416{bottom:40.360000pt;}
.y4_c00416{bottom:47.200000pt;}
.y21_c00416{bottom:98.599867pt;}
.y20_c00416{bottom:130.599867pt;}
.y1f_c00416{bottom:162.599867pt;}
.y1e_c00416{bottom:194.599867pt;}
.y1d_c00416{bottom:226.599867pt;}
.y1c_c00416{bottom:258.599867pt;}
.y1b_c00416{bottom:290.599867pt;}
.y1a_c00416{bottom:322.599867pt;}
.y19_c00416{bottom:354.599867pt;}
.y18_c00416{bottom:386.599867pt;}
.y17_c00416{bottom:418.599867pt;}
.y16_c00416{bottom:450.599867pt;}
.y15_c00416{bottom:482.599867pt;}
.y14_c00416{bottom:514.599867pt;}
.y13_c00416{bottom:546.599867pt;}
.y12_c00416{bottom:578.599867pt;}
.y11_c00416{bottom:610.599867pt;}
.y10_c00416{bottom:642.599867pt;}
.yf_c00416{bottom:674.599867pt;}
.ye_c00416{bottom:706.599867pt;}
.yd_c00416{bottom:738.599867pt;}
.yc_c00416{bottom:770.599867pt;}
.yb_c00416{bottom:802.599867pt;}
.ya_c00416{bottom:834.599867pt;}
.y9_c00416{bottom:866.599867pt;}
.y8_c00416{bottom:898.599867pt;}
.y7_c00416{bottom:930.599867pt;}
.y6_c00416{bottom:962.599867pt;}
.y2_c00416{bottom:1035.880000pt;}
.h4_c00416{height:18.560000pt;}
.h5_c00416{height:62.781250pt;}
.h3_c00416{height:62.812500pt;}
.h2_c00416{height:1099.880000pt;}
.h0_c00416{height:1122.520000pt;}
.h1_c00416{height:1122.666667pt;}
.w3_c00416{width:24.000000pt;}
.w2_c00416{width:771.080000pt;}
.w0_c00416{width:793.720000pt;}
.w1_c00416{width:794.000000pt;}
.x0_c00416{left:0.000000pt;}
.x1_c00416{left:11.320000pt;}
.x3_c00416{left:84.794933pt;}
.x5_c00416{left:132.800133pt;}
.x4_c00416{left:384.760000pt;}
.x2_c00416{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00417{font-family:ff1_c00417;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00417;src:url('chunks/assets/font_6384820bfbd5bcd05c267733.woff2')format("woff");}.ff2_c00417{font-family:ff2_c00417;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00417;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00417{font-family:ff3_c00417;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00417;src:url('chunks/assets/font_3c24ce09159eacffd430553c.woff2')format("woff");}.ff4_c00417{font-family:ff4_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;}
.m0_c00417{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00417{vertical-align:0.000000px;}
.ls1_c00417{letter-spacing:-0.014400px;}
.ls0_c00417{letter-spacing:0.000000px;}
.sc__c00417{text-shadow:none;}
.sc0_c00417{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00417{-webkit-text-stroke:0px transparent;}
.sc0_c00417{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00417{word-spacing:-18.000000px;}
.ws1_c00417{word-spacing:0.000000px;}
._8_c00417{width:2.095200px;}
._a_c00417{width:3.276000px;}
._2_c00417{width:4.932000px;}
._7_c00417{width:6.220800px;}
._d_c00417{width:7.653600px;}
._3_c00417{width:8.733600px;}
._4_c00417{width:9.936000px;}
._9_c00417{width:13.953600px;}
._5_c00417{width:14.997600px;}
._6_c00417{width:16.797600px;}
._0_c00417{width:19.324800px;}
._1_c00417{width:21.067200px;}
._c_c00417{width:22.449600px;}
._b_c00417{width:25.272000px;}
.fc1_c00417{color:transparent;}
.fc0_c00417{color:rgb(0,0,0);}
.fs0_c00417{font-size:64.800000px;}
.fs1_c00417{font-size:72.000000px;}
.y0_c00417{bottom:0.000000px;}
.y5_c00417{bottom:1.440000px;}
.y1_c00417{bottom:12.735000px;}
.y3_c00417{bottom:45.405000px;}
.y4_c00417{bottom:56.700000px;}
.y21_c00417{bottom:110.924850px;}
.y20_c00417{bottom:146.924850px;}
.y1f_c00417{bottom:182.924850px;}
.y1e_c00417{bottom:218.924850px;}
.y1d_c00417{bottom:254.924850px;}
.y1c_c00417{bottom:290.924850px;}
.y1b_c00417{bottom:326.924850px;}
.y1a_c00417{bottom:362.924850px;}
.y19_c00417{bottom:398.924850px;}
.y18_c00417{bottom:434.924850px;}
.y17_c00417{bottom:470.924850px;}
.y16_c00417{bottom:506.924850px;}
.y15_c00417{bottom:542.924850px;}
.y14_c00417{bottom:578.924850px;}
.y13_c00417{bottom:614.924850px;}
.y12_c00417{bottom:650.924850px;}
.y11_c00417{bottom:686.924850px;}
.y10_c00417{bottom:722.924850px;}
.yf_c00417{bottom:758.924850px;}
.ye_c00417{bottom:794.924850px;}
.yd_c00417{bottom:830.924850px;}
.yc_c00417{bottom:866.924850px;}
.yb_c00417{bottom:902.924850px;}
.ya_c00417{bottom:938.924850px;}
.y9_c00417{bottom:974.924850px;}
.y8_c00417{bottom:1010.924850px;}
.y7_c00417{bottom:1046.924850px;}
.y6_c00417{bottom:1082.924850px;}
.y2_c00417{bottom:1165.365000px;}
.h5_c00417{height:17.280000px;}
.h3_c00417{height:43.189453px;}
.h4_c00417{height:70.664062px;}
.h2_c00417{height:1237.365000px;}
.h0_c00417{height:1262.835000px;}
.h1_c00417{height:1263.000000px;}
.w3_c00417{width:47.520000px;}
.w2_c00417{width:867.465000px;}
.w0_c00417{width:892.935000px;}
.w1_c00417{width:893.250000px;}
.x3_c00417{left:-39.599850px;}
.x0_c00417{left:0.000000px;}
.x5_c00417{left:10.237500px;}
.x1_c00417{left:12.735000px;}
.x6_c00417{left:95.400150px;}
.x7_c00417{left:149.400150px;}
.x4_c00417{left:422.775000px;}
.x2_c00417{left:880.050300px;}
@media print{
.v0_c00417{vertical-align:0.000000pt;}
.ls1_c00417{letter-spacing:-0.012800pt;}
.ls0_c00417{letter-spacing:0.000000pt;}
.ws0_c00417{word-spacing:-16.000000pt;}
.ws1_c00417{word-spacing:0.000000pt;}
._8_c00417{width:1.862400pt;}
._a_c00417{width:2.912000pt;}
._2_c00417{width:4.384000pt;}
._7_c00417{width:5.529600pt;}
._d_c00417{width:6.803200pt;}
._3_c00417{width:7.763200pt;}
._4_c00417{width:8.832000pt;}
._9_c00417{width:12.403200pt;}
._5_c00417{width:13.331200pt;}
._6_c00417{width:14.931200pt;}
._0_c00417{width:17.177600pt;}
._1_c00417{width:18.726400pt;}
._c_c00417{width:19.955200pt;}
._b_c00417{width:22.464000pt;}
.fs0_c00417{font-size:57.600000pt;}
.fs1_c00417{font-size:64.000000pt;}
.y0_c00417{bottom:0.000000pt;}
.y5_c00417{bottom:1.280000pt;}
.y1_c00417{bottom:11.320000pt;}
.y3_c00417{bottom:40.360000pt;}
.y4_c00417{bottom:50.400000pt;}
.y21_c00417{bottom:98.599867pt;}
.y20_c00417{bottom:130.599867pt;}
.y1f_c00417{bottom:162.599867pt;}
.y1e_c00417{bottom:194.599867pt;}
.y1d_c00417{bottom:226.599867pt;}
.y1c_c00417{bottom:258.599867pt;}
.y1b_c00417{bottom:290.599867pt;}
.y1a_c00417{bottom:322.599867pt;}
.y19_c00417{bottom:354.599867pt;}
.y18_c00417{bottom:386.599867pt;}
.y17_c00417{bottom:418.599867pt;}
.y16_c00417{bottom:450.599867pt;}
.y15_c00417{bottom:482.599867pt;}
.y14_c00417{bottom:514.599867pt;}
.y13_c00417{bottom:546.599867pt;}
.y12_c00417{bottom:578.599867pt;}
.y11_c00417{bottom:610.599867pt;}
.y10_c00417{bottom:642.599867pt;}
.yf_c00417{bottom:674.599867pt;}
.ye_c00417{bottom:706.599867pt;}
.yd_c00417{bottom:738.599867pt;}
.yc_c00417{bottom:770.599867pt;}
.yb_c00417{bottom:802.599867pt;}
.ya_c00417{bottom:834.599867pt;}
.y9_c00417{bottom:866.599867pt;}
.y8_c00417{bottom:898.599867pt;}
.y7_c00417{bottom:930.599867pt;}
.y6_c00417{bottom:962.599867pt;}
.y2_c00417{bottom:1035.880000pt;}
.h5_c00417{height:15.360000pt;}
.h3_c00417{height:38.390625pt;}
.h4_c00417{height:62.812500pt;}
.h2_c00417{height:1099.880000pt;}
.h0_c00417{height:1122.520000pt;}
.h1_c00417{height:1122.666667pt;}
.w3_c00417{width:42.240000pt;}
.w2_c00417{width:771.080000pt;}
.w0_c00417{width:793.720000pt;}
.w1_c00417{width:794.000000pt;}
.x3_c00417{left:-35.199867pt;}
.x0_c00417{left:0.000000pt;}
.x5_c00417{left:9.100000pt;}
.x1_c00417{left:11.320000pt;}
.x6_c00417{left:84.800133pt;}
.x7_c00417{left:132.800133pt;}
.x4_c00417{left:375.800000pt;}
.x2_c00417{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff4860d94a4ceb0b2837fbad.woff2')format("woff");}.ff1_c00418{font-family:ff1_c00418;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00418;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00418{font-family:ff2_c00418;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00418;src:url('chunks/assets/font_0c902abaac083cf28e6c6b21.woff2')format("woff");}.ff3_c00418{font-family:ff3_c00418;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00418{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00418{vertical-align:0.000000px;}
.v1_c00418{vertical-align:30.240600px;}
.ls0_c00418{letter-spacing:0.000000px;}
.ls1_c00418{letter-spacing:0.058464px;}
.sc__c00418{text-shadow:none;}
.sc0_c00418{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00418{-webkit-text-stroke:0px transparent;}
.sc0_c00418{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00418{word-spacing:-18.000000px;}
.ws1_c00418{word-spacing:-10.498464px;}
.ws2_c00418{word-spacing:0.000000px;}
._2_c00418{width:1.785600px;}
._6_c00418{width:3.254400px;}
._a_c00418{width:4.334400px;}
._4_c00418{width:5.932800px;}
._b_c00418{width:7.063200px;}
._8_c00418{width:8.985600px;}
._7_c00418{width:10.224000px;}
._3_c00418{width:11.340000px;}
._5_c00418{width:12.369600px;}
._1_c00418{width:14.068800px;}
._0_c00418{width:15.465600px;}
._9_c00418{width:16.819200px;}
.fc1_c00418{color:transparent;}
.fc0_c00418{color:rgb(0,0,0);}
.fs2_c00418{font-size:41.760000px;}
.fs1_c00418{font-size:64.800000px;}
.fs0_c00418{font-size:72.000000px;}
.y0_c00418{bottom:0.000000px;}
.y5_c00418{bottom:5.040000px;}
.y1_c00418{bottom:12.735000px;}
.y3_c00418{bottom:45.405000px;}
.y4_c00418{bottom:53.100000px;}
.y21_c00418{bottom:110.925000px;}
.y20_c00418{bottom:146.924850px;}
.y1f_c00418{bottom:182.924850px;}
.y1e_c00418{bottom:218.924850px;}
.y1d_c00418{bottom:254.924850px;}
.y1c_c00418{bottom:290.924850px;}
.y1b_c00418{bottom:326.924850px;}
.y1a_c00418{bottom:362.924850px;}
.y19_c00418{bottom:398.924850px;}
.y18_c00418{bottom:434.924850px;}
.y17_c00418{bottom:470.924850px;}
.y16_c00418{bottom:506.924850px;}
.y15_c00418{bottom:542.924850px;}
.y14_c00418{bottom:578.924850px;}
.y13_c00418{bottom:614.924850px;}
.y12_c00418{bottom:650.924850px;}
.y11_c00418{bottom:686.924850px;}
.y10_c00418{bottom:722.924850px;}
.yf_c00418{bottom:758.924850px;}
.ye_c00418{bottom:794.924850px;}
.yd_c00418{bottom:830.924850px;}
.yc_c00418{bottom:866.924850px;}
.yb_c00418{bottom:902.924850px;}
.ya_c00418{bottom:938.924850px;}
.y9_c00418{bottom:974.924850px;}
.y8_c00418{bottom:1010.924850px;}
.y7_c00418{bottom:1046.924850px;}
.y6_c00418{bottom:1082.924850px;}
.y2_c00418{bottom:1165.365000px;}
.h4_c00418{height:20.880000px;}
.h5_c00418{height:70.628906px;}
.h3_c00418{height:70.664062px;}
.h7_c00418{height:71.225156px;}
.h6_c00418{height:71.225756px;}
.h2_c00418{height:1237.365000px;}
.h0_c00418{height:1262.835000px;}
.h1_c00418{height:1263.000000px;}
.w3_c00418{width:27.000000px;}
.w2_c00418{width:867.465000px;}
.w0_c00418{width:892.935000px;}
.w1_c00418{width:893.250000px;}
.x0_c00418{left:0.000000px;}
.x1_c00418{left:12.735000px;}
.x3_c00418{left:95.394300px;}
.x5_c00418{left:149.400150px;}
.x4_c00418{left:432.855000px;}
.x2_c00418{left:880.050300px;}
@media print{
.v0_c00418{vertical-align:0.000000pt;}
.v1_c00418{vertical-align:26.880533pt;}
.ls0_c00418{letter-spacing:0.000000pt;}
.ls1_c00418{letter-spacing:0.051968pt;}
.ws0_c00418{word-spacing:-16.000000pt;}
.ws1_c00418{word-spacing:-9.331968pt;}
.ws2_c00418{word-spacing:0.000000pt;}
._2_c00418{width:1.587200pt;}
._6_c00418{width:2.892800pt;}
._a_c00418{width:3.852800pt;}
._4_c00418{width:5.273600pt;}
._b_c00418{width:6.278400pt;}
._8_c00418{width:7.987200pt;}
._7_c00418{width:9.088000pt;}
._3_c00418{width:10.080000pt;}
._5_c00418{width:10.995200pt;}
._1_c00418{width:12.505600pt;}
._0_c00418{width:13.747200pt;}
._9_c00418{width:14.950400pt;}
.fs2_c00418{font-size:37.120000pt;}
.fs1_c00418{font-size:57.600000pt;}
.fs0_c00418{font-size:64.000000pt;}
.y0_c00418{bottom:0.000000pt;}
.y5_c00418{bottom:4.480000pt;}
.y1_c00418{bottom:11.320000pt;}
.y3_c00418{bottom:40.360000pt;}
.y4_c00418{bottom:47.200000pt;}
.y21_c00418{bottom:98.600000pt;}
.y20_c00418{bottom:130.599867pt;}
.y1f_c00418{bottom:162.599867pt;}
.y1e_c00418{bottom:194.599867pt;}
.y1d_c00418{bottom:226.599867pt;}
.y1c_c00418{bottom:258.599867pt;}
.y1b_c00418{bottom:290.599867pt;}
.y1a_c00418{bottom:322.599867pt;}
.y19_c00418{bottom:354.599867pt;}
.y18_c00418{bottom:386.599867pt;}
.y17_c00418{bottom:418.599867pt;}
.y16_c00418{bottom:450.599867pt;}
.y15_c00418{bottom:482.599867pt;}
.y14_c00418{bottom:514.599867pt;}
.y13_c00418{bottom:546.599867pt;}
.y12_c00418{bottom:578.599867pt;}
.y11_c00418{bottom:610.599867pt;}
.y10_c00418{bottom:642.599867pt;}
.yf_c00418{bottom:674.599867pt;}
.ye_c00418{bottom:706.599867pt;}
.yd_c00418{bottom:738.599867pt;}
.yc_c00418{bottom:770.599867pt;}
.yb_c00418{bottom:802.599867pt;}
.ya_c00418{bottom:834.599867pt;}
.y9_c00418{bottom:866.599867pt;}
.y8_c00418{bottom:898.599867pt;}
.y7_c00418{bottom:930.599867pt;}
.y6_c00418{bottom:962.599867pt;}
.y2_c00418{bottom:1035.880000pt;}
.h4_c00418{height:18.560000pt;}
.h5_c00418{height:62.781250pt;}
.h3_c00418{height:62.812500pt;}
.h7_c00418{height:63.311250pt;}
.h6_c00418{height:63.311783pt;}
.h2_c00418{height:1099.880000pt;}
.h0_c00418{height:1122.520000pt;}
.h1_c00418{height:1122.666667pt;}
.w3_c00418{width:24.000000pt;}
.w2_c00418{width:771.080000pt;}
.w0_c00418{width:793.720000pt;}
.w1_c00418{width:794.000000pt;}
.x0_c00418{left:0.000000pt;}
.x1_c00418{left:11.320000pt;}
.x3_c00418{left:84.794933pt;}
.x5_c00418{left:132.800133pt;}
.x4_c00418{left:384.760000pt;}
.x2_c00418{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00419{font-family:ff1_c00419;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00419;src:url('chunks/assets/font_dd91371644aff65062c5f91d.woff2')format("woff");}.ff2_c00419{font-family:ff2_c00419;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00419;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00419{font-family:ff3_c00419;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00419;src:url('chunks/assets/font_782969d0affa95c70d121e26.woff2')format("woff");}.ff4_c00419{font-family:ff4_c00419;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00419{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00419{vertical-align:0.000000px;}
.ls1_c00419{letter-spacing:-0.014400px;}
.ls0_c00419{letter-spacing:0.000000px;}
.sc__c00419{text-shadow:none;}
.sc0_c00419{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00419{-webkit-text-stroke:0px transparent;}
.sc0_c00419{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00419{word-spacing:-18.000000px;}
.ws1_c00419{word-spacing:0.000000px;}
._7_c00419{width:1.857600px;}
._9_c00419{width:2.980800px;}
._6_c00419{width:4.075200px;}
._8_c00419{width:5.227200px;}
._a_c00419{width:6.415200px;}
._3_c00419{width:7.531200px;}
._1_c00419{width:10.728000px;}
._d_c00419{width:12.160800px;}
._b_c00419{width:15.386400px;}
._c_c00419{width:16.545600px;}
._4_c00419{width:21.398400px;}
._0_c00419{width:23.169600px;}
._2_c00419{width:24.422400px;}
._5_c00419{width:25.560000px;}
.fc1_c00419{color:transparent;}
.fc0_c00419{color:rgb(0,0,0);}
.fs0_c00419{font-size:64.800000px;}
.fs1_c00419{font-size:72.000000px;}
.y0_c00419{bottom:0.000000px;}
.y5_c00419{bottom:1.440000px;}
.y1_c00419{bottom:12.735000px;}
.y3_c00419{bottom:45.405000px;}
.y4_c00419{bottom:56.700000px;}
.y20_c00419{bottom:146.924850px;}
.y1f_c00419{bottom:182.924850px;}
.y1e_c00419{bottom:218.924850px;}
.y1d_c00419{bottom:254.924850px;}
.y1c_c00419{bottom:290.924850px;}
.y1b_c00419{bottom:326.924850px;}
.y1a_c00419{bottom:362.924850px;}
.y19_c00419{bottom:398.924850px;}
.y18_c00419{bottom:434.924850px;}
.y17_c00419{bottom:470.924850px;}
.y16_c00419{bottom:506.924850px;}
.y15_c00419{bottom:542.924850px;}
.y14_c00419{bottom:578.924850px;}
.y13_c00419{bottom:614.924850px;}
.y12_c00419{bottom:650.924850px;}
.y11_c00419{bottom:686.924850px;}
.y10_c00419{bottom:722.924850px;}
.yf_c00419{bottom:758.924850px;}
.ye_c00419{bottom:794.924850px;}
.yd_c00419{bottom:830.924850px;}
.yc_c00419{bottom:866.924850px;}
.yb_c00419{bottom:902.924850px;}
.ya_c00419{bottom:938.924850px;}
.y9_c00419{bottom:974.924850px;}
.y8_c00419{bottom:1010.924850px;}
.y7_c00419{bottom:1046.924850px;}
.y6_c00419{bottom:1082.924850px;}
.y2_c00419{bottom:1165.365000px;}
.h5_c00419{height:17.280000px;}
.h3_c00419{height:43.189453px;}
.h4_c00419{height:70.664062px;}
.h2_c00419{height:1237.365000px;}
.h0_c00419{height:1262.835000px;}
.h1_c00419{height:1263.000000px;}
.w3_c00419{width:47.520000px;}
.w2_c00419{width:867.465000px;}
.w0_c00419{width:892.935000px;}
.w1_c00419{width:893.250000px;}
.x3_c00419{left:-39.599850px;}
.x0_c00419{left:0.000000px;}
.x5_c00419{left:10.237500px;}
.x1_c00419{left:12.735000px;}
.x6_c00419{left:95.400150px;}
.x7_c00419{left:149.400150px;}
.x4_c00419{left:422.775000px;}
.x2_c00419{left:880.050300px;}
@media print{
.v0_c00419{vertical-align:0.000000pt;}
.ls1_c00419{letter-spacing:-0.012800pt;}
.ls0_c00419{letter-spacing:0.000000pt;}
.ws0_c00419{word-spacing:-16.000000pt;}
.ws1_c00419{word-spacing:0.000000pt;}
._7_c00419{width:1.651200pt;}
._9_c00419{width:2.649600pt;}
._6_c00419{width:3.622400pt;}
._8_c00419{width:4.646400pt;}
._a_c00419{width:5.702400pt;}
._3_c00419{width:6.694400pt;}
._1_c00419{width:9.536000pt;}
._d_c00419{width:10.809600pt;}
._b_c00419{width:13.676800pt;}
._c_c00419{width:14.707200pt;}
._4_c00419{width:19.020800pt;}
._0_c00419{width:20.595200pt;}
._2_c00419{width:21.708800pt;}
._5_c00419{width:22.720000pt;}
.fs0_c00419{font-size:57.600000pt;}
.fs1_c00419{font-size:64.000000pt;}
.y0_c00419{bottom:0.000000pt;}
.y5_c00419{bottom:1.280000pt;}
.y1_c00419{bottom:11.320000pt;}
.y3_c00419{bottom:40.360000pt;}
.y4_c00419{bottom:50.400000pt;}
.y20_c00419{bottom:130.599867pt;}
.y1f_c00419{bottom:162.599867pt;}
.y1e_c00419{bottom:194.599867pt;}
.y1d_c00419{bottom:226.599867pt;}
.y1c_c00419{bottom:258.599867pt;}
.y1b_c00419{bottom:290.599867pt;}
.y1a_c00419{bottom:322.599867pt;}
.y19_c00419{bottom:354.599867pt;}
.y18_c00419{bottom:386.599867pt;}
.y17_c00419{bottom:418.599867pt;}
.y16_c00419{bottom:450.599867pt;}
.y15_c00419{bottom:482.599867pt;}
.y14_c00419{bottom:514.599867pt;}
.y13_c00419{bottom:546.599867pt;}
.y12_c00419{bottom:578.599867pt;}
.y11_c00419{bottom:610.599867pt;}
.y10_c00419{bottom:642.599867pt;}
.yf_c00419{bottom:674.599867pt;}
.ye_c00419{bottom:706.599867pt;}
.yd_c00419{bottom:738.599867pt;}
.yc_c00419{bottom:770.599867pt;}
.yb_c00419{bottom:802.599867pt;}
.ya_c00419{bottom:834.599867pt;}
.y9_c00419{bottom:866.599867pt;}
.y8_c00419{bottom:898.599867pt;}
.y7_c00419{bottom:930.599867pt;}
.y6_c00419{bottom:962.599867pt;}
.y2_c00419{bottom:1035.880000pt;}
.h5_c00419{height:15.360000pt;}
.h3_c00419{height:38.390625pt;}
.h4_c00419{height:62.812500pt;}
.h2_c00419{height:1099.880000pt;}
.h0_c00419{height:1122.520000pt;}
.h1_c00419{height:1122.666667pt;}
.w3_c00419{width:42.240000pt;}
.w2_c00419{width:771.080000pt;}
.w0_c00419{width:793.720000pt;}
.w1_c00419{width:794.000000pt;}
.x3_c00419{left:-35.199867pt;}
.x0_c00419{left:0.000000pt;}
.x5_c00419{left:9.100000pt;}
.x1_c00419{left:11.320000pt;}
.x6_c00419{left:84.800133pt;}
.x7_c00419{left:132.800133pt;}
.x4_c00419{left:375.800000pt;}
.x2_c00419{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9ad1a28b4405734eb4fc0db4.woff2')format("woff");}.ff1_c00420{font-family:ff1_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:ff2_c00420;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00420{font-family:ff2_c00420;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00420;src:url('chunks/assets/font_1ebde2e260d1bc1fd550b03c.woff2')format("woff");}.ff3_c00420{font-family:ff3_c00420;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00420{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00420{vertical-align:0.000000px;}
.v1_c00420{vertical-align:30.240600px;}
.ls1_c00420{letter-spacing:0.000000px;}
.ls2_c00420{letter-spacing:0.058464px;}
.ls0_c00420{letter-spacing:0.288000px;}
.sc__c00420{text-shadow:none;}
.sc0_c00420{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00420{-webkit-text-stroke:0px transparent;}
.sc0_c00420{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00420{word-spacing:-18.000000px;}
.ws1_c00420{word-spacing:-10.498464px;}
.ws2_c00420{word-spacing:0.000000px;}
._9_c00420{width:1.260000px;}
._3_c00420{width:2.721600px;}
._2_c00420{width:3.931200px;}
._1_c00420{width:5.925600px;}
._6_c00420{width:7.452000px;}
._5_c00420{width:10.699200px;}
._4_c00420{width:12.520800px;}
._7_c00420{width:16.624800px;}
._8_c00420{width:26.071200px;}
._0_c00420{width:30.247200px;}
.fc1_c00420{color:transparent;}
.fc0_c00420{color:rgb(0,0,0);}
.fs2_c00420{font-size:41.760000px;}
.fs1_c00420{font-size:64.800000px;}
.fs0_c00420{font-size:72.000000px;}
.y0_c00420{bottom:0.000000px;}
.y5_c00420{bottom:5.040000px;}
.y1_c00420{bottom:12.735000px;}
.y3_c00420{bottom:45.405000px;}
.y4_c00420{bottom:53.100000px;}
.y21_c00420{bottom:110.925000px;}
.y20_c00420{bottom:146.925000px;}
.y1f_c00420{bottom:182.925000px;}
.y1e_c00420{bottom:218.925000px;}
.y1d_c00420{bottom:254.925000px;}
.y1c_c00420{bottom:290.925000px;}
.y1b_c00420{bottom:326.925000px;}
.y1a_c00420{bottom:362.925000px;}
.y19_c00420{bottom:398.925000px;}
.y18_c00420{bottom:434.925000px;}
.y17_c00420{bottom:470.925000px;}
.y16_c00420{bottom:506.925000px;}
.y15_c00420{bottom:542.925000px;}
.y14_c00420{bottom:578.925000px;}
.y13_c00420{bottom:614.924850px;}
.y12_c00420{bottom:650.924850px;}
.y11_c00420{bottom:686.924850px;}
.y10_c00420{bottom:722.924850px;}
.yf_c00420{bottom:758.924850px;}
.ye_c00420{bottom:794.924850px;}
.yd_c00420{bottom:830.924850px;}
.yc_c00420{bottom:866.924850px;}
.yb_c00420{bottom:902.924850px;}
.ya_c00420{bottom:938.924850px;}
.y9_c00420{bottom:974.924850px;}
.y8_c00420{bottom:1010.924850px;}
.y7_c00420{bottom:1046.924850px;}
.y6_c00420{bottom:1082.924850px;}
.y2_c00420{bottom:1165.365000px;}
.h4_c00420{height:20.880000px;}
.h3_c00420{height:70.664062px;}
.h6_c00420{height:71.225156px;}
.h5_c00420{height:71.225756px;}
.h2_c00420{height:1237.365000px;}
.h0_c00420{height:1262.835000px;}
.h1_c00420{height:1263.000000px;}
.w3_c00420{width:27.000000px;}
.w2_c00420{width:867.465000px;}
.w0_c00420{width:892.935000px;}
.w1_c00420{width:893.250000px;}
.x0_c00420{left:0.000000px;}
.x1_c00420{left:12.735000px;}
.x3_c00420{left:95.394300px;}
.x5_c00420{left:149.400150px;}
.x4_c00420{left:432.855000px;}
.x2_c00420{left:880.050300px;}
@media print{
.v0_c00420{vertical-align:0.000000pt;}
.v1_c00420{vertical-align:26.880533pt;}
.ls1_c00420{letter-spacing:0.000000pt;}
.ls2_c00420{letter-spacing:0.051968pt;}
.ls0_c00420{letter-spacing:0.256000pt;}
.ws0_c00420{word-spacing:-16.000000pt;}
.ws1_c00420{word-spacing:-9.331968pt;}
.ws2_c00420{word-spacing:0.000000pt;}
._9_c00420{width:1.120000pt;}
._3_c00420{width:2.419200pt;}
._2_c00420{width:3.494400pt;}
._1_c00420{width:5.267200pt;}
._6_c00420{width:6.624000pt;}
._5_c00420{width:9.510400pt;}
._4_c00420{width:11.129600pt;}
._7_c00420{width:14.777600pt;}
._8_c00420{width:23.174400pt;}
._0_c00420{width:26.886400pt;}
.fs2_c00420{font-size:37.120000pt;}
.fs1_c00420{font-size:57.600000pt;}
.fs0_c00420{font-size:64.000000pt;}
.y0_c00420{bottom:0.000000pt;}
.y5_c00420{bottom:4.480000pt;}
.y1_c00420{bottom:11.320000pt;}
.y3_c00420{bottom:40.360000pt;}
.y4_c00420{bottom:47.200000pt;}
.y21_c00420{bottom:98.600000pt;}
.y20_c00420{bottom:130.600000pt;}
.y1f_c00420{bottom:162.600000pt;}
.y1e_c00420{bottom:194.600000pt;}
.y1d_c00420{bottom:226.600000pt;}
.y1c_c00420{bottom:258.600000pt;}
.y1b_c00420{bottom:290.600000pt;}
.y1a_c00420{bottom:322.600000pt;}
.y19_c00420{bottom:354.600000pt;}
.y18_c00420{bottom:386.600000pt;}
.y17_c00420{bottom:418.600000pt;}
.y16_c00420{bottom:450.600000pt;}
.y15_c00420{bottom:482.600000pt;}
.y14_c00420{bottom:514.600000pt;}
.y13_c00420{bottom:546.599867pt;}
.y12_c00420{bottom:578.599867pt;}
.y11_c00420{bottom:610.599867pt;}
.y10_c00420{bottom:642.599867pt;}
.yf_c00420{bottom:674.599867pt;}
.ye_c00420{bottom:706.599867pt;}
.yd_c00420{bottom:738.599867pt;}
.yc_c00420{bottom:770.599867pt;}
.yb_c00420{bottom:802.599867pt;}
.ya_c00420{bottom:834.599867pt;}
.y9_c00420{bottom:866.599867pt;}
.y8_c00420{bottom:898.599867pt;}
.y7_c00420{bottom:930.599867pt;}
.y6_c00420{bottom:962.599867pt;}
.y2_c00420{bottom:1035.880000pt;}
.h4_c00420{height:18.560000pt;}
.h3_c00420{height:62.812500pt;}
.h6_c00420{height:63.311250pt;}
.h5_c00420{height:63.311783pt;}
.h2_c00420{height:1099.880000pt;}
.h0_c00420{height:1122.520000pt;}
.h1_c00420{height:1122.666667pt;}
.w3_c00420{width:24.000000pt;}
.w2_c00420{width:771.080000pt;}
.w0_c00420{width:793.720000pt;}
.w1_c00420{width:794.000000pt;}
.x0_c00420{left:0.000000pt;}
.x1_c00420{left:11.320000pt;}
.x3_c00420{left:84.794933pt;}
.x5_c00420{left:132.800133pt;}
.x4_c00420{left:384.760000pt;}
.x2_c00420{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00421{font-family:ff1_c00421;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00421;src:url('chunks/assets/font_da8ab46e52a990cbf9377688.woff2')format("woff");}.ff2_c00421{font-family:ff2_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:ff3_c00421;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00421{font-family:ff3_c00421;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00421;src:url('chunks/assets/font_07915182e1eb0f5cd31485af.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;}
.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;}
.v1_c00421{vertical-align:30.240600px;}
.ls0_c00421{letter-spacing:0.000000px;}
.ls1_c00421{letter-spacing:0.014400px;}
.ls2_c00421{letter-spacing:0.058464px;}
.sc__c00421{text-shadow:none;}
.sc0_c00421{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00421{-webkit-text-stroke:0px transparent;}
.sc0_c00421{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00421{word-spacing:-18.000000px;}
.ws1_c00421{word-spacing:-10.498464px;}
.ws2_c00421{word-spacing:0.000000px;}
._6_c00421{width:2.145600px;}
._4_c00421{width:3.225600px;}
._5_c00421{width:4.428000px;}
._7_c00421{width:6.379200px;}
._9_c00421{width:7.848000px;}
._2_c00421{width:9.345600px;}
._0_c00421{width:10.346400px;}
._3_c00421{width:11.772000px;}
._1_c00421{width:13.766400px;}
._a_c00421{width:23.911200px;}
._b_c00421{width:26.092800px;}
._8_c00421{width:33.436800px;}
.fc1_c00421{color:transparent;}
.fc0_c00421{color:rgb(0,0,0);}
.fs2_c00421{font-size:41.760000px;}
.fs0_c00421{font-size:64.800000px;}
.fs1_c00421{font-size:72.000000px;}
.y0_c00421{bottom:0.000000px;}
.y5_c00421{bottom:1.440000px;}
.y1_c00421{bottom:12.735000px;}
.y3_c00421{bottom:45.405000px;}
.y4_c00421{bottom:56.700000px;}
.y21_c00421{bottom:110.924850px;}
.y20_c00421{bottom:146.924850px;}
.y1f_c00421{bottom:182.924850px;}
.y1e_c00421{bottom:218.924850px;}
.y1d_c00421{bottom:254.924850px;}
.y1c_c00421{bottom:290.924850px;}
.y1b_c00421{bottom:326.924850px;}
.y1a_c00421{bottom:362.924850px;}
.y19_c00421{bottom:398.924850px;}
.y18_c00421{bottom:434.924850px;}
.y17_c00421{bottom:470.924850px;}
.y16_c00421{bottom:506.924850px;}
.y15_c00421{bottom:542.924850px;}
.y14_c00421{bottom:578.924850px;}
.y13_c00421{bottom:614.924850px;}
.y12_c00421{bottom:650.924850px;}
.y11_c00421{bottom:686.924850px;}
.y10_c00421{bottom:722.924850px;}
.yf_c00421{bottom:758.924850px;}
.ye_c00421{bottom:794.924850px;}
.yd_c00421{bottom:830.924850px;}
.yc_c00421{bottom:866.924850px;}
.yb_c00421{bottom:902.924850px;}
.ya_c00421{bottom:938.924850px;}
.y9_c00421{bottom:974.924850px;}
.y8_c00421{bottom:1010.924850px;}
.y7_c00421{bottom:1046.924850px;}
.y6_c00421{bottom:1082.924850px;}
.y2_c00421{bottom:1165.365000px;}
.h5_c00421{height:17.280000px;}
.h3_c00421{height:43.189453px;}
.h4_c00421{height:70.664062px;}
.h6_c00421{height:71.225756px;}
.h2_c00421{height:1237.365000px;}
.h0_c00421{height:1262.835000px;}
.h1_c00421{height:1263.000000px;}
.w3_c00421{width:47.520000px;}
.w2_c00421{width:867.465000px;}
.w0_c00421{width:892.935000px;}
.w1_c00421{width:893.250000px;}
.x3_c00421{left:-39.599850px;}
.x0_c00421{left:0.000000px;}
.x5_c00421{left:10.237500px;}
.x1_c00421{left:12.735000px;}
.x6_c00421{left:95.400150px;}
.x7_c00421{left:149.400150px;}
.x4_c00421{left:422.775000px;}
.x2_c00421{left:880.050300px;}
@media print{
.v0_c00421{vertical-align:0.000000pt;}
.v1_c00421{vertical-align:26.880533pt;}
.ls0_c00421{letter-spacing:0.000000pt;}
.ls1_c00421{letter-spacing:0.012800pt;}
.ls2_c00421{letter-spacing:0.051968pt;}
.ws0_c00421{word-spacing:-16.000000pt;}
.ws1_c00421{word-spacing:-9.331968pt;}
.ws2_c00421{word-spacing:0.000000pt;}
._6_c00421{width:1.907200pt;}
._4_c00421{width:2.867200pt;}
._5_c00421{width:3.936000pt;}
._7_c00421{width:5.670400pt;}
._9_c00421{width:6.976000pt;}
._2_c00421{width:8.307200pt;}
._0_c00421{width:9.196800pt;}
._3_c00421{width:10.464000pt;}
._1_c00421{width:12.236800pt;}
._a_c00421{width:21.254400pt;}
._b_c00421{width:23.193600pt;}
._8_c00421{width:29.721600pt;}
.fs2_c00421{font-size:37.120000pt;}
.fs0_c00421{font-size:57.600000pt;}
.fs1_c00421{font-size:64.000000pt;}
.y0_c00421{bottom:0.000000pt;}
.y5_c00421{bottom:1.280000pt;}
.y1_c00421{bottom:11.320000pt;}
.y3_c00421{bottom:40.360000pt;}
.y4_c00421{bottom:50.400000pt;}
.y21_c00421{bottom:98.599867pt;}
.y20_c00421{bottom:130.599867pt;}
.y1f_c00421{bottom:162.599867pt;}
.y1e_c00421{bottom:194.599867pt;}
.y1d_c00421{bottom:226.599867pt;}
.y1c_c00421{bottom:258.599867pt;}
.y1b_c00421{bottom:290.599867pt;}
.y1a_c00421{bottom:322.599867pt;}
.y19_c00421{bottom:354.599867pt;}
.y18_c00421{bottom:386.599867pt;}
.y17_c00421{bottom:418.599867pt;}
.y16_c00421{bottom:450.599867pt;}
.y15_c00421{bottom:482.599867pt;}
.y14_c00421{bottom:514.599867pt;}
.y13_c00421{bottom:546.599867pt;}
.y12_c00421{bottom:578.599867pt;}
.y11_c00421{bottom:610.599867pt;}
.y10_c00421{bottom:642.599867pt;}
.yf_c00421{bottom:674.599867pt;}
.ye_c00421{bottom:706.599867pt;}
.yd_c00421{bottom:738.599867pt;}
.yc_c00421{bottom:770.599867pt;}
.yb_c00421{bottom:802.599867pt;}
.ya_c00421{bottom:834.599867pt;}
.y9_c00421{bottom:866.599867pt;}
.y8_c00421{bottom:898.599867pt;}
.y7_c00421{bottom:930.599867pt;}
.y6_c00421{bottom:962.599867pt;}
.y2_c00421{bottom:1035.880000pt;}
.h5_c00421{height:15.360000pt;}
.h3_c00421{height:38.390625pt;}
.h4_c00421{height:62.812500pt;}
.h6_c00421{height:63.311783pt;}
.h2_c00421{height:1099.880000pt;}
.h0_c00421{height:1122.520000pt;}
.h1_c00421{height:1122.666667pt;}
.w3_c00421{width:42.240000pt;}
.w2_c00421{width:771.080000pt;}
.w0_c00421{width:793.720000pt;}
.w1_c00421{width:794.000000pt;}
.x3_c00421{left:-35.199867pt;}
.x0_c00421{left:0.000000pt;}
.x5_c00421{left:9.100000pt;}
.x1_c00421{left:11.320000pt;}
.x6_c00421{left:84.800133pt;}
.x7_c00421{left:132.800133pt;}
.x4_c00421{left:375.800000pt;}
.x2_c00421{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3228a8fa6423a9cc4079a33c.woff2')format("woff");}.ff1_c00422{font-family:ff1_c00422;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00422;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00422{font-family:ff2_c00422;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00422;src:url('chunks/assets/font_09589f597214ea6cd4a7c35a.woff2')format("woff");}.ff3_c00422{font-family:ff3_c00422;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00422;src:url('chunks/assets/font_f5b996b3d506b752c8b2d642.woff2')format("woff");}.ff4_c00422{font-family:ff4_c00422;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00422{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00422{vertical-align:0.000000px;}
.v1_c00422{vertical-align:30.240600px;}
.ls2_c00422{letter-spacing:-0.014400px;}
.ls0_c00422{letter-spacing:0.000000px;}
.ls3_c00422{letter-spacing:0.058464px;}
.ls5_c00422{letter-spacing:3.578400px;}
.ls1_c00422{letter-spacing:5.875200px;}
.ls4_c00422{letter-spacing:10.404000px;}
.sc__c00422{text-shadow:none;}
.sc0_c00422{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00422{-webkit-text-stroke:0px transparent;}
.sc0_c00422{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00422{word-spacing:-18.000000px;}
.ws1_c00422{word-spacing:-10.498464px;}
.ws2_c00422{word-spacing:0.000000px;}
._3_c00422{margin-left:-10.982208px;}
._1_c00422{margin-left:-6.004800px;}
._9_c00422{margin-left:-3.679200px;}
._7_c00422{width:1.900800px;}
._8_c00422{width:3.578400px;}
._4_c00422{width:4.609392px;}
._0_c00422{width:5.875200px;}
._a_c00422{width:7.077600px;}
._b_c00422{width:8.488800px;}
._2_c00422{width:10.404000px;}
._c_c00422{width:11.721600px;}
._5_c00422{width:15.458400px;}
._d_c00422{width:16.473600px;}
._6_c00422{width:19.461600px;}
.fc1_c00422{color:transparent;}
.fc0_c00422{color:rgb(0,0,0);}
.fs2_c00422{font-size:41.760000px;}
.fs1_c00422{font-size:64.800000px;}
.fs0_c00422{font-size:72.000000px;}
.y0_c00422{bottom:0.000000px;}
.y5_c00422{bottom:5.040000px;}
.y1_c00422{bottom:12.735000px;}
.y3_c00422{bottom:45.405000px;}
.y4_c00422{bottom:53.100000px;}
.y20_c00422{bottom:146.924850px;}
.y1f_c00422{bottom:182.924850px;}
.y1e_c00422{bottom:218.924850px;}
.y1d_c00422{bottom:254.924850px;}
.y1c_c00422{bottom:290.924850px;}
.y1b_c00422{bottom:326.924850px;}
.y1a_c00422{bottom:362.924850px;}
.y19_c00422{bottom:398.924850px;}
.y18_c00422{bottom:434.924850px;}
.y17_c00422{bottom:470.924850px;}
.y16_c00422{bottom:506.924850px;}
.y15_c00422{bottom:542.924850px;}
.y14_c00422{bottom:578.924850px;}
.y13_c00422{bottom:614.924850px;}
.y12_c00422{bottom:650.924850px;}
.y11_c00422{bottom:686.924850px;}
.y10_c00422{bottom:722.924850px;}
.yf_c00422{bottom:758.924850px;}
.ye_c00422{bottom:794.924850px;}
.yd_c00422{bottom:830.924850px;}
.yc_c00422{bottom:866.924850px;}
.yb_c00422{bottom:902.924850px;}
.ya_c00422{bottom:938.924850px;}
.y9_c00422{bottom:974.924850px;}
.y8_c00422{bottom:1010.924850px;}
.y7_c00422{bottom:1046.924850px;}
.y6_c00422{bottom:1082.924850px;}
.y2_c00422{bottom:1165.365000px;}
.h4_c00422{height:20.880000px;}
.h6_c00422{height:70.628906px;}
.h3_c00422{height:70.664062px;}
.h5_c00422{height:71.225756px;}
.h2_c00422{height:1237.365000px;}
.h0_c00422{height:1262.835000px;}
.h1_c00422{height:1263.000000px;}
.w3_c00422{width:27.000000px;}
.w2_c00422{width:867.465000px;}
.w0_c00422{width:892.935000px;}
.w1_c00422{width:893.250000px;}
.x0_c00422{left:0.000000px;}
.x1_c00422{left:12.735000px;}
.x3_c00422{left:95.394300px;}
.x5_c00422{left:149.400150px;}
.x4_c00422{left:432.855000px;}
.x2_c00422{left:880.050300px;}
@media print{
.v0_c00422{vertical-align:0.000000pt;}
.v1_c00422{vertical-align:26.880533pt;}
.ls2_c00422{letter-spacing:-0.012800pt;}
.ls0_c00422{letter-spacing:0.000000pt;}
.ls3_c00422{letter-spacing:0.051968pt;}
.ls5_c00422{letter-spacing:3.180800pt;}
.ls1_c00422{letter-spacing:5.222400pt;}
.ls4_c00422{letter-spacing:9.248000pt;}
.ws0_c00422{word-spacing:-16.000000pt;}
.ws1_c00422{word-spacing:-9.331968pt;}
.ws2_c00422{word-spacing:0.000000pt;}
._3_c00422{margin-left:-9.761963pt;}
._1_c00422{margin-left:-5.337600pt;}
._9_c00422{margin-left:-3.270400pt;}
._7_c00422{width:1.689600pt;}
._8_c00422{width:3.180800pt;}
._4_c00422{width:4.097237pt;}
._0_c00422{width:5.222400pt;}
._a_c00422{width:6.291200pt;}
._b_c00422{width:7.545600pt;}
._2_c00422{width:9.248000pt;}
._c_c00422{width:10.419200pt;}
._5_c00422{width:13.740800pt;}
._d_c00422{width:14.643200pt;}
._6_c00422{width:17.299200pt;}
.fs2_c00422{font-size:37.120000pt;}
.fs1_c00422{font-size:57.600000pt;}
.fs0_c00422{font-size:64.000000pt;}
.y0_c00422{bottom:0.000000pt;}
.y5_c00422{bottom:4.480000pt;}
.y1_c00422{bottom:11.320000pt;}
.y3_c00422{bottom:40.360000pt;}
.y4_c00422{bottom:47.200000pt;}
.y20_c00422{bottom:130.599867pt;}
.y1f_c00422{bottom:162.599867pt;}
.y1e_c00422{bottom:194.599867pt;}
.y1d_c00422{bottom:226.599867pt;}
.y1c_c00422{bottom:258.599867pt;}
.y1b_c00422{bottom:290.599867pt;}
.y1a_c00422{bottom:322.599867pt;}
.y19_c00422{bottom:354.599867pt;}
.y18_c00422{bottom:386.599867pt;}
.y17_c00422{bottom:418.599867pt;}
.y16_c00422{bottom:450.599867pt;}
.y15_c00422{bottom:482.599867pt;}
.y14_c00422{bottom:514.599867pt;}
.y13_c00422{bottom:546.599867pt;}
.y12_c00422{bottom:578.599867pt;}
.y11_c00422{bottom:610.599867pt;}
.y10_c00422{bottom:642.599867pt;}
.yf_c00422{bottom:674.599867pt;}
.ye_c00422{bottom:706.599867pt;}
.yd_c00422{bottom:738.599867pt;}
.yc_c00422{bottom:770.599867pt;}
.yb_c00422{bottom:802.599867pt;}
.ya_c00422{bottom:834.599867pt;}
.y9_c00422{bottom:866.599867pt;}
.y8_c00422{bottom:898.599867pt;}
.y7_c00422{bottom:930.599867pt;}
.y6_c00422{bottom:962.599867pt;}
.y2_c00422{bottom:1035.880000pt;}
.h4_c00422{height:18.560000pt;}
.h6_c00422{height:62.781250pt;}
.h3_c00422{height:62.812500pt;}
.h5_c00422{height:63.311783pt;}
.h2_c00422{height:1099.880000pt;}
.h0_c00422{height:1122.520000pt;}
.h1_c00422{height:1122.666667pt;}
.w3_c00422{width:24.000000pt;}
.w2_c00422{width:771.080000pt;}
.w0_c00422{width:793.720000pt;}
.w1_c00422{width:794.000000pt;}
.x0_c00422{left:0.000000pt;}
.x1_c00422{left:11.320000pt;}
.x3_c00422{left:84.794933pt;}
.x5_c00422{left:132.800133pt;}
.x4_c00422{left:384.760000pt;}
.x2_c00422{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00423{font-family:ff1_c00423;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00423;src:url('chunks/assets/font_55729b7d1d1f72c69842083f.woff2')format("woff");}.ff2_c00423{font-family:ff2_c00423;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00423;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00423{font-family:ff3_c00423;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00423{letter-spacing:0.000000px;}
.sc__c00423{text-shadow:none;}
.sc0_c00423{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00423{-webkit-text-stroke:0px transparent;}
.sc0_c00423{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00423{word-spacing:-18.000000px;}
.ws1_c00423{word-spacing:0.000000px;}
._3_c00423{width:1.303200px;}
._6_c00423{width:2.476800px;}
._5_c00423{width:3.744000px;}
._1_c00423{width:5.248800px;}
._4_c00423{width:7.135200px;}
._9_c00423{width:8.308800px;}
._0_c00423{width:9.352800px;}
._7_c00423{width:10.807200px;}
._8_c00423{width:12.513600px;}
._2_c00423{width:13.651200px;}
.fc1_c00423{color:transparent;}
.fc0_c00423{color:rgb(0,0,0);}
.fs0_c00423{font-size:64.800000px;}
.fs1_c00423{font-size:72.000000px;}
.y0_c00423{bottom:0.000000px;}
.y5_c00423{bottom:1.440000px;}
.y1_c00423{bottom:12.735000px;}
.y3_c00423{bottom:45.405000px;}
.y4_c00423{bottom:56.700000px;}
.y21_c00423{bottom:110.924850px;}
.y20_c00423{bottom:146.924850px;}
.y1f_c00423{bottom:182.924850px;}
.y1e_c00423{bottom:218.924850px;}
.y1d_c00423{bottom:254.924850px;}
.y1c_c00423{bottom:290.924850px;}
.y1b_c00423{bottom:326.924850px;}
.y1a_c00423{bottom:362.924850px;}
.y19_c00423{bottom:398.924850px;}
.y18_c00423{bottom:434.924850px;}
.y17_c00423{bottom:470.924850px;}
.y16_c00423{bottom:506.924850px;}
.y15_c00423{bottom:542.924850px;}
.y14_c00423{bottom:578.924850px;}
.y13_c00423{bottom:614.924850px;}
.y12_c00423{bottom:650.924850px;}
.y11_c00423{bottom:686.924850px;}
.y10_c00423{bottom:722.924850px;}
.yf_c00423{bottom:758.924850px;}
.ye_c00423{bottom:794.924850px;}
.yd_c00423{bottom:830.924850px;}
.yc_c00423{bottom:866.924850px;}
.yb_c00423{bottom:902.924850px;}
.ya_c00423{bottom:938.924850px;}
.y9_c00423{bottom:974.924850px;}
.y8_c00423{bottom:1010.924850px;}
.y7_c00423{bottom:1046.924850px;}
.y6_c00423{bottom:1082.924850px;}
.y2_c00423{bottom:1165.365000px;}
.h5_c00423{height:17.280000px;}
.h3_c00423{height:43.189453px;}
.h4_c00423{height:70.664062px;}
.h2_c00423{height:1237.365000px;}
.h0_c00423{height:1262.835000px;}
.h1_c00423{height:1263.000000px;}
.w3_c00423{width:47.520000px;}
.w2_c00423{width:867.465000px;}
.w0_c00423{width:892.935000px;}
.w1_c00423{width:893.250000px;}
.x3_c00423{left:-39.599850px;}
.x0_c00423{left:0.000000px;}
.x5_c00423{left:10.237500px;}
.x1_c00423{left:12.735000px;}
.x7_c00423{left:95.400150px;}
.x6_c00423{left:149.400150px;}
.x4_c00423{left:422.775000px;}
.x2_c00423{left:880.050300px;}
@media print{
.v0_c00423{vertical-align:0.000000pt;}
.ls0_c00423{letter-spacing:0.000000pt;}
.ws0_c00423{word-spacing:-16.000000pt;}
.ws1_c00423{word-spacing:0.000000pt;}
._3_c00423{width:1.158400pt;}
._6_c00423{width:2.201600pt;}
._5_c00423{width:3.328000pt;}
._1_c00423{width:4.665600pt;}
._4_c00423{width:6.342400pt;}
._9_c00423{width:7.385600pt;}
._0_c00423{width:8.313600pt;}
._7_c00423{width:9.606400pt;}
._8_c00423{width:11.123200pt;}
._2_c00423{width:12.134400pt;}
.fs0_c00423{font-size:57.600000pt;}
.fs1_c00423{font-size:64.000000pt;}
.y0_c00423{bottom:0.000000pt;}
.y5_c00423{bottom:1.280000pt;}
.y1_c00423{bottom:11.320000pt;}
.y3_c00423{bottom:40.360000pt;}
.y4_c00423{bottom:50.400000pt;}
.y21_c00423{bottom:98.599867pt;}
.y20_c00423{bottom:130.599867pt;}
.y1f_c00423{bottom:162.599867pt;}
.y1e_c00423{bottom:194.599867pt;}
.y1d_c00423{bottom:226.599867pt;}
.y1c_c00423{bottom:258.599867pt;}
.y1b_c00423{bottom:290.599867pt;}
.y1a_c00423{bottom:322.599867pt;}
.y19_c00423{bottom:354.599867pt;}
.y18_c00423{bottom:386.599867pt;}
.y17_c00423{bottom:418.599867pt;}
.y16_c00423{bottom:450.599867pt;}
.y15_c00423{bottom:482.599867pt;}
.y14_c00423{bottom:514.599867pt;}
.y13_c00423{bottom:546.599867pt;}
.y12_c00423{bottom:578.599867pt;}
.y11_c00423{bottom:610.599867pt;}
.y10_c00423{bottom:642.599867pt;}
.yf_c00423{bottom:674.599867pt;}
.ye_c00423{bottom:706.599867pt;}
.yd_c00423{bottom:738.599867pt;}
.yc_c00423{bottom:770.599867pt;}
.yb_c00423{bottom:802.599867pt;}
.ya_c00423{bottom:834.599867pt;}
.y9_c00423{bottom:866.599867pt;}
.y8_c00423{bottom:898.599867pt;}
.y7_c00423{bottom:930.599867pt;}
.y6_c00423{bottom:962.599867pt;}
.y2_c00423{bottom:1035.880000pt;}
.h5_c00423{height:15.360000pt;}
.h3_c00423{height:38.390625pt;}
.h4_c00423{height:62.812500pt;}
.h2_c00423{height:1099.880000pt;}
.h0_c00423{height:1122.520000pt;}
.h1_c00423{height:1122.666667pt;}
.w3_c00423{width:42.240000pt;}
.w2_c00423{width:771.080000pt;}
.w0_c00423{width:793.720000pt;}
.w1_c00423{width:794.000000pt;}
.x3_c00423{left:-35.199867pt;}
.x0_c00423{left:0.000000pt;}
.x5_c00423{left:9.100000pt;}
.x1_c00423{left:11.320000pt;}
.x7_c00423{left:84.800133pt;}
.x6_c00423{left:132.800133pt;}
.x4_c00423{left:375.800000pt;}
.x2_c00423{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_b12e7ea63f06cf92b920ec08.woff2')format("woff");}.ff1_c00424{font-family:ff1_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:ff2_c00424;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00424{font-family:ff2_c00424;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00424;src:url('chunks/assets/font_339b18a552bcf9b30f7fc434.woff2')format("woff");}.ff3_c00424{font-family:ff3_c00424;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00424;src:url('chunks/assets/font_2c2df0ed3d7f8754257372dc.woff2')format("woff");}.ff4_c00424{font-family:ff4_c00424;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00424{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00424{vertical-align:0.000000px;}
.ls0_c00424{letter-spacing:0.000000px;}
.sc__c00424{text-shadow:none;}
.sc0_c00424{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00424{-webkit-text-stroke:0px transparent;}
.sc0_c00424{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00424{word-spacing:-18.000000px;}
.ws1_c00424{word-spacing:0.000000px;}
._8_c00424{width:1.116000px;}
._0_c00424{width:2.253600px;}
._6_c00424{width:4.262400px;}
._2_c00424{width:6.271200px;}
._1_c00424{width:7.466400px;}
._9_c00424{width:8.697600px;}
._7_c00424{width:9.936000px;}
._c_c00424{width:11.246400px;}
._5_c00424{width:12.643200px;}
._d_c00424{width:13.737600px;}
._4_c00424{width:15.098400px;}
._a_c00424{width:20.203200px;}
._b_c00424{width:21.643200px;}
._3_c00424{width:22.910400px;}
.fc1_c00424{color:transparent;}
.fc0_c00424{color:rgb(0,0,0);}
.fs1_c00424{font-size:64.800000px;}
.fs0_c00424{font-size:72.000000px;}
.y0_c00424{bottom:0.000000px;}
.y5_c00424{bottom:5.040000px;}
.y1_c00424{bottom:12.735000px;}
.y3_c00424{bottom:45.405000px;}
.y4_c00424{bottom:53.100000px;}
.y20_c00424{bottom:146.924850px;}
.y1f_c00424{bottom:182.924850px;}
.y1e_c00424{bottom:218.924850px;}
.y1d_c00424{bottom:254.924850px;}
.y1c_c00424{bottom:290.924850px;}
.y1b_c00424{bottom:326.924850px;}
.y1a_c00424{bottom:362.924850px;}
.y19_c00424{bottom:398.924850px;}
.y18_c00424{bottom:434.924850px;}
.y17_c00424{bottom:470.924850px;}
.y16_c00424{bottom:506.924850px;}
.y15_c00424{bottom:542.924850px;}
.y14_c00424{bottom:578.924850px;}
.y13_c00424{bottom:614.924850px;}
.y12_c00424{bottom:650.924850px;}
.y11_c00424{bottom:686.924850px;}
.y10_c00424{bottom:722.924850px;}
.yf_c00424{bottom:758.924850px;}
.ye_c00424{bottom:794.924850px;}
.yd_c00424{bottom:830.924850px;}
.yc_c00424{bottom:866.924850px;}
.yb_c00424{bottom:902.924850px;}
.ya_c00424{bottom:938.924850px;}
.y9_c00424{bottom:974.924850px;}
.y8_c00424{bottom:1010.924850px;}
.y7_c00424{bottom:1046.924850px;}
.y6_c00424{bottom:1082.924850px;}
.y2_c00424{bottom:1165.365000px;}
.h4_c00424{height:20.880000px;}
.h5_c00424{height:70.628906px;}
.h3_c00424{height:70.664062px;}
.h2_c00424{height:1237.365000px;}
.h0_c00424{height:1262.835000px;}
.h1_c00424{height:1263.000000px;}
.w3_c00424{width:27.000000px;}
.w2_c00424{width:867.465000px;}
.w0_c00424{width:892.935000px;}
.w1_c00424{width:893.250000px;}
.x0_c00424{left:0.000000px;}
.x1_c00424{left:12.735000px;}
.x3_c00424{left:95.394300px;}
.x5_c00424{left:149.400150px;}
.x4_c00424{left:432.855000px;}
.x2_c00424{left:880.050300px;}
@media print{
.v0_c00424{vertical-align:0.000000pt;}
.ls0_c00424{letter-spacing:0.000000pt;}
.ws0_c00424{word-spacing:-16.000000pt;}
.ws1_c00424{word-spacing:0.000000pt;}
._8_c00424{width:0.992000pt;}
._0_c00424{width:2.003200pt;}
._6_c00424{width:3.788800pt;}
._2_c00424{width:5.574400pt;}
._1_c00424{width:6.636800pt;}
._9_c00424{width:7.731200pt;}
._7_c00424{width:8.832000pt;}
._c_c00424{width:9.996800pt;}
._5_c00424{width:11.238400pt;}
._d_c00424{width:12.211200pt;}
._4_c00424{width:13.420800pt;}
._a_c00424{width:17.958400pt;}
._b_c00424{width:19.238400pt;}
._3_c00424{width:20.364800pt;}
.fs1_c00424{font-size:57.600000pt;}
.fs0_c00424{font-size:64.000000pt;}
.y0_c00424{bottom:0.000000pt;}
.y5_c00424{bottom:4.480000pt;}
.y1_c00424{bottom:11.320000pt;}
.y3_c00424{bottom:40.360000pt;}
.y4_c00424{bottom:47.200000pt;}
.y20_c00424{bottom:130.599867pt;}
.y1f_c00424{bottom:162.599867pt;}
.y1e_c00424{bottom:194.599867pt;}
.y1d_c00424{bottom:226.599867pt;}
.y1c_c00424{bottom:258.599867pt;}
.y1b_c00424{bottom:290.599867pt;}
.y1a_c00424{bottom:322.599867pt;}
.y19_c00424{bottom:354.599867pt;}
.y18_c00424{bottom:386.599867pt;}
.y17_c00424{bottom:418.599867pt;}
.y16_c00424{bottom:450.599867pt;}
.y15_c00424{bottom:482.599867pt;}
.y14_c00424{bottom:514.599867pt;}
.y13_c00424{bottom:546.599867pt;}
.y12_c00424{bottom:578.599867pt;}
.y11_c00424{bottom:610.599867pt;}
.y10_c00424{bottom:642.599867pt;}
.yf_c00424{bottom:674.599867pt;}
.ye_c00424{bottom:706.599867pt;}
.yd_c00424{bottom:738.599867pt;}
.yc_c00424{bottom:770.599867pt;}
.yb_c00424{bottom:802.599867pt;}
.ya_c00424{bottom:834.599867pt;}
.y9_c00424{bottom:866.599867pt;}
.y8_c00424{bottom:898.599867pt;}
.y7_c00424{bottom:930.599867pt;}
.y6_c00424{bottom:962.599867pt;}
.y2_c00424{bottom:1035.880000pt;}
.h4_c00424{height:18.560000pt;}
.h5_c00424{height:62.781250pt;}
.h3_c00424{height:62.812500pt;}
.h2_c00424{height:1099.880000pt;}
.h0_c00424{height:1122.520000pt;}
.h1_c00424{height:1122.666667pt;}
.w3_c00424{width:24.000000pt;}
.w2_c00424{width:771.080000pt;}
.w0_c00424{width:793.720000pt;}
.w1_c00424{width:794.000000pt;}
.x0_c00424{left:0.000000pt;}
.x1_c00424{left:11.320000pt;}
.x3_c00424{left:84.794933pt;}
.x5_c00424{left:132.800133pt;}
.x4_c00424{left:384.760000pt;}
.x2_c00424{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00425{font-family:ff1_c00425;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00425;src:url('chunks/assets/font_1717acd6fbee0355e232e5e9.woff2')format("woff");}.ff2_c00425{font-family:ff2_c00425;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00425;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00425{font-family:ff3_c00425;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00425{letter-spacing:0.000000px;}
.ls1_c00425{letter-spacing:0.014400px;}
.sc__c00425{text-shadow:none;}
.sc0_c00425{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00425{-webkit-text-stroke:0px transparent;}
.sc0_c00425{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00425{word-spacing:-18.000000px;}
.ws1_c00425{word-spacing:0.000000px;}
._2_c00425{width:1.915200px;}
._4_c00425{width:3.326400px;}
._9_c00425{width:4.622400px;}
._0_c00425{width:6.530400px;}
._8_c00425{width:13.140000px;}
._1_c00425{width:14.932800px;}
._5_c00425{width:16.920000px;}
._3_c00425{width:21.909600px;}
._6_c00425{width:23.349600px;}
._7_c00425{width:24.688800px;}
._a_c00425{width:29.066400px;}
._b_c00425{width:30.751200px;}
.fc1_c00425{color:transparent;}
.fc0_c00425{color:rgb(0,0,0);}
.fs0_c00425{font-size:64.800000px;}
.fs1_c00425{font-size:72.000000px;}
.y0_c00425{bottom:0.000000px;}
.y5_c00425{bottom:1.440000px;}
.y1_c00425{bottom:12.735000px;}
.y3_c00425{bottom:45.405000px;}
.y4_c00425{bottom:56.700000px;}
.y21_c00425{bottom:110.924850px;}
.y20_c00425{bottom:146.924850px;}
.y1f_c00425{bottom:182.924850px;}
.y1e_c00425{bottom:218.924850px;}
.y1d_c00425{bottom:254.924850px;}
.y1c_c00425{bottom:290.924850px;}
.y1b_c00425{bottom:326.924850px;}
.y1a_c00425{bottom:362.924850px;}
.y19_c00425{bottom:398.924850px;}
.y18_c00425{bottom:434.924850px;}
.y17_c00425{bottom:470.924850px;}
.y16_c00425{bottom:506.924850px;}
.y15_c00425{bottom:542.924850px;}
.y14_c00425{bottom:578.924850px;}
.y13_c00425{bottom:614.924850px;}
.y12_c00425{bottom:650.924850px;}
.y11_c00425{bottom:686.924850px;}
.y10_c00425{bottom:722.924850px;}
.yf_c00425{bottom:758.924850px;}
.ye_c00425{bottom:794.924850px;}
.yd_c00425{bottom:830.924850px;}
.yc_c00425{bottom:866.924850px;}
.yb_c00425{bottom:902.924850px;}
.ya_c00425{bottom:938.924850px;}
.y9_c00425{bottom:974.924850px;}
.y8_c00425{bottom:1010.924850px;}
.y7_c00425{bottom:1046.924850px;}
.y6_c00425{bottom:1082.924850px;}
.y2_c00425{bottom:1165.365000px;}
.h5_c00425{height:17.280000px;}
.h3_c00425{height:43.189453px;}
.h4_c00425{height:70.664062px;}
.h2_c00425{height:1237.365000px;}
.h0_c00425{height:1262.835000px;}
.h1_c00425{height:1263.000000px;}
.w3_c00425{width:47.520000px;}
.w2_c00425{width:867.465000px;}
.w0_c00425{width:892.935000px;}
.w1_c00425{width:893.250000px;}
.x3_c00425{left:-39.599850px;}
.x0_c00425{left:0.000000px;}
.x5_c00425{left:10.237500px;}
.x1_c00425{left:12.735000px;}
.x6_c00425{left:95.400150px;}
.x7_c00425{left:149.400150px;}
.x4_c00425{left:422.775000px;}
.x2_c00425{left:880.050300px;}
@media print{
.v0_c00425{vertical-align:0.000000pt;}
.ls0_c00425{letter-spacing:0.000000pt;}
.ls1_c00425{letter-spacing:0.012800pt;}
.ws0_c00425{word-spacing:-16.000000pt;}
.ws1_c00425{word-spacing:0.000000pt;}
._2_c00425{width:1.702400pt;}
._4_c00425{width:2.956800pt;}
._9_c00425{width:4.108800pt;}
._0_c00425{width:5.804800pt;}
._8_c00425{width:11.680000pt;}
._1_c00425{width:13.273600pt;}
._5_c00425{width:15.040000pt;}
._3_c00425{width:19.475200pt;}
._6_c00425{width:20.755200pt;}
._7_c00425{width:21.945600pt;}
._a_c00425{width:25.836800pt;}
._b_c00425{width:27.334400pt;}
.fs0_c00425{font-size:57.600000pt;}
.fs1_c00425{font-size:64.000000pt;}
.y0_c00425{bottom:0.000000pt;}
.y5_c00425{bottom:1.280000pt;}
.y1_c00425{bottom:11.320000pt;}
.y3_c00425{bottom:40.360000pt;}
.y4_c00425{bottom:50.400000pt;}
.y21_c00425{bottom:98.599867pt;}
.y20_c00425{bottom:130.599867pt;}
.y1f_c00425{bottom:162.599867pt;}
.y1e_c00425{bottom:194.599867pt;}
.y1d_c00425{bottom:226.599867pt;}
.y1c_c00425{bottom:258.599867pt;}
.y1b_c00425{bottom:290.599867pt;}
.y1a_c00425{bottom:322.599867pt;}
.y19_c00425{bottom:354.599867pt;}
.y18_c00425{bottom:386.599867pt;}
.y17_c00425{bottom:418.599867pt;}
.y16_c00425{bottom:450.599867pt;}
.y15_c00425{bottom:482.599867pt;}
.y14_c00425{bottom:514.599867pt;}
.y13_c00425{bottom:546.599867pt;}
.y12_c00425{bottom:578.599867pt;}
.y11_c00425{bottom:610.599867pt;}
.y10_c00425{bottom:642.599867pt;}
.yf_c00425{bottom:674.599867pt;}
.ye_c00425{bottom:706.599867pt;}
.yd_c00425{bottom:738.599867pt;}
.yc_c00425{bottom:770.599867pt;}
.yb_c00425{bottom:802.599867pt;}
.ya_c00425{bottom:834.599867pt;}
.y9_c00425{bottom:866.599867pt;}
.y8_c00425{bottom:898.599867pt;}
.y7_c00425{bottom:930.599867pt;}
.y6_c00425{bottom:962.599867pt;}
.y2_c00425{bottom:1035.880000pt;}
.h5_c00425{height:15.360000pt;}
.h3_c00425{height:38.390625pt;}
.h4_c00425{height:62.812500pt;}
.h2_c00425{height:1099.880000pt;}
.h0_c00425{height:1122.520000pt;}
.h1_c00425{height:1122.666667pt;}
.w3_c00425{width:42.240000pt;}
.w2_c00425{width:771.080000pt;}
.w0_c00425{width:793.720000pt;}
.w1_c00425{width:794.000000pt;}
.x3_c00425{left:-35.199867pt;}
.x0_c00425{left:0.000000pt;}
.x5_c00425{left:9.100000pt;}
.x1_c00425{left:11.320000pt;}
.x6_c00425{left:84.800133pt;}
.x7_c00425{left:132.800133pt;}
.x4_c00425{left:375.800000pt;}
.x2_c00425{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0c5521afdf3714fd0346788b.woff2')format("woff");}.ff1_c00426{font-family:ff1_c00426;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00426;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00426{font-family:ff2_c00426;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00426;src:url('chunks/assets/font_71918f5318f4526740943553.woff2')format("woff");}.ff3_c00426{font-family:ff3_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;}
.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;}
.ls2_c00426{letter-spacing:-0.014400px;}
.ls1_c00426{letter-spacing:0.000000px;}
.ls0_c00426{letter-spacing:0.014400px;}
.sc__c00426{text-shadow:none;}
.sc0_c00426{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00426{-webkit-text-stroke:0px transparent;}
.sc0_c00426{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00426{word-spacing:-18.000000px;}
.ws1_c00426{word-spacing:0.000000px;}
._1_c00426{width:1.807200px;}
._2_c00426{width:3.492000px;}
._4_c00426{width:5.385600px;}
._6_c00426{width:7.264800px;}
._9_c00426{width:8.640000px;}
._5_c00426{width:11.138400px;}
._7_c00426{width:12.319200px;}
._0_c00426{width:19.728000px;}
._a_c00426{width:21.153600px;}
._3_c00426{width:22.780800px;}
._8_c00426{width:29.563200px;}
.fc1_c00426{color:transparent;}
.fc0_c00426{color:rgb(0,0,0);}
.fs1_c00426{font-size:64.800000px;}
.fs0_c00426{font-size:72.000000px;}
.y0_c00426{bottom:0.000000px;}
.y5_c00426{bottom:5.040000px;}
.y1_c00426{bottom:12.735000px;}
.y3_c00426{bottom:45.405000px;}
.y4_c00426{bottom:53.100000px;}
.y21_c00426{bottom:110.924850px;}
.y20_c00426{bottom:146.924850px;}
.y1f_c00426{bottom:182.924850px;}
.y1e_c00426{bottom:218.924850px;}
.y1d_c00426{bottom:254.924850px;}
.y1c_c00426{bottom:290.924850px;}
.y1b_c00426{bottom:326.924850px;}
.y1a_c00426{bottom:362.924850px;}
.y19_c00426{bottom:398.924850px;}
.y18_c00426{bottom:434.924850px;}
.y17_c00426{bottom:470.924850px;}
.y16_c00426{bottom:506.924850px;}
.y15_c00426{bottom:542.924850px;}
.y14_c00426{bottom:578.924850px;}
.y13_c00426{bottom:614.924850px;}
.y12_c00426{bottom:650.924850px;}
.y11_c00426{bottom:686.924850px;}
.y10_c00426{bottom:722.924850px;}
.yf_c00426{bottom:758.924850px;}
.ye_c00426{bottom:794.924850px;}
.yd_c00426{bottom:830.924850px;}
.yc_c00426{bottom:866.924850px;}
.yb_c00426{bottom:902.924850px;}
.ya_c00426{bottom:938.924850px;}
.y9_c00426{bottom:974.924850px;}
.y8_c00426{bottom:1010.924850px;}
.y7_c00426{bottom:1046.924850px;}
.y6_c00426{bottom:1082.924850px;}
.y2_c00426{bottom:1165.365000px;}
.h4_c00426{height:20.880000px;}
.h3_c00426{height:70.664062px;}
.h2_c00426{height:1237.365000px;}
.h0_c00426{height:1262.835000px;}
.h1_c00426{height:1263.000000px;}
.w3_c00426{width:27.000000px;}
.w2_c00426{width:867.465000px;}
.w0_c00426{width:892.935000px;}
.w1_c00426{width:893.250000px;}
.x0_c00426{left:0.000000px;}
.x1_c00426{left:12.735000px;}
.x3_c00426{left:95.394300px;}
.x5_c00426{left:149.400150px;}
.x4_c00426{left:432.855000px;}
.x2_c00426{left:880.050300px;}
@media print{
.v0_c00426{vertical-align:0.000000pt;}
.ls2_c00426{letter-spacing:-0.012800pt;}
.ls1_c00426{letter-spacing:0.000000pt;}
.ls0_c00426{letter-spacing:0.012800pt;}
.ws0_c00426{word-spacing:-16.000000pt;}
.ws1_c00426{word-spacing:0.000000pt;}
._1_c00426{width:1.606400pt;}
._2_c00426{width:3.104000pt;}
._4_c00426{width:4.787200pt;}
._6_c00426{width:6.457600pt;}
._9_c00426{width:7.680000pt;}
._5_c00426{width:9.900800pt;}
._7_c00426{width:10.950400pt;}
._0_c00426{width:17.536000pt;}
._a_c00426{width:18.803200pt;}
._3_c00426{width:20.249600pt;}
._8_c00426{width:26.278400pt;}
.fs1_c00426{font-size:57.600000pt;}
.fs0_c00426{font-size:64.000000pt;}
.y0_c00426{bottom:0.000000pt;}
.y5_c00426{bottom:4.480000pt;}
.y1_c00426{bottom:11.320000pt;}
.y3_c00426{bottom:40.360000pt;}
.y4_c00426{bottom:47.200000pt;}
.y21_c00426{bottom:98.599867pt;}
.y20_c00426{bottom:130.599867pt;}
.y1f_c00426{bottom:162.599867pt;}
.y1e_c00426{bottom:194.599867pt;}
.y1d_c00426{bottom:226.599867pt;}
.y1c_c00426{bottom:258.599867pt;}
.y1b_c00426{bottom:290.599867pt;}
.y1a_c00426{bottom:322.599867pt;}
.y19_c00426{bottom:354.599867pt;}
.y18_c00426{bottom:386.599867pt;}
.y17_c00426{bottom:418.599867pt;}
.y16_c00426{bottom:450.599867pt;}
.y15_c00426{bottom:482.599867pt;}
.y14_c00426{bottom:514.599867pt;}
.y13_c00426{bottom:546.599867pt;}
.y12_c00426{bottom:578.599867pt;}
.y11_c00426{bottom:610.599867pt;}
.y10_c00426{bottom:642.599867pt;}
.yf_c00426{bottom:674.599867pt;}
.ye_c00426{bottom:706.599867pt;}
.yd_c00426{bottom:738.599867pt;}
.yc_c00426{bottom:770.599867pt;}
.yb_c00426{bottom:802.599867pt;}
.ya_c00426{bottom:834.599867pt;}
.y9_c00426{bottom:866.599867pt;}
.y8_c00426{bottom:898.599867pt;}
.y7_c00426{bottom:930.599867pt;}
.y6_c00426{bottom:962.599867pt;}
.y2_c00426{bottom:1035.880000pt;}
.h4_c00426{height:18.560000pt;}
.h3_c00426{height:62.812500pt;}
.h2_c00426{height:1099.880000pt;}
.h0_c00426{height:1122.520000pt;}
.h1_c00426{height:1122.666667pt;}
.w3_c00426{width:24.000000pt;}
.w2_c00426{width:771.080000pt;}
.w0_c00426{width:793.720000pt;}
.w1_c00426{width:794.000000pt;}
.x0_c00426{left:0.000000pt;}
.x1_c00426{left:11.320000pt;}
.x3_c00426{left:84.794933pt;}
.x5_c00426{left:132.800133pt;}
.x4_c00426{left:384.760000pt;}
.x2_c00426{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00427{font-family:ff1_c00427;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00427;src:url('chunks/assets/font_1fca3080e3d736b06c1626fb.woff2')format("woff");}.ff2_c00427{font-family:ff2_c00427;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00427;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00427{font-family:ff3_c00427;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00427;src:url('chunks/assets/font_24cef5841ea9e4d228292fe8.woff2')format("woff");}.ff4_c00427{font-family:ff4_c00427;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00427;src:url('chunks/assets/font_860e5732db1d576569376d98.woff2')format("woff");}.ff5_c00427{font-family:ff5_c00427;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00427{letter-spacing:-0.014400px;}
.ls0_c00427{letter-spacing:0.000000px;}
.sc__c00427{text-shadow:none;}
.sc0_c00427{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00427{-webkit-text-stroke:0px transparent;}
.sc0_c00427{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00427{word-spacing:-18.000000px;}
.ws1_c00427{word-spacing:0.000000px;}
._7_c00427{margin-left:-1.447200px;}
._1_c00427{width:1.497600px;}
._2_c00427{width:3.045600px;}
._b_c00427{width:4.204800px;}
._0_c00427{width:5.407200px;}
._a_c00427{width:6.530400px;}
._3_c00427{width:8.244000px;}
._8_c00427{width:10.080000px;}
._4_c00427{width:11.116800px;}
._9_c00427{width:16.142400px;}
._5_c00427{width:22.996800px;}
._6_c00427{width:24.472800px;}
._c_c00427{width:29.073600px;}
._d_c00427{width:30.578400px;}
.fc1_c00427{color:transparent;}
.fc0_c00427{color:rgb(0,0,0);}
.fs0_c00427{font-size:64.800000px;}
.fs1_c00427{font-size:72.000000px;}
.y0_c00427{bottom:0.000000px;}
.y5_c00427{bottom:1.440000px;}
.y1_c00427{bottom:12.735000px;}
.y3_c00427{bottom:45.405000px;}
.y4_c00427{bottom:56.700000px;}
.y20_c00427{bottom:146.924850px;}
.y1f_c00427{bottom:182.924850px;}
.y1e_c00427{bottom:218.924850px;}
.y1d_c00427{bottom:254.924850px;}
.y1c_c00427{bottom:290.924850px;}
.y1b_c00427{bottom:326.924850px;}
.y1a_c00427{bottom:362.924850px;}
.y19_c00427{bottom:398.924850px;}
.y18_c00427{bottom:434.924850px;}
.y17_c00427{bottom:470.924850px;}
.y16_c00427{bottom:506.924850px;}
.y15_c00427{bottom:542.924850px;}
.y14_c00427{bottom:578.924850px;}
.y13_c00427{bottom:614.924850px;}
.y12_c00427{bottom:650.924850px;}
.y11_c00427{bottom:686.924850px;}
.y10_c00427{bottom:722.924850px;}
.yf_c00427{bottom:758.924850px;}
.ye_c00427{bottom:794.924850px;}
.yd_c00427{bottom:830.924850px;}
.yc_c00427{bottom:866.924850px;}
.yb_c00427{bottom:902.924850px;}
.ya_c00427{bottom:938.924850px;}
.y9_c00427{bottom:974.924850px;}
.y8_c00427{bottom:1010.924850px;}
.y7_c00427{bottom:1046.924850px;}
.y6_c00427{bottom:1082.924850px;}
.y2_c00427{bottom:1165.365000px;}
.h5_c00427{height:17.280000px;}
.h3_c00427{height:43.189453px;}
.h4_c00427{height:70.664062px;}
.h6_c00427{height:72.562500px;}
.h2_c00427{height:1237.365000px;}
.h0_c00427{height:1262.835000px;}
.h1_c00427{height:1263.000000px;}
.w3_c00427{width:47.520000px;}
.w2_c00427{width:867.465000px;}
.w0_c00427{width:892.935000px;}
.w1_c00427{width:893.250000px;}
.x3_c00427{left:-39.599850px;}
.x0_c00427{left:0.000000px;}
.x5_c00427{left:10.237500px;}
.x1_c00427{left:12.735000px;}
.x7_c00427{left:95.400150px;}
.x6_c00427{left:149.400150px;}
.x4_c00427{left:422.775000px;}
.x2_c00427{left:880.050300px;}
@media print{
.v0_c00427{vertical-align:0.000000pt;}
.ls1_c00427{letter-spacing:-0.012800pt;}
.ls0_c00427{letter-spacing:0.000000pt;}
.ws0_c00427{word-spacing:-16.000000pt;}
.ws1_c00427{word-spacing:0.000000pt;}
._7_c00427{margin-left:-1.286400pt;}
._1_c00427{width:1.331200pt;}
._2_c00427{width:2.707200pt;}
._b_c00427{width:3.737600pt;}
._0_c00427{width:4.806400pt;}
._a_c00427{width:5.804800pt;}
._3_c00427{width:7.328000pt;}
._8_c00427{width:8.960000pt;}
._4_c00427{width:9.881600pt;}
._9_c00427{width:14.348800pt;}
._5_c00427{width:20.441600pt;}
._6_c00427{width:21.753600pt;}
._c_c00427{width:25.843200pt;}
._d_c00427{width:27.180800pt;}
.fs0_c00427{font-size:57.600000pt;}
.fs1_c00427{font-size:64.000000pt;}
.y0_c00427{bottom:0.000000pt;}
.y5_c00427{bottom:1.280000pt;}
.y1_c00427{bottom:11.320000pt;}
.y3_c00427{bottom:40.360000pt;}
.y4_c00427{bottom:50.400000pt;}
.y20_c00427{bottom:130.599867pt;}
.y1f_c00427{bottom:162.599867pt;}
.y1e_c00427{bottom:194.599867pt;}
.y1d_c00427{bottom:226.599867pt;}
.y1c_c00427{bottom:258.599867pt;}
.y1b_c00427{bottom:290.599867pt;}
.y1a_c00427{bottom:322.599867pt;}
.y19_c00427{bottom:354.599867pt;}
.y18_c00427{bottom:386.599867pt;}
.y17_c00427{bottom:418.599867pt;}
.y16_c00427{bottom:450.599867pt;}
.y15_c00427{bottom:482.599867pt;}
.y14_c00427{bottom:514.599867pt;}
.y13_c00427{bottom:546.599867pt;}
.y12_c00427{bottom:578.599867pt;}
.y11_c00427{bottom:610.599867pt;}
.y10_c00427{bottom:642.599867pt;}
.yf_c00427{bottom:674.599867pt;}
.ye_c00427{bottom:706.599867pt;}
.yd_c00427{bottom:738.599867pt;}
.yc_c00427{bottom:770.599867pt;}
.yb_c00427{bottom:802.599867pt;}
.ya_c00427{bottom:834.599867pt;}
.y9_c00427{bottom:866.599867pt;}
.y8_c00427{bottom:898.599867pt;}
.y7_c00427{bottom:930.599867pt;}
.y6_c00427{bottom:962.599867pt;}
.y2_c00427{bottom:1035.880000pt;}
.h5_c00427{height:15.360000pt;}
.h3_c00427{height:38.390625pt;}
.h4_c00427{height:62.812500pt;}
.h6_c00427{height:64.500000pt;}
.h2_c00427{height:1099.880000pt;}
.h0_c00427{height:1122.520000pt;}
.h1_c00427{height:1122.666667pt;}
.w3_c00427{width:42.240000pt;}
.w2_c00427{width:771.080000pt;}
.w0_c00427{width:793.720000pt;}
.w1_c00427{width:794.000000pt;}
.x3_c00427{left:-35.199867pt;}
.x0_c00427{left:0.000000pt;}
.x5_c00427{left:9.100000pt;}
.x1_c00427{left:11.320000pt;}
.x7_c00427{left:84.800133pt;}
.x6_c00427{left:132.800133pt;}
.x4_c00427{left:375.800000pt;}
.x2_c00427{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5efc09405532d7e6144f5334.woff2')format("woff");}.ff1_c00428{font-family:ff1_c00428;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00428;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00428{font-family:ff2_c00428;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00428;src:url('chunks/assets/font_ec03ab648c0a34a247ef26ce.woff2')format("woff");}.ff3_c00428{font-family:ff3_c00428;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00428{letter-spacing:0.000000px;}
.sc__c00428{text-shadow:none;}
.sc0_c00428{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00428{-webkit-text-stroke:0px transparent;}
.sc0_c00428{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00428{word-spacing:-18.000000px;}
.ws1_c00428{word-spacing:0.000000px;}
._a_c00428{width:1.080000px;}
._f_c00428{width:2.491200px;}
._e_c00428{width:3.801600px;}
._b_c00428{width:4.996800px;}
._4_c00428{width:6.480000px;}
._9_c00428{width:8.100000px;}
._d_c00428{width:9.144000px;}
._c_c00428{width:10.627200px;}
._0_c00428{width:12.074400px;}
._1_c00428{width:13.075200px;}
._3_c00428{width:16.214400px;}
._6_c00428{width:20.764800px;}
._5_c00428{width:22.860000px;}
._2_c00428{width:24.573600px;}
._7_c00428{width:29.498400px;}
._8_c00428{width:32.796000px;}
.fc1_c00428{color:transparent;}
.fc0_c00428{color:rgb(0,0,0);}
.fs1_c00428{font-size:64.800000px;}
.fs0_c00428{font-size:72.000000px;}
.y0_c00428{bottom:0.000000px;}
.y5_c00428{bottom:5.040000px;}
.y1_c00428{bottom:12.735000px;}
.y3_c00428{bottom:45.405000px;}
.y4_c00428{bottom:53.100000px;}
.y21_c00428{bottom:110.924850px;}
.y20_c00428{bottom:146.924850px;}
.y1f_c00428{bottom:182.924850px;}
.y1e_c00428{bottom:218.924850px;}
.y1d_c00428{bottom:254.924850px;}
.y1c_c00428{bottom:290.924850px;}
.y1b_c00428{bottom:326.924850px;}
.y1a_c00428{bottom:362.924850px;}
.y19_c00428{bottom:398.924850px;}
.y18_c00428{bottom:434.924850px;}
.y17_c00428{bottom:470.924850px;}
.y16_c00428{bottom:506.924850px;}
.y15_c00428{bottom:542.924850px;}
.y14_c00428{bottom:578.924850px;}
.y13_c00428{bottom:614.924850px;}
.y12_c00428{bottom:650.924850px;}
.y11_c00428{bottom:686.924850px;}
.y10_c00428{bottom:722.924850px;}
.yf_c00428{bottom:758.924850px;}
.ye_c00428{bottom:794.924850px;}
.yd_c00428{bottom:830.924850px;}
.yc_c00428{bottom:866.924850px;}
.yb_c00428{bottom:902.924850px;}
.ya_c00428{bottom:938.924850px;}
.y9_c00428{bottom:974.924850px;}
.y8_c00428{bottom:1010.924850px;}
.y7_c00428{bottom:1046.924850px;}
.y6_c00428{bottom:1082.924850px;}
.y2_c00428{bottom:1165.365000px;}
.h4_c00428{height:20.880000px;}
.h3_c00428{height:70.664062px;}
.h2_c00428{height:1237.365000px;}
.h0_c00428{height:1262.835000px;}
.h1_c00428{height:1263.000000px;}
.w3_c00428{width:27.000000px;}
.w2_c00428{width:867.465000px;}
.w0_c00428{width:892.935000px;}
.w1_c00428{width:893.250000px;}
.x0_c00428{left:0.000000px;}
.x1_c00428{left:12.735000px;}
.x3_c00428{left:95.394300px;}
.x5_c00428{left:149.400150px;}
.x4_c00428{left:432.855000px;}
.x2_c00428{left:880.050300px;}
@media print{
.v0_c00428{vertical-align:0.000000pt;}
.ls0_c00428{letter-spacing:0.000000pt;}
.ws0_c00428{word-spacing:-16.000000pt;}
.ws1_c00428{word-spacing:0.000000pt;}
._a_c00428{width:0.960000pt;}
._f_c00428{width:2.214400pt;}
._e_c00428{width:3.379200pt;}
._b_c00428{width:4.441600pt;}
._4_c00428{width:5.760000pt;}
._9_c00428{width:7.200000pt;}
._d_c00428{width:8.128000pt;}
._c_c00428{width:9.446400pt;}
._0_c00428{width:10.732800pt;}
._1_c00428{width:11.622400pt;}
._3_c00428{width:14.412800pt;}
._6_c00428{width:18.457600pt;}
._5_c00428{width:20.320000pt;}
._2_c00428{width:21.843200pt;}
._7_c00428{width:26.220800pt;}
._8_c00428{width:29.152000pt;}
.fs1_c00428{font-size:57.600000pt;}
.fs0_c00428{font-size:64.000000pt;}
.y0_c00428{bottom:0.000000pt;}
.y5_c00428{bottom:4.480000pt;}
.y1_c00428{bottom:11.320000pt;}
.y3_c00428{bottom:40.360000pt;}
.y4_c00428{bottom:47.200000pt;}
.y21_c00428{bottom:98.599867pt;}
.y20_c00428{bottom:130.599867pt;}
.y1f_c00428{bottom:162.599867pt;}
.y1e_c00428{bottom:194.599867pt;}
.y1d_c00428{bottom:226.599867pt;}
.y1c_c00428{bottom:258.599867pt;}
.y1b_c00428{bottom:290.599867pt;}
.y1a_c00428{bottom:322.599867pt;}
.y19_c00428{bottom:354.599867pt;}
.y18_c00428{bottom:386.599867pt;}
.y17_c00428{bottom:418.599867pt;}
.y16_c00428{bottom:450.599867pt;}
.y15_c00428{bottom:482.599867pt;}
.y14_c00428{bottom:514.599867pt;}
.y13_c00428{bottom:546.599867pt;}
.y12_c00428{bottom:578.599867pt;}
.y11_c00428{bottom:610.599867pt;}
.y10_c00428{bottom:642.599867pt;}
.yf_c00428{bottom:674.599867pt;}
.ye_c00428{bottom:706.599867pt;}
.yd_c00428{bottom:738.599867pt;}
.yc_c00428{bottom:770.599867pt;}
.yb_c00428{bottom:802.599867pt;}
.ya_c00428{bottom:834.599867pt;}
.y9_c00428{bottom:866.599867pt;}
.y8_c00428{bottom:898.599867pt;}
.y7_c00428{bottom:930.599867pt;}
.y6_c00428{bottom:962.599867pt;}
.y2_c00428{bottom:1035.880000pt;}
.h4_c00428{height:18.560000pt;}
.h3_c00428{height:62.812500pt;}
.h2_c00428{height:1099.880000pt;}
.h0_c00428{height:1122.520000pt;}
.h1_c00428{height:1122.666667pt;}
.w3_c00428{width:24.000000pt;}
.w2_c00428{width:771.080000pt;}
.w0_c00428{width:793.720000pt;}
.w1_c00428{width:794.000000pt;}
.x0_c00428{left:0.000000pt;}
.x1_c00428{left:11.320000pt;}
.x3_c00428{left:84.794933pt;}
.x5_c00428{left:132.800133pt;}
.x4_c00428{left:384.760000pt;}
.x2_c00428{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00429{font-family:ff1_c00429;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00429;src:url('chunks/assets/font_48811058979d9e5fff383f78.woff2')format("woff");}.ff2_c00429{font-family:ff2_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:ff3_c00429;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00429{font-family:ff3_c00429;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00429;src:url('chunks/assets/font_a8dfdd4764750502770fc013.woff2')format("woff");}.ff4_c00429{font-family:ff4_c00429;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00429{letter-spacing:0.000000px;}
.ls1_c00429{letter-spacing:3.362400px;}
.sc__c00429{text-shadow:none;}
.sc0_c00429{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00429{-webkit-text-stroke:0px transparent;}
.sc0_c00429{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00429{word-spacing:-18.000000px;}
.ws1_c00429{word-spacing:0.000000px;}
._a_c00429{margin-left:-3.088800px;}
._2_c00429{width:1.929600px;}
._3_c00429{width:3.290400px;}
._0_c00429{width:4.766400px;}
._6_c00429{width:5.896800px;}
._4_c00429{width:7.005600px;}
._8_c00429{width:8.539200px;}
._7_c00429{width:9.590400px;}
._1_c00429{width:12.340800px;}
._c_c00429{width:14.688000px;}
._b_c00429{width:16.819200px;}
._5_c00429{width:19.382400px;}
._d_c00429{width:26.078400px;}
._9_c00429{width:36.691200px;}
.fc1_c00429{color:transparent;}
.fc0_c00429{color:rgb(0,0,0);}
.fs0_c00429{font-size:64.800000px;}
.fs1_c00429{font-size:72.000000px;}
.y0_c00429{bottom:0.000000px;}
.y5_c00429{bottom:1.440000px;}
.y1_c00429{bottom:12.735000px;}
.y3_c00429{bottom:45.405000px;}
.y4_c00429{bottom:56.700000px;}
.y21_c00429{bottom:110.924850px;}
.y20_c00429{bottom:146.924850px;}
.y1f_c00429{bottom:182.924850px;}
.y1e_c00429{bottom:218.924850px;}
.y1d_c00429{bottom:254.924850px;}
.y1c_c00429{bottom:290.924850px;}
.y1b_c00429{bottom:326.924850px;}
.y1a_c00429{bottom:362.924850px;}
.y19_c00429{bottom:398.924850px;}
.y18_c00429{bottom:434.924850px;}
.y17_c00429{bottom:470.924850px;}
.y16_c00429{bottom:506.924850px;}
.y15_c00429{bottom:542.924850px;}
.y14_c00429{bottom:578.924850px;}
.y13_c00429{bottom:614.924850px;}
.y12_c00429{bottom:650.924850px;}
.y11_c00429{bottom:686.924850px;}
.y10_c00429{bottom:722.924850px;}
.yf_c00429{bottom:758.924850px;}
.ye_c00429{bottom:794.924850px;}
.yd_c00429{bottom:830.924850px;}
.yc_c00429{bottom:866.924850px;}
.yb_c00429{bottom:902.924850px;}
.ya_c00429{bottom:938.924850px;}
.y9_c00429{bottom:974.924850px;}
.y8_c00429{bottom:1010.924850px;}
.y7_c00429{bottom:1046.924850px;}
.y6_c00429{bottom:1082.924850px;}
.y2_c00429{bottom:1165.365000px;}
.h5_c00429{height:17.280000px;}
.h3_c00429{height:43.189453px;}
.h4_c00429{height:70.664062px;}
.h2_c00429{height:1237.365000px;}
.h0_c00429{height:1262.835000px;}
.h1_c00429{height:1263.000000px;}
.w3_c00429{width:47.520000px;}
.w2_c00429{width:867.465000px;}
.w0_c00429{width:892.935000px;}
.w1_c00429{width:893.250000px;}
.x3_c00429{left:-39.599850px;}
.x0_c00429{left:0.000000px;}
.x5_c00429{left:10.237500px;}
.x1_c00429{left:12.735000px;}
.x6_c00429{left:95.400150px;}
.x7_c00429{left:149.400150px;}
.x4_c00429{left:422.775000px;}
.x2_c00429{left:880.050300px;}
@media print{
.v0_c00429{vertical-align:0.000000pt;}
.ls0_c00429{letter-spacing:0.000000pt;}
.ls1_c00429{letter-spacing:2.988800pt;}
.ws0_c00429{word-spacing:-16.000000pt;}
.ws1_c00429{word-spacing:0.000000pt;}
._a_c00429{margin-left:-2.745600pt;}
._2_c00429{width:1.715200pt;}
._3_c00429{width:2.924800pt;}
._0_c00429{width:4.236800pt;}
._6_c00429{width:5.241600pt;}
._4_c00429{width:6.227200pt;}
._8_c00429{width:7.590400pt;}
._7_c00429{width:8.524800pt;}
._1_c00429{width:10.969600pt;}
._c_c00429{width:13.056000pt;}
._b_c00429{width:14.950400pt;}
._5_c00429{width:17.228800pt;}
._d_c00429{width:23.180800pt;}
._9_c00429{width:32.614400pt;}
.fs0_c00429{font-size:57.600000pt;}
.fs1_c00429{font-size:64.000000pt;}
.y0_c00429{bottom:0.000000pt;}
.y5_c00429{bottom:1.280000pt;}
.y1_c00429{bottom:11.320000pt;}
.y3_c00429{bottom:40.360000pt;}
.y4_c00429{bottom:50.400000pt;}
.y21_c00429{bottom:98.599867pt;}
.y20_c00429{bottom:130.599867pt;}
.y1f_c00429{bottom:162.599867pt;}
.y1e_c00429{bottom:194.599867pt;}
.y1d_c00429{bottom:226.599867pt;}
.y1c_c00429{bottom:258.599867pt;}
.y1b_c00429{bottom:290.599867pt;}
.y1a_c00429{bottom:322.599867pt;}
.y19_c00429{bottom:354.599867pt;}
.y18_c00429{bottom:386.599867pt;}
.y17_c00429{bottom:418.599867pt;}
.y16_c00429{bottom:450.599867pt;}
.y15_c00429{bottom:482.599867pt;}
.y14_c00429{bottom:514.599867pt;}
.y13_c00429{bottom:546.599867pt;}
.y12_c00429{bottom:578.599867pt;}
.y11_c00429{bottom:610.599867pt;}
.y10_c00429{bottom:642.599867pt;}
.yf_c00429{bottom:674.599867pt;}
.ye_c00429{bottom:706.599867pt;}
.yd_c00429{bottom:738.599867pt;}
.yc_c00429{bottom:770.599867pt;}
.yb_c00429{bottom:802.599867pt;}
.ya_c00429{bottom:834.599867pt;}
.y9_c00429{bottom:866.599867pt;}
.y8_c00429{bottom:898.599867pt;}
.y7_c00429{bottom:930.599867pt;}
.y6_c00429{bottom:962.599867pt;}
.y2_c00429{bottom:1035.880000pt;}
.h5_c00429{height:15.360000pt;}
.h3_c00429{height:38.390625pt;}
.h4_c00429{height:62.812500pt;}
.h2_c00429{height:1099.880000pt;}
.h0_c00429{height:1122.520000pt;}
.h1_c00429{height:1122.666667pt;}
.w3_c00429{width:42.240000pt;}
.w2_c00429{width:771.080000pt;}
.w0_c00429{width:793.720000pt;}
.w1_c00429{width:794.000000pt;}
.x3_c00429{left:-35.199867pt;}
.x0_c00429{left:0.000000pt;}
.x5_c00429{left:9.100000pt;}
.x1_c00429{left:11.320000pt;}
.x6_c00429{left:84.800133pt;}
.x7_c00429{left:132.800133pt;}
.x4_c00429{left:375.800000pt;}
.x2_c00429{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e8d5c7334457c12bf92ef8dd.woff2')format("woff");}.ff1_c00430{font-family:ff1_c00430;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00430;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00430{font-family:ff2_c00430;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00430;src:url('chunks/assets/font_a8dfdd4764750502770fc013.woff2')format("woff");}.ff3_c00430{font-family:ff3_c00430;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00430;src:url('chunks/assets/font_e224e986723d4fd331dda86d.woff2')format("woff");}.ff4_c00430{font-family:ff4_c00430;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00430{letter-spacing:0.000000px;}
.ls2_c00430{letter-spacing:0.116928px;}
.ls0_c00430{letter-spacing:0.242208px;}
.ls5_c00430{letter-spacing:0.275616px;}
.ls3_c00430{letter-spacing:0.283968px;}
.ls4_c00430{letter-spacing:1.216800px;}
.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:-21.163968px;}
.ws3_c00430{word-spacing:-21.155616px;}
.ws1_c00430{word-spacing:-21.122208px;}
.ws0_c00430{word-spacing:-18.000000px;}
.ws4_c00430{word-spacing:0.000000px;}
._7_c00430{margin-left:-1.173600px;}
._1_c00430{width:1.332000px;}
._3_c00430{width:2.469600px;}
._4_c00430{width:4.564800px;}
._0_c00430{width:5.565600px;}
._b_c00430{width:7.034400px;}
._5_c00430{width:9.338400px;}
._2_c00430{width:11.109600px;}
._9_c00430{width:12.232800px;}
._a_c00430{width:13.284000px;}
._8_c00430{width:14.644800px;}
._6_c00430{width:19.144800px;}
.fc2_c00430{color:transparent;}
.fc1_c00430{color:rgb(127,127,127);}
.fc0_c00430{color:rgb(0,0,0);}
.fs1_c00430{font-size:64.800000px;}
.fs0_c00430{font-size:72.000000px;}
.fs2_c00430{font-size:83.520000px;}
.y0_c00430{bottom:0.000000px;}
.y5_c00430{bottom:5.040000px;}
.y1_c00430{bottom:12.735000px;}
.y3_c00430{bottom:45.405000px;}
.y4_c00430{bottom:53.100000px;}
.y21_c00430{bottom:110.925000px;}
.y20_c00430{bottom:146.925000px;}
.y1f_c00430{bottom:182.925000px;}
.y1e_c00430{bottom:219.645000px;}
.y1d_c00430{bottom:254.925000px;}
.y1c_c00430{bottom:290.925000px;}
.y1b_c00430{bottom:326.925000px;}
.y1a_c00430{bottom:362.925000px;}
.y19_c00430{bottom:398.925000px;}
.y18_c00430{bottom:434.925000px;}
.y17_c00430{bottom:470.925000px;}
.y16_c00430{bottom:506.925000px;}
.y15_c00430{bottom:542.925000px;}
.y14_c00430{bottom:578.925000px;}
.y13_c00430{bottom:614.925000px;}
.y12_c00430{bottom:650.925000px;}
.y11_c00430{bottom:686.925000px;}
.y10_c00430{bottom:723.645000px;}
.yf_c00430{bottom:758.924850px;}
.ye_c00430{bottom:794.924850px;}
.yd_c00430{bottom:830.924850px;}
.yc_c00430{bottom:866.924850px;}
.yb_c00430{bottom:902.924850px;}
.ya_c00430{bottom:938.924850px;}
.y9_c00430{bottom:974.924850px;}
.y8_c00430{bottom:1010.924850px;}
.y7_c00430{bottom:1046.924850px;}
.y6_c00430{bottom:1082.924850px;}
.y2_c00430{bottom:1165.365000px;}
.h4_c00430{height:20.880000px;}
.h3_c00430{height:70.664062px;}
.h5_c00430{height:81.929531px;}
.h2_c00430{height:1237.365000px;}
.h0_c00430{height:1262.835000px;}
.h1_c00430{height:1263.000000px;}
.w3_c00430{width:27.000000px;}
.w2_c00430{width:867.465000px;}
.w0_c00430{width:892.935000px;}
.w1_c00430{width:893.250000px;}
.x0_c00430{left:0.000000px;}
.x1_c00430{left:12.735000px;}
.x3_c00430{left:95.394300px;}
.x5_c00430{left:149.400150px;}
.x4_c00430{left:432.855000px;}
.x2_c00430{left:880.050300px;}
@media print{
.v0_c00430{vertical-align:0.000000pt;}
.ls1_c00430{letter-spacing:0.000000pt;}
.ls2_c00430{letter-spacing:0.103936pt;}
.ls0_c00430{letter-spacing:0.215296pt;}
.ls5_c00430{letter-spacing:0.244992pt;}
.ls3_c00430{letter-spacing:0.252416pt;}
.ls4_c00430{letter-spacing:1.081600pt;}
.ws2_c00430{word-spacing:-18.812416pt;}
.ws3_c00430{word-spacing:-18.804992pt;}
.ws1_c00430{word-spacing:-18.775296pt;}
.ws0_c00430{word-spacing:-16.000000pt;}
.ws4_c00430{word-spacing:0.000000pt;}
._7_c00430{margin-left:-1.043200pt;}
._1_c00430{width:1.184000pt;}
._3_c00430{width:2.195200pt;}
._4_c00430{width:4.057600pt;}
._0_c00430{width:4.947200pt;}
._b_c00430{width:6.252800pt;}
._5_c00430{width:8.300800pt;}
._2_c00430{width:9.875200pt;}
._9_c00430{width:10.873600pt;}
._a_c00430{width:11.808000pt;}
._8_c00430{width:13.017600pt;}
._6_c00430{width:17.017600pt;}
.fs1_c00430{font-size:57.600000pt;}
.fs0_c00430{font-size:64.000000pt;}
.fs2_c00430{font-size:74.240000pt;}
.y0_c00430{bottom:0.000000pt;}
.y5_c00430{bottom:4.480000pt;}
.y1_c00430{bottom:11.320000pt;}
.y3_c00430{bottom:40.360000pt;}
.y4_c00430{bottom:47.200000pt;}
.y21_c00430{bottom:98.600000pt;}
.y20_c00430{bottom:130.600000pt;}
.y1f_c00430{bottom:162.600000pt;}
.y1e_c00430{bottom:195.240000pt;}
.y1d_c00430{bottom:226.600000pt;}
.y1c_c00430{bottom:258.600000pt;}
.y1b_c00430{bottom:290.600000pt;}
.y1a_c00430{bottom:322.600000pt;}
.y19_c00430{bottom:354.600000pt;}
.y18_c00430{bottom:386.600000pt;}
.y17_c00430{bottom:418.600000pt;}
.y16_c00430{bottom:450.600000pt;}
.y15_c00430{bottom:482.600000pt;}
.y14_c00430{bottom:514.600000pt;}
.y13_c00430{bottom:546.600000pt;}
.y12_c00430{bottom:578.600000pt;}
.y11_c00430{bottom:610.600000pt;}
.y10_c00430{bottom:643.240000pt;}
.yf_c00430{bottom:674.599867pt;}
.ye_c00430{bottom:706.599867pt;}
.yd_c00430{bottom:738.599867pt;}
.yc_c00430{bottom:770.599867pt;}
.yb_c00430{bottom:802.599867pt;}
.ya_c00430{bottom:834.599867pt;}
.y9_c00430{bottom:866.599867pt;}
.y8_c00430{bottom:898.599867pt;}
.y7_c00430{bottom:930.599867pt;}
.y6_c00430{bottom:962.599867pt;}
.y2_c00430{bottom:1035.880000pt;}
.h4_c00430{height:18.560000pt;}
.h3_c00430{height:62.812500pt;}
.h5_c00430{height:72.826250pt;}
.h2_c00430{height:1099.880000pt;}
.h0_c00430{height:1122.520000pt;}
.h1_c00430{height:1122.666667pt;}
.w3_c00430{width:24.000000pt;}
.w2_c00430{width:771.080000pt;}
.w0_c00430{width:793.720000pt;}
.w1_c00430{width:794.000000pt;}
.x0_c00430{left:0.000000pt;}
.x1_c00430{left:11.320000pt;}
.x3_c00430{left:84.794933pt;}
.x5_c00430{left:132.800133pt;}
.x4_c00430{left:384.760000pt;}
.x2_c00430{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00431{font-family:ff1_c00431;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00431;src:url('chunks/assets/font_051b8c71a9deec53e195aced.woff2')format("woff");}.ff2_c00431{font-family:ff2_c00431;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00431;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00431{font-family:ff3_c00431;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00431{letter-spacing:0.000000px;}
.ls1_c00431{letter-spacing:10.065600px;}
.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.000000px;}
.ws1_c00431{word-spacing:0.000000px;}
._9_c00431{margin-left:-9.468000px;}
._3_c00431{width:2.930400px;}
._e_c00431{width:4.550400px;}
._b_c00431{width:5.551200px;}
._0_c00431{width:7.423200px;}
._1_c00431{width:8.546400px;}
._4_c00431{width:9.784800px;}
._8_c00431{width:10.908000px;}
._c_c00431{width:11.937600px;}
._2_c00431{width:14.112000px;}
._5_c00431{width:15.264000px;}
._d_c00431{width:16.855200px;}
._a_c00431{width:23.918400px;}
._6_c00431{width:27.892800px;}
._7_c00431{width:35.856000px;}
.fc1_c00431{color:transparent;}
.fc0_c00431{color:rgb(0,0,0);}
.fs0_c00431{font-size:64.800000px;}
.fs1_c00431{font-size:72.000000px;}
.y0_c00431{bottom:0.000000px;}
.y5_c00431{bottom:1.440000px;}
.y1_c00431{bottom:12.735000px;}
.y3_c00431{bottom:45.405000px;}
.y4_c00431{bottom:56.700000px;}
.y21_c00431{bottom:110.924850px;}
.y20_c00431{bottom:146.924850px;}
.y1f_c00431{bottom:182.924850px;}
.y1e_c00431{bottom:218.924850px;}
.y1d_c00431{bottom:254.924850px;}
.y1c_c00431{bottom:290.924850px;}
.y1b_c00431{bottom:326.924850px;}
.y1a_c00431{bottom:362.924850px;}
.y19_c00431{bottom:398.924850px;}
.y18_c00431{bottom:434.924850px;}
.y17_c00431{bottom:470.924850px;}
.y16_c00431{bottom:506.924850px;}
.y15_c00431{bottom:542.924850px;}
.y14_c00431{bottom:578.924850px;}
.y13_c00431{bottom:614.924850px;}
.y12_c00431{bottom:650.924850px;}
.y11_c00431{bottom:686.924850px;}
.y10_c00431{bottom:722.924850px;}
.yf_c00431{bottom:758.924850px;}
.ye_c00431{bottom:794.924850px;}
.yd_c00431{bottom:830.924850px;}
.yc_c00431{bottom:866.924850px;}
.yb_c00431{bottom:902.924850px;}
.ya_c00431{bottom:938.924850px;}
.y9_c00431{bottom:974.924850px;}
.y8_c00431{bottom:1010.924850px;}
.y7_c00431{bottom:1046.924850px;}
.y6_c00431{bottom:1082.924850px;}
.y2_c00431{bottom:1165.365000px;}
.h5_c00431{height:17.280000px;}
.h3_c00431{height:43.189453px;}
.h4_c00431{height:70.664062px;}
.h2_c00431{height:1237.365000px;}
.h0_c00431{height:1262.835000px;}
.h1_c00431{height:1263.000000px;}
.w3_c00431{width:47.520000px;}
.w2_c00431{width:867.465000px;}
.w0_c00431{width:892.935000px;}
.w1_c00431{width:893.250000px;}
.x3_c00431{left:-39.599850px;}
.x0_c00431{left:0.000000px;}
.x5_c00431{left:10.237500px;}
.x1_c00431{left:12.735000px;}
.x6_c00431{left:95.400150px;}
.x7_c00431{left:149.400150px;}
.x4_c00431{left:422.775000px;}
.x2_c00431{left:880.050300px;}
@media print{
.v0_c00431{vertical-align:0.000000pt;}
.ls0_c00431{letter-spacing:0.000000pt;}
.ls1_c00431{letter-spacing:8.947200pt;}
.ws0_c00431{word-spacing:-16.000000pt;}
.ws1_c00431{word-spacing:0.000000pt;}
._9_c00431{margin-left:-8.416000pt;}
._3_c00431{width:2.604800pt;}
._e_c00431{width:4.044800pt;}
._b_c00431{width:4.934400pt;}
._0_c00431{width:6.598400pt;}
._1_c00431{width:7.596800pt;}
._4_c00431{width:8.697600pt;}
._8_c00431{width:9.696000pt;}
._c_c00431{width:10.611200pt;}
._2_c00431{width:12.544000pt;}
._5_c00431{width:13.568000pt;}
._d_c00431{width:14.982400pt;}
._a_c00431{width:21.260800pt;}
._6_c00431{width:24.793600pt;}
._7_c00431{width:31.872000pt;}
.fs0_c00431{font-size:57.600000pt;}
.fs1_c00431{font-size:64.000000pt;}
.y0_c00431{bottom:0.000000pt;}
.y5_c00431{bottom:1.280000pt;}
.y1_c00431{bottom:11.320000pt;}
.y3_c00431{bottom:40.360000pt;}
.y4_c00431{bottom:50.400000pt;}
.y21_c00431{bottom:98.599867pt;}
.y20_c00431{bottom:130.599867pt;}
.y1f_c00431{bottom:162.599867pt;}
.y1e_c00431{bottom:194.599867pt;}
.y1d_c00431{bottom:226.599867pt;}
.y1c_c00431{bottom:258.599867pt;}
.y1b_c00431{bottom:290.599867pt;}
.y1a_c00431{bottom:322.599867pt;}
.y19_c00431{bottom:354.599867pt;}
.y18_c00431{bottom:386.599867pt;}
.y17_c00431{bottom:418.599867pt;}
.y16_c00431{bottom:450.599867pt;}
.y15_c00431{bottom:482.599867pt;}
.y14_c00431{bottom:514.599867pt;}
.y13_c00431{bottom:546.599867pt;}
.y12_c00431{bottom:578.599867pt;}
.y11_c00431{bottom:610.599867pt;}
.y10_c00431{bottom:642.599867pt;}
.yf_c00431{bottom:674.599867pt;}
.ye_c00431{bottom:706.599867pt;}
.yd_c00431{bottom:738.599867pt;}
.yc_c00431{bottom:770.599867pt;}
.yb_c00431{bottom:802.599867pt;}
.ya_c00431{bottom:834.599867pt;}
.y9_c00431{bottom:866.599867pt;}
.y8_c00431{bottom:898.599867pt;}
.y7_c00431{bottom:930.599867pt;}
.y6_c00431{bottom:962.599867pt;}
.y2_c00431{bottom:1035.880000pt;}
.h5_c00431{height:15.360000pt;}
.h3_c00431{height:38.390625pt;}
.h4_c00431{height:62.812500pt;}
.h2_c00431{height:1099.880000pt;}
.h0_c00431{height:1122.520000pt;}
.h1_c00431{height:1122.666667pt;}
.w3_c00431{width:42.240000pt;}
.w2_c00431{width:771.080000pt;}
.w0_c00431{width:793.720000pt;}
.w1_c00431{width:794.000000pt;}
.x3_c00431{left:-35.199867pt;}
.x0_c00431{left:0.000000pt;}
.x5_c00431{left:9.100000pt;}
.x1_c00431{left:11.320000pt;}
.x6_c00431{left:84.800133pt;}
.x7_c00431{left:132.800133pt;}
.x4_c00431{left:375.800000pt;}
.x2_c00431{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ff344e1c1c71a6952cfba469.woff2')format("woff");}.ff1_c00432{font-family:ff1_c00432;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00432;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00432{font-family:ff2_c00432;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00432;src:url('chunks/assets/font_9300cf8a40e092a2fff9c6b0.woff2')format("woff");}.ff3_c00432{font-family:ff3_c00432;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00432{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00432{vertical-align:0.000000px;}
.ls2_c00432{letter-spacing:-0.014400px;}
.ls1_c00432{letter-spacing:0.000000px;}
.ls0_c00432{letter-spacing:0.014400px;}
.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:-18.014400px;}
.ws0_c00432{word-spacing:-18.000000px;}
.ws2_c00432{word-spacing:0.000000px;}
._7_c00432{width:1.915200px;}
._1_c00432{width:2.923200px;}
._4_c00432{width:4.132800px;}
._3_c00432{width:5.392800px;}
._2_c00432{width:7.538400px;}
._6_c00432{width:8.553600px;}
._9_c00432{width:9.835200px;}
._0_c00432{width:11.073600px;}
._8_c00432{width:12.484800px;}
._a_c00432{width:14.565600px;}
._5_c00432{width:19.756800px;}
.fc1_c00432{color:transparent;}
.fc0_c00432{color:rgb(0,0,0);}
.fs1_c00432{font-size:64.800000px;}
.fs0_c00432{font-size:72.000000px;}
.y0_c00432{bottom:0.000000px;}
.y5_c00432{bottom:5.040000px;}
.y1_c00432{bottom:12.735000px;}
.y3_c00432{bottom:45.405000px;}
.y4_c00432{bottom:53.100000px;}
.y21_c00432{bottom:110.924850px;}
.y20_c00432{bottom:146.924850px;}
.y1f_c00432{bottom:182.924850px;}
.y1e_c00432{bottom:218.924850px;}
.y1d_c00432{bottom:254.924850px;}
.y1c_c00432{bottom:290.924850px;}
.y1b_c00432{bottom:326.924850px;}
.y1a_c00432{bottom:362.924850px;}
.y19_c00432{bottom:398.924850px;}
.y18_c00432{bottom:434.924850px;}
.y17_c00432{bottom:470.924850px;}
.y16_c00432{bottom:506.924850px;}
.y15_c00432{bottom:542.924850px;}
.y14_c00432{bottom:578.924850px;}
.y13_c00432{bottom:614.924850px;}
.y12_c00432{bottom:650.924850px;}
.y11_c00432{bottom:686.924850px;}
.y10_c00432{bottom:722.924850px;}
.yf_c00432{bottom:758.924850px;}
.ye_c00432{bottom:794.924850px;}
.yd_c00432{bottom:830.924850px;}
.yc_c00432{bottom:866.924850px;}
.yb_c00432{bottom:902.924850px;}
.ya_c00432{bottom:938.924850px;}
.y9_c00432{bottom:974.924850px;}
.y8_c00432{bottom:1010.924850px;}
.y7_c00432{bottom:1046.924850px;}
.y6_c00432{bottom:1082.924850px;}
.y2_c00432{bottom:1165.365000px;}
.h4_c00432{height:20.880000px;}
.h5_c00432{height:70.628906px;}
.h3_c00432{height:70.664062px;}
.h2_c00432{height:1237.365000px;}
.h0_c00432{height:1262.835000px;}
.h1_c00432{height:1263.000000px;}
.w3_c00432{width:27.000000px;}
.w2_c00432{width:867.465000px;}
.w0_c00432{width:892.935000px;}
.w1_c00432{width:893.250000px;}
.x0_c00432{left:0.000000px;}
.x1_c00432{left:12.735000px;}
.x3_c00432{left:95.394300px;}
.x5_c00432{left:149.382150px;}
.x4_c00432{left:432.855000px;}
.x2_c00432{left:880.050300px;}
@media print{
.v0_c00432{vertical-align:0.000000pt;}
.ls2_c00432{letter-spacing:-0.012800pt;}
.ls1_c00432{letter-spacing:0.000000pt;}
.ls0_c00432{letter-spacing:0.012800pt;}
.ws1_c00432{word-spacing:-16.012800pt;}
.ws0_c00432{word-spacing:-16.000000pt;}
.ws2_c00432{word-spacing:0.000000pt;}
._7_c00432{width:1.702400pt;}
._1_c00432{width:2.598400pt;}
._4_c00432{width:3.673600pt;}
._3_c00432{width:4.793600pt;}
._2_c00432{width:6.700800pt;}
._6_c00432{width:7.603200pt;}
._9_c00432{width:8.742400pt;}
._0_c00432{width:9.843200pt;}
._8_c00432{width:11.097600pt;}
._a_c00432{width:12.947200pt;}
._5_c00432{width:17.561600pt;}
.fs1_c00432{font-size:57.600000pt;}
.fs0_c00432{font-size:64.000000pt;}
.y0_c00432{bottom:0.000000pt;}
.y5_c00432{bottom:4.480000pt;}
.y1_c00432{bottom:11.320000pt;}
.y3_c00432{bottom:40.360000pt;}
.y4_c00432{bottom:47.200000pt;}
.y21_c00432{bottom:98.599867pt;}
.y20_c00432{bottom:130.599867pt;}
.y1f_c00432{bottom:162.599867pt;}
.y1e_c00432{bottom:194.599867pt;}
.y1d_c00432{bottom:226.599867pt;}
.y1c_c00432{bottom:258.599867pt;}
.y1b_c00432{bottom:290.599867pt;}
.y1a_c00432{bottom:322.599867pt;}
.y19_c00432{bottom:354.599867pt;}
.y18_c00432{bottom:386.599867pt;}
.y17_c00432{bottom:418.599867pt;}
.y16_c00432{bottom:450.599867pt;}
.y15_c00432{bottom:482.599867pt;}
.y14_c00432{bottom:514.599867pt;}
.y13_c00432{bottom:546.599867pt;}
.y12_c00432{bottom:578.599867pt;}
.y11_c00432{bottom:610.599867pt;}
.y10_c00432{bottom:642.599867pt;}
.yf_c00432{bottom:674.599867pt;}
.ye_c00432{bottom:706.599867pt;}
.yd_c00432{bottom:738.599867pt;}
.yc_c00432{bottom:770.599867pt;}
.yb_c00432{bottom:802.599867pt;}
.ya_c00432{bottom:834.599867pt;}
.y9_c00432{bottom:866.599867pt;}
.y8_c00432{bottom:898.599867pt;}
.y7_c00432{bottom:930.599867pt;}
.y6_c00432{bottom:962.599867pt;}
.y2_c00432{bottom:1035.880000pt;}
.h4_c00432{height:18.560000pt;}
.h5_c00432{height:62.781250pt;}
.h3_c00432{height:62.812500pt;}
.h2_c00432{height:1099.880000pt;}
.h0_c00432{height:1122.520000pt;}
.h1_c00432{height:1122.666667pt;}
.w3_c00432{width:24.000000pt;}
.w2_c00432{width:771.080000pt;}
.w0_c00432{width:793.720000pt;}
.w1_c00432{width:794.000000pt;}
.x0_c00432{left:0.000000pt;}
.x1_c00432{left:11.320000pt;}
.x3_c00432{left:84.794933pt;}
.x5_c00432{left:132.784133pt;}
.x4_c00432{left:384.760000pt;}
.x2_c00432{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00433{font-family:ff1_c00433;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00433;src:url('chunks/assets/font_5029d9cb179ee53984b4c1a6.woff2')format("woff");}.ff2_c00433{font-family:ff2_c00433;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00433;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00433{font-family:ff3_c00433;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00433;src:url('chunks/assets/font_14246263813e8134297bf89b.woff2')format("woff");}.ff4_c00433{font-family:ff4_c00433;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00433{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00433{vertical-align:0.000000px;}
.ls2_c00433{letter-spacing:-0.014400px;}
.ls0_c00433{letter-spacing:0.000000px;}
.ls1_c00433{letter-spacing:0.050400px;}
.sc__c00433{text-shadow:none;}
.sc0_c00433{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00433{-webkit-text-stroke:0px transparent;}
.sc0_c00433{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00433{word-spacing:-18.000000px;}
.ws1_c00433{word-spacing:0.000000px;}
._4_c00433{width:1.296000px;}
._7_c00433{width:2.908800px;}
._8_c00433{width:4.060800px;}
._0_c00433{width:5.925600px;}
._6_c00433{width:7.099200px;}
._5_c00433{width:8.251200px;}
._d_c00433{width:9.748800px;}
._a_c00433{width:10.807200px;}
._3_c00433{width:12.499200px;}
._9_c00433{width:14.234400px;}
._b_c00433{width:23.889600px;}
._1_c00433{width:26.848800px;}
._2_c00433{width:30.060000px;}
._c_c00433{width:31.089600px;}
.fc1_c00433{color:transparent;}
.fc0_c00433{color:rgb(0,0,0);}
.fs0_c00433{font-size:64.800000px;}
.fs1_c00433{font-size:72.000000px;}
.y0_c00433{bottom:0.000000px;}
.y5_c00433{bottom:1.440000px;}
.y1_c00433{bottom:12.735000px;}
.y3_c00433{bottom:45.405000px;}
.y4_c00433{bottom:56.700000px;}
.y20_c00433{bottom:146.924850px;}
.y1f_c00433{bottom:182.924850px;}
.y1e_c00433{bottom:218.924850px;}
.y1d_c00433{bottom:254.924850px;}
.y1c_c00433{bottom:290.924850px;}
.y1b_c00433{bottom:326.924850px;}
.y1a_c00433{bottom:362.924850px;}
.y19_c00433{bottom:398.924850px;}
.y18_c00433{bottom:434.924850px;}
.y17_c00433{bottom:470.924850px;}
.y16_c00433{bottom:506.924850px;}
.y15_c00433{bottom:542.924850px;}
.y14_c00433{bottom:578.924850px;}
.y13_c00433{bottom:614.924850px;}
.y12_c00433{bottom:650.924850px;}
.y11_c00433{bottom:686.924850px;}
.y10_c00433{bottom:722.924850px;}
.yf_c00433{bottom:758.924850px;}
.ye_c00433{bottom:794.924850px;}
.yd_c00433{bottom:830.924850px;}
.yc_c00433{bottom:866.924850px;}
.yb_c00433{bottom:902.924850px;}
.ya_c00433{bottom:938.924850px;}
.y9_c00433{bottom:974.924850px;}
.y8_c00433{bottom:1010.924850px;}
.y7_c00433{bottom:1046.924850px;}
.y6_c00433{bottom:1082.924850px;}
.y2_c00433{bottom:1165.365000px;}
.h5_c00433{height:17.280000px;}
.h3_c00433{height:43.189453px;}
.h4_c00433{height:70.664062px;}
.h2_c00433{height:1237.365000px;}
.h0_c00433{height:1262.835000px;}
.h1_c00433{height:1263.000000px;}
.w3_c00433{width:47.520000px;}
.w2_c00433{width:867.465000px;}
.w0_c00433{width:892.935000px;}
.w1_c00433{width:893.250000px;}
.x3_c00433{left:-39.599850px;}
.x0_c00433{left:0.000000px;}
.x5_c00433{left:10.237500px;}
.x1_c00433{left:12.735000px;}
.x6_c00433{left:95.400150px;}
.x7_c00433{left:149.400150px;}
.x4_c00433{left:422.775000px;}
.x2_c00433{left:880.050300px;}
@media print{
.v0_c00433{vertical-align:0.000000pt;}
.ls2_c00433{letter-spacing:-0.012800pt;}
.ls0_c00433{letter-spacing:0.000000pt;}
.ls1_c00433{letter-spacing:0.044800pt;}
.ws0_c00433{word-spacing:-16.000000pt;}
.ws1_c00433{word-spacing:0.000000pt;}
._4_c00433{width:1.152000pt;}
._7_c00433{width:2.585600pt;}
._8_c00433{width:3.609600pt;}
._0_c00433{width:5.267200pt;}
._6_c00433{width:6.310400pt;}
._5_c00433{width:7.334400pt;}
._d_c00433{width:8.665600pt;}
._a_c00433{width:9.606400pt;}
._3_c00433{width:11.110400pt;}
._9_c00433{width:12.652800pt;}
._b_c00433{width:21.235200pt;}
._1_c00433{width:23.865600pt;}
._2_c00433{width:26.720000pt;}
._c_c00433{width:27.635200pt;}
.fs0_c00433{font-size:57.600000pt;}
.fs1_c00433{font-size:64.000000pt;}
.y0_c00433{bottom:0.000000pt;}
.y5_c00433{bottom:1.280000pt;}
.y1_c00433{bottom:11.320000pt;}
.y3_c00433{bottom:40.360000pt;}
.y4_c00433{bottom:50.400000pt;}
.y20_c00433{bottom:130.599867pt;}
.y1f_c00433{bottom:162.599867pt;}
.y1e_c00433{bottom:194.599867pt;}
.y1d_c00433{bottom:226.599867pt;}
.y1c_c00433{bottom:258.599867pt;}
.y1b_c00433{bottom:290.599867pt;}
.y1a_c00433{bottom:322.599867pt;}
.y19_c00433{bottom:354.599867pt;}
.y18_c00433{bottom:386.599867pt;}
.y17_c00433{bottom:418.599867pt;}
.y16_c00433{bottom:450.599867pt;}
.y15_c00433{bottom:482.599867pt;}
.y14_c00433{bottom:514.599867pt;}
.y13_c00433{bottom:546.599867pt;}
.y12_c00433{bottom:578.599867pt;}
.y11_c00433{bottom:610.599867pt;}
.y10_c00433{bottom:642.599867pt;}
.yf_c00433{bottom:674.599867pt;}
.ye_c00433{bottom:706.599867pt;}
.yd_c00433{bottom:738.599867pt;}
.yc_c00433{bottom:770.599867pt;}
.yb_c00433{bottom:802.599867pt;}
.ya_c00433{bottom:834.599867pt;}
.y9_c00433{bottom:866.599867pt;}
.y8_c00433{bottom:898.599867pt;}
.y7_c00433{bottom:930.599867pt;}
.y6_c00433{bottom:962.599867pt;}
.y2_c00433{bottom:1035.880000pt;}
.h5_c00433{height:15.360000pt;}
.h3_c00433{height:38.390625pt;}
.h4_c00433{height:62.812500pt;}
.h2_c00433{height:1099.880000pt;}
.h0_c00433{height:1122.520000pt;}
.h1_c00433{height:1122.666667pt;}
.w3_c00433{width:42.240000pt;}
.w2_c00433{width:771.080000pt;}
.w0_c00433{width:793.720000pt;}
.w1_c00433{width:794.000000pt;}
.x3_c00433{left:-35.199867pt;}
.x0_c00433{left:0.000000pt;}
.x5_c00433{left:9.100000pt;}
.x1_c00433{left:11.320000pt;}
.x6_c00433{left:84.800133pt;}
.x7_c00433{left:132.800133pt;}
.x4_c00433{left:375.800000pt;}
.x2_c00433{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_9f7d497aa4fd5a19b4fd3773.woff2')format("woff");}.ff1_c00434{font-family:ff1_c00434;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00434;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00434{font-family:ff2_c00434;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00434{letter-spacing:0.000000px;}
.ls1_c00434{letter-spacing:8.481600px;}
.sc__c00434{text-shadow:none;}
.sc0_c00434{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00434{-webkit-text-stroke:0px transparent;}
.sc0_c00434{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00434{word-spacing:-18.000000px;}
.ws1_c00434{word-spacing:0.000000px;}
._c_c00434{margin-left:-8.503200px;}
._1_c00434{width:1.425600px;}
._3_c00434{width:3.146400px;}
._5_c00434{width:5.018400px;}
._6_c00434{width:6.746400px;}
._b_c00434{width:7.804800px;}
._8_c00434{width:8.820000px;}
._9_c00434{width:9.828000px;}
._4_c00434{width:11.757600px;}
._2_c00434{width:13.629600px;}
._7_c00434{width:15.091200px;}
._a_c00434{width:16.891200px;}
._0_c00434{width:34.423200px;}
.fc1_c00434{color:transparent;}
.fc0_c00434{color:rgb(0,0,0);}
.fs1_c00434{font-size:64.800000px;}
.fs0_c00434{font-size:72.000000px;}
.y0_c00434{bottom:0.000000px;}
.y5_c00434{bottom:5.040000px;}
.y1_c00434{bottom:12.735000px;}
.y3_c00434{bottom:45.405000px;}
.y4_c00434{bottom:53.100000px;}
.y21_c00434{bottom:110.924850px;}
.y20_c00434{bottom:146.924850px;}
.y1f_c00434{bottom:182.924850px;}
.y1e_c00434{bottom:218.924850px;}
.y1d_c00434{bottom:254.924850px;}
.y1c_c00434{bottom:290.924850px;}
.y1b_c00434{bottom:326.924850px;}
.y1a_c00434{bottom:362.924850px;}
.y19_c00434{bottom:398.924850px;}
.y18_c00434{bottom:434.924850px;}
.y17_c00434{bottom:470.924850px;}
.y16_c00434{bottom:506.924850px;}
.y15_c00434{bottom:542.924850px;}
.y14_c00434{bottom:578.924850px;}
.y13_c00434{bottom:614.924850px;}
.y12_c00434{bottom:650.924850px;}
.y11_c00434{bottom:686.924850px;}
.y10_c00434{bottom:722.924850px;}
.yf_c00434{bottom:758.924850px;}
.ye_c00434{bottom:794.924850px;}
.yd_c00434{bottom:830.924850px;}
.yc_c00434{bottom:866.924850px;}
.yb_c00434{bottom:902.924850px;}
.ya_c00434{bottom:938.924850px;}
.y9_c00434{bottom:974.924850px;}
.y8_c00434{bottom:1010.924850px;}
.y7_c00434{bottom:1046.924850px;}
.y6_c00434{bottom:1082.924850px;}
.y2_c00434{bottom:1165.365000px;}
.h4_c00434{height:20.880000px;}
.h3_c00434{height:70.664062px;}
.h2_c00434{height:1237.365000px;}
.h0_c00434{height:1262.835000px;}
.h1_c00434{height:1263.000000px;}
.w3_c00434{width:27.000000px;}
.w2_c00434{width:867.465000px;}
.w0_c00434{width:892.935000px;}
.w1_c00434{width:893.250000px;}
.x0_c00434{left:0.000000px;}
.x1_c00434{left:12.735000px;}
.x3_c00434{left:95.394300px;}
.x5_c00434{left:149.400150px;}
.x4_c00434{left:432.855000px;}
.x2_c00434{left:880.050300px;}
@media print{
.v0_c00434{vertical-align:0.000000pt;}
.ls0_c00434{letter-spacing:0.000000pt;}
.ls1_c00434{letter-spacing:7.539200pt;}
.ws0_c00434{word-spacing:-16.000000pt;}
.ws1_c00434{word-spacing:0.000000pt;}
._c_c00434{margin-left:-7.558400pt;}
._1_c00434{width:1.267200pt;}
._3_c00434{width:2.796800pt;}
._5_c00434{width:4.460800pt;}
._6_c00434{width:5.996800pt;}
._b_c00434{width:6.937600pt;}
._8_c00434{width:7.840000pt;}
._9_c00434{width:8.736000pt;}
._4_c00434{width:10.451200pt;}
._2_c00434{width:12.115200pt;}
._7_c00434{width:13.414400pt;}
._a_c00434{width:15.014400pt;}
._0_c00434{width:30.598400pt;}
.fs1_c00434{font-size:57.600000pt;}
.fs0_c00434{font-size:64.000000pt;}
.y0_c00434{bottom:0.000000pt;}
.y5_c00434{bottom:4.480000pt;}
.y1_c00434{bottom:11.320000pt;}
.y3_c00434{bottom:40.360000pt;}
.y4_c00434{bottom:47.200000pt;}
.y21_c00434{bottom:98.599867pt;}
.y20_c00434{bottom:130.599867pt;}
.y1f_c00434{bottom:162.599867pt;}
.y1e_c00434{bottom:194.599867pt;}
.y1d_c00434{bottom:226.599867pt;}
.y1c_c00434{bottom:258.599867pt;}
.y1b_c00434{bottom:290.599867pt;}
.y1a_c00434{bottom:322.599867pt;}
.y19_c00434{bottom:354.599867pt;}
.y18_c00434{bottom:386.599867pt;}
.y17_c00434{bottom:418.599867pt;}
.y16_c00434{bottom:450.599867pt;}
.y15_c00434{bottom:482.599867pt;}
.y14_c00434{bottom:514.599867pt;}
.y13_c00434{bottom:546.599867pt;}
.y12_c00434{bottom:578.599867pt;}
.y11_c00434{bottom:610.599867pt;}
.y10_c00434{bottom:642.599867pt;}
.yf_c00434{bottom:674.599867pt;}
.ye_c00434{bottom:706.599867pt;}
.yd_c00434{bottom:738.599867pt;}
.yc_c00434{bottom:770.599867pt;}
.yb_c00434{bottom:802.599867pt;}
.ya_c00434{bottom:834.599867pt;}
.y9_c00434{bottom:866.599867pt;}
.y8_c00434{bottom:898.599867pt;}
.y7_c00434{bottom:930.599867pt;}
.y6_c00434{bottom:962.599867pt;}
.y2_c00434{bottom:1035.880000pt;}
.h4_c00434{height:18.560000pt;}
.h3_c00434{height:62.812500pt;}
.h2_c00434{height:1099.880000pt;}
.h0_c00434{height:1122.520000pt;}
.h1_c00434{height:1122.666667pt;}
.w3_c00434{width:24.000000pt;}
.w2_c00434{width:771.080000pt;}
.w0_c00434{width:793.720000pt;}
.w1_c00434{width:794.000000pt;}
.x0_c00434{left:0.000000pt;}
.x1_c00434{left:11.320000pt;}
.x3_c00434{left:84.794933pt;}
.x5_c00434{left:132.800133pt;}
.x4_c00434{left:384.760000pt;}
.x2_c00434{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00435{font-family:ff1_c00435;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00435;src:url('chunks/assets/font_9f88c8dc48bb15547d44af82.woff2')format("woff");}.ff2_c00435{font-family:ff2_c00435;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00435;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00435{font-family:ff3_c00435;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00435;src:url('chunks/assets/font_12c13e319b0ae42b9849e182.woff2')format("woff");}.ff4_c00435{font-family:ff4_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;}
.m0_c00435{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00435{vertical-align:0.000000px;}
.ls1_c00435{letter-spacing:-0.014400px;}
.ls0_c00435{letter-spacing:0.000000px;}
.ls2_c00435{letter-spacing:0.021600px;}
.sc__c00435{text-shadow:none;}
.sc0_c00435{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00435{-webkit-text-stroke:0px transparent;}
.sc0_c00435{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00435{word-spacing:-18.000000px;}
.ws1_c00435{word-spacing:0.000000px;}
._6_c00435{width:1.072800px;}
._2_c00435{width:4.737600px;}
._8_c00435{width:5.947200px;}
._3_c00435{width:7.128000px;}
._7_c00435{width:8.467200px;}
._4_c00435{width:9.496800px;}
._0_c00435{width:11.484000px;}
._1_c00435{width:13.046400px;}
._5_c00435{width:14.774400px;}
._b_c00435{width:16.934400px;}
._a_c00435{width:21.859200px;}
._9_c00435{width:44.121600px;}
.fc1_c00435{color:transparent;}
.fc0_c00435{color:rgb(0,0,0);}
.fs0_c00435{font-size:64.800000px;}
.fs1_c00435{font-size:72.000000px;}
.y0_c00435{bottom:0.000000px;}
.y5_c00435{bottom:1.440000px;}
.y1_c00435{bottom:12.735000px;}
.y3_c00435{bottom:45.405000px;}
.y4_c00435{bottom:56.700000px;}
.y21_c00435{bottom:110.924850px;}
.y20_c00435{bottom:146.924850px;}
.y1f_c00435{bottom:182.924850px;}
.y1e_c00435{bottom:218.924850px;}
.y1d_c00435{bottom:254.924850px;}
.y1c_c00435{bottom:290.924850px;}
.y1b_c00435{bottom:326.924850px;}
.y1a_c00435{bottom:362.924850px;}
.y19_c00435{bottom:398.924850px;}
.y18_c00435{bottom:434.924850px;}
.y17_c00435{bottom:470.924850px;}
.y16_c00435{bottom:506.924850px;}
.y15_c00435{bottom:542.924850px;}
.y14_c00435{bottom:578.924850px;}
.y13_c00435{bottom:614.924850px;}
.y12_c00435{bottom:650.924850px;}
.y11_c00435{bottom:686.924850px;}
.y10_c00435{bottom:722.924850px;}
.yf_c00435{bottom:758.924850px;}
.ye_c00435{bottom:794.924850px;}
.yd_c00435{bottom:830.924850px;}
.yc_c00435{bottom:866.924850px;}
.yb_c00435{bottom:902.924850px;}
.ya_c00435{bottom:938.924850px;}
.y9_c00435{bottom:974.924850px;}
.y8_c00435{bottom:1010.924850px;}
.y7_c00435{bottom:1046.924850px;}
.y6_c00435{bottom:1082.924850px;}
.y2_c00435{bottom:1165.365000px;}
.h5_c00435{height:17.280000px;}
.h3_c00435{height:43.189453px;}
.h6_c00435{height:70.628906px;}
.h4_c00435{height:70.664062px;}
.h2_c00435{height:1237.365000px;}
.h0_c00435{height:1262.835000px;}
.h1_c00435{height:1263.000000px;}
.w3_c00435{width:47.520000px;}
.w2_c00435{width:867.465000px;}
.w0_c00435{width:892.935000px;}
.w1_c00435{width:893.250000px;}
.x3_c00435{left:-39.599850px;}
.x0_c00435{left:0.000000px;}
.x5_c00435{left:10.237500px;}
.x1_c00435{left:12.735000px;}
.x7_c00435{left:95.400150px;}
.x6_c00435{left:149.400150px;}
.x4_c00435{left:422.775000px;}
.x2_c00435{left:880.050300px;}
@media print{
.v0_c00435{vertical-align:0.000000pt;}
.ls1_c00435{letter-spacing:-0.012800pt;}
.ls0_c00435{letter-spacing:0.000000pt;}
.ls2_c00435{letter-spacing:0.019200pt;}
.ws0_c00435{word-spacing:-16.000000pt;}
.ws1_c00435{word-spacing:0.000000pt;}
._6_c00435{width:0.953600pt;}
._2_c00435{width:4.211200pt;}
._8_c00435{width:5.286400pt;}
._3_c00435{width:6.336000pt;}
._7_c00435{width:7.526400pt;}
._4_c00435{width:8.441600pt;}
._0_c00435{width:10.208000pt;}
._1_c00435{width:11.596800pt;}
._5_c00435{width:13.132800pt;}
._b_c00435{width:15.052800pt;}
._a_c00435{width:19.430400pt;}
._9_c00435{width:39.219200pt;}
.fs0_c00435{font-size:57.600000pt;}
.fs1_c00435{font-size:64.000000pt;}
.y0_c00435{bottom:0.000000pt;}
.y5_c00435{bottom:1.280000pt;}
.y1_c00435{bottom:11.320000pt;}
.y3_c00435{bottom:40.360000pt;}
.y4_c00435{bottom:50.400000pt;}
.y21_c00435{bottom:98.599867pt;}
.y20_c00435{bottom:130.599867pt;}
.y1f_c00435{bottom:162.599867pt;}
.y1e_c00435{bottom:194.599867pt;}
.y1d_c00435{bottom:226.599867pt;}
.y1c_c00435{bottom:258.599867pt;}
.y1b_c00435{bottom:290.599867pt;}
.y1a_c00435{bottom:322.599867pt;}
.y19_c00435{bottom:354.599867pt;}
.y18_c00435{bottom:386.599867pt;}
.y17_c00435{bottom:418.599867pt;}
.y16_c00435{bottom:450.599867pt;}
.y15_c00435{bottom:482.599867pt;}
.y14_c00435{bottom:514.599867pt;}
.y13_c00435{bottom:546.599867pt;}
.y12_c00435{bottom:578.599867pt;}
.y11_c00435{bottom:610.599867pt;}
.y10_c00435{bottom:642.599867pt;}
.yf_c00435{bottom:674.599867pt;}
.ye_c00435{bottom:706.599867pt;}
.yd_c00435{bottom:738.599867pt;}
.yc_c00435{bottom:770.599867pt;}
.yb_c00435{bottom:802.599867pt;}
.ya_c00435{bottom:834.599867pt;}
.y9_c00435{bottom:866.599867pt;}
.y8_c00435{bottom:898.599867pt;}
.y7_c00435{bottom:930.599867pt;}
.y6_c00435{bottom:962.599867pt;}
.y2_c00435{bottom:1035.880000pt;}
.h5_c00435{height:15.360000pt;}
.h3_c00435{height:38.390625pt;}
.h6_c00435{height:62.781250pt;}
.h4_c00435{height:62.812500pt;}
.h2_c00435{height:1099.880000pt;}
.h0_c00435{height:1122.520000pt;}
.h1_c00435{height:1122.666667pt;}
.w3_c00435{width:42.240000pt;}
.w2_c00435{width:771.080000pt;}
.w0_c00435{width:793.720000pt;}
.w1_c00435{width:794.000000pt;}
.x3_c00435{left:-35.199867pt;}
.x0_c00435{left:0.000000pt;}
.x5_c00435{left:9.100000pt;}
.x1_c00435{left:11.320000pt;}
.x7_c00435{left:84.800133pt;}
.x6_c00435{left:132.800133pt;}
.x4_c00435{left:375.800000pt;}
.x2_c00435{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_8d72d260fef6c2542dbc79dc.woff2')format("woff");}.ff1_c00436{font-family:ff1_c00436;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00436;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00436{font-family:ff2_c00436;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00436;src:url('chunks/assets/font_f2c2190ad725f15b3bf8a5c1.woff2')format("woff");}.ff3_c00436{font-family:ff3_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;}
.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;}
.ls2_c00436{letter-spacing:-0.014400px;}
.ls0_c00436{letter-spacing:0.000000px;}
.ls1_c00436{letter-spacing:0.021600px;}
.sc__c00436{text-shadow:none;}
.sc0_c00436{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00436{-webkit-text-stroke:0px transparent;}
.sc0_c00436{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00436{word-spacing:-18.000000px;}
.ws1_c00436{word-spacing:0.000000px;}
._1_c00436{width:1.814400px;}
._2_c00436{width:2.822400px;}
._8_c00436{width:3.981600px;}
._a_c00436{width:5.040000px;}
._6_c00436{width:6.552000px;}
._5_c00436{width:8.352000px;}
._0_c00436{width:10.497600px;}
._3_c00436{width:12.060000px;}
._7_c00436{width:13.356000px;}
._4_c00436{width:16.632000px;}
._9_c00436{width:20.354400px;}
.fc1_c00436{color:transparent;}
.fc0_c00436{color:rgb(0,0,0);}
.fs1_c00436{font-size:64.800000px;}
.fs0_c00436{font-size:72.000000px;}
.y0_c00436{bottom:0.000000px;}
.y5_c00436{bottom:5.040000px;}
.y1_c00436{bottom:12.735000px;}
.y3_c00436{bottom:45.405000px;}
.y4_c00436{bottom:53.100000px;}
.y21_c00436{bottom:110.924850px;}
.y20_c00436{bottom:146.924850px;}
.y1f_c00436{bottom:182.924850px;}
.y1e_c00436{bottom:218.924850px;}
.y1d_c00436{bottom:254.924850px;}
.y1c_c00436{bottom:290.924850px;}
.y1b_c00436{bottom:326.924850px;}
.y1a_c00436{bottom:362.924850px;}
.y19_c00436{bottom:398.924850px;}
.y18_c00436{bottom:434.924850px;}
.y17_c00436{bottom:470.924850px;}
.y16_c00436{bottom:506.924850px;}
.y15_c00436{bottom:542.924850px;}
.y14_c00436{bottom:578.924850px;}
.y13_c00436{bottom:614.924850px;}
.y12_c00436{bottom:650.924850px;}
.y11_c00436{bottom:686.924850px;}
.y10_c00436{bottom:722.924850px;}
.yf_c00436{bottom:758.924850px;}
.ye_c00436{bottom:794.924850px;}
.yd_c00436{bottom:830.924850px;}
.yc_c00436{bottom:866.924850px;}
.yb_c00436{bottom:902.924850px;}
.ya_c00436{bottom:938.924850px;}
.y9_c00436{bottom:974.924850px;}
.y8_c00436{bottom:1010.924850px;}
.y7_c00436{bottom:1046.924850px;}
.y6_c00436{bottom:1082.924850px;}
.y2_c00436{bottom:1165.365000px;}
.h4_c00436{height:20.880000px;}
.h3_c00436{height:70.664062px;}
.h2_c00436{height:1237.365000px;}
.h0_c00436{height:1262.835000px;}
.h1_c00436{height:1263.000000px;}
.w3_c00436{width:27.000000px;}
.w2_c00436{width:867.465000px;}
.w0_c00436{width:892.935000px;}
.w1_c00436{width:893.250000px;}
.x0_c00436{left:0.000000px;}
.x1_c00436{left:12.735000px;}
.x3_c00436{left:95.394300px;}
.x5_c00436{left:149.400150px;}
.x4_c00436{left:432.855000px;}
.x2_c00436{left:880.050300px;}
@media print{
.v0_c00436{vertical-align:0.000000pt;}
.ls2_c00436{letter-spacing:-0.012800pt;}
.ls0_c00436{letter-spacing:0.000000pt;}
.ls1_c00436{letter-spacing:0.019200pt;}
.ws0_c00436{word-spacing:-16.000000pt;}
.ws1_c00436{word-spacing:0.000000pt;}
._1_c00436{width:1.612800pt;}
._2_c00436{width:2.508800pt;}
._8_c00436{width:3.539200pt;}
._a_c00436{width:4.480000pt;}
._6_c00436{width:5.824000pt;}
._5_c00436{width:7.424000pt;}
._0_c00436{width:9.331200pt;}
._3_c00436{width:10.720000pt;}
._7_c00436{width:11.872000pt;}
._4_c00436{width:14.784000pt;}
._9_c00436{width:18.092800pt;}
.fs1_c00436{font-size:57.600000pt;}
.fs0_c00436{font-size:64.000000pt;}
.y0_c00436{bottom:0.000000pt;}
.y5_c00436{bottom:4.480000pt;}
.y1_c00436{bottom:11.320000pt;}
.y3_c00436{bottom:40.360000pt;}
.y4_c00436{bottom:47.200000pt;}
.y21_c00436{bottom:98.599867pt;}
.y20_c00436{bottom:130.599867pt;}
.y1f_c00436{bottom:162.599867pt;}
.y1e_c00436{bottom:194.599867pt;}
.y1d_c00436{bottom:226.599867pt;}
.y1c_c00436{bottom:258.599867pt;}
.y1b_c00436{bottom:290.599867pt;}
.y1a_c00436{bottom:322.599867pt;}
.y19_c00436{bottom:354.599867pt;}
.y18_c00436{bottom:386.599867pt;}
.y17_c00436{bottom:418.599867pt;}
.y16_c00436{bottom:450.599867pt;}
.y15_c00436{bottom:482.599867pt;}
.y14_c00436{bottom:514.599867pt;}
.y13_c00436{bottom:546.599867pt;}
.y12_c00436{bottom:578.599867pt;}
.y11_c00436{bottom:610.599867pt;}
.y10_c00436{bottom:642.599867pt;}
.yf_c00436{bottom:674.599867pt;}
.ye_c00436{bottom:706.599867pt;}
.yd_c00436{bottom:738.599867pt;}
.yc_c00436{bottom:770.599867pt;}
.yb_c00436{bottom:802.599867pt;}
.ya_c00436{bottom:834.599867pt;}
.y9_c00436{bottom:866.599867pt;}
.y8_c00436{bottom:898.599867pt;}
.y7_c00436{bottom:930.599867pt;}
.y6_c00436{bottom:962.599867pt;}
.y2_c00436{bottom:1035.880000pt;}
.h4_c00436{height:18.560000pt;}
.h3_c00436{height:62.812500pt;}
.h2_c00436{height:1099.880000pt;}
.h0_c00436{height:1122.520000pt;}
.h1_c00436{height:1122.666667pt;}
.w3_c00436{width:24.000000pt;}
.w2_c00436{width:771.080000pt;}
.w0_c00436{width:793.720000pt;}
.w1_c00436{width:794.000000pt;}
.x0_c00436{left:0.000000pt;}
.x1_c00436{left:11.320000pt;}
.x3_c00436{left:84.794933pt;}
.x5_c00436{left:132.800133pt;}
.x4_c00436{left:384.760000pt;}
.x2_c00436{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00437{font-family:ff1_c00437;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00437;src:url('chunks/assets/font_53f3d238aecf56f58f76eb3d.woff2')format("woff");}.ff2_c00437{font-family:ff2_c00437;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00437;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00437{font-family:ff3_c00437;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00437;src:url('chunks/assets/font_0c3e5f2480060655c0864ae4.woff2')format("woff");}.ff4_c00437{font-family:ff4_c00437;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00437{letter-spacing:0.000000px;}
.sc__c00437{text-shadow:none;}
.sc0_c00437{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00437{-webkit-text-stroke:0px transparent;}
.sc0_c00437{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00437{word-spacing:-18.000000px;}
.ws1_c00437{word-spacing:0.000000px;}
._9_c00437{width:1.425600px;}
._2_c00437{width:3.096000px;}
._0_c00437{width:4.608000px;}
._a_c00437{width:5.745600px;}
._8_c00437{width:6.768000px;}
._7_c00437{width:8.366400px;}
._1_c00437{width:12.859200px;}
._6_c00437{width:13.860000px;}
._5_c00437{width:15.062400px;}
._b_c00437{width:16.848000px;}
._4_c00437{width:25.308000px;}
._3_c00437{width:34.682400px;}
.fc1_c00437{color:transparent;}
.fc0_c00437{color:rgb(0,0,0);}
.fs0_c00437{font-size:64.800000px;}
.fs1_c00437{font-size:72.000000px;}
.y0_c00437{bottom:0.000000px;}
.y5_c00437{bottom:1.440000px;}
.y1_c00437{bottom:12.735000px;}
.y3_c00437{bottom:45.405000px;}
.y4_c00437{bottom:56.700000px;}
.y20_c00437{bottom:146.924850px;}
.y1f_c00437{bottom:182.924850px;}
.y1e_c00437{bottom:218.924850px;}
.y1d_c00437{bottom:254.924850px;}
.y1c_c00437{bottom:290.924850px;}
.y1b_c00437{bottom:326.924850px;}
.y1a_c00437{bottom:362.924850px;}
.y19_c00437{bottom:398.924850px;}
.y18_c00437{bottom:434.924850px;}
.y17_c00437{bottom:470.924850px;}
.y16_c00437{bottom:506.924850px;}
.y15_c00437{bottom:542.924850px;}
.y14_c00437{bottom:578.924850px;}
.y13_c00437{bottom:614.924850px;}
.y12_c00437{bottom:650.924850px;}
.y11_c00437{bottom:686.924850px;}
.y10_c00437{bottom:722.924850px;}
.yf_c00437{bottom:758.924850px;}
.ye_c00437{bottom:794.924850px;}
.yd_c00437{bottom:830.924850px;}
.yc_c00437{bottom:866.924850px;}
.yb_c00437{bottom:902.924850px;}
.ya_c00437{bottom:938.924850px;}
.y9_c00437{bottom:974.924850px;}
.y8_c00437{bottom:1010.924850px;}
.y7_c00437{bottom:1046.924850px;}
.y6_c00437{bottom:1082.924850px;}
.y2_c00437{bottom:1165.365000px;}
.h5_c00437{height:17.280000px;}
.h3_c00437{height:43.189453px;}
.h6_c00437{height:70.628906px;}
.h4_c00437{height:70.664062px;}
.h2_c00437{height:1237.365000px;}
.h0_c00437{height:1262.835000px;}
.h1_c00437{height:1263.000000px;}
.w3_c00437{width:47.520000px;}
.w2_c00437{width:867.465000px;}
.w0_c00437{width:892.935000px;}
.w1_c00437{width:893.250000px;}
.x3_c00437{left:-39.599850px;}
.x0_c00437{left:0.000000px;}
.x5_c00437{left:10.237500px;}
.x1_c00437{left:12.735000px;}
.x6_c00437{left:95.400150px;}
.x7_c00437{left:149.400150px;}
.x4_c00437{left:422.775000px;}
.x2_c00437{left:880.050300px;}
@media print{
.v0_c00437{vertical-align:0.000000pt;}
.ls0_c00437{letter-spacing:0.000000pt;}
.ws0_c00437{word-spacing:-16.000000pt;}
.ws1_c00437{word-spacing:0.000000pt;}
._9_c00437{width:1.267200pt;}
._2_c00437{width:2.752000pt;}
._0_c00437{width:4.096000pt;}
._a_c00437{width:5.107200pt;}
._8_c00437{width:6.016000pt;}
._7_c00437{width:7.436800pt;}
._1_c00437{width:11.430400pt;}
._6_c00437{width:12.320000pt;}
._5_c00437{width:13.388800pt;}
._b_c00437{width:14.976000pt;}
._4_c00437{width:22.496000pt;}
._3_c00437{width:30.828800pt;}
.fs0_c00437{font-size:57.600000pt;}
.fs1_c00437{font-size:64.000000pt;}
.y0_c00437{bottom:0.000000pt;}
.y5_c00437{bottom:1.280000pt;}
.y1_c00437{bottom:11.320000pt;}
.y3_c00437{bottom:40.360000pt;}
.y4_c00437{bottom:50.400000pt;}
.y20_c00437{bottom:130.599867pt;}
.y1f_c00437{bottom:162.599867pt;}
.y1e_c00437{bottom:194.599867pt;}
.y1d_c00437{bottom:226.599867pt;}
.y1c_c00437{bottom:258.599867pt;}
.y1b_c00437{bottom:290.599867pt;}
.y1a_c00437{bottom:322.599867pt;}
.y19_c00437{bottom:354.599867pt;}
.y18_c00437{bottom:386.599867pt;}
.y17_c00437{bottom:418.599867pt;}
.y16_c00437{bottom:450.599867pt;}
.y15_c00437{bottom:482.599867pt;}
.y14_c00437{bottom:514.599867pt;}
.y13_c00437{bottom:546.599867pt;}
.y12_c00437{bottom:578.599867pt;}
.y11_c00437{bottom:610.599867pt;}
.y10_c00437{bottom:642.599867pt;}
.yf_c00437{bottom:674.599867pt;}
.ye_c00437{bottom:706.599867pt;}
.yd_c00437{bottom:738.599867pt;}
.yc_c00437{bottom:770.599867pt;}
.yb_c00437{bottom:802.599867pt;}
.ya_c00437{bottom:834.599867pt;}
.y9_c00437{bottom:866.599867pt;}
.y8_c00437{bottom:898.599867pt;}
.y7_c00437{bottom:930.599867pt;}
.y6_c00437{bottom:962.599867pt;}
.y2_c00437{bottom:1035.880000pt;}
.h5_c00437{height:15.360000pt;}
.h3_c00437{height:38.390625pt;}
.h6_c00437{height:62.781250pt;}
.h4_c00437{height:62.812500pt;}
.h2_c00437{height:1099.880000pt;}
.h0_c00437{height:1122.520000pt;}
.h1_c00437{height:1122.666667pt;}
.w3_c00437{width:42.240000pt;}
.w2_c00437{width:771.080000pt;}
.w0_c00437{width:793.720000pt;}
.w1_c00437{width:794.000000pt;}
.x3_c00437{left:-35.199867pt;}
.x0_c00437{left:0.000000pt;}
.x5_c00437{left:9.100000pt;}
.x1_c00437{left:11.320000pt;}
.x6_c00437{left:84.800133pt;}
.x7_c00437{left:132.800133pt;}
.x4_c00437{left:375.800000pt;}
.x2_c00437{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d01144beca908a0413ec8979.woff2')format("woff");}.ff1_c00438{font-family:ff1_c00438;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00438;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00438{font-family:ff2_c00438;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00438;src:url('chunks/assets/font_99ed23a1cf088dcbf4b2dfa9.woff2')format("woff");}.ff3_c00438{font-family:ff3_c00438;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00438{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00438{vertical-align:0.000000px;}
.ls2_c00438{letter-spacing:-0.014400px;}
.ls0_c00438{letter-spacing:0.000000px;}
.ls1_c00438{letter-spacing:0.014400px;}
.sc__c00438{text-shadow:none;}
.sc0_c00438{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00438{-webkit-text-stroke:0px transparent;}
.sc0_c00438{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00438{word-spacing:-18.000000px;}
.ws1_c00438{word-spacing:0.000000px;}
._0_c00438{width:1.591200px;}
._9_c00438{width:2.599200px;}
._4_c00438{width:3.866400px;}
._5_c00438{width:5.112000px;}
._7_c00438{width:6.688800px;}
._6_c00438{width:8.078400px;}
._1_c00438{width:9.979200px;}
._3_c00438{width:12.024000px;}
._2_c00438{width:14.068800px;}
._8_c00438{width:24.588000px;}
._a_c00438{width:33.645600px;}
.fc1_c00438{color:transparent;}
.fc0_c00438{color:rgb(0,0,0);}
.fs1_c00438{font-size:64.800000px;}
.fs0_c00438{font-size:72.000000px;}
.y0_c00438{bottom:0.000000px;}
.y5_c00438{bottom:5.040000px;}
.y1_c00438{bottom:12.735000px;}
.y3_c00438{bottom:45.405000px;}
.y4_c00438{bottom:53.100000px;}
.y20_c00438{bottom:146.924850px;}
.y1f_c00438{bottom:182.924850px;}
.y1e_c00438{bottom:218.924850px;}
.y1d_c00438{bottom:254.924850px;}
.y1c_c00438{bottom:290.924850px;}
.y1b_c00438{bottom:326.924850px;}
.y1a_c00438{bottom:362.924850px;}
.y19_c00438{bottom:398.924850px;}
.y18_c00438{bottom:434.924850px;}
.y17_c00438{bottom:470.924850px;}
.y16_c00438{bottom:506.924850px;}
.y15_c00438{bottom:542.924850px;}
.y14_c00438{bottom:578.924850px;}
.y13_c00438{bottom:614.924850px;}
.y12_c00438{bottom:650.924850px;}
.y11_c00438{bottom:686.924850px;}
.y10_c00438{bottom:722.924850px;}
.yf_c00438{bottom:758.924850px;}
.ye_c00438{bottom:794.924850px;}
.yd_c00438{bottom:830.924850px;}
.yc_c00438{bottom:866.924850px;}
.yb_c00438{bottom:902.924850px;}
.ya_c00438{bottom:938.924850px;}
.y9_c00438{bottom:974.924850px;}
.y8_c00438{bottom:1010.924850px;}
.y7_c00438{bottom:1046.924850px;}
.y6_c00438{bottom:1082.924850px;}
.y2_c00438{bottom:1165.365000px;}
.h4_c00438{height:20.880000px;}
.h5_c00438{height:70.628906px;}
.h3_c00438{height:70.664062px;}
.h2_c00438{height:1237.365000px;}
.h0_c00438{height:1262.835000px;}
.h1_c00438{height:1263.000000px;}
.w3_c00438{width:27.000000px;}
.w2_c00438{width:867.465000px;}
.w0_c00438{width:892.935000px;}
.w1_c00438{width:893.250000px;}
.x0_c00438{left:0.000000px;}
.x1_c00438{left:12.735000px;}
.x3_c00438{left:95.394300px;}
.x5_c00438{left:149.400150px;}
.x4_c00438{left:432.855000px;}
.x2_c00438{left:880.050300px;}
@media print{
.v0_c00438{vertical-align:0.000000pt;}
.ls2_c00438{letter-spacing:-0.012800pt;}
.ls0_c00438{letter-spacing:0.000000pt;}
.ls1_c00438{letter-spacing:0.012800pt;}
.ws0_c00438{word-spacing:-16.000000pt;}
.ws1_c00438{word-spacing:0.000000pt;}
._0_c00438{width:1.414400pt;}
._9_c00438{width:2.310400pt;}
._4_c00438{width:3.436800pt;}
._5_c00438{width:4.544000pt;}
._7_c00438{width:5.945600pt;}
._6_c00438{width:7.180800pt;}
._1_c00438{width:8.870400pt;}
._3_c00438{width:10.688000pt;}
._2_c00438{width:12.505600pt;}
._8_c00438{width:21.856000pt;}
._a_c00438{width:29.907200pt;}
.fs1_c00438{font-size:57.600000pt;}
.fs0_c00438{font-size:64.000000pt;}
.y0_c00438{bottom:0.000000pt;}
.y5_c00438{bottom:4.480000pt;}
.y1_c00438{bottom:11.320000pt;}
.y3_c00438{bottom:40.360000pt;}
.y4_c00438{bottom:47.200000pt;}
.y20_c00438{bottom:130.599867pt;}
.y1f_c00438{bottom:162.599867pt;}
.y1e_c00438{bottom:194.599867pt;}
.y1d_c00438{bottom:226.599867pt;}
.y1c_c00438{bottom:258.599867pt;}
.y1b_c00438{bottom:290.599867pt;}
.y1a_c00438{bottom:322.599867pt;}
.y19_c00438{bottom:354.599867pt;}
.y18_c00438{bottom:386.599867pt;}
.y17_c00438{bottom:418.599867pt;}
.y16_c00438{bottom:450.599867pt;}
.y15_c00438{bottom:482.599867pt;}
.y14_c00438{bottom:514.599867pt;}
.y13_c00438{bottom:546.599867pt;}
.y12_c00438{bottom:578.599867pt;}
.y11_c00438{bottom:610.599867pt;}
.y10_c00438{bottom:642.599867pt;}
.yf_c00438{bottom:674.599867pt;}
.ye_c00438{bottom:706.599867pt;}
.yd_c00438{bottom:738.599867pt;}
.yc_c00438{bottom:770.599867pt;}
.yb_c00438{bottom:802.599867pt;}
.ya_c00438{bottom:834.599867pt;}
.y9_c00438{bottom:866.599867pt;}
.y8_c00438{bottom:898.599867pt;}
.y7_c00438{bottom:930.599867pt;}
.y6_c00438{bottom:962.599867pt;}
.y2_c00438{bottom:1035.880000pt;}
.h4_c00438{height:18.560000pt;}
.h5_c00438{height:62.781250pt;}
.h3_c00438{height:62.812500pt;}
.h2_c00438{height:1099.880000pt;}
.h0_c00438{height:1122.520000pt;}
.h1_c00438{height:1122.666667pt;}
.w3_c00438{width:24.000000pt;}
.w2_c00438{width:771.080000pt;}
.w0_c00438{width:793.720000pt;}
.w1_c00438{width:794.000000pt;}
.x0_c00438{left:0.000000pt;}
.x1_c00438{left:11.320000pt;}
.x3_c00438{left:84.794933pt;}
.x5_c00438{left:132.800133pt;}
.x4_c00438{left:384.760000pt;}
.x2_c00438{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00439{font-family:ff1_c00439;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00439;src:url('chunks/assets/font_c62f4180a4afcff0e562296a.woff2')format("woff");}.ff2_c00439{font-family:ff2_c00439;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00439;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00439{font-family:ff3_c00439;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00439{letter-spacing:0.000000px;}
.sc__c00439{text-shadow:none;}
.sc0_c00439{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00439{-webkit-text-stroke:0px transparent;}
.sc0_c00439{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00439{word-spacing:-18.000000px;}
.ws1_c00439{word-spacing:0.000000px;}
._8_c00439{width:1.008000px;}
._0_c00439{width:2.088000px;}
._1_c00439{width:3.456000px;}
._3_c00439{width:4.939200px;}
._5_c00439{width:6.674400px;}
._a_c00439{width:8.352000px;}
._6_c00439{width:10.267200px;}
._9_c00439{width:12.326400px;}
._b_c00439{width:14.104800px;}
._4_c00439{width:19.080000px;}
._7_c00439{width:28.576800px;}
._2_c00439{width:34.747200px;}
.fc1_c00439{color:transparent;}
.fc0_c00439{color:rgb(0,0,0);}
.fs0_c00439{font-size:64.800000px;}
.fs1_c00439{font-size:72.000000px;}
.y0_c00439{bottom:0.000000px;}
.y5_c00439{bottom:1.440000px;}
.y1_c00439{bottom:12.735000px;}
.y3_c00439{bottom:45.405000px;}
.y4_c00439{bottom:56.700000px;}
.y21_c00439{bottom:110.924850px;}
.y20_c00439{bottom:146.924850px;}
.y1f_c00439{bottom:182.924850px;}
.y1e_c00439{bottom:218.924850px;}
.y1d_c00439{bottom:254.924850px;}
.y1c_c00439{bottom:290.924850px;}
.y1b_c00439{bottom:326.924850px;}
.y1a_c00439{bottom:362.924850px;}
.y19_c00439{bottom:398.924850px;}
.y18_c00439{bottom:434.924850px;}
.y17_c00439{bottom:470.924850px;}
.y16_c00439{bottom:506.924850px;}
.y15_c00439{bottom:542.924850px;}
.y14_c00439{bottom:578.924850px;}
.y13_c00439{bottom:614.924850px;}
.y12_c00439{bottom:650.924850px;}
.y11_c00439{bottom:686.924850px;}
.y10_c00439{bottom:722.924850px;}
.yf_c00439{bottom:758.924850px;}
.ye_c00439{bottom:794.924850px;}
.yd_c00439{bottom:830.924850px;}
.yc_c00439{bottom:866.924850px;}
.yb_c00439{bottom:902.924850px;}
.ya_c00439{bottom:938.924850px;}
.y9_c00439{bottom:974.924850px;}
.y8_c00439{bottom:1010.924850px;}
.y7_c00439{bottom:1046.924850px;}
.y6_c00439{bottom:1082.924850px;}
.y2_c00439{bottom:1165.365000px;}
.h5_c00439{height:17.280000px;}
.h3_c00439{height:43.189453px;}
.h4_c00439{height:70.664062px;}
.h2_c00439{height:1237.365000px;}
.h0_c00439{height:1262.835000px;}
.h1_c00439{height:1263.000000px;}
.w3_c00439{width:47.520000px;}
.w2_c00439{width:867.465000px;}
.w0_c00439{width:892.935000px;}
.w1_c00439{width:893.250000px;}
.x3_c00439{left:-39.599850px;}
.x0_c00439{left:0.000000px;}
.x5_c00439{left:10.237500px;}
.x1_c00439{left:12.735000px;}
.x7_c00439{left:95.400150px;}
.x6_c00439{left:149.400150px;}
.x4_c00439{left:422.775000px;}
.x2_c00439{left:880.050300px;}
@media print{
.v0_c00439{vertical-align:0.000000pt;}
.ls0_c00439{letter-spacing:0.000000pt;}
.ws0_c00439{word-spacing:-16.000000pt;}
.ws1_c00439{word-spacing:0.000000pt;}
._8_c00439{width:0.896000pt;}
._0_c00439{width:1.856000pt;}
._1_c00439{width:3.072000pt;}
._3_c00439{width:4.390400pt;}
._5_c00439{width:5.932800pt;}
._a_c00439{width:7.424000pt;}
._6_c00439{width:9.126400pt;}
._9_c00439{width:10.956800pt;}
._b_c00439{width:12.537600pt;}
._4_c00439{width:16.960000pt;}
._7_c00439{width:25.401600pt;}
._2_c00439{width:30.886400pt;}
.fs0_c00439{font-size:57.600000pt;}
.fs1_c00439{font-size:64.000000pt;}
.y0_c00439{bottom:0.000000pt;}
.y5_c00439{bottom:1.280000pt;}
.y1_c00439{bottom:11.320000pt;}
.y3_c00439{bottom:40.360000pt;}
.y4_c00439{bottom:50.400000pt;}
.y21_c00439{bottom:98.599867pt;}
.y20_c00439{bottom:130.599867pt;}
.y1f_c00439{bottom:162.599867pt;}
.y1e_c00439{bottom:194.599867pt;}
.y1d_c00439{bottom:226.599867pt;}
.y1c_c00439{bottom:258.599867pt;}
.y1b_c00439{bottom:290.599867pt;}
.y1a_c00439{bottom:322.599867pt;}
.y19_c00439{bottom:354.599867pt;}
.y18_c00439{bottom:386.599867pt;}
.y17_c00439{bottom:418.599867pt;}
.y16_c00439{bottom:450.599867pt;}
.y15_c00439{bottom:482.599867pt;}
.y14_c00439{bottom:514.599867pt;}
.y13_c00439{bottom:546.599867pt;}
.y12_c00439{bottom:578.599867pt;}
.y11_c00439{bottom:610.599867pt;}
.y10_c00439{bottom:642.599867pt;}
.yf_c00439{bottom:674.599867pt;}
.ye_c00439{bottom:706.599867pt;}
.yd_c00439{bottom:738.599867pt;}
.yc_c00439{bottom:770.599867pt;}
.yb_c00439{bottom:802.599867pt;}
.ya_c00439{bottom:834.599867pt;}
.y9_c00439{bottom:866.599867pt;}
.y8_c00439{bottom:898.599867pt;}
.y7_c00439{bottom:930.599867pt;}
.y6_c00439{bottom:962.599867pt;}
.y2_c00439{bottom:1035.880000pt;}
.h5_c00439{height:15.360000pt;}
.h3_c00439{height:38.390625pt;}
.h4_c00439{height:62.812500pt;}
.h2_c00439{height:1099.880000pt;}
.h0_c00439{height:1122.520000pt;}
.h1_c00439{height:1122.666667pt;}
.w3_c00439{width:42.240000pt;}
.w2_c00439{width:771.080000pt;}
.w0_c00439{width:793.720000pt;}
.w1_c00439{width:794.000000pt;}
.x3_c00439{left:-35.199867pt;}
.x0_c00439{left:0.000000pt;}
.x5_c00439{left:9.100000pt;}
.x1_c00439{left:11.320000pt;}
.x7_c00439{left:84.800133pt;}
.x6_c00439{left:132.800133pt;}
.x4_c00439{left:375.800000pt;}
.x2_c00439{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_e2024f22934429903525f3ba.woff2')format("woff");}.ff1_c00440{font-family:ff1_c00440;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00440;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00440{font-family:ff2_c00440;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00440;src:url('chunks/assets/font_aaaeb92fb0e25ebb5ab2d565.woff2')format("woff");}.ff3_c00440{font-family:ff3_c00440;line-height:1.284180;font-style: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;}
.ls1_c00440{letter-spacing:-0.014400px;}
.ls0_c00440{letter-spacing:0.000000px;}
.sc__c00440{text-shadow:none;}
.sc0_c00440{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00440{-webkit-text-stroke:0px transparent;}
.sc0_c00440{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00440{word-spacing:-18.000000px;}
.ws1_c00440{word-spacing:0.000000px;}
._8_c00440{width:1.756800px;}
._2_c00440{width:2.851200px;}
._9_c00440{width:3.988800px;}
._6_c00440{width:4.996800px;}
._0_c00440{width:11.232000px;}
._5_c00440{width:12.261600px;}
._7_c00440{width:13.744800px;}
._c_c00440{width:14.781600px;}
._b_c00440{width:16.819200px;}
._1_c00440{width:21.240000px;}
._3_c00440{width:26.172000px;}
._4_c00440{width:27.496800px;}
._a_c00440{width:36.093600px;}
.fc1_c00440{color:transparent;}
.fc0_c00440{color:rgb(0,0,0);}
.fs1_c00440{font-size:64.800000px;}
.fs0_c00440{font-size:72.000000px;}
.y0_c00440{bottom:0.000000px;}
.y5_c00440{bottom:5.040000px;}
.y1_c00440{bottom:12.735000px;}
.y3_c00440{bottom:45.405000px;}
.y4_c00440{bottom:53.100000px;}
.y21_c00440{bottom:110.924850px;}
.y20_c00440{bottom:146.924850px;}
.y1f_c00440{bottom:182.924850px;}
.y1e_c00440{bottom:218.924850px;}
.y1d_c00440{bottom:254.924850px;}
.y1c_c00440{bottom:290.924850px;}
.y1b_c00440{bottom:326.924850px;}
.y1a_c00440{bottom:362.924850px;}
.y19_c00440{bottom:398.924850px;}
.y18_c00440{bottom:434.924850px;}
.y17_c00440{bottom:470.924850px;}
.y16_c00440{bottom:506.924850px;}
.y15_c00440{bottom:542.924850px;}
.y14_c00440{bottom:578.924850px;}
.y13_c00440{bottom:614.924850px;}
.y12_c00440{bottom:650.924850px;}
.y11_c00440{bottom:686.924850px;}
.y10_c00440{bottom:722.924850px;}
.yf_c00440{bottom:758.924850px;}
.ye_c00440{bottom:794.924850px;}
.yd_c00440{bottom:830.924850px;}
.yc_c00440{bottom:866.924850px;}
.yb_c00440{bottom:902.924850px;}
.ya_c00440{bottom:938.924850px;}
.y9_c00440{bottom:974.924850px;}
.y8_c00440{bottom:1010.924850px;}
.y7_c00440{bottom:1046.924850px;}
.y6_c00440{bottom:1082.924850px;}
.y2_c00440{bottom:1165.365000px;}
.h4_c00440{height:20.880000px;}
.h5_c00440{height:70.628906px;}
.h3_c00440{height:70.664062px;}
.h2_c00440{height:1237.365000px;}
.h0_c00440{height:1262.835000px;}
.h1_c00440{height:1263.000000px;}
.w3_c00440{width:27.000000px;}
.w2_c00440{width:867.465000px;}
.w0_c00440{width:892.935000px;}
.w1_c00440{width:893.250000px;}
.x0_c00440{left:0.000000px;}
.x1_c00440{left:12.735000px;}
.x3_c00440{left:95.394300px;}
.x5_c00440{left:149.400150px;}
.x4_c00440{left:432.855000px;}
.x2_c00440{left:880.050300px;}
@media print{
.v0_c00440{vertical-align:0.000000pt;}
.ls1_c00440{letter-spacing:-0.012800pt;}
.ls0_c00440{letter-spacing:0.000000pt;}
.ws0_c00440{word-spacing:-16.000000pt;}
.ws1_c00440{word-spacing:0.000000pt;}
._8_c00440{width:1.561600pt;}
._2_c00440{width:2.534400pt;}
._9_c00440{width:3.545600pt;}
._6_c00440{width:4.441600pt;}
._0_c00440{width:9.984000pt;}
._5_c00440{width:10.899200pt;}
._7_c00440{width:12.217600pt;}
._c_c00440{width:13.139200pt;}
._b_c00440{width:14.950400pt;}
._1_c00440{width:18.880000pt;}
._3_c00440{width:23.264000pt;}
._4_c00440{width:24.441600pt;}
._a_c00440{width:32.083200pt;}
.fs1_c00440{font-size:57.600000pt;}
.fs0_c00440{font-size:64.000000pt;}
.y0_c00440{bottom:0.000000pt;}
.y5_c00440{bottom:4.480000pt;}
.y1_c00440{bottom:11.320000pt;}
.y3_c00440{bottom:40.360000pt;}
.y4_c00440{bottom:47.200000pt;}
.y21_c00440{bottom:98.599867pt;}
.y20_c00440{bottom:130.599867pt;}
.y1f_c00440{bottom:162.599867pt;}
.y1e_c00440{bottom:194.599867pt;}
.y1d_c00440{bottom:226.599867pt;}
.y1c_c00440{bottom:258.599867pt;}
.y1b_c00440{bottom:290.599867pt;}
.y1a_c00440{bottom:322.599867pt;}
.y19_c00440{bottom:354.599867pt;}
.y18_c00440{bottom:386.599867pt;}
.y17_c00440{bottom:418.599867pt;}
.y16_c00440{bottom:450.599867pt;}
.y15_c00440{bottom:482.599867pt;}
.y14_c00440{bottom:514.599867pt;}
.y13_c00440{bottom:546.599867pt;}
.y12_c00440{bottom:578.599867pt;}
.y11_c00440{bottom:610.599867pt;}
.y10_c00440{bottom:642.599867pt;}
.yf_c00440{bottom:674.599867pt;}
.ye_c00440{bottom:706.599867pt;}
.yd_c00440{bottom:738.599867pt;}
.yc_c00440{bottom:770.599867pt;}
.yb_c00440{bottom:802.599867pt;}
.ya_c00440{bottom:834.599867pt;}
.y9_c00440{bottom:866.599867pt;}
.y8_c00440{bottom:898.599867pt;}
.y7_c00440{bottom:930.599867pt;}
.y6_c00440{bottom:962.599867pt;}
.y2_c00440{bottom:1035.880000pt;}
.h4_c00440{height:18.560000pt;}
.h5_c00440{height:62.781250pt;}
.h3_c00440{height:62.812500pt;}
.h2_c00440{height:1099.880000pt;}
.h0_c00440{height:1122.520000pt;}
.h1_c00440{height:1122.666667pt;}
.w3_c00440{width:24.000000pt;}
.w2_c00440{width:771.080000pt;}
.w0_c00440{width:793.720000pt;}
.w1_c00440{width:794.000000pt;}
.x0_c00440{left:0.000000pt;}
.x1_c00440{left:11.320000pt;}
.x3_c00440{left:84.794933pt;}
.x5_c00440{left:132.800133pt;}
.x4_c00440{left:384.760000pt;}
.x2_c00440{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5d915c1fe90055c821a18aa0.woff2')format("woff");}.ff1_c00441{font-family:ff1_c00441;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00441;src:url('chunks/assets/font_98ab50ccf17ead9a563b3338.woff2')format("woff");}.ff2_c00441{font-family:ff2_c00441;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00441;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff3_c00441{font-family:ff3_c00441;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00441;src:url('chunks/assets/font_1f2007f23611ed5c8720786f.woff2')format("woff");}.ff4_c00441{font-family:ff4_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;}
.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;}
.ls1_c00441{letter-spacing:-0.014400px;}
.ls0_c00441{letter-spacing:0.000000px;}
.sc__c00441{text-shadow:none;}
.sc0_c00441{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00441{-webkit-text-stroke:0px transparent;}
.sc0_c00441{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00441{word-spacing:-18.000000px;}
.ws1_c00441{word-spacing:0.000000px;}
._5_c00441{width:1.044000px;}
._8_c00441{width:2.678400px;}
._c_c00441{width:4.269600px;}
._a_c00441{width:5.407200px;}
._2_c00441{width:6.494400px;}
._7_c00441{width:7.819200px;}
._d_c00441{width:9.619200px;}
._4_c00441{width:10.663200px;}
._1_c00441{width:14.565600px;}
._6_c00441{width:16.488000px;}
._3_c00441{width:20.577600px;}
._b_c00441{width:22.795200px;}
._9_c00441{width:28.245600px;}
._0_c00441{width:98.546400px;}
.fc1_c00441{color:transparent;}
.fc0_c00441{color:rgb(0,0,0);}
.fs0_c00441{font-size:64.800000px;}
.fs1_c00441{font-size:72.000000px;}
.y0_c00441{bottom:0.000000px;}
.y5_c00441{bottom:1.440000px;}
.y1_c00441{bottom:12.735000px;}
.y3_c00441{bottom:45.405000px;}
.y4_c00441{bottom:56.700000px;}
.y20_c00441{bottom:146.924850px;}
.y1f_c00441{bottom:182.924850px;}
.y1e_c00441{bottom:218.924850px;}
.y1d_c00441{bottom:254.924850px;}
.y1c_c00441{bottom:290.924850px;}
.y1b_c00441{bottom:326.924850px;}
.y1a_c00441{bottom:362.924850px;}
.y19_c00441{bottom:398.924850px;}
.y18_c00441{bottom:434.924850px;}
.y17_c00441{bottom:470.924850px;}
.y16_c00441{bottom:506.924850px;}
.y15_c00441{bottom:542.924850px;}
.y14_c00441{bottom:578.924850px;}
.y13_c00441{bottom:614.924850px;}
.y12_c00441{bottom:650.924850px;}
.y11_c00441{bottom:686.924850px;}
.y10_c00441{bottom:722.924850px;}
.yf_c00441{bottom:758.924850px;}
.ye_c00441{bottom:794.924850px;}
.yd_c00441{bottom:830.924850px;}
.yc_c00441{bottom:866.924850px;}
.yb_c00441{bottom:902.924850px;}
.ya_c00441{bottom:938.924850px;}
.y9_c00441{bottom:974.924850px;}
.y8_c00441{bottom:1010.924850px;}
.y7_c00441{bottom:1046.924850px;}
.y6_c00441{bottom:1082.924850px;}
.y2_c00441{bottom:1165.365000px;}
.h5_c00441{height:17.280000px;}
.h3_c00441{height:43.189453px;}
.h6_c00441{height:70.628906px;}
.h4_c00441{height:70.664062px;}
.h2_c00441{height:1237.365000px;}
.h0_c00441{height:1262.835000px;}
.h1_c00441{height:1263.000000px;}
.w3_c00441{width:47.520000px;}
.w2_c00441{width:867.465000px;}
.w0_c00441{width:892.935000px;}
.w1_c00441{width:893.250000px;}
.x3_c00441{left:-39.599850px;}
.x0_c00441{left:0.000000px;}
.x5_c00441{left:10.237500px;}
.x1_c00441{left:12.735000px;}
.x7_c00441{left:95.400150px;}
.x6_c00441{left:149.400150px;}
.x4_c00441{left:422.775000px;}
.x2_c00441{left:880.050300px;}
@media print{
.v0_c00441{vertical-align:0.000000pt;}
.ls1_c00441{letter-spacing:-0.012800pt;}
.ls0_c00441{letter-spacing:0.000000pt;}
.ws0_c00441{word-spacing:-16.000000pt;}
.ws1_c00441{word-spacing:0.000000pt;}
._5_c00441{width:0.928000pt;}
._8_c00441{width:2.380800pt;}
._c_c00441{width:3.795200pt;}
._a_c00441{width:4.806400pt;}
._2_c00441{width:5.772800pt;}
._7_c00441{width:6.950400pt;}
._d_c00441{width:8.550400pt;}
._4_c00441{width:9.478400pt;}
._1_c00441{width:12.947200pt;}
._6_c00441{width:14.656000pt;}
._3_c00441{width:18.291200pt;}
._b_c00441{width:20.262400pt;}
._9_c00441{width:25.107200pt;}
._0_c00441{width:87.596800pt;}
.fs0_c00441{font-size:57.600000pt;}
.fs1_c00441{font-size:64.000000pt;}
.y0_c00441{bottom:0.000000pt;}
.y5_c00441{bottom:1.280000pt;}
.y1_c00441{bottom:11.320000pt;}
.y3_c00441{bottom:40.360000pt;}
.y4_c00441{bottom:50.400000pt;}
.y20_c00441{bottom:130.599867pt;}
.y1f_c00441{bottom:162.599867pt;}
.y1e_c00441{bottom:194.599867pt;}
.y1d_c00441{bottom:226.599867pt;}
.y1c_c00441{bottom:258.599867pt;}
.y1b_c00441{bottom:290.599867pt;}
.y1a_c00441{bottom:322.599867pt;}
.y19_c00441{bottom:354.599867pt;}
.y18_c00441{bottom:386.599867pt;}
.y17_c00441{bottom:418.599867pt;}
.y16_c00441{bottom:450.599867pt;}
.y15_c00441{bottom:482.599867pt;}
.y14_c00441{bottom:514.599867pt;}
.y13_c00441{bottom:546.599867pt;}
.y12_c00441{bottom:578.599867pt;}
.y11_c00441{bottom:610.599867pt;}
.y10_c00441{bottom:642.599867pt;}
.yf_c00441{bottom:674.599867pt;}
.ye_c00441{bottom:706.599867pt;}
.yd_c00441{bottom:738.599867pt;}
.yc_c00441{bottom:770.599867pt;}
.yb_c00441{bottom:802.599867pt;}
.ya_c00441{bottom:834.599867pt;}
.y9_c00441{bottom:866.599867pt;}
.y8_c00441{bottom:898.599867pt;}
.y7_c00441{bottom:930.599867pt;}
.y6_c00441{bottom:962.599867pt;}
.y2_c00441{bottom:1035.880000pt;}
.h5_c00441{height:15.360000pt;}
.h3_c00441{height:38.390625pt;}
.h6_c00441{height:62.781250pt;}
.h4_c00441{height:62.812500pt;}
.h2_c00441{height:1099.880000pt;}
.h0_c00441{height:1122.520000pt;}
.h1_c00441{height:1122.666667pt;}
.w3_c00441{width:42.240000pt;}
.w2_c00441{width:771.080000pt;}
.w0_c00441{width:793.720000pt;}
.w1_c00441{width:794.000000pt;}
.x3_c00441{left:-35.199867pt;}
.x0_c00441{left:0.000000pt;}
.x5_c00441{left:9.100000pt;}
.x1_c00441{left:11.320000pt;}
.x7_c00441{left:84.800133pt;}
.x6_c00441{left:132.800133pt;}
.x4_c00441{left:375.800000pt;}
.x2_c00441{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_5299105b48717dc83f486935.woff2')format("woff");}.ff1_c00442{font-family:ff1_c00442;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00442;src:url('chunks/assets/font_310a06ece456438997d51fb5.woff2')format("woff");}.ff2_c00442{font-family:ff2_c00442;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00442{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00442{vertical-align:0.000000px;}
.ls0_c00442{letter-spacing:0.000000px;}
.sc__c00442{text-shadow:none;}
.sc0_c00442{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00442{-webkit-text-stroke:0px transparent;}
.sc0_c00442{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00442{word-spacing:-18.000000px;}
.ws1_c00442{word-spacing:0.000000px;}
._0_c00442{width:5.529600px;}
._1_c00442{width:6.868800px;}
.fc1_c00442{color:transparent;}
.fc0_c00442{color:rgb(0,0,0);}
.fs1_c00442{font-size:64.800000px;}
.fs0_c00442{font-size:72.000000px;}
.y0_c00442{bottom:0.000000px;}
.y5_c00442{bottom:5.040000px;}
.y1_c00442{bottom:12.735000px;}
.y3_c00442{bottom:45.405000px;}
.y4_c00442{bottom:53.100000px;}
.ya_c00442{bottom:938.924850px;}
.y9_c00442{bottom:974.924850px;}
.y8_c00442{bottom:1010.924850px;}
.y7_c00442{bottom:1046.924850px;}
.y6_c00442{bottom:1082.924850px;}
.y2_c00442{bottom:1165.365000px;}
.h4_c00442{height:20.880000px;}
.h3_c00442{height:70.664062px;}
.h2_c00442{height:1237.365000px;}
.h0_c00442{height:1262.835000px;}
.h1_c00442{height:1263.000000px;}
.w3_c00442{width:27.000000px;}
.w2_c00442{width:867.465000px;}
.w0_c00442{width:892.935000px;}
.w1_c00442{width:893.250000px;}
.x0_c00442{left:0.000000px;}
.x1_c00442{left:12.735000px;}
.x3_c00442{left:95.394300px;}
.x5_c00442{left:149.400150px;}
.x4_c00442{left:432.855000px;}
.x2_c00442{left:880.050300px;}
@media print{
.v0_c00442{vertical-align:0.000000pt;}
.ls0_c00442{letter-spacing:0.000000pt;}
.ws0_c00442{word-spacing:-16.000000pt;}
.ws1_c00442{word-spacing:0.000000pt;}
._0_c00442{width:4.915200pt;}
._1_c00442{width:6.105600pt;}
.fs1_c00442{font-size:57.600000pt;}
.fs0_c00442{font-size:64.000000pt;}
.y0_c00442{bottom:0.000000pt;}
.y5_c00442{bottom:4.480000pt;}
.y1_c00442{bottom:11.320000pt;}
.y3_c00442{bottom:40.360000pt;}
.y4_c00442{bottom:47.200000pt;}
.ya_c00442{bottom:834.599867pt;}
.y9_c00442{bottom:866.599867pt;}
.y8_c00442{bottom:898.599867pt;}
.y7_c00442{bottom:930.599867pt;}
.y6_c00442{bottom:962.599867pt;}
.y2_c00442{bottom:1035.880000pt;}
.h4_c00442{height:18.560000pt;}
.h3_c00442{height:62.812500pt;}
.h2_c00442{height:1099.880000pt;}
.h0_c00442{height:1122.520000pt;}
.h1_c00442{height:1122.666667pt;}
.w3_c00442{width:24.000000pt;}
.w2_c00442{width:771.080000pt;}
.w0_c00442{width:793.720000pt;}
.w1_c00442{width:794.000000pt;}
.x0_c00442{left:0.000000pt;}
.x1_c00442{left:11.320000pt;}
.x3_c00442{left:84.794933pt;}
.x5_c00442{left:132.800133pt;}
.x4_c00442{left:384.760000pt;}
.x2_c00442{left:782.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_42c987c7633bff02dd70b06b.woff2')format("woff");}.ff1_c00443{font-family:ff1_c00443;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00443;src:url('chunks/assets/font_3cf3ecf0099d25f6edf959eb.woff2')format("woff");}.ff2_c00443{font-family:ff2_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;}
.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);}
.v1_c00443{vertical-align:-132.479400px;}
.v0_c00443{vertical-align:0.000000px;}
.ls2_c00443{letter-spacing:0.000000px;}
.ls1_c00443{letter-spacing:0.132192px;}
.ls3_c00443{letter-spacing:0.203184px;}
.ls0_c00443{letter-spacing:1268.469600px;}
.sc__c00443{text-shadow:none;}
.sc0_c00443{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00443{-webkit-text-stroke:0px transparent;}
.sc0_c00443{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00443{word-spacing:-30.083184px;}
.ws1_c00443{word-spacing:-19.572192px;}
.ws2_c00443{word-spacing:0.000000px;}
._9_c00443{width:1.512000px;}
._5_c00443{width:2.584800px;}
._2_c00443{width:3.945600px;}
._6_c00443{width:5.320800px;}
._1_c00443{width:7.020000px;}
._3_c00443{width:9.705600px;}
._c_c00443{width:10.987200px;}
._8_c00443{width:12.290400px;}
._0_c00443{width:14.594400px;}
._4_c00443{width:19.180800px;}
._7_c00443{width:20.188800px;}
._a_c00443{width:21.931200px;}
._b_c00443{width:39.009600px;}
.fc1_c00443{color:transparent;}
.fc0_c00443{color:rgb(0,0,0);}
.fs0_c00443{font-size:72.000000px;}
.fs2_c00443{font-size:77.760000px;}
.fs1_c00443{font-size:119.520000px;}
.y0_c00443{bottom:0.000000px;}
.y5_c00443{bottom:1.440000px;}
.y1_c00443{bottom:12.735000px;}
.y3_c00443{bottom:45.405000px;}
.y4_c00443{bottom:56.700000px;}
.y20_c00443{bottom:110.924850px;}
.y1f_c00443{bottom:146.924850px;}
.y1e_c00443{bottom:182.924850px;}
.y1d_c00443{bottom:218.924850px;}
.y1c_c00443{bottom:254.924850px;}
.y1b_c00443{bottom:290.924850px;}
.y1a_c00443{bottom:326.924850px;}
.y19_c00443{bottom:362.924850px;}
.y18_c00443{bottom:398.924850px;}
.y17_c00443{bottom:434.924850px;}
.y16_c00443{bottom:470.924850px;}
.y15_c00443{bottom:506.924850px;}
.y14_c00443{bottom:542.924850px;}
.y13_c00443{bottom:578.924850px;}
.y12_c00443{bottom:614.924850px;}
.y11_c00443{bottom:650.924850px;}
.y10_c00443{bottom:686.924850px;}
.yf_c00443{bottom:722.924850px;}
.ye_c00443{bottom:758.924850px;}
.yd_c00443{bottom:794.924850px;}
.yc_c00443{bottom:830.924850px;}
.yb_c00443{bottom:866.924850px;}
.ya_c00443{bottom:902.924850px;}
.y9_c00443{bottom:938.924850px;}
.y8_c00443{bottom:975.285000px;}
.y7_c00443{bottom:1010.924850px;}
.y6_c00443{bottom:1082.924850px;}
.y2_c00443{bottom:1165.005000px;}
.h4_c00443{height:17.280000px;}
.h3_c00443{height:70.664062px;}
.h5_c00443{height:78.367500px;}
.h2_c00443{height:1237.365000px;}
.h0_c00443{height:1262.835000px;}
.h1_c00443{height:1263.000000px;}
.w3_c00443{width:47.520000px;}
.w2_c00443{width:867.465000px;}
.w0_c00443{width:892.935000px;}
.w1_c00443{width:893.250000px;}
.x0_c00443{left:0.000000px;}
.x5_c00443{left:10.237500px;}
.x1_c00443{left:12.735000px;}
.x3_c00443{left:95.397000px;}
.x7_c00443{left:149.400150px;}
.x6_c00443{left:363.871200px;}
.x4_c00443{left:422.775000px;}
.x2_c00443{left:880.125000px;}
@media print{
.v1_c00443{vertical-align:-117.759467pt;}
.v0_c00443{vertical-align:0.000000pt;}
.ls2_c00443{letter-spacing:0.000000pt;}
.ls1_c00443{letter-spacing:0.117504pt;}
.ls3_c00443{letter-spacing:0.180608pt;}
.ls0_c00443{letter-spacing:1127.528533pt;}
.ws0_c00443{word-spacing:-26.740608pt;}
.ws1_c00443{word-spacing:-17.397504pt;}
.ws2_c00443{word-spacing:0.000000pt;}
._9_c00443{width:1.344000pt;}
._5_c00443{width:2.297600pt;}
._2_c00443{width:3.507200pt;}
._6_c00443{width:4.729600pt;}
._1_c00443{width:6.240000pt;}
._3_c00443{width:8.627200pt;}
._c_c00443{width:9.766400pt;}
._8_c00443{width:10.924800pt;}
._0_c00443{width:12.972800pt;}
._4_c00443{width:17.049600pt;}
._7_c00443{width:17.945600pt;}
._a_c00443{width:19.494400pt;}
._b_c00443{width:34.675200pt;}
.fs0_c00443{font-size:64.000000pt;}
.fs2_c00443{font-size:69.120000pt;}
.fs1_c00443{font-size:106.240000pt;}
.y0_c00443{bottom:0.000000pt;}
.y5_c00443{bottom:1.280000pt;}
.y1_c00443{bottom:11.320000pt;}
.y3_c00443{bottom:40.360000pt;}
.y4_c00443{bottom:50.400000pt;}
.y20_c00443{bottom:98.599867pt;}
.y1f_c00443{bottom:130.599867pt;}
.y1e_c00443{bottom:162.599867pt;}
.y1d_c00443{bottom:194.599867pt;}
.y1c_c00443{bottom:226.599867pt;}
.y1b_c00443{bottom:258.599867pt;}
.y1a_c00443{bottom:290.599867pt;}
.y19_c00443{bottom:322.599867pt;}
.y18_c00443{bottom:354.599867pt;}
.y17_c00443{bottom:386.599867pt;}
.y16_c00443{bottom:418.599867pt;}
.y15_c00443{bottom:450.599867pt;}
.y14_c00443{bottom:482.599867pt;}
.y13_c00443{bottom:514.599867pt;}
.y12_c00443{bottom:546.599867pt;}
.y11_c00443{bottom:578.599867pt;}
.y10_c00443{bottom:610.599867pt;}
.yf_c00443{bottom:642.599867pt;}
.ye_c00443{bottom:674.599867pt;}
.yd_c00443{bottom:706.599867pt;}
.yc_c00443{bottom:738.599867pt;}
.yb_c00443{bottom:770.599867pt;}
.ya_c00443{bottom:802.599867pt;}
.y9_c00443{bottom:834.599867pt;}
.y8_c00443{bottom:866.920000pt;}
.y7_c00443{bottom:898.599867pt;}
.y6_c00443{bottom:962.599867pt;}
.y2_c00443{bottom:1035.560000pt;}
.h4_c00443{height:15.360000pt;}
.h3_c00443{height:62.812500pt;}
.h5_c00443{height:69.660000pt;}
.h2_c00443{height:1099.880000pt;}
.h0_c00443{height:1122.520000pt;}
.h1_c00443{height:1122.666667pt;}
.w3_c00443{width:42.240000pt;}
.w2_c00443{width:771.080000pt;}
.w0_c00443{width:793.720000pt;}
.w1_c00443{width:794.000000pt;}
.x0_c00443{left:0.000000pt;}
.x5_c00443{left:9.100000pt;}
.x1_c00443{left:11.320000pt;}
.x3_c00443{left:84.797333pt;}
.x7_c00443{left:132.800133pt;}
.x6_c00443{left:323.441067pt;}
.x4_c00443{left:375.800000pt;}
.x2_c00443{left:782.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_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_7e3b130249ed9828c98134bd.woff2')format("woff");}.ff1_c00444{font-family:ff1_c00444;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00444{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00444{vertical-align:0.000000px;}
.ls0_c00444{letter-spacing:0.000000px;}
.sc__c00444{text-shadow:none;}
.sc0_c00444{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00444{-webkit-text-stroke:0px transparent;}
.sc0_c00444{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00444{word-spacing:0.000000px;}
._c_c00444{width:1.915200px;}
._5_c00444{width:2.930400px;}
._7_c00444{width:4.089600px;}
._9_c00444{width:5.522400px;}
._4_c00444{width:6.660000px;}
._a_c00444{width:7.898400px;}
._0_c00444{width:11.383200px;}
._8_c00444{width:14.587200px;}
._3_c00444{width:16.012800px;}
._1_c00444{width:23.392800px;}
._6_c00444{width:26.359200px;}
._b_c00444{width:30.470400px;}
._d_c00444{width:31.600800px;}
._2_c00444{width:32.781600px;}
.fc1_c00444{color:transparent;}
.fc0_c00444{color:rgb(0,0,0);}
.fs0_c00444{font-size:72.000000px;}
.y0_c00444{bottom:0.000000px;}
.y5_c00444{bottom:5.040000px;}
.y1_c00444{bottom:12.735000px;}
.y3_c00444{bottom:45.405000px;}
.y4_c00444{bottom:53.100000px;}
.y21_c00444{bottom:110.924850px;}
.y20_c00444{bottom:146.924850px;}
.y1f_c00444{bottom:182.924850px;}
.y1e_c00444{bottom:218.924850px;}
.y1d_c00444{bottom:254.924850px;}
.y1c_c00444{bottom:290.924850px;}
.y1b_c00444{bottom:326.924850px;}
.y1a_c00444{bottom:362.924850px;}
.y19_c00444{bottom:398.924850px;}
.y18_c00444{bottom:434.924850px;}
.y17_c00444{bottom:470.924850px;}
.y16_c00444{bottom:506.924850px;}
.y15_c00444{bottom:542.924850px;}
.y14_c00444{bottom:578.924850px;}
.y13_c00444{bottom:614.924850px;}
.y12_c00444{bottom:650.924850px;}
.y11_c00444{bottom:686.924850px;}
.y10_c00444{bottom:722.924850px;}
.yf_c00444{bottom:758.924850px;}
.ye_c00444{bottom:794.924850px;}
.yd_c00444{bottom:830.924850px;}
.yc_c00444{bottom:866.924850px;}
.yb_c00444{bottom:902.924850px;}
.ya_c00444{bottom:938.924850px;}
.y9_c00444{bottom:974.924850px;}
.y8_c00444{bottom:1010.924850px;}
.y7_c00444{bottom:1046.924850px;}
.y6_c00444{bottom:1082.924850px;}
.y2_c00444{bottom:1165.005000px;}
.h4_c00444{height:20.880000px;}
.h3_c00444{height:70.664062px;}
.h2_c00444{height:1237.365000px;}
.h0_c00444{height:1262.835000px;}
.h1_c00444{height:1263.000000px;}
.w3_c00444{width:27.000000px;}
.w2_c00444{width:867.465000px;}
.w0_c00444{width:892.935000px;}
.w1_c00444{width:893.250000px;}
.x0_c00444{left:0.000000px;}
.x1_c00444{left:12.735000px;}
.x3_c00444{left:95.397000px;}
.x5_c00444{left:149.400150px;}
.x4_c00444{left:432.855000px;}
.x2_c00444{left:880.125000px;}
@media print{
.v0_c00444{vertical-align:0.000000pt;}
.ls0_c00444{letter-spacing:0.000000pt;}
.ws0_c00444{word-spacing:0.000000pt;}
._c_c00444{width:1.702400pt;}
._5_c00444{width:2.604800pt;}
._7_c00444{width:3.635200pt;}
._9_c00444{width:4.908800pt;}
._4_c00444{width:5.920000pt;}
._a_c00444{width:7.020800pt;}
._0_c00444{width:10.118400pt;}
._8_c00444{width:12.966400pt;}
._3_c00444{width:14.233600pt;}
._1_c00444{width:20.793600pt;}
._6_c00444{width:23.430400pt;}
._b_c00444{width:27.084800pt;}
._d_c00444{width:28.089600pt;}
._2_c00444{width:29.139200pt;}
.fs0_c00444{font-size:64.000000pt;}
.y0_c00444{bottom:0.000000pt;}
.y5_c00444{bottom:4.480000pt;}
.y1_c00444{bottom:11.320000pt;}
.y3_c00444{bottom:40.360000pt;}
.y4_c00444{bottom:47.200000pt;}
.y21_c00444{bottom:98.599867pt;}
.y20_c00444{bottom:130.599867pt;}
.y1f_c00444{bottom:162.599867pt;}
.y1e_c00444{bottom:194.599867pt;}
.y1d_c00444{bottom:226.599867pt;}
.y1c_c00444{bottom:258.599867pt;}
.y1b_c00444{bottom:290.599867pt;}
.y1a_c00444{bottom:322.599867pt;}
.y19_c00444{bottom:354.599867pt;}
.y18_c00444{bottom:386.599867pt;}
.y17_c00444{bottom:418.599867pt;}
.y16_c00444{bottom:450.599867pt;}
.y15_c00444{bottom:482.599867pt;}
.y14_c00444{bottom:514.599867pt;}
.y13_c00444{bottom:546.599867pt;}
.y12_c00444{bottom:578.599867pt;}
.y11_c00444{bottom:610.599867pt;}
.y10_c00444{bottom:642.599867pt;}
.yf_c00444{bottom:674.599867pt;}
.ye_c00444{bottom:706.599867pt;}
.yd_c00444{bottom:738.599867pt;}
.yc_c00444{bottom:770.599867pt;}
.yb_c00444{bottom:802.599867pt;}
.ya_c00444{bottom:834.599867pt;}
.y9_c00444{bottom:866.599867pt;}
.y8_c00444{bottom:898.599867pt;}
.y7_c00444{bottom:930.599867pt;}
.y6_c00444{bottom:962.599867pt;}
.y2_c00444{bottom:1035.560000pt;}
.h4_c00444{height:18.560000pt;}
.h3_c00444{height:62.812500pt;}
.h2_c00444{height:1099.880000pt;}
.h0_c00444{height:1122.520000pt;}
.h1_c00444{height:1122.666667pt;}
.w3_c00444{width:24.000000pt;}
.w2_c00444{width:771.080000pt;}
.w0_c00444{width:793.720000pt;}
.w1_c00444{width:794.000000pt;}
.x0_c00444{left:0.000000pt;}
.x1_c00444{left:11.320000pt;}
.x3_c00444{left:84.797333pt;}
.x5_c00444{left:132.800133pt;}
.x4_c00444{left:384.760000pt;}
.x2_c00444{left:782.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_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_ac6f697724b22031d3466b4c.woff2')format("woff");}.ff1_c00445{font-family:ff1_c00445;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00445{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00445{vertical-align:0.000000px;}
.ls0_c00445{letter-spacing:0.000000px;}
.sc__c00445{text-shadow:none;}
.sc0_c00445{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00445{-webkit-text-stroke:0px transparent;}
.sc0_c00445{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00445{word-spacing:0.000000px;}
._0_c00445{width:2.916000px;}
.fc1_c00445{color:transparent;}
.fc0_c00445{color:rgb(0,0,0);}
.fs0_c00445{font-size:72.000000px;}
.y0_c00445{bottom:0.000000px;}
.y5_c00445{bottom:1.440000px;}
.y1_c00445{bottom:12.735000px;}
.y3_c00445{bottom:45.405000px;}
.y4_c00445{bottom:56.700000px;}
.y8_c00445{bottom:1010.924850px;}
.y7_c00445{bottom:1046.924850px;}
.y6_c00445{bottom:1082.924850px;}
.y2_c00445{bottom:1165.005000px;}
.h4_c00445{height:17.280000px;}
.h3_c00445{height:70.664062px;}
.h2_c00445{height:1237.365000px;}
.h0_c00445{height:1262.835000px;}
.h1_c00445{height:1263.000000px;}
.w3_c00445{width:47.520000px;}
.w2_c00445{width:867.465000px;}
.w0_c00445{width:892.935000px;}
.w1_c00445{width:893.250000px;}
.x0_c00445{left:0.000000px;}
.x5_c00445{left:10.237500px;}
.x1_c00445{left:12.735000px;}
.x3_c00445{left:95.397000px;}
.x6_c00445{left:149.400150px;}
.x4_c00445{left:422.775000px;}
.x2_c00445{left:880.125000px;}
@media print{
.v0_c00445{vertical-align:0.000000pt;}
.ls0_c00445{letter-spacing:0.000000pt;}
.ws0_c00445{word-spacing:0.000000pt;}
._0_c00445{width:2.592000pt;}
.fs0_c00445{font-size:64.000000pt;}
.y0_c00445{bottom:0.000000pt;}
.y5_c00445{bottom:1.280000pt;}
.y1_c00445{bottom:11.320000pt;}
.y3_c00445{bottom:40.360000pt;}
.y4_c00445{bottom:50.400000pt;}
.y8_c00445{bottom:898.599867pt;}
.y7_c00445{bottom:930.599867pt;}
.y6_c00445{bottom:962.599867pt;}
.y2_c00445{bottom:1035.560000pt;}
.h4_c00445{height:15.360000pt;}
.h3_c00445{height:62.812500pt;}
.h2_c00445{height:1099.880000pt;}
.h0_c00445{height:1122.520000pt;}
.h1_c00445{height:1122.666667pt;}
.w3_c00445{width:42.240000pt;}
.w2_c00445{width:771.080000pt;}
.w0_c00445{width:793.720000pt;}
.w1_c00445{width:794.000000pt;}
.x0_c00445{left:0.000000pt;}
.x5_c00445{left:9.100000pt;}
.x1_c00445{left:11.320000pt;}
.x3_c00445{left:84.797333pt;}
.x6_c00445{left:132.800133pt;}
.x4_c00445{left:375.800000pt;}
.x2_c00445{left:782.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_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_b826a52bd88d184f97acaf42.woff2')format("woff");}.ff1_c00446{font-family:ff1_c00446;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00446;src:url('chunks/assets/font_2b6ef4470671e482135fea8e.woff2')format("woff");}.ff2_c00446{font-family:ff2_c00446;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00446;src:url('chunks/assets/font_6d4414ee377f46325b13327a.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_e81fc348a22c6b21e5ba640e.woff2')format("woff");}.ff4_c00446{font-family:ff4_c00446;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00446{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00446{vertical-align:-132.479400px;}
.v2_c00446{vertical-align:-77.759400px;}
.v0_c00446{vertical-align:0.000000px;}
.ls10_c00446{letter-spacing:-0.014400px;}
.ls4_c00446{letter-spacing:0.000000px;}
.ls1_c00446{letter-spacing:0.186624px;}
.lse_c00446{letter-spacing:0.242208px;}
.ls8_c00446{letter-spacing:0.298080px;}
.ls3_c00446{letter-spacing:0.324000px;}
.lsf_c00446{letter-spacing:0.359136px;}
.lsa_c00446{letter-spacing:0.401760px;}
.ls6_c00446{letter-spacing:0.479520px;}
.lsb_c00446{letter-spacing:0.524880px;}
.ls7_c00446{letter-spacing:0.602640px;}
.ls5_c00446{letter-spacing:0.680400px;}
.lsc_c00446{letter-spacing:0.725760px;}
.lsd_c00446{letter-spacing:0.797040px;}
.ls9_c00446{letter-spacing:1.030320px;}
.ls2_c00446{letter-spacing:1071.203400px;}
.ls0_c00446{letter-spacing:1291.819200px;}
.sc__c00446{text-shadow:none;}
.sc0_c00446{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00446{-webkit-text-stroke:0px transparent;}
.sc0_c00446{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00446{word-spacing:-19.626624px;}
.ws2_c00446{word-spacing:-16.802640px;}
.ws1_c00446{word-spacing:-16.679520px;}
.ws3_c00446{word-spacing:0.000000px;}
._0_c00446{margin-left:-1.275264px;}
._1_c00446{width:1.101600px;}
._4_c00446{width:2.354400px;}
._2_c00446{width:3.751200px;}
._3_c00446{width:13.154400px;}
.fc2_c00446{color:transparent;}
.fc1_c00446{color:rgb(127,127,127);}
.fc0_c00446{color:rgb(0,0,0);}
.fs3_c00446{font-size:64.800000px;}
.fs0_c00446{font-size:72.000000px;}
.fs2_c00446{font-size:77.760000px;}
.fs4_c00446{font-size:83.520000px;}
.fs1_c00446{font-size:119.520000px;}
.y0_c00446{bottom:0.000000px;}
.y5_c00446{bottom:5.040000px;}
.y1_c00446{bottom:12.735000px;}
.y3_c00446{bottom:45.405000px;}
.y4_c00446{bottom:53.100000px;}
.y27_c00446{bottom:128.205000px;}
.y26_c00446{bottom:164.205000px;}
.y25_c00446{bottom:200.205000px;}
.y24_c00446{bottom:236.205000px;}
.y23_c00446{bottom:272.205000px;}
.y22_c00446{bottom:308.205000px;}
.y21_c00446{bottom:344.205000px;}
.y20_c00446{bottom:380.205000px;}
.y1f_c00446{bottom:416.205000px;}
.y1e_c00446{bottom:452.925000px;}
.y1d_c00446{bottom:488.205000px;}
.y1c_c00446{bottom:524.205000px;}
.y1b_c00446{bottom:560.205000px;}
.y1a_c00446{bottom:595.776600px;}
.y19_c00446{bottom:614.503800px;}
.y18_c00446{bottom:633.587400px;}
.y17_c00446{bottom:652.671000px;}
.y16_c00446{bottom:671.754600px;}
.y15_c00446{bottom:690.838200px;}
.y14_c00446{bottom:709.921800px;}
.y13_c00446{bottom:729.005400px;}
.y12_c00446{bottom:748.089000px;}
.y11_c00446{bottom:767.172600px;}
.y10_c00446{bottom:786.256200px;}
.yf_c00446{bottom:805.339800px;}
.ye_c00446{bottom:824.423400px;}
.yd_c00446{bottom:843.507000px;}
.yc_c00446{bottom:862.590600px;}
.yb_c00446{bottom:881.317800px;}
.ya_c00446{bottom:900.401400px;}
.y9_c00446{bottom:938.924850px;}
.y8_c00446{bottom:975.285000px;}
.y7_c00446{bottom:1010.924850px;}
.y6_c00446{bottom:1082.924850px;}
.y2_c00446{bottom:1165.005000px;}
.h4_c00446{height:20.880000px;}
.h7_c00446{height:63.566016px;}
.h9_c00446{height:70.628906px;}
.h3_c00446{height:70.664062px;}
.h5_c00446{height:72.562500px;}
.h6_c00446{height:78.367500px;}
.h8_c00446{height:81.929531px;}
.h2_c00446{height:1237.365000px;}
.h0_c00446{height:1262.835000px;}
.h1_c00446{height:1263.000000px;}
.w3_c00446{width:27.000000px;}
.w2_c00446{width:867.465000px;}
.w0_c00446{width:892.935000px;}
.w1_c00446{width:893.250000px;}
.x0_c00446{left:0.000000px;}
.x1_c00446{left:12.735000px;}
.x3_c00446{left:95.397000px;}
.x15_c00446{left:149.400150px;}
.xf_c00446{left:326.553000px;}
.x5_c00446{left:362.304900px;}
.x10_c00446{left:367.312200px;}
.x12_c00446{left:375.055800px;}
.x8_c00446{left:386.152800px;}
.xc_c00446{left:421.404000px;}
.x4_c00446{left:432.855000px;}
.x6_c00446{left:437.490600px;}
.x7_c00446{left:446.157600px;}
.xa_c00446{left:473.163000px;}
.x13_c00446{left:475.949400px;}
.xb_c00446{left:486.074400px;}
.x14_c00446{left:500.217000px;}
.xd_c00446{left:504.364200px;}
.x11_c00446{left:763.742400px;}
.xe_c00446{left:767.857200px;}
.x9_c00446{left:771.988200px;}
.x2_c00446{left:880.125000px;}
@media print{
.v1_c00446{vertical-align:-117.759467pt;}
.v2_c00446{vertical-align:-69.119467pt;}
.v0_c00446{vertical-align:0.000000pt;}
.ls10_c00446{letter-spacing:-0.012800pt;}
.ls4_c00446{letter-spacing:0.000000pt;}
.ls1_c00446{letter-spacing:0.165888pt;}
.lse_c00446{letter-spacing:0.215296pt;}
.ls8_c00446{letter-spacing:0.264960pt;}
.ls3_c00446{letter-spacing:0.288000pt;}
.lsf_c00446{letter-spacing:0.319232pt;}
.lsa_c00446{letter-spacing:0.357120pt;}
.ls6_c00446{letter-spacing:0.426240pt;}
.lsb_c00446{letter-spacing:0.466560pt;}
.ls7_c00446{letter-spacing:0.535680pt;}
.ls5_c00446{letter-spacing:0.604800pt;}
.lsc_c00446{letter-spacing:0.645120pt;}
.lsd_c00446{letter-spacing:0.708480pt;}
.ls9_c00446{letter-spacing:0.915840pt;}
.ls2_c00446{letter-spacing:952.180800pt;}
.ls0_c00446{letter-spacing:1148.283733pt;}
.ws0_c00446{word-spacing:-17.445888pt;}
.ws2_c00446{word-spacing:-14.935680pt;}
.ws1_c00446{word-spacing:-14.826240pt;}
.ws3_c00446{word-spacing:0.000000pt;}
._0_c00446{margin-left:-1.133568pt;}
._1_c00446{width:0.979200pt;}
._4_c00446{width:2.092800pt;}
._2_c00446{width:3.334400pt;}
._3_c00446{width:11.692800pt;}
.fs3_c00446{font-size:57.600000pt;}
.fs0_c00446{font-size:64.000000pt;}
.fs2_c00446{font-size:69.120000pt;}
.fs4_c00446{font-size:74.240000pt;}
.fs1_c00446{font-size:106.240000pt;}
.y0_c00446{bottom:0.000000pt;}
.y5_c00446{bottom:4.480000pt;}
.y1_c00446{bottom:11.320000pt;}
.y3_c00446{bottom:40.360000pt;}
.y4_c00446{bottom:47.200000pt;}
.y27_c00446{bottom:113.960000pt;}
.y26_c00446{bottom:145.960000pt;}
.y25_c00446{bottom:177.960000pt;}
.y24_c00446{bottom:209.960000pt;}
.y23_c00446{bottom:241.960000pt;}
.y22_c00446{bottom:273.960000pt;}
.y21_c00446{bottom:305.960000pt;}
.y20_c00446{bottom:337.960000pt;}
.y1f_c00446{bottom:369.960000pt;}
.y1e_c00446{bottom:402.600000pt;}
.y1d_c00446{bottom:433.960000pt;}
.y1c_c00446{bottom:465.960000pt;}
.y1b_c00446{bottom:497.960000pt;}
.y1a_c00446{bottom:529.579200pt;}
.y19_c00446{bottom:546.225600pt;}
.y18_c00446{bottom:563.188800pt;}
.y17_c00446{bottom:580.152000pt;}
.y16_c00446{bottom:597.115200pt;}
.y15_c00446{bottom:614.078400pt;}
.y14_c00446{bottom:631.041600pt;}
.y13_c00446{bottom:648.004800pt;}
.y12_c00446{bottom:664.968000pt;}
.y11_c00446{bottom:681.931200pt;}
.y10_c00446{bottom:698.894400pt;}
.yf_c00446{bottom:715.857600pt;}
.ye_c00446{bottom:732.820800pt;}
.yd_c00446{bottom:749.784000pt;}
.yc_c00446{bottom:766.747200pt;}
.yb_c00446{bottom:783.393600pt;}
.ya_c00446{bottom:800.356800pt;}
.y9_c00446{bottom:834.599867pt;}
.y8_c00446{bottom:866.920000pt;}
.y7_c00446{bottom:898.599867pt;}
.y6_c00446{bottom:962.599867pt;}
.y2_c00446{bottom:1035.560000pt;}
.h4_c00446{height:18.560000pt;}
.h7_c00446{height:56.503125pt;}
.h9_c00446{height:62.781250pt;}
.h3_c00446{height:62.812500pt;}
.h5_c00446{height:64.500000pt;}
.h6_c00446{height:69.660000pt;}
.h8_c00446{height:72.826250pt;}
.h2_c00446{height:1099.880000pt;}
.h0_c00446{height:1122.520000pt;}
.h1_c00446{height:1122.666667pt;}
.w3_c00446{width:24.000000pt;}
.w2_c00446{width:771.080000pt;}
.w0_c00446{width:793.720000pt;}
.w1_c00446{width:794.000000pt;}
.x0_c00446{left:0.000000pt;}
.x1_c00446{left:11.320000pt;}
.x3_c00446{left:84.797333pt;}
.x15_c00446{left:132.800133pt;}
.xf_c00446{left:290.269333pt;}
.x5_c00446{left:322.048800pt;}
.x10_c00446{left:326.499733pt;}
.x12_c00446{left:333.382933pt;}
.x8_c00446{left:343.246933pt;}
.xc_c00446{left:374.581333pt;}
.x4_c00446{left:384.760000pt;}
.x6_c00446{left:388.880533pt;}
.x7_c00446{left:396.584533pt;}
.xa_c00446{left:420.589333pt;}
.x13_c00446{left:423.066133pt;}
.xb_c00446{left:432.066133pt;}
.x14_c00446{left:444.637333pt;}
.xd_c00446{left:448.323733pt;}
.x11_c00446{left:678.882133pt;}
.xe_c00446{left:682.539733pt;}
.x9_c00446{left:686.211733pt;}
.x2_c00446{left:782.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_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_046f16c6bbb2aece3363960e.woff2')format("woff");}.ff1_c00447{font-family:ff1_c00447;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00447;src:url('chunks/assets/font_862f0079b4e447e92613e874.woff2')format("woff");}.ff2_c00447{font-family:ff2_c00447;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00447{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00447{vertical-align:0.000000px;}
.v1_c00447{vertical-align:30.240600px;}
.ls0_c00447{letter-spacing:0.000000px;}
.ls1_c00447{letter-spacing:0.100224px;}
.sc__c00447{text-shadow:none;}
.sc0_c00447{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00447{-webkit-text-stroke:0px transparent;}
.sc0_c00447{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00447{word-spacing:-10.540224px;}
.ws1_c00447{word-spacing:0.000000px;}
._9_c00447{margin-left:-1.065600px;}
._4_c00447{width:1.224000px;}
._8_c00447{width:2.232000px;}
._1_c00447{width:4.233600px;}
._0_c00447{width:5.695200px;}
._2_c00447{width:6.811200px;}
._5_c00447{width:8.078400px;}
._7_c00447{width:9.302400px;}
._6_c00447{width:11.793600px;}
._3_c00447{width:19.497600px;}
.fc1_c00447{color:transparent;}
.fc0_c00447{color:rgb(0,0,0);}
.fs1_c00447{font-size:41.760000px;}
.fs0_c00447{font-size:72.000000px;}
.y0_c00447{bottom:0.000000px;}
.y5_c00447{bottom:1.440000px;}
.y1_c00447{bottom:12.735000px;}
.y3_c00447{bottom:45.405000px;}
.y4_c00447{bottom:56.700000px;}
.y21_c00447{bottom:110.925000px;}
.y20_c00447{bottom:146.925000px;}
.y1f_c00447{bottom:182.925000px;}
.y1e_c00447{bottom:218.925000px;}
.y1d_c00447{bottom:254.925000px;}
.y1c_c00447{bottom:290.925000px;}
.y1b_c00447{bottom:326.925000px;}
.y1a_c00447{bottom:362.925000px;}
.y19_c00447{bottom:398.925000px;}
.y18_c00447{bottom:434.925000px;}
.y17_c00447{bottom:470.925000px;}
.y16_c00447{bottom:506.925000px;}
.y15_c00447{bottom:542.924850px;}
.y14_c00447{bottom:578.924850px;}
.y13_c00447{bottom:614.924850px;}
.y12_c00447{bottom:650.924850px;}
.y11_c00447{bottom:686.924850px;}
.y10_c00447{bottom:722.924850px;}
.yf_c00447{bottom:758.924850px;}
.ye_c00447{bottom:794.924850px;}
.yd_c00447{bottom:830.924850px;}
.yc_c00447{bottom:866.924850px;}
.yb_c00447{bottom:902.924850px;}
.ya_c00447{bottom:938.924850px;}
.y9_c00447{bottom:974.924850px;}
.y8_c00447{bottom:1010.924850px;}
.y7_c00447{bottom:1046.924850px;}
.y6_c00447{bottom:1082.924850px;}
.y2_c00447{bottom:1165.005000px;}
.h4_c00447{height:17.280000px;}
.h3_c00447{height:70.664062px;}
.h5_c00447{height:71.225756px;}
.h2_c00447{height:1237.365000px;}
.h0_c00447{height:1262.835000px;}
.h1_c00447{height:1263.000000px;}
.w3_c00447{width:47.520000px;}
.w2_c00447{width:867.465000px;}
.w0_c00447{width:892.935000px;}
.w1_c00447{width:893.250000px;}
.x0_c00447{left:0.000000px;}
.x5_c00447{left:10.237500px;}
.x1_c00447{left:12.735000px;}
.x3_c00447{left:95.397000px;}
.x6_c00447{left:149.400150px;}
.x4_c00447{left:422.775000px;}
.x2_c00447{left:880.125000px;}
@media print{
.v0_c00447{vertical-align:0.000000pt;}
.v1_c00447{vertical-align:26.880533pt;}
.ls0_c00447{letter-spacing:0.000000pt;}
.ls1_c00447{letter-spacing:0.089088pt;}
.ws0_c00447{word-spacing:-9.369088pt;}
.ws1_c00447{word-spacing:0.000000pt;}
._9_c00447{margin-left:-0.947200pt;}
._4_c00447{width:1.088000pt;}
._8_c00447{width:1.984000pt;}
._1_c00447{width:3.763200pt;}
._0_c00447{width:5.062400pt;}
._2_c00447{width:6.054400pt;}
._5_c00447{width:7.180800pt;}
._7_c00447{width:8.268800pt;}
._6_c00447{width:10.483200pt;}
._3_c00447{width:17.331200pt;}
.fs1_c00447{font-size:37.120000pt;}
.fs0_c00447{font-size:64.000000pt;}
.y0_c00447{bottom:0.000000pt;}
.y5_c00447{bottom:1.280000pt;}
.y1_c00447{bottom:11.320000pt;}
.y3_c00447{bottom:40.360000pt;}
.y4_c00447{bottom:50.400000pt;}
.y21_c00447{bottom:98.600000pt;}
.y20_c00447{bottom:130.600000pt;}
.y1f_c00447{bottom:162.600000pt;}
.y1e_c00447{bottom:194.600000pt;}
.y1d_c00447{bottom:226.600000pt;}
.y1c_c00447{bottom:258.600000pt;}
.y1b_c00447{bottom:290.600000pt;}
.y1a_c00447{bottom:322.600000pt;}
.y19_c00447{bottom:354.600000pt;}
.y18_c00447{bottom:386.600000pt;}
.y17_c00447{bottom:418.600000pt;}
.y16_c00447{bottom:450.600000pt;}
.y15_c00447{bottom:482.599867pt;}
.y14_c00447{bottom:514.599867pt;}
.y13_c00447{bottom:546.599867pt;}
.y12_c00447{bottom:578.599867pt;}
.y11_c00447{bottom:610.599867pt;}
.y10_c00447{bottom:642.599867pt;}
.yf_c00447{bottom:674.599867pt;}
.ye_c00447{bottom:706.599867pt;}
.yd_c00447{bottom:738.599867pt;}
.yc_c00447{bottom:770.599867pt;}
.yb_c00447{bottom:802.599867pt;}
.ya_c00447{bottom:834.599867pt;}
.y9_c00447{bottom:866.599867pt;}
.y8_c00447{bottom:898.599867pt;}
.y7_c00447{bottom:930.599867pt;}
.y6_c00447{bottom:962.599867pt;}
.y2_c00447{bottom:1035.560000pt;}
.h4_c00447{height:15.360000pt;}
.h3_c00447{height:62.812500pt;}
.h5_c00447{height:63.311783pt;}
.h2_c00447{height:1099.880000pt;}
.h0_c00447{height:1122.520000pt;}
.h1_c00447{height:1122.666667pt;}
.w3_c00447{width:42.240000pt;}
.w2_c00447{width:771.080000pt;}
.w0_c00447{width:793.720000pt;}
.w1_c00447{width:794.000000pt;}
.x0_c00447{left:0.000000pt;}
.x5_c00447{left:9.100000pt;}
.x1_c00447{left:11.320000pt;}
.x3_c00447{left:84.797333pt;}
.x6_c00447{left:132.800133pt;}
.x4_c00447{left:375.800000pt;}
.x2_c00447{left:782.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_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_a8b0f429a6f4ca72699af58d.woff2')format("woff");}.ff1_c00448{font-family:ff1_c00448;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00448;src:url('chunks/assets/font_8e108d7b34d4383ac6993ff8.woff2')format("woff");}.ff2_c00448{font-family:ff2_c00448;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00448{letter-spacing:-0.014400px;}
.ls0_c00448{letter-spacing:0.000000px;}
.ls1_c00448{letter-spacing:0.014400px;}
.sc__c00448{text-shadow:none;}
.sc0_c00448{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00448{-webkit-text-stroke:0px transparent;}
.sc0_c00448{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00448{word-spacing:-17.985600px;}
.ws1_c00448{word-spacing:0.000000px;}
._6_c00448{margin-left:-1.087200px;}
._4_c00448{width:1.101600px;}
._2_c00448{width:2.224800px;}
._3_c00448{width:3.852000px;}
._1_c00448{width:4.968000px;}
._0_c00448{width:6.192000px;}
._8_c00448{width:9.468000px;}
._7_c00448{width:10.497600px;}
._5_c00448{width:11.527200px;}
._a_c00448{width:13.420800px;}
._9_c00448{width:29.944800px;}
.fc1_c00448{color:transparent;}
.fc0_c00448{color:rgb(0,0,0);}
.fs0_c00448{font-size:72.000000px;}
.y0_c00448{bottom:0.000000px;}
.y5_c00448{bottom:5.040000px;}
.y1_c00448{bottom:12.735000px;}
.y3_c00448{bottom:45.405000px;}
.y4_c00448{bottom:53.100000px;}
.y21_c00448{bottom:110.924850px;}
.y20_c00448{bottom:146.924850px;}
.y1f_c00448{bottom:182.924850px;}
.y1e_c00448{bottom:218.924850px;}
.y1d_c00448{bottom:254.924850px;}
.y1c_c00448{bottom:290.924850px;}
.y1b_c00448{bottom:326.924850px;}
.y1a_c00448{bottom:362.924850px;}
.y19_c00448{bottom:398.924850px;}
.y18_c00448{bottom:434.924850px;}
.y17_c00448{bottom:470.924850px;}
.y16_c00448{bottom:506.924850px;}
.y15_c00448{bottom:542.924850px;}
.y14_c00448{bottom:578.924850px;}
.y13_c00448{bottom:614.924850px;}
.y12_c00448{bottom:650.924850px;}
.y11_c00448{bottom:686.924850px;}
.y10_c00448{bottom:722.924850px;}
.yf_c00448{bottom:758.924850px;}
.ye_c00448{bottom:794.924850px;}
.yd_c00448{bottom:830.924850px;}
.yc_c00448{bottom:866.924850px;}
.yb_c00448{bottom:902.924850px;}
.ya_c00448{bottom:938.924850px;}
.y9_c00448{bottom:974.924850px;}
.y8_c00448{bottom:1010.924850px;}
.y7_c00448{bottom:1046.924850px;}
.y6_c00448{bottom:1082.924850px;}
.y2_c00448{bottom:1165.005000px;}
.h4_c00448{height:20.880000px;}
.h5_c00448{height:70.628906px;}
.h3_c00448{height:70.664062px;}
.h2_c00448{height:1237.365000px;}
.h0_c00448{height:1262.835000px;}
.h1_c00448{height:1263.000000px;}
.w3_c00448{width:27.000000px;}
.w2_c00448{width:867.465000px;}
.w0_c00448{width:892.935000px;}
.w1_c00448{width:893.250000px;}
.x0_c00448{left:0.000000px;}
.x1_c00448{left:12.735000px;}
.x3_c00448{left:95.397000px;}
.x5_c00448{left:149.382150px;}
.x4_c00448{left:432.855000px;}
.x2_c00448{left:880.125000px;}
@media print{
.v0_c00448{vertical-align:0.000000pt;}
.ls2_c00448{letter-spacing:-0.012800pt;}
.ls0_c00448{letter-spacing:0.000000pt;}
.ls1_c00448{letter-spacing:0.012800pt;}
.ws0_c00448{word-spacing:-15.987200pt;}
.ws1_c00448{word-spacing:0.000000pt;}
._6_c00448{margin-left:-0.966400pt;}
._4_c00448{width:0.979200pt;}
._2_c00448{width:1.977600pt;}
._3_c00448{width:3.424000pt;}
._1_c00448{width:4.416000pt;}
._0_c00448{width:5.504000pt;}
._8_c00448{width:8.416000pt;}
._7_c00448{width:9.331200pt;}
._5_c00448{width:10.246400pt;}
._a_c00448{width:11.929600pt;}
._9_c00448{width:26.617600pt;}
.fs0_c00448{font-size:64.000000pt;}
.y0_c00448{bottom:0.000000pt;}
.y5_c00448{bottom:4.480000pt;}
.y1_c00448{bottom:11.320000pt;}
.y3_c00448{bottom:40.360000pt;}
.y4_c00448{bottom:47.200000pt;}
.y21_c00448{bottom:98.599867pt;}
.y20_c00448{bottom:130.599867pt;}
.y1f_c00448{bottom:162.599867pt;}
.y1e_c00448{bottom:194.599867pt;}
.y1d_c00448{bottom:226.599867pt;}
.y1c_c00448{bottom:258.599867pt;}
.y1b_c00448{bottom:290.599867pt;}
.y1a_c00448{bottom:322.599867pt;}
.y19_c00448{bottom:354.599867pt;}
.y18_c00448{bottom:386.599867pt;}
.y17_c00448{bottom:418.599867pt;}
.y16_c00448{bottom:450.599867pt;}
.y15_c00448{bottom:482.599867pt;}
.y14_c00448{bottom:514.599867pt;}
.y13_c00448{bottom:546.599867pt;}
.y12_c00448{bottom:578.599867pt;}
.y11_c00448{bottom:610.599867pt;}
.y10_c00448{bottom:642.599867pt;}
.yf_c00448{bottom:674.599867pt;}
.ye_c00448{bottom:706.599867pt;}
.yd_c00448{bottom:738.599867pt;}
.yc_c00448{bottom:770.599867pt;}
.yb_c00448{bottom:802.599867pt;}
.ya_c00448{bottom:834.599867pt;}
.y9_c00448{bottom:866.599867pt;}
.y8_c00448{bottom:898.599867pt;}
.y7_c00448{bottom:930.599867pt;}
.y6_c00448{bottom:962.599867pt;}
.y2_c00448{bottom:1035.560000pt;}
.h4_c00448{height:18.560000pt;}
.h5_c00448{height:62.781250pt;}
.h3_c00448{height:62.812500pt;}
.h2_c00448{height:1099.880000pt;}
.h0_c00448{height:1122.520000pt;}
.h1_c00448{height:1122.666667pt;}
.w3_c00448{width:24.000000pt;}
.w2_c00448{width:771.080000pt;}
.w0_c00448{width:793.720000pt;}
.w1_c00448{width:794.000000pt;}
.x0_c00448{left:0.000000pt;}
.x1_c00448{left:11.320000pt;}
.x3_c00448{left:84.797333pt;}
.x5_c00448{left:132.784133pt;}
.x4_c00448{left:384.760000pt;}
.x2_c00448{left:782.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_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_d6091ac65f0339f4d90cd7d5.woff2')format("woff");}.ff1_c00449{font-family:ff1_c00449;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00449;src:url('chunks/assets/font_d30a601e2511259c4123a760.woff2')format("woff");}.ff2_c00449{font-family:ff2_c00449;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00449{letter-spacing:-0.014400px;}
.ls0_c00449{letter-spacing:0.000000px;}
.ls2_c00449{letter-spacing:0.036000px;}
.sc__c00449{text-shadow:none;}
.sc0_c00449{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00449{-webkit-text-stroke:0px transparent;}
.sc0_c00449{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1_c00449{word-spacing:-18.036000px;}
.ws0_c00449{word-spacing:-18.000000px;}
.ws2_c00449{word-spacing:0.000000px;}
._3_c00449{width:1.432800px;}
._0_c00449{width:2.484000px;}
._2_c00449{width:4.298400px;}
._1_c00449{width:9.324000px;}
._8_c00449{width:10.339200px;}
._6_c00449{width:11.757600px;}
._4_c00449{width:13.039200px;}
._7_c00449{width:19.130400px;}
._5_c00449{width:21.556800px;}
._9_c00449{width:30.974400px;}
.fc1_c00449{color:transparent;}
.fc0_c00449{color:rgb(0,0,0);}
.fs0_c00449{font-size:72.000000px;}
.y0_c00449{bottom:0.000000px;}
.y5_c00449{bottom:1.440000px;}
.y1_c00449{bottom:12.735000px;}
.y3_c00449{bottom:45.405000px;}
.y4_c00449{bottom:56.700000px;}
.y21_c00449{bottom:110.924850px;}
.y20_c00449{bottom:146.924850px;}
.y1f_c00449{bottom:182.924850px;}
.y1e_c00449{bottom:218.924850px;}
.y1d_c00449{bottom:254.924850px;}
.y1c_c00449{bottom:290.924850px;}
.y1b_c00449{bottom:326.924850px;}
.y1a_c00449{bottom:362.924850px;}
.y19_c00449{bottom:398.924850px;}
.y18_c00449{bottom:434.924850px;}
.y17_c00449{bottom:470.924850px;}
.y16_c00449{bottom:506.924850px;}
.y15_c00449{bottom:542.924850px;}
.y14_c00449{bottom:578.924850px;}
.y13_c00449{bottom:614.924850px;}
.y12_c00449{bottom:650.924850px;}
.y11_c00449{bottom:686.924850px;}
.y10_c00449{bottom:722.924850px;}
.yf_c00449{bottom:758.924850px;}
.ye_c00449{bottom:794.924850px;}
.yd_c00449{bottom:830.924850px;}
.yc_c00449{bottom:866.924850px;}
.yb_c00449{bottom:902.924850px;}
.ya_c00449{bottom:938.924850px;}
.y9_c00449{bottom:974.924850px;}
.y8_c00449{bottom:1010.924850px;}
.y7_c00449{bottom:1046.924850px;}
.y6_c00449{bottom:1082.924850px;}
.y2_c00449{bottom:1165.005000px;}
.h4_c00449{height:17.280000px;}
.h5_c00449{height:70.628906px;}
.h3_c00449{height:70.664062px;}
.h2_c00449{height:1237.365000px;}
.h0_c00449{height:1262.835000px;}
.h1_c00449{height:1263.000000px;}
.w3_c00449{width:47.520000px;}
.w2_c00449{width:867.465000px;}
.w0_c00449{width:892.935000px;}
.w1_c00449{width:893.250000px;}
.x0_c00449{left:0.000000px;}
.x5_c00449{left:10.237500px;}
.x1_c00449{left:12.735000px;}
.x3_c00449{left:95.397000px;}
.x6_c00449{left:149.400150px;}
.x4_c00449{left:422.775000px;}
.x2_c00449{left:880.125000px;}
@media print{
.v0_c00449{vertical-align:0.000000pt;}
.ls1_c00449{letter-spacing:-0.012800pt;}
.ls0_c00449{letter-spacing:0.000000pt;}
.ls2_c00449{letter-spacing:0.032000pt;}
.ws1_c00449{word-spacing:-16.032000pt;}
.ws0_c00449{word-spacing:-16.000000pt;}
.ws2_c00449{word-spacing:0.000000pt;}
._3_c00449{width:1.273600pt;}
._0_c00449{width:2.208000pt;}
._2_c00449{width:3.820800pt;}
._1_c00449{width:8.288000pt;}
._8_c00449{width:9.190400pt;}
._6_c00449{width:10.451200pt;}
._4_c00449{width:11.590400pt;}
._7_c00449{width:17.004800pt;}
._5_c00449{width:19.161600pt;}
._9_c00449{width:27.532800pt;}
.fs0_c00449{font-size:64.000000pt;}
.y0_c00449{bottom:0.000000pt;}
.y5_c00449{bottom:1.280000pt;}
.y1_c00449{bottom:11.320000pt;}
.y3_c00449{bottom:40.360000pt;}
.y4_c00449{bottom:50.400000pt;}
.y21_c00449{bottom:98.599867pt;}
.y20_c00449{bottom:130.599867pt;}
.y1f_c00449{bottom:162.599867pt;}
.y1e_c00449{bottom:194.599867pt;}
.y1d_c00449{bottom:226.599867pt;}
.y1c_c00449{bottom:258.599867pt;}
.y1b_c00449{bottom:290.599867pt;}
.y1a_c00449{bottom:322.599867pt;}
.y19_c00449{bottom:354.599867pt;}
.y18_c00449{bottom:386.599867pt;}
.y17_c00449{bottom:418.599867pt;}
.y16_c00449{bottom:450.599867pt;}
.y15_c00449{bottom:482.599867pt;}
.y14_c00449{bottom:514.599867pt;}
.y13_c00449{bottom:546.599867pt;}
.y12_c00449{bottom:578.599867pt;}
.y11_c00449{bottom:610.599867pt;}
.y10_c00449{bottom:642.599867pt;}
.yf_c00449{bottom:674.599867pt;}
.ye_c00449{bottom:706.599867pt;}
.yd_c00449{bottom:738.599867pt;}
.yc_c00449{bottom:770.599867pt;}
.yb_c00449{bottom:802.599867pt;}
.ya_c00449{bottom:834.599867pt;}
.y9_c00449{bottom:866.599867pt;}
.y8_c00449{bottom:898.599867pt;}
.y7_c00449{bottom:930.599867pt;}
.y6_c00449{bottom:962.599867pt;}
.y2_c00449{bottom:1035.560000pt;}
.h4_c00449{height:15.360000pt;}
.h5_c00449{height:62.781250pt;}
.h3_c00449{height:62.812500pt;}
.h2_c00449{height:1099.880000pt;}
.h0_c00449{height:1122.520000pt;}
.h1_c00449{height:1122.666667pt;}
.w3_c00449{width:42.240000pt;}
.w2_c00449{width:771.080000pt;}
.w0_c00449{width:793.720000pt;}
.w1_c00449{width:794.000000pt;}
.x0_c00449{left:0.000000pt;}
.x5_c00449{left:9.100000pt;}
.x1_c00449{left:11.320000pt;}
.x3_c00449{left:84.797333pt;}
.x6_c00449{left:132.800133pt;}
.x4_c00449{left:375.800000pt;}
.x2_c00449{left:782.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_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_e21dbcdce4c7580ffa2b7e6d.woff2')format("woff");}.ff1_c00450{font-family:ff1_c00450;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00450;src:url('chunks/assets/font_7c1b86dae78cad1def5cd796.woff2')format("woff");}.ff2_c00450{font-family:ff2_c00450;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00450{letter-spacing:-0.014400px;}
.ls0_c00450{letter-spacing:0.000000px;}
.ls3_c00450{letter-spacing:0.014400px;}
.ls2_c00450{letter-spacing:6.487200px;}
.sc__c00450{text-shadow:none;}
.sc0_c00450{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00450{-webkit-text-stroke:0px transparent;}
.sc0_c00450{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00450{word-spacing:0.000000px;}
._b_c00450{margin-left:-6.566400px;}
._1_c00450{width:1.008000px;}
._6_c00450{width:2.304000px;}
._5_c00450{width:4.982400px;}
._7_c00450{width:6.494400px;}
._0_c00450{width:7.531200px;}
._9_c00450{width:9.878400px;}
._3_c00450{width:10.915200px;}
._8_c00450{width:12.643200px;}
._a_c00450{width:19.548000px;}
._2_c00450{width:31.672800px;}
._c_c00450{width:34.092000px;}
._4_c00450{width:35.388000px;}
.fc1_c00450{color:transparent;}
.fc0_c00450{color:rgb(0,0,0);}
.fs0_c00450{font-size:72.000000px;}
.y0_c00450{bottom:0.000000px;}
.y5_c00450{bottom:5.040000px;}
.y1_c00450{bottom:12.735000px;}
.y3_c00450{bottom:45.405000px;}
.y4_c00450{bottom:53.100000px;}
.y21_c00450{bottom:110.924850px;}
.y20_c00450{bottom:146.924850px;}
.y1f_c00450{bottom:182.924850px;}
.y1e_c00450{bottom:218.924850px;}
.y1d_c00450{bottom:254.924850px;}
.y1c_c00450{bottom:290.924850px;}
.y1b_c00450{bottom:326.924850px;}
.y1a_c00450{bottom:362.924850px;}
.y19_c00450{bottom:398.924850px;}
.y18_c00450{bottom:434.924850px;}
.y17_c00450{bottom:470.924850px;}
.y16_c00450{bottom:506.924850px;}
.y15_c00450{bottom:542.924850px;}
.y14_c00450{bottom:578.924850px;}
.y13_c00450{bottom:614.924850px;}
.y12_c00450{bottom:650.924850px;}
.y11_c00450{bottom:686.924850px;}
.y10_c00450{bottom:722.924850px;}
.yf_c00450{bottom:758.924850px;}
.ye_c00450{bottom:794.924850px;}
.yd_c00450{bottom:830.924850px;}
.yc_c00450{bottom:866.924850px;}
.yb_c00450{bottom:902.924850px;}
.ya_c00450{bottom:938.924850px;}
.y9_c00450{bottom:974.924850px;}
.y8_c00450{bottom:1010.924850px;}
.y7_c00450{bottom:1046.924850px;}
.y6_c00450{bottom:1082.924850px;}
.y2_c00450{bottom:1165.005000px;}
.h4_c00450{height:20.880000px;}
.h3_c00450{height:70.664062px;}
.h2_c00450{height:1237.365000px;}
.h0_c00450{height:1262.835000px;}
.h1_c00450{height:1263.000000px;}
.w3_c00450{width:27.000000px;}
.w2_c00450{width:867.465000px;}
.w0_c00450{width:892.935000px;}
.w1_c00450{width:893.250000px;}
.x0_c00450{left:0.000000px;}
.x1_c00450{left:12.735000px;}
.x3_c00450{left:95.397000px;}
.x5_c00450{left:149.400150px;}
.x4_c00450{left:432.855000px;}
.x2_c00450{left:880.125000px;}
@media print{
.v0_c00450{vertical-align:0.000000pt;}
.ls1_c00450{letter-spacing:-0.012800pt;}
.ls0_c00450{letter-spacing:0.000000pt;}
.ls3_c00450{letter-spacing:0.012800pt;}
.ls2_c00450{letter-spacing:5.766400pt;}
.ws0_c00450{word-spacing:0.000000pt;}
._b_c00450{margin-left:-5.836800pt;}
._1_c00450{width:0.896000pt;}
._6_c00450{width:2.048000pt;}
._5_c00450{width:4.428800pt;}
._7_c00450{width:5.772800pt;}
._0_c00450{width:6.694400pt;}
._9_c00450{width:8.780800pt;}
._3_c00450{width:9.702400pt;}
._8_c00450{width:11.238400pt;}
._a_c00450{width:17.376000pt;}
._2_c00450{width:28.153600pt;}
._c_c00450{width:30.304000pt;}
._4_c00450{width:31.456000pt;}
.fs0_c00450{font-size:64.000000pt;}
.y0_c00450{bottom:0.000000pt;}
.y5_c00450{bottom:4.480000pt;}
.y1_c00450{bottom:11.320000pt;}
.y3_c00450{bottom:40.360000pt;}
.y4_c00450{bottom:47.200000pt;}
.y21_c00450{bottom:98.599867pt;}
.y20_c00450{bottom:130.599867pt;}
.y1f_c00450{bottom:162.599867pt;}
.y1e_c00450{bottom:194.599867pt;}
.y1d_c00450{bottom:226.599867pt;}
.y1c_c00450{bottom:258.599867pt;}
.y1b_c00450{bottom:290.599867pt;}
.y1a_c00450{bottom:322.599867pt;}
.y19_c00450{bottom:354.599867pt;}
.y18_c00450{bottom:386.599867pt;}
.y17_c00450{bottom:418.599867pt;}
.y16_c00450{bottom:450.599867pt;}
.y15_c00450{bottom:482.599867pt;}
.y14_c00450{bottom:514.599867pt;}
.y13_c00450{bottom:546.599867pt;}
.y12_c00450{bottom:578.599867pt;}
.y11_c00450{bottom:610.599867pt;}
.y10_c00450{bottom:642.599867pt;}
.yf_c00450{bottom:674.599867pt;}
.ye_c00450{bottom:706.599867pt;}
.yd_c00450{bottom:738.599867pt;}
.yc_c00450{bottom:770.599867pt;}
.yb_c00450{bottom:802.599867pt;}
.ya_c00450{bottom:834.599867pt;}
.y9_c00450{bottom:866.599867pt;}
.y8_c00450{bottom:898.599867pt;}
.y7_c00450{bottom:930.599867pt;}
.y6_c00450{bottom:962.599867pt;}
.y2_c00450{bottom:1035.560000pt;}
.h4_c00450{height:18.560000pt;}
.h3_c00450{height:62.812500pt;}
.h2_c00450{height:1099.880000pt;}
.h0_c00450{height:1122.520000pt;}
.h1_c00450{height:1122.666667pt;}
.w3_c00450{width:24.000000pt;}
.w2_c00450{width:771.080000pt;}
.w0_c00450{width:793.720000pt;}
.w1_c00450{width:794.000000pt;}
.x0_c00450{left:0.000000pt;}
.x1_c00450{left:11.320000pt;}
.x3_c00450{left:84.797333pt;}
.x5_c00450{left:132.800133pt;}
.x4_c00450{left:384.760000pt;}
.x2_c00450{left:782.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_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_d3a0068779cea4367a173ce2.woff2')format("woff");}.ff1_c00451{font-family:ff1_c00451;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00451{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00451{vertical-align:0.000000px;}
.ls2_c00451{letter-spacing:-0.014400px;}
.ls0_c00451{letter-spacing:0.000000px;}
.ls1_c00451{letter-spacing:0.050400px;}
.sc__c00451{text-shadow:none;}
.sc0_c00451{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00451{-webkit-text-stroke:0px transparent;}
.sc0_c00451{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00451{word-spacing:0.000000px;}
._1_c00451{width:1.540800px;}
._5_c00451{width:2.541600px;}
._0_c00451{width:4.377600px;}
._3_c00451{width:5.652000px;}
._8_c00451{width:7.632000px;}
._6_c00451{width:9.086400px;}
._b_c00451{width:10.173600px;}
._4_c00451{width:13.766400px;}
._7_c00451{width:15.904800px;}
._2_c00451{width:24.213600px;}
._9_c00451{width:28.288800px;}
._a_c00451{width:29.311200px;}
.fc1_c00451{color:transparent;}
.fc0_c00451{color:rgb(0,0,0);}
.fs0_c00451{font-size:72.000000px;}
.y0_c00451{bottom:0.000000px;}
.y5_c00451{bottom:1.440000px;}
.y1_c00451{bottom:12.735000px;}
.y3_c00451{bottom:45.405000px;}
.y4_c00451{bottom:56.700000px;}
.y20_c00451{bottom:146.924850px;}
.y1f_c00451{bottom:182.924850px;}
.y1e_c00451{bottom:218.924850px;}
.y1d_c00451{bottom:254.924850px;}
.y1c_c00451{bottom:290.924850px;}
.y1b_c00451{bottom:326.924850px;}
.y1a_c00451{bottom:362.924850px;}
.y19_c00451{bottom:398.924850px;}
.y18_c00451{bottom:434.924850px;}
.y17_c00451{bottom:470.924850px;}
.y16_c00451{bottom:506.924850px;}
.y15_c00451{bottom:542.924850px;}
.y14_c00451{bottom:578.924850px;}
.y13_c00451{bottom:614.924850px;}
.y12_c00451{bottom:650.924850px;}
.y11_c00451{bottom:686.924850px;}
.y10_c00451{bottom:722.924850px;}
.yf_c00451{bottom:758.924850px;}
.ye_c00451{bottom:794.924850px;}
.yd_c00451{bottom:830.924850px;}
.yc_c00451{bottom:866.924850px;}
.yb_c00451{bottom:902.924850px;}
.ya_c00451{bottom:938.924850px;}
.y9_c00451{bottom:974.924850px;}
.y8_c00451{bottom:1010.924850px;}
.y7_c00451{bottom:1046.924850px;}
.y6_c00451{bottom:1082.924850px;}
.y2_c00451{bottom:1165.005000px;}
.h4_c00451{height:17.280000px;}
.h3_c00451{height:70.664062px;}
.h2_c00451{height:1237.365000px;}
.h0_c00451{height:1262.835000px;}
.h1_c00451{height:1263.000000px;}
.w3_c00451{width:47.520000px;}
.w2_c00451{width:867.465000px;}
.w0_c00451{width:892.935000px;}
.w1_c00451{width:893.250000px;}
.x0_c00451{left:0.000000px;}
.x5_c00451{left:10.237500px;}
.x1_c00451{left:12.735000px;}
.x3_c00451{left:95.397000px;}
.x6_c00451{left:149.400150px;}
.x4_c00451{left:422.775000px;}
.x2_c00451{left:880.125000px;}
@media print{
.v0_c00451{vertical-align:0.000000pt;}
.ls2_c00451{letter-spacing:-0.012800pt;}
.ls0_c00451{letter-spacing:0.000000pt;}
.ls1_c00451{letter-spacing:0.044800pt;}
.ws0_c00451{word-spacing:0.000000pt;}
._1_c00451{width:1.369600pt;}
._5_c00451{width:2.259200pt;}
._0_c00451{width:3.891200pt;}
._3_c00451{width:5.024000pt;}
._8_c00451{width:6.784000pt;}
._6_c00451{width:8.076800pt;}
._b_c00451{width:9.043200pt;}
._4_c00451{width:12.236800pt;}
._7_c00451{width:14.137600pt;}
._2_c00451{width:21.523200pt;}
._9_c00451{width:25.145600pt;}
._a_c00451{width:26.054400pt;}
.fs0_c00451{font-size:64.000000pt;}
.y0_c00451{bottom:0.000000pt;}
.y5_c00451{bottom:1.280000pt;}
.y1_c00451{bottom:11.320000pt;}
.y3_c00451{bottom:40.360000pt;}
.y4_c00451{bottom:50.400000pt;}
.y20_c00451{bottom:130.599867pt;}
.y1f_c00451{bottom:162.599867pt;}
.y1e_c00451{bottom:194.599867pt;}
.y1d_c00451{bottom:226.599867pt;}
.y1c_c00451{bottom:258.599867pt;}
.y1b_c00451{bottom:290.599867pt;}
.y1a_c00451{bottom:322.599867pt;}
.y19_c00451{bottom:354.599867pt;}
.y18_c00451{bottom:386.599867pt;}
.y17_c00451{bottom:418.599867pt;}
.y16_c00451{bottom:450.599867pt;}
.y15_c00451{bottom:482.599867pt;}
.y14_c00451{bottom:514.599867pt;}
.y13_c00451{bottom:546.599867pt;}
.y12_c00451{bottom:578.599867pt;}
.y11_c00451{bottom:610.599867pt;}
.y10_c00451{bottom:642.599867pt;}
.yf_c00451{bottom:674.599867pt;}
.ye_c00451{bottom:706.599867pt;}
.yd_c00451{bottom:738.599867pt;}
.yc_c00451{bottom:770.599867pt;}
.yb_c00451{bottom:802.599867pt;}
.ya_c00451{bottom:834.599867pt;}
.y9_c00451{bottom:866.599867pt;}
.y8_c00451{bottom:898.599867pt;}
.y7_c00451{bottom:930.599867pt;}
.y6_c00451{bottom:962.599867pt;}
.y2_c00451{bottom:1035.560000pt;}
.h4_c00451{height:15.360000pt;}
.h3_c00451{height:62.812500pt;}
.h2_c00451{height:1099.880000pt;}
.h0_c00451{height:1122.520000pt;}
.h1_c00451{height:1122.666667pt;}
.w3_c00451{width:42.240000pt;}
.w2_c00451{width:771.080000pt;}
.w0_c00451{width:793.720000pt;}
.w1_c00451{width:794.000000pt;}
.x0_c00451{left:0.000000pt;}
.x5_c00451{left:9.100000pt;}
.x1_c00451{left:11.320000pt;}
.x3_c00451{left:84.797333pt;}
.x6_c00451{left:132.800133pt;}
.x4_c00451{left:375.800000pt;}
.x2_c00451{left:782.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_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_eaa30c50a428d3122f7e3156.woff2')format("woff");}.ff1_c00452{font-family:ff1_c00452;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00452;src:url('chunks/assets/font_53216249c1a038bbeb24b02b.woff2')format("woff");}.ff2_c00452{font-family:ff2_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:ff3_c00452;src:url('chunks/assets/font_cff656a9d93963a7828428ed.woff2')format("woff");}.ff3_c00452{font-family:ff3_c00452;line-height:1.401855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00452{letter-spacing:0.000000px;}
.ls1_c00452{letter-spacing:0.014400px;}
.sc__c00452{text-shadow:none;}
.sc0_c00452{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00452{-webkit-text-stroke:0px transparent;}
.sc0_c00452{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00452{word-spacing:0.000000px;}
._6_c00452{width:1.224000px;}
._5_c00452{width:2.664000px;}
._1_c00452{width:4.212000px;}
._a_c00452{width:5.493600px;}
._3_c00452{width:8.359200px;}
._0_c00452{width:9.640800px;}
._7_c00452{width:10.893600px;}
._8_c00452{width:13.392000px;}
._4_c00452{width:15.069600px;}
._2_c00452{width:16.221600px;}
._9_c00452{width:28.296000px;}
.fc1_c00452{color:transparent;}
.fc0_c00452{color:rgb(0,0,0);}
.fs0_c00452{font-size:72.000000px;}
.y0_c00452{bottom:0.000000px;}
.y5_c00452{bottom:5.040000px;}
.y1_c00452{bottom:12.735000px;}
.y3_c00452{bottom:45.405000px;}
.y4_c00452{bottom:53.100000px;}
.y21_c00452{bottom:110.924850px;}
.y20_c00452{bottom:146.924850px;}
.y1f_c00452{bottom:182.924850px;}
.y1e_c00452{bottom:218.924850px;}
.y1d_c00452{bottom:254.924850px;}
.y1c_c00452{bottom:290.924850px;}
.y1b_c00452{bottom:326.924850px;}
.y1a_c00452{bottom:362.924850px;}
.y19_c00452{bottom:398.924850px;}
.y18_c00452{bottom:434.924850px;}
.y17_c00452{bottom:470.924850px;}
.y16_c00452{bottom:506.924850px;}
.y15_c00452{bottom:542.924850px;}
.y14_c00452{bottom:578.924850px;}
.y13_c00452{bottom:614.924850px;}
.y12_c00452{bottom:650.924850px;}
.y11_c00452{bottom:686.924850px;}
.y10_c00452{bottom:722.924850px;}
.yf_c00452{bottom:758.924850px;}
.ye_c00452{bottom:794.924850px;}
.yd_c00452{bottom:830.924850px;}
.yc_c00452{bottom:866.924850px;}
.yb_c00452{bottom:902.924850px;}
.ya_c00452{bottom:938.924850px;}
.y9_c00452{bottom:974.924850px;}
.y8_c00452{bottom:1010.924850px;}
.y7_c00452{bottom:1046.924850px;}
.y6_c00452{bottom:1082.924850px;}
.y2_c00452{bottom:1165.005000px;}
.h4_c00452{height:20.880000px;}
.h3_c00452{height:70.664062px;}
.h5_c00452{height:72.562500px;}
.h2_c00452{height:1237.365000px;}
.h0_c00452{height:1262.835000px;}
.h1_c00452{height:1263.000000px;}
.w3_c00452{width:27.000000px;}
.w2_c00452{width:867.465000px;}
.w0_c00452{width:892.935000px;}
.w1_c00452{width:893.250000px;}
.x0_c00452{left:0.000000px;}
.x1_c00452{left:12.735000px;}
.x3_c00452{left:95.397000px;}
.x5_c00452{left:149.418150px;}
.x4_c00452{left:432.855000px;}
.x2_c00452{left:880.125000px;}
@media print{
.v0_c00452{vertical-align:0.000000pt;}
.ls0_c00452{letter-spacing:0.000000pt;}
.ls1_c00452{letter-spacing:0.012800pt;}
.ws0_c00452{word-spacing:0.000000pt;}
._6_c00452{width:1.088000pt;}
._5_c00452{width:2.368000pt;}
._1_c00452{width:3.744000pt;}
._a_c00452{width:4.883200pt;}
._3_c00452{width:7.430400pt;}
._0_c00452{width:8.569600pt;}
._7_c00452{width:9.683200pt;}
._8_c00452{width:11.904000pt;}
._4_c00452{width:13.395200pt;}
._2_c00452{width:14.419200pt;}
._9_c00452{width:25.152000pt;}
.fs0_c00452{font-size:64.000000pt;}
.y0_c00452{bottom:0.000000pt;}
.y5_c00452{bottom:4.480000pt;}
.y1_c00452{bottom:11.320000pt;}
.y3_c00452{bottom:40.360000pt;}
.y4_c00452{bottom:47.200000pt;}
.y21_c00452{bottom:98.599867pt;}
.y20_c00452{bottom:130.599867pt;}
.y1f_c00452{bottom:162.599867pt;}
.y1e_c00452{bottom:194.599867pt;}
.y1d_c00452{bottom:226.599867pt;}
.y1c_c00452{bottom:258.599867pt;}
.y1b_c00452{bottom:290.599867pt;}
.y1a_c00452{bottom:322.599867pt;}
.y19_c00452{bottom:354.599867pt;}
.y18_c00452{bottom:386.599867pt;}
.y17_c00452{bottom:418.599867pt;}
.y16_c00452{bottom:450.599867pt;}
.y15_c00452{bottom:482.599867pt;}
.y14_c00452{bottom:514.599867pt;}
.y13_c00452{bottom:546.599867pt;}
.y12_c00452{bottom:578.599867pt;}
.y11_c00452{bottom:610.599867pt;}
.y10_c00452{bottom:642.599867pt;}
.yf_c00452{bottom:674.599867pt;}
.ye_c00452{bottom:706.599867pt;}
.yd_c00452{bottom:738.599867pt;}
.yc_c00452{bottom:770.599867pt;}
.yb_c00452{bottom:802.599867pt;}
.ya_c00452{bottom:834.599867pt;}
.y9_c00452{bottom:866.599867pt;}
.y8_c00452{bottom:898.599867pt;}
.y7_c00452{bottom:930.599867pt;}
.y6_c00452{bottom:962.599867pt;}
.y2_c00452{bottom:1035.560000pt;}
.h4_c00452{height:18.560000pt;}
.h3_c00452{height:62.812500pt;}
.h5_c00452{height:64.500000pt;}
.h2_c00452{height:1099.880000pt;}
.h0_c00452{height:1122.520000pt;}
.h1_c00452{height:1122.666667pt;}
.w3_c00452{width:24.000000pt;}
.w2_c00452{width:771.080000pt;}
.w0_c00452{width:793.720000pt;}
.w1_c00452{width:794.000000pt;}
.x0_c00452{left:0.000000pt;}
.x1_c00452{left:11.320000pt;}
.x3_c00452{left:84.797333pt;}
.x5_c00452{left:132.816133pt;}
.x4_c00452{left:384.760000pt;}
.x2_c00452{left:782.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_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_1ff9b1690e6ce9c1c4a67be0.woff2')format("woff");}.ff1_c00453{font-family:ff1_c00453;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls2_c00453{letter-spacing:-0.014400px;}
.ls0_c00453{letter-spacing:0.000000px;}
.ls1_c00453{letter-spacing:0.014400px;}
.sc__c00453{text-shadow:none;}
.sc0_c00453{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00453{-webkit-text-stroke:0px transparent;}
.sc0_c00453{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00453{word-spacing:0.000000px;}
._9_c00453{width:1.440000px;}
._4_c00453{width:2.570400px;}
._5_c00453{width:3.794400px;}
._1_c00453{width:5.292000px;}
._0_c00453{width:6.516000px;}
._6_c00453{width:7.552800px;}
._a_c00453{width:8.553600px;}
._7_c00453{width:9.561600px;}
._2_c00453{width:10.641600px;}
._3_c00453{width:14.724000px;}
._b_c00453{width:16.084800px;}
._8_c00453{width:29.167200px;}
.fc1_c00453{color:transparent;}
.fc0_c00453{color:rgb(0,0,0);}
.fs0_c00453{font-size:72.000000px;}
.y0_c00453{bottom:0.000000px;}
.y5_c00453{bottom:1.440000px;}
.y1_c00453{bottom:12.735000px;}
.y3_c00453{bottom:45.405000px;}
.y4_c00453{bottom:56.700000px;}
.y21_c00453{bottom:110.924850px;}
.y20_c00453{bottom:146.924850px;}
.y1f_c00453{bottom:182.924850px;}
.y1e_c00453{bottom:218.924850px;}
.y1d_c00453{bottom:254.924850px;}
.y1c_c00453{bottom:290.924850px;}
.y1b_c00453{bottom:326.924850px;}
.y1a_c00453{bottom:362.924850px;}
.y19_c00453{bottom:398.924850px;}
.y18_c00453{bottom:434.924850px;}
.y17_c00453{bottom:470.924850px;}
.y16_c00453{bottom:506.924850px;}
.y15_c00453{bottom:542.924850px;}
.y14_c00453{bottom:578.924850px;}
.y13_c00453{bottom:614.924850px;}
.y12_c00453{bottom:650.924850px;}
.y11_c00453{bottom:686.924850px;}
.y10_c00453{bottom:722.924850px;}
.yf_c00453{bottom:758.924850px;}
.ye_c00453{bottom:794.924850px;}
.yd_c00453{bottom:830.924850px;}
.yc_c00453{bottom:866.924850px;}
.yb_c00453{bottom:902.924850px;}
.ya_c00453{bottom:938.924850px;}
.y9_c00453{bottom:974.924850px;}
.y8_c00453{bottom:1010.924850px;}
.y7_c00453{bottom:1046.924850px;}
.y6_c00453{bottom:1082.924850px;}
.y2_c00453{bottom:1165.005000px;}
.h4_c00453{height:17.280000px;}
.h3_c00453{height:70.664062px;}
.h2_c00453{height:1237.365000px;}
.h0_c00453{height:1262.835000px;}
.h1_c00453{height:1263.000000px;}
.w3_c00453{width:47.520000px;}
.w2_c00453{width:867.465000px;}
.w0_c00453{width:892.935000px;}
.w1_c00453{width:893.250000px;}
.x0_c00453{left:0.000000px;}
.x5_c00453{left:10.237500px;}
.x1_c00453{left:12.735000px;}
.x3_c00453{left:95.397000px;}
.x6_c00453{left:149.400150px;}
.x4_c00453{left:422.775000px;}
.x2_c00453{left:880.125000px;}
@media print{
.v0_c00453{vertical-align:0.000000pt;}
.ls2_c00453{letter-spacing:-0.012800pt;}
.ls0_c00453{letter-spacing:0.000000pt;}
.ls1_c00453{letter-spacing:0.012800pt;}
.ws0_c00453{word-spacing:0.000000pt;}
._9_c00453{width:1.280000pt;}
._4_c00453{width:2.284800pt;}
._5_c00453{width:3.372800pt;}
._1_c00453{width:4.704000pt;}
._0_c00453{width:5.792000pt;}
._6_c00453{width:6.713600pt;}
._a_c00453{width:7.603200pt;}
._7_c00453{width:8.499200pt;}
._2_c00453{width:9.459200pt;}
._3_c00453{width:13.088000pt;}
._b_c00453{width:14.297600pt;}
._8_c00453{width:25.926400pt;}
.fs0_c00453{font-size:64.000000pt;}
.y0_c00453{bottom:0.000000pt;}
.y5_c00453{bottom:1.280000pt;}
.y1_c00453{bottom:11.320000pt;}
.y3_c00453{bottom:40.360000pt;}
.y4_c00453{bottom:50.400000pt;}
.y21_c00453{bottom:98.599867pt;}
.y20_c00453{bottom:130.599867pt;}
.y1f_c00453{bottom:162.599867pt;}
.y1e_c00453{bottom:194.599867pt;}
.y1d_c00453{bottom:226.599867pt;}
.y1c_c00453{bottom:258.599867pt;}
.y1b_c00453{bottom:290.599867pt;}
.y1a_c00453{bottom:322.599867pt;}
.y19_c00453{bottom:354.599867pt;}
.y18_c00453{bottom:386.599867pt;}
.y17_c00453{bottom:418.599867pt;}
.y16_c00453{bottom:450.599867pt;}
.y15_c00453{bottom:482.599867pt;}
.y14_c00453{bottom:514.599867pt;}
.y13_c00453{bottom:546.599867pt;}
.y12_c00453{bottom:578.599867pt;}
.y11_c00453{bottom:610.599867pt;}
.y10_c00453{bottom:642.599867pt;}
.yf_c00453{bottom:674.599867pt;}
.ye_c00453{bottom:706.599867pt;}
.yd_c00453{bottom:738.599867pt;}
.yc_c00453{bottom:770.599867pt;}
.yb_c00453{bottom:802.599867pt;}
.ya_c00453{bottom:834.599867pt;}
.y9_c00453{bottom:866.599867pt;}
.y8_c00453{bottom:898.599867pt;}
.y7_c00453{bottom:930.599867pt;}
.y6_c00453{bottom:962.599867pt;}
.y2_c00453{bottom:1035.560000pt;}
.h4_c00453{height:15.360000pt;}
.h3_c00453{height:62.812500pt;}
.h2_c00453{height:1099.880000pt;}
.h0_c00453{height:1122.520000pt;}
.h1_c00453{height:1122.666667pt;}
.w3_c00453{width:42.240000pt;}
.w2_c00453{width:771.080000pt;}
.w0_c00453{width:793.720000pt;}
.w1_c00453{width:794.000000pt;}
.x0_c00453{left:0.000000pt;}
.x5_c00453{left:9.100000pt;}
.x1_c00453{left:11.320000pt;}
.x3_c00453{left:84.797333pt;}
.x6_c00453{left:132.800133pt;}
.x4_c00453{left:375.800000pt;}
.x2_c00453{left:782.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_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_a7dd5adbf1fb540eab8a1a3d.woff2')format("woff");}.ff1_c00454{font-family:ff1_c00454;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00454;src:url('chunks/assets/font_33668e2b923289cf8ea8be7a.woff2')format("woff");}.ff2_c00454{font-family:ff2_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;}
.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;}
.ls1_c00454{letter-spacing:-0.014400px;}
.ls0_c00454{letter-spacing:0.000000px;}
.ls2_c00454{letter-spacing:8.992800px;}
.sc__c00454{text-shadow:none;}
.sc0_c00454{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00454{-webkit-text-stroke:0px transparent;}
.sc0_c00454{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00454{word-spacing:0.000000px;}
._9_c00454{margin-left:-9.000000px;}
._3_c00454{width:1.569600px;}
._4_c00454{width:2.880000px;}
._2_c00454{width:4.752000px;}
._0_c00454{width:6.688800px;}
._8_c00454{width:8.438400px;}
._5_c00454{width:9.547200px;}
._a_c00454{width:10.569600px;}
._7_c00454{width:11.664000px;}
._1_c00454{width:12.945600px;}
._6_c00454{width:14.544000px;}
._c_c00454{width:19.483200px;}
._b_c00454{width:198.000000px;}
.fc1_c00454{color:transparent;}
.fc0_c00454{color:rgb(0,0,0);}
.fs0_c00454{font-size:72.000000px;}
.y0_c00454{bottom:0.000000px;}
.y5_c00454{bottom:5.040000px;}
.y1_c00454{bottom:12.735000px;}
.y3_c00454{bottom:45.405000px;}
.y4_c00454{bottom:53.100000px;}
.y21_c00454{bottom:110.924850px;}
.y20_c00454{bottom:146.924850px;}
.y1f_c00454{bottom:182.924850px;}
.y1e_c00454{bottom:218.924850px;}
.y1d_c00454{bottom:254.924850px;}
.y1c_c00454{bottom:290.924850px;}
.y1b_c00454{bottom:326.924850px;}
.y1a_c00454{bottom:362.924850px;}
.y19_c00454{bottom:398.924850px;}
.y18_c00454{bottom:434.924850px;}
.y17_c00454{bottom:470.924850px;}
.y16_c00454{bottom:506.924850px;}
.y15_c00454{bottom:542.924850px;}
.y14_c00454{bottom:578.924850px;}
.y13_c00454{bottom:614.924850px;}
.y12_c00454{bottom:650.924850px;}
.y11_c00454{bottom:686.924850px;}
.y10_c00454{bottom:722.924850px;}
.yf_c00454{bottom:758.924850px;}
.ye_c00454{bottom:794.924850px;}
.yd_c00454{bottom:830.924850px;}
.yc_c00454{bottom:866.924850px;}
.yb_c00454{bottom:902.924850px;}
.ya_c00454{bottom:938.924850px;}
.y9_c00454{bottom:974.924850px;}
.y8_c00454{bottom:1010.924850px;}
.y7_c00454{bottom:1046.924850px;}
.y6_c00454{bottom:1082.924850px;}
.y2_c00454{bottom:1165.005000px;}
.h4_c00454{height:20.880000px;}
.h5_c00454{height:70.628906px;}
.h3_c00454{height:70.664062px;}
.h2_c00454{height:1237.365000px;}
.h0_c00454{height:1262.835000px;}
.h1_c00454{height:1263.000000px;}
.w3_c00454{width:27.000000px;}
.w2_c00454{width:867.465000px;}
.w0_c00454{width:892.935000px;}
.w1_c00454{width:893.250000px;}
.x0_c00454{left:0.000000px;}
.x1_c00454{left:12.735000px;}
.x3_c00454{left:95.397000px;}
.x5_c00454{left:149.382150px;}
.x4_c00454{left:432.855000px;}
.x2_c00454{left:880.125000px;}
@media print{
.v0_c00454{vertical-align:0.000000pt;}
.ls1_c00454{letter-spacing:-0.012800pt;}
.ls0_c00454{letter-spacing:0.000000pt;}
.ls2_c00454{letter-spacing:7.993600pt;}
.ws0_c00454{word-spacing:0.000000pt;}
._9_c00454{margin-left:-8.000000pt;}
._3_c00454{width:1.395200pt;}
._4_c00454{width:2.560000pt;}
._2_c00454{width:4.224000pt;}
._0_c00454{width:5.945600pt;}
._8_c00454{width:7.500800pt;}
._5_c00454{width:8.486400pt;}
._a_c00454{width:9.395200pt;}
._7_c00454{width:10.368000pt;}
._1_c00454{width:11.507200pt;}
._6_c00454{width:12.928000pt;}
._c_c00454{width:17.318400pt;}
._b_c00454{width:176.000000pt;}
.fs0_c00454{font-size:64.000000pt;}
.y0_c00454{bottom:0.000000pt;}
.y5_c00454{bottom:4.480000pt;}
.y1_c00454{bottom:11.320000pt;}
.y3_c00454{bottom:40.360000pt;}
.y4_c00454{bottom:47.200000pt;}
.y21_c00454{bottom:98.599867pt;}
.y20_c00454{bottom:130.599867pt;}
.y1f_c00454{bottom:162.599867pt;}
.y1e_c00454{bottom:194.599867pt;}
.y1d_c00454{bottom:226.599867pt;}
.y1c_c00454{bottom:258.599867pt;}
.y1b_c00454{bottom:290.599867pt;}
.y1a_c00454{bottom:322.599867pt;}
.y19_c00454{bottom:354.599867pt;}
.y18_c00454{bottom:386.599867pt;}
.y17_c00454{bottom:418.599867pt;}
.y16_c00454{bottom:450.599867pt;}
.y15_c00454{bottom:482.599867pt;}
.y14_c00454{bottom:514.599867pt;}
.y13_c00454{bottom:546.599867pt;}
.y12_c00454{bottom:578.599867pt;}
.y11_c00454{bottom:610.599867pt;}
.y10_c00454{bottom:642.599867pt;}
.yf_c00454{bottom:674.599867pt;}
.ye_c00454{bottom:706.599867pt;}
.yd_c00454{bottom:738.599867pt;}
.yc_c00454{bottom:770.599867pt;}
.yb_c00454{bottom:802.599867pt;}
.ya_c00454{bottom:834.599867pt;}
.y9_c00454{bottom:866.599867pt;}
.y8_c00454{bottom:898.599867pt;}
.y7_c00454{bottom:930.599867pt;}
.y6_c00454{bottom:962.599867pt;}
.y2_c00454{bottom:1035.560000pt;}
.h4_c00454{height:18.560000pt;}
.h5_c00454{height:62.781250pt;}
.h3_c00454{height:62.812500pt;}
.h2_c00454{height:1099.880000pt;}
.h0_c00454{height:1122.520000pt;}
.h1_c00454{height:1122.666667pt;}
.w3_c00454{width:24.000000pt;}
.w2_c00454{width:771.080000pt;}
.w0_c00454{width:793.720000pt;}
.w1_c00454{width:794.000000pt;}
.x0_c00454{left:0.000000pt;}
.x1_c00454{left:11.320000pt;}
.x3_c00454{left:84.797333pt;}
.x5_c00454{left:132.784133pt;}
.x4_c00454{left:384.760000pt;}
.x2_c00454{left:782.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_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_6926baba50ac517c381ad1a7.woff2')format("woff");}.ff1_c00455{font-family:ff1_c00455;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00455;src:url('chunks/assets/font_b47fe063434fb1c5dac2c737.woff2')format("woff");}.ff2_c00455{font-family:ff2_c00455;line-height:1.284180;font-style:normal;font-weight:normal;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_aaaeb92fb0e25ebb5ab2d565.woff2')format("woff");}.ff3_c00455{font-family:ff3_c00455;line-height:1.284180;font-style: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;}
.ls1_c00455{letter-spacing:0.000000px;}
.ls2_c00455{letter-spacing:0.242208px;}
.ls0_c00455{letter-spacing:0.359136px;}
.sc__c00455{text-shadow:none;}
.sc0_c00455{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00455{-webkit-text-stroke:0px transparent;}
.sc0_c00455{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00455{word-spacing:0.000000px;}
._0_c00455{margin-left:-1.060704px;}
._8_c00455{width:1.756800px;}
._2_c00455{width:2.851200px;}
._9_c00455{width:3.988800px;}
._6_c00455{width:4.996800px;}
._5_c00455{width:11.325600px;}
._b_c00455{width:12.535200px;}
._7_c00455{width:13.744800px;}
._d_c00455{width:14.781600px;}
._c_c00455{width:16.819200px;}
._1_c00455{width:21.240000px;}
._3_c00455{width:26.172000px;}
._4_c00455{width:27.496800px;}
._a_c00455{width:36.093600px;}
.fc2_c00455{color:transparent;}
.fc1_c00455{color:rgb(127,127,127);}
.fc0_c00455{color:rgb(0,0,0);}
.fs0_c00455{font-size:72.000000px;}
.fs1_c00455{font-size:83.520000px;}
.y0_c00455{bottom:0.000000px;}
.y5_c00455{bottom:1.440000px;}
.y1_c00455{bottom:12.735000px;}
.y3_c00455{bottom:45.405000px;}
.y4_c00455{bottom:56.700000px;}
.y21_c00455{bottom:110.924850px;}
.y20_c00455{bottom:146.924850px;}
.y1f_c00455{bottom:182.924850px;}
.y1e_c00455{bottom:218.924850px;}
.y1d_c00455{bottom:254.924850px;}
.y1c_c00455{bottom:290.924850px;}
.y1b_c00455{bottom:326.924850px;}
.y1a_c00455{bottom:362.924850px;}
.y19_c00455{bottom:398.924850px;}
.y18_c00455{bottom:434.924850px;}
.y17_c00455{bottom:470.924850px;}
.y16_c00455{bottom:506.924850px;}
.y15_c00455{bottom:542.924850px;}
.y14_c00455{bottom:578.924850px;}
.y13_c00455{bottom:614.924850px;}
.y12_c00455{bottom:650.924850px;}
.y11_c00455{bottom:686.924850px;}
.y10_c00455{bottom:722.924850px;}
.yf_c00455{bottom:758.924850px;}
.ye_c00455{bottom:794.924850px;}
.yd_c00455{bottom:830.924850px;}
.yc_c00455{bottom:866.924850px;}
.yb_c00455{bottom:902.924850px;}
.ya_c00455{bottom:938.924850px;}
.y9_c00455{bottom:974.924850px;}
.y8_c00455{bottom:1010.924850px;}
.y7_c00455{bottom:1046.924850px;}
.y6_c00455{bottom:1083.645000px;}
.y2_c00455{bottom:1165.005000px;}
.h4_c00455{height:17.280000px;}
.h6_c00455{height:70.628906px;}
.h3_c00455{height:70.664062px;}
.h5_c00455{height:81.929531px;}
.h2_c00455{height:1237.365000px;}
.h0_c00455{height:1262.835000px;}
.h1_c00455{height:1263.000000px;}
.w3_c00455{width:47.520000px;}
.w2_c00455{width:867.465000px;}
.w0_c00455{width:892.935000px;}
.w1_c00455{width:893.250000px;}
.x0_c00455{left:0.000000px;}
.x5_c00455{left:10.237500px;}
.x1_c00455{left:12.735000px;}
.x3_c00455{left:95.397000px;}
.x6_c00455{left:149.400150px;}
.x4_c00455{left:422.775000px;}
.x2_c00455{left:880.125000px;}
@media print{
.v0_c00455{vertical-align:0.000000pt;}
.ls1_c00455{letter-spacing:0.000000pt;}
.ls2_c00455{letter-spacing:0.215296pt;}
.ls0_c00455{letter-spacing:0.319232pt;}
.ws0_c00455{word-spacing:0.000000pt;}
._0_c00455{margin-left:-0.942848pt;}
._8_c00455{width:1.561600pt;}
._2_c00455{width:2.534400pt;}
._9_c00455{width:3.545600pt;}
._6_c00455{width:4.441600pt;}
._5_c00455{width:10.067200pt;}
._b_c00455{width:11.142400pt;}
._7_c00455{width:12.217600pt;}
._d_c00455{width:13.139200pt;}
._c_c00455{width:14.950400pt;}
._1_c00455{width:18.880000pt;}
._3_c00455{width:23.264000pt;}
._4_c00455{width:24.441600pt;}
._a_c00455{width:32.083200pt;}
.fs0_c00455{font-size:64.000000pt;}
.fs1_c00455{font-size:74.240000pt;}
.y0_c00455{bottom:0.000000pt;}
.y5_c00455{bottom:1.280000pt;}
.y1_c00455{bottom:11.320000pt;}
.y3_c00455{bottom:40.360000pt;}
.y4_c00455{bottom:50.400000pt;}
.y21_c00455{bottom:98.599867pt;}
.y20_c00455{bottom:130.599867pt;}
.y1f_c00455{bottom:162.599867pt;}
.y1e_c00455{bottom:194.599867pt;}
.y1d_c00455{bottom:226.599867pt;}
.y1c_c00455{bottom:258.599867pt;}
.y1b_c00455{bottom:290.599867pt;}
.y1a_c00455{bottom:322.599867pt;}
.y19_c00455{bottom:354.599867pt;}
.y18_c00455{bottom:386.599867pt;}
.y17_c00455{bottom:418.599867pt;}
.y16_c00455{bottom:450.599867pt;}
.y15_c00455{bottom:482.599867pt;}
.y14_c00455{bottom:514.599867pt;}
.y13_c00455{bottom:546.599867pt;}
.y12_c00455{bottom:578.599867pt;}
.y11_c00455{bottom:610.599867pt;}
.y10_c00455{bottom:642.599867pt;}
.yf_c00455{bottom:674.599867pt;}
.ye_c00455{bottom:706.599867pt;}
.yd_c00455{bottom:738.599867pt;}
.yc_c00455{bottom:770.599867pt;}
.yb_c00455{bottom:802.599867pt;}
.ya_c00455{bottom:834.599867pt;}
.y9_c00455{bottom:866.599867pt;}
.y8_c00455{bottom:898.599867pt;}
.y7_c00455{bottom:930.599867pt;}
.y6_c00455{bottom:963.240000pt;}
.y2_c00455{bottom:1035.560000pt;}
.h4_c00455{height:15.360000pt;}
.h6_c00455{height:62.781250pt;}
.h3_c00455{height:62.812500pt;}
.h5_c00455{height:72.826250pt;}
.h2_c00455{height:1099.880000pt;}
.h0_c00455{height:1122.520000pt;}
.h1_c00455{height:1122.666667pt;}
.w3_c00455{width:42.240000pt;}
.w2_c00455{width:771.080000pt;}
.w0_c00455{width:793.720000pt;}
.w1_c00455{width:794.000000pt;}
.x0_c00455{left:0.000000pt;}
.x5_c00455{left:9.100000pt;}
.x1_c00455{left:11.320000pt;}
.x3_c00455{left:84.797333pt;}
.x6_c00455{left:132.800133pt;}
.x4_c00455{left:375.800000pt;}
.x2_c00455{left:782.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_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_98ab50ccf17ead9a563b3338.woff2')format("woff");}.ff1_c00456{font-family:ff1_c00456;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00456;src:url('chunks/assets/font_1f2007f23611ed5c8720786f.woff2')format("woff");}.ff2_c00456{font-family:ff2_c00456;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.014400px;}
.ls0_c00456{letter-spacing:0.000000px;}
.sc__c00456{text-shadow:none;}
.sc0_c00456{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00456{-webkit-text-stroke:0px transparent;}
.sc0_c00456{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00456{word-spacing:0.000000px;}
._5_c00456{width:1.044000px;}
._8_c00456{width:2.678400px;}
._c_c00456{width:4.269600px;}
._a_c00456{width:5.407200px;}
._2_c00456{width:6.494400px;}
._7_c00456{width:7.819200px;}
._d_c00456{width:9.619200px;}
._4_c00456{width:10.663200px;}
._1_c00456{width:14.565600px;}
._6_c00456{width:16.488000px;}
._3_c00456{width:20.577600px;}
._b_c00456{width:22.795200px;}
._9_c00456{width:28.245600px;}
._0_c00456{width:98.546400px;}
.fc1_c00456{color:transparent;}
.fc0_c00456{color:rgb(0,0,0);}
.fs0_c00456{font-size:72.000000px;}
.y0_c00456{bottom:0.000000px;}
.y5_c00456{bottom:5.040000px;}
.y1_c00456{bottom:12.735000px;}
.y3_c00456{bottom:45.405000px;}
.y4_c00456{bottom:53.100000px;}
.y20_c00456{bottom:146.924850px;}
.y1f_c00456{bottom:182.924850px;}
.y1e_c00456{bottom:218.924850px;}
.y1d_c00456{bottom:254.924850px;}
.y1c_c00456{bottom:290.924850px;}
.y1b_c00456{bottom:326.924850px;}
.y1a_c00456{bottom:362.924850px;}
.y19_c00456{bottom:398.924850px;}
.y18_c00456{bottom:434.924850px;}
.y17_c00456{bottom:470.924850px;}
.y16_c00456{bottom:506.924850px;}
.y15_c00456{bottom:542.924850px;}
.y14_c00456{bottom:578.924850px;}
.y13_c00456{bottom:614.924850px;}
.y12_c00456{bottom:650.924850px;}
.y11_c00456{bottom:686.924850px;}
.y10_c00456{bottom:722.924850px;}
.yf_c00456{bottom:758.924850px;}
.ye_c00456{bottom:794.924850px;}
.yd_c00456{bottom:830.924850px;}
.yc_c00456{bottom:866.924850px;}
.yb_c00456{bottom:902.924850px;}
.ya_c00456{bottom:938.924850px;}
.y9_c00456{bottom:974.924850px;}
.y8_c00456{bottom:1010.924850px;}
.y7_c00456{bottom:1046.924850px;}
.y6_c00456{bottom:1082.924850px;}
.y2_c00456{bottom:1165.005000px;}
.h4_c00456{height:20.880000px;}
.h5_c00456{height:70.628906px;}
.h3_c00456{height:70.664062px;}
.h2_c00456{height:1237.365000px;}
.h0_c00456{height:1262.835000px;}
.h1_c00456{height:1263.000000px;}
.w3_c00456{width:27.000000px;}
.w2_c00456{width:867.465000px;}
.w0_c00456{width:892.935000px;}
.w1_c00456{width:893.250000px;}
.x0_c00456{left:0.000000px;}
.x1_c00456{left:12.735000px;}
.x3_c00456{left:95.397000px;}
.x5_c00456{left:149.400150px;}
.x4_c00456{left:432.855000px;}
.x2_c00456{left:880.125000px;}
@media print{
.v0_c00456{vertical-align:0.000000pt;}
.ls1_c00456{letter-spacing:-0.012800pt;}
.ls0_c00456{letter-spacing:0.000000pt;}
.ws0_c00456{word-spacing:0.000000pt;}
._5_c00456{width:0.928000pt;}
._8_c00456{width:2.380800pt;}
._c_c00456{width:3.795200pt;}
._a_c00456{width:4.806400pt;}
._2_c00456{width:5.772800pt;}
._7_c00456{width:6.950400pt;}
._d_c00456{width:8.550400pt;}
._4_c00456{width:9.478400pt;}
._1_c00456{width:12.947200pt;}
._6_c00456{width:14.656000pt;}
._3_c00456{width:18.291200pt;}
._b_c00456{width:20.262400pt;}
._9_c00456{width:25.107200pt;}
._0_c00456{width:87.596800pt;}
.fs0_c00456{font-size:64.000000pt;}
.y0_c00456{bottom:0.000000pt;}
.y5_c00456{bottom:4.480000pt;}
.y1_c00456{bottom:11.320000pt;}
.y3_c00456{bottom:40.360000pt;}
.y4_c00456{bottom:47.200000pt;}
.y20_c00456{bottom:130.599867pt;}
.y1f_c00456{bottom:162.599867pt;}
.y1e_c00456{bottom:194.599867pt;}
.y1d_c00456{bottom:226.599867pt;}
.y1c_c00456{bottom:258.599867pt;}
.y1b_c00456{bottom:290.599867pt;}
.y1a_c00456{bottom:322.599867pt;}
.y19_c00456{bottom:354.599867pt;}
.y18_c00456{bottom:386.599867pt;}
.y17_c00456{bottom:418.599867pt;}
.y16_c00456{bottom:450.599867pt;}
.y15_c00456{bottom:482.599867pt;}
.y14_c00456{bottom:514.599867pt;}
.y13_c00456{bottom:546.599867pt;}
.y12_c00456{bottom:578.599867pt;}
.y11_c00456{bottom:610.599867pt;}
.y10_c00456{bottom:642.599867pt;}
.yf_c00456{bottom:674.599867pt;}
.ye_c00456{bottom:706.599867pt;}
.yd_c00456{bottom:738.599867pt;}
.yc_c00456{bottom:770.599867pt;}
.yb_c00456{bottom:802.599867pt;}
.ya_c00456{bottom:834.599867pt;}
.y9_c00456{bottom:866.599867pt;}
.y8_c00456{bottom:898.599867pt;}
.y7_c00456{bottom:930.599867pt;}
.y6_c00456{bottom:962.599867pt;}
.y2_c00456{bottom:1035.560000pt;}
.h4_c00456{height:18.560000pt;}
.h5_c00456{height:62.781250pt;}
.h3_c00456{height:62.812500pt;}
.h2_c00456{height:1099.880000pt;}
.h0_c00456{height:1122.520000pt;}
.h1_c00456{height:1122.666667pt;}
.w3_c00456{width:24.000000pt;}
.w2_c00456{width:771.080000pt;}
.w0_c00456{width:793.720000pt;}
.w1_c00456{width:794.000000pt;}
.x0_c00456{left:0.000000pt;}
.x1_c00456{left:11.320000pt;}
.x3_c00456{left:84.797333pt;}
.x5_c00456{left:132.800133pt;}
.x4_c00456{left:384.760000pt;}
.x2_c00456{left:782.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_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_8d05af34d92fd4f0c97ff6d4.woff2')format("woff");}.ff1_c00457{font-family:ff1_c00457;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00457{letter-spacing:0.000000px;}
.sc__c00457{text-shadow:none;}
.sc0_c00457{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00457{-webkit-text-stroke:0px transparent;}
.sc0_c00457{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00457{word-spacing:0.000000px;}
._0_c00457{width:5.529600px;}
._1_c00457{width:6.868800px;}
.fc1_c00457{color:transparent;}
.fc0_c00457{color:rgb(0,0,0);}
.fs0_c00457{font-size:72.000000px;}
.y0_c00457{bottom:0.000000px;}
.y5_c00457{bottom:1.440000px;}
.y1_c00457{bottom:12.735000px;}
.y3_c00457{bottom:45.405000px;}
.y4_c00457{bottom:56.700000px;}
.yb_c00457{bottom:902.924850px;}
.ya_c00457{bottom:938.924850px;}
.y9_c00457{bottom:974.924850px;}
.y8_c00457{bottom:1010.924850px;}
.y7_c00457{bottom:1046.924850px;}
.y6_c00457{bottom:1082.924850px;}
.y2_c00457{bottom:1165.005000px;}
.h4_c00457{height:17.280000px;}
.h3_c00457{height:70.664062px;}
.h2_c00457{height:1237.365000px;}
.h0_c00457{height:1262.835000px;}
.h1_c00457{height:1263.000000px;}
.w3_c00457{width:47.520000px;}
.w2_c00457{width:867.465000px;}
.w0_c00457{width:892.935000px;}
.w1_c00457{width:893.250000px;}
.x0_c00457{left:0.000000px;}
.x5_c00457{left:10.237500px;}
.x1_c00457{left:12.735000px;}
.x3_c00457{left:95.397000px;}
.x6_c00457{left:149.400150px;}
.x4_c00457{left:422.775000px;}
.x2_c00457{left:880.125000px;}
@media print{
.v0_c00457{vertical-align:0.000000pt;}
.ls0_c00457{letter-spacing:0.000000pt;}
.ws0_c00457{word-spacing:0.000000pt;}
._0_c00457{width:4.915200pt;}
._1_c00457{width:6.105600pt;}
.fs0_c00457{font-size:64.000000pt;}
.y0_c00457{bottom:0.000000pt;}
.y5_c00457{bottom:1.280000pt;}
.y1_c00457{bottom:11.320000pt;}
.y3_c00457{bottom:40.360000pt;}
.y4_c00457{bottom:50.400000pt;}
.yb_c00457{bottom:802.599867pt;}
.ya_c00457{bottom:834.599867pt;}
.y9_c00457{bottom:866.599867pt;}
.y8_c00457{bottom:898.599867pt;}
.y7_c00457{bottom:930.599867pt;}
.y6_c00457{bottom:962.599867pt;}
.y2_c00457{bottom:1035.560000pt;}
.h4_c00457{height:15.360000pt;}
.h3_c00457{height:62.812500pt;}
.h2_c00457{height:1099.880000pt;}
.h0_c00457{height:1122.520000pt;}
.h1_c00457{height:1122.666667pt;}
.w3_c00457{width:42.240000pt;}
.w2_c00457{width:771.080000pt;}
.w0_c00457{width:793.720000pt;}
.w1_c00457{width:794.000000pt;}
.x0_c00457{left:0.000000pt;}
.x5_c00457{left:9.100000pt;}
.x1_c00457{left:11.320000pt;}
.x3_c00457{left:84.797333pt;}
.x6_c00457{left:132.800133pt;}
.x4_c00457{left:375.800000pt;}
.x2_c00457{left:782.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_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_a64fedec73e382b49bdde010.woff2')format("woff");}.ff1_c00458{font-family:ff1_c00458;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00458;src:url('chunks/assets/font_39c90b2ed569f38dfce05f94.woff2')format("woff");}.ff2_c00458{font-family:ff2_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:ff3_c00458;src:url('chunks/assets/font_6df38018586df8bfd6d0f434.woff2')format("woff");}.ff3_c00458{font-family:ff3_c00458;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1_c00458{vertical-align:-132.479400px;}
.v2_c00458{vertical-align:-77.759400px;}
.v0_c00458{vertical-align:0.000000px;}
.ls6_c00458{letter-spacing:-0.388800px;}
.lsd_c00458{letter-spacing:-0.014400px;}
.ls4_c00458{letter-spacing:0.000000px;}
.ls5_c00458{letter-spacing:0.203184px;}
.ls8_c00458{letter-spacing:0.298080px;}
.lsa_c00458{letter-spacing:0.324000px;}
.lsb_c00458{letter-spacing:0.479520px;}
.ls9_c00458{letter-spacing:0.524880px;}
.ls7_c00458{letter-spacing:0.602640px;}
.ls2_c00458{letter-spacing:0.648000px;}
.ls3_c00458{letter-spacing:0.712800px;}
.lsc_c00458{letter-spacing:0.874800px;}
.lse_c00458{letter-spacing:8.186400px;}
.ls1_c00458{letter-spacing:132.927000px;}
.ls0_c00458{letter-spacing:1268.469600px;}
.sc__c00458{text-shadow:none;}
.sc0_c00458{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00458{-webkit-text-stroke:0px transparent;}
.sc0_c00458{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00458{word-spacing:-30.083184px;}
.ws1_c00458{word-spacing:-19.051200px;}
.ws2_c00458{word-spacing:-16.524000px;}
.ws3_c00458{word-spacing:0.000000px;}
._7_c00458{margin-left:-8.280000px;}
._1_c00458{margin-left:-1.231200px;}
._0_c00458{width:1.166400px;}
._9_c00458{width:3.009600px;}
._8_c00458{width:4.075200px;}
._3_c00458{width:5.212800px;}
._5_c00458{width:7.200000px;}
._6_c00458{width:9.172800px;}
._2_c00458{width:19.512000px;}
._4_c00458{width:26.784000px;}
.fc1_c00458{color:transparent;}
.fc0_c00458{color:rgb(0,0,0);}
.fs3_c00458{font-size:64.800000px;}
.fs0_c00458{font-size:72.000000px;}
.fs2_c00458{font-size:77.760000px;}
.fs1_c00458{font-size:119.520000px;}
.y0_c00458{bottom:0.000000px;}
.y5_c00458{bottom:5.040000px;}
.y1_c00458{bottom:12.735000px;}
.y3_c00458{bottom:45.405000px;}
.y4_c00458{bottom:53.100000px;}
.y22_c00458{bottom:121.725000px;}
.y21_c00458{bottom:157.725000px;}
.y20_c00458{bottom:193.725000px;}
.y1f_c00458{bottom:229.725000px;}
.y1e_c00458{bottom:265.725000px;}
.y1d_c00458{bottom:301.725000px;}
.y1c_c00458{bottom:337.725000px;}
.y1b_c00458{bottom:373.725000px;}
.y1a_c00458{bottom:409.725000px;}
.y19_c00458{bottom:445.725000px;}
.y18_c00458{bottom:481.725000px;}
.y17_c00458{bottom:517.725000px;}
.y16_c00458{bottom:553.725000px;}
.y15_c00458{bottom:589.725000px;}
.y14_c00458{bottom:625.725000px;}
.y13_c00458{bottom:661.725000px;}
.y12_c00458{bottom:697.725000px;}
.y11_c00458{bottom:733.725000px;}
.y10_c00458{bottom:769.725000px;}
.yf_c00458{bottom:805.339800px;}
.ye_c00458{bottom:824.423400px;}
.yd_c00458{bottom:843.507000px;}
.yc_c00458{bottom:862.590600px;}
.yb_c00458{bottom:881.317800px;}
.ya_c00458{bottom:900.401400px;}
.y9_c00458{bottom:938.924850px;}
.y8_c00458{bottom:975.285000px;}
.y7_c00458{bottom:1010.924850px;}
.y6_c00458{bottom:1082.924850px;}
.y2_c00458{bottom:1165.005000px;}
.h4_c00458{height:20.880000px;}
.h6_c00458{height:63.566016px;}
.h3_c00458{height:70.664062px;}
.h5_c00458{height:78.367500px;}
.h2_c00458{height:1237.365000px;}
.h0_c00458{height:1262.835000px;}
.h1_c00458{height:1263.000000px;}
.w3_c00458{width:27.000000px;}
.w2_c00458{width:867.465000px;}
.w0_c00458{width:892.935000px;}
.w1_c00458{width:893.250000px;}
.x0_c00458{left:0.000000px;}
.x1_c00458{left:12.735000px;}
.x3_c00458{left:95.391300px;}
.x9_c00458{left:98.820300px;}
.x8_c00458{left:124.448700px;}
.x7_c00458{left:126.214500px;}
.x5_c00458{left:149.400150px;}
.xc_c00458{left:237.184500px;}
.xa_c00458{left:317.779500px;}
.x6_c00458{left:381.762000px;}
.x4_c00458{left:432.855000px;}
.xb_c00458{left:771.962700px;}
.x2_c00458{left:880.425300px;}
@media print{
.v1_c00458{vertical-align:-117.759467pt;}
.v2_c00458{vertical-align:-69.119467pt;}
.v0_c00458{vertical-align:0.000000pt;}
.ls6_c00458{letter-spacing:-0.345600pt;}
.lsd_c00458{letter-spacing:-0.012800pt;}
.ls4_c00458{letter-spacing:0.000000pt;}
.ls5_c00458{letter-spacing:0.180608pt;}
.ls8_c00458{letter-spacing:0.264960pt;}
.lsa_c00458{letter-spacing:0.288000pt;}
.lsb_c00458{letter-spacing:0.426240pt;}
.ls9_c00458{letter-spacing:0.466560pt;}
.ls7_c00458{letter-spacing:0.535680pt;}
.ls2_c00458{letter-spacing:0.576000pt;}
.ls3_c00458{letter-spacing:0.633600pt;}
.lsc_c00458{letter-spacing:0.777600pt;}
.lse_c00458{letter-spacing:7.276800pt;}
.ls1_c00458{letter-spacing:118.157333pt;}
.ls0_c00458{letter-spacing:1127.528533pt;}
.ws0_c00458{word-spacing:-26.740608pt;}
.ws1_c00458{word-spacing:-16.934400pt;}
.ws2_c00458{word-spacing:-14.688000pt;}
.ws3_c00458{word-spacing:0.000000pt;}
._7_c00458{margin-left:-7.360000pt;}
._1_c00458{margin-left:-1.094400pt;}
._0_c00458{width:1.036800pt;}
._9_c00458{width:2.675200pt;}
._8_c00458{width:3.622400pt;}
._3_c00458{width:4.633600pt;}
._5_c00458{width:6.400000pt;}
._6_c00458{width:8.153600pt;}
._2_c00458{width:17.344000pt;}
._4_c00458{width:23.808000pt;}
.fs3_c00458{font-size:57.600000pt;}
.fs0_c00458{font-size:64.000000pt;}
.fs2_c00458{font-size:69.120000pt;}
.fs1_c00458{font-size:106.240000pt;}
.y0_c00458{bottom:0.000000pt;}
.y5_c00458{bottom:4.480000pt;}
.y1_c00458{bottom:11.320000pt;}
.y3_c00458{bottom:40.360000pt;}
.y4_c00458{bottom:47.200000pt;}
.y22_c00458{bottom:108.200000pt;}
.y21_c00458{bottom:140.200000pt;}
.y20_c00458{bottom:172.200000pt;}
.y1f_c00458{bottom:204.200000pt;}
.y1e_c00458{bottom:236.200000pt;}
.y1d_c00458{bottom:268.200000pt;}
.y1c_c00458{bottom:300.200000pt;}
.y1b_c00458{bottom:332.200000pt;}
.y1a_c00458{bottom:364.200000pt;}
.y19_c00458{bottom:396.200000pt;}
.y18_c00458{bottom:428.200000pt;}
.y17_c00458{bottom:460.200000pt;}
.y16_c00458{bottom:492.200000pt;}
.y15_c00458{bottom:524.200000pt;}
.y14_c00458{bottom:556.200000pt;}
.y13_c00458{bottom:588.200000pt;}
.y12_c00458{bottom:620.200000pt;}
.y11_c00458{bottom:652.200000pt;}
.y10_c00458{bottom:684.200000pt;}
.yf_c00458{bottom:715.857600pt;}
.ye_c00458{bottom:732.820800pt;}
.yd_c00458{bottom:749.784000pt;}
.yc_c00458{bottom:766.747200pt;}
.yb_c00458{bottom:783.393600pt;}
.ya_c00458{bottom:800.356800pt;}
.y9_c00458{bottom:834.599867pt;}
.y8_c00458{bottom:866.920000pt;}
.y7_c00458{bottom:898.599867pt;}
.y6_c00458{bottom:962.599867pt;}
.y2_c00458{bottom:1035.560000pt;}
.h4_c00458{height:18.560000pt;}
.h6_c00458{height:56.503125pt;}
.h3_c00458{height:62.812500pt;}
.h5_c00458{height:69.660000pt;}
.h2_c00458{height:1099.880000pt;}
.h0_c00458{height:1122.520000pt;}
.h1_c00458{height:1122.666667pt;}
.w3_c00458{width:24.000000pt;}
.w2_c00458{width:771.080000pt;}
.w0_c00458{width:793.720000pt;}
.w1_c00458{width:794.000000pt;}
.x0_c00458{left:0.000000pt;}
.x1_c00458{left:11.320000pt;}
.x3_c00458{left:84.792267pt;}
.x9_c00458{left:87.840267pt;}
.x8_c00458{left:110.621067pt;}
.x7_c00458{left:112.190667pt;}
.x5_c00458{left:132.800133pt;}
.xc_c00458{left:210.830667pt;}
.xa_c00458{left:282.470667pt;}
.x6_c00458{left:339.344000pt;}
.x4_c00458{left:384.760000pt;}
.xb_c00458{left:686.189067pt;}
.x2_c00458{left:782.600267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f60ca37afced4cc24f599bd8.woff2')format("woff");}.ff1_c00459{font-family:ff1_c00459;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00459;src:url('chunks/assets/font_812c81d968d11eca222a5ad6.woff2')format("woff");}.ff2_c00459{font-family:ff2_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;}
.m0_c00459{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00459{vertical-align:0.000000px;}
.ls2_c00459{letter-spacing:-0.014400px;}
.ls1_c00459{letter-spacing:0.000000px;}
.ls0_c00459{letter-spacing:0.036000px;}
.ls3_c00459{letter-spacing:3.578400px;}
.sc__c00459{text-shadow:none;}
.sc0_c00459{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00459{-webkit-text-stroke:0px transparent;}
.sc0_c00459{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00459{word-spacing:-18.036000px;}
.ws1_c00459{word-spacing:-18.000000px;}
.ws2_c00459{word-spacing:0.000000px;}
._5_c00459{margin-left:-4.154400px;}
._4_c00459{margin-left:-3.045600px;}
._9_c00459{width:1.065600px;}
._2_c00459{width:2.224800px;}
._3_c00459{width:3.859200px;}
._1_c00459{width:4.968000px;}
._0_c00459{width:6.192000px;}
._6_c00459{width:10.317600px;}
._7_c00459{width:11.635200px;}
._8_c00459{width:19.130400px;}
._a_c00459{width:28.735200px;}
.fc1_c00459{color:transparent;}
.fc0_c00459{color:rgb(0,0,0);}
.fs0_c00459{font-size:72.000000px;}
.y0_c00459{bottom:0.000000px;}
.y5_c00459{bottom:1.440000px;}
.y1_c00459{bottom:12.735000px;}
.y3_c00459{bottom:45.405000px;}
.y4_c00459{bottom:56.700000px;}
.y20_c00459{bottom:146.924850px;}
.y1f_c00459{bottom:182.924850px;}
.y1e_c00459{bottom:218.924850px;}
.y1d_c00459{bottom:254.924850px;}
.y1c_c00459{bottom:290.924850px;}
.y1b_c00459{bottom:326.924850px;}
.y1a_c00459{bottom:362.924850px;}
.y19_c00459{bottom:398.924850px;}
.y18_c00459{bottom:434.924850px;}
.y17_c00459{bottom:470.924850px;}
.y16_c00459{bottom:506.924850px;}
.y15_c00459{bottom:542.924850px;}
.y14_c00459{bottom:578.924850px;}
.y13_c00459{bottom:614.924850px;}
.y12_c00459{bottom:650.924850px;}
.y11_c00459{bottom:686.924850px;}
.y10_c00459{bottom:722.924850px;}
.yf_c00459{bottom:758.924850px;}
.ye_c00459{bottom:794.924850px;}
.yd_c00459{bottom:830.924850px;}
.yc_c00459{bottom:866.924850px;}
.yb_c00459{bottom:902.924850px;}
.ya_c00459{bottom:938.924850px;}
.y9_c00459{bottom:974.924850px;}
.y8_c00459{bottom:1010.924850px;}
.y7_c00459{bottom:1046.924850px;}
.y6_c00459{bottom:1082.924850px;}
.y2_c00459{bottom:1164.285000px;}
.h4_c00459{height:17.280000px;}
.h3_c00459{height:70.664062px;}
.h2_c00459{height:1237.365000px;}
.h0_c00459{height:1262.835000px;}
.h1_c00459{height:1263.000000px;}
.w3_c00459{width:47.520000px;}
.w2_c00459{width:867.465000px;}
.w0_c00459{width:892.935000px;}
.w1_c00459{width:893.250000px;}
.x0_c00459{left:0.000000px;}
.x5_c00459{left:10.237500px;}
.x1_c00459{left:12.735000px;}
.x3_c00459{left:95.394300px;}
.x6_c00459{left:149.382150px;}
.x4_c00459{left:422.775000px;}
.x2_c00459{left:889.050300px;}
@media print{
.v0_c00459{vertical-align:0.000000pt;}
.ls2_c00459{letter-spacing:-0.012800pt;}
.ls1_c00459{letter-spacing:0.000000pt;}
.ls0_c00459{letter-spacing:0.032000pt;}
.ls3_c00459{letter-spacing:3.180800pt;}
.ws0_c00459{word-spacing:-16.032000pt;}
.ws1_c00459{word-spacing:-16.000000pt;}
.ws2_c00459{word-spacing:0.000000pt;}
._5_c00459{margin-left:-3.692800pt;}
._4_c00459{margin-left:-2.707200pt;}
._9_c00459{width:0.947200pt;}
._2_c00459{width:1.977600pt;}
._3_c00459{width:3.430400pt;}
._1_c00459{width:4.416000pt;}
._0_c00459{width:5.504000pt;}
._6_c00459{width:9.171200pt;}
._7_c00459{width:10.342400pt;}
._8_c00459{width:17.004800pt;}
._a_c00459{width:25.542400pt;}
.fs0_c00459{font-size:64.000000pt;}
.y0_c00459{bottom:0.000000pt;}
.y5_c00459{bottom:1.280000pt;}
.y1_c00459{bottom:11.320000pt;}
.y3_c00459{bottom:40.360000pt;}
.y4_c00459{bottom:50.400000pt;}
.y20_c00459{bottom:130.599867pt;}
.y1f_c00459{bottom:162.599867pt;}
.y1e_c00459{bottom:194.599867pt;}
.y1d_c00459{bottom:226.599867pt;}
.y1c_c00459{bottom:258.599867pt;}
.y1b_c00459{bottom:290.599867pt;}
.y1a_c00459{bottom:322.599867pt;}
.y19_c00459{bottom:354.599867pt;}
.y18_c00459{bottom:386.599867pt;}
.y17_c00459{bottom:418.599867pt;}
.y16_c00459{bottom:450.599867pt;}
.y15_c00459{bottom:482.599867pt;}
.y14_c00459{bottom:514.599867pt;}
.y13_c00459{bottom:546.599867pt;}
.y12_c00459{bottom:578.599867pt;}
.y11_c00459{bottom:610.599867pt;}
.y10_c00459{bottom:642.599867pt;}
.yf_c00459{bottom:674.599867pt;}
.ye_c00459{bottom:706.599867pt;}
.yd_c00459{bottom:738.599867pt;}
.yc_c00459{bottom:770.599867pt;}
.yb_c00459{bottom:802.599867pt;}
.ya_c00459{bottom:834.599867pt;}
.y9_c00459{bottom:866.599867pt;}
.y8_c00459{bottom:898.599867pt;}
.y7_c00459{bottom:930.599867pt;}
.y6_c00459{bottom:962.599867pt;}
.y2_c00459{bottom:1034.920000pt;}
.h4_c00459{height:15.360000pt;}
.h3_c00459{height:62.812500pt;}
.h2_c00459{height:1099.880000pt;}
.h0_c00459{height:1122.520000pt;}
.h1_c00459{height:1122.666667pt;}
.w3_c00459{width:42.240000pt;}
.w2_c00459{width:771.080000pt;}
.w0_c00459{width:793.720000pt;}
.w1_c00459{width:794.000000pt;}
.x0_c00459{left:0.000000pt;}
.x5_c00459{left:9.100000pt;}
.x1_c00459{left:11.320000pt;}
.x3_c00459{left:84.794933pt;}
.x6_c00459{left:132.784133pt;}
.x4_c00459{left:375.800000pt;}
.x2_c00459{left:790.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3d241b43e656ff6d40c4e6f3.woff2')format("woff");}.ff1_c00460{font-family:ff1_c00460;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00460{letter-spacing:0.000000px;}
.sc__c00460{text-shadow:none;}
.sc0_c00460{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00460{-webkit-text-stroke:0px transparent;}
.sc0_c00460{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00460{word-spacing:0.000000px;}
._1_c00460{width:1.540800px;}
._3_c00460{width:3.081600px;}
._0_c00460{width:4.377600px;}
._7_c00460{width:5.601600px;}
._6_c00460{width:6.840000px;}
._8_c00460{width:8.359200px;}
._2_c00460{width:10.058400px;}
._4_c00460{width:13.766400px;}
._5_c00460{width:15.588000px;}
._9_c00460{width:16.855200px;}
._a_c00460{width:21.218400px;}
.fc1_c00460{color:transparent;}
.fc0_c00460{color:rgb(0,0,0);}
.fs0_c00460{font-size:72.000000px;}
.y0_c00460{bottom:0.000000px;}
.y5_c00460{bottom:5.040000px;}
.y1_c00460{bottom:12.735000px;}
.y3_c00460{bottom:45.405000px;}
.y4_c00460{bottom:53.100000px;}
.y21_c00460{bottom:110.924850px;}
.y20_c00460{bottom:146.924850px;}
.y1f_c00460{bottom:182.924850px;}
.y1e_c00460{bottom:218.924850px;}
.y1d_c00460{bottom:254.924850px;}
.y1c_c00460{bottom:290.924850px;}
.y1b_c00460{bottom:326.924850px;}
.y1a_c00460{bottom:362.924850px;}
.y19_c00460{bottom:398.924850px;}
.y18_c00460{bottom:434.924850px;}
.y17_c00460{bottom:470.924850px;}
.y16_c00460{bottom:506.924850px;}
.y15_c00460{bottom:542.924850px;}
.y14_c00460{bottom:578.924850px;}
.y13_c00460{bottom:614.924850px;}
.y12_c00460{bottom:650.924850px;}
.y11_c00460{bottom:686.924850px;}
.y10_c00460{bottom:722.924850px;}
.yf_c00460{bottom:758.924850px;}
.ye_c00460{bottom:794.924850px;}
.yd_c00460{bottom:830.924850px;}
.yc_c00460{bottom:866.924850px;}
.yb_c00460{bottom:902.924850px;}
.ya_c00460{bottom:938.924850px;}
.y9_c00460{bottom:974.924850px;}
.y8_c00460{bottom:1010.924850px;}
.y7_c00460{bottom:1046.924850px;}
.y6_c00460{bottom:1082.924850px;}
.y2_c00460{bottom:1165.005000px;}
.h4_c00460{height:20.880000px;}
.h3_c00460{height:70.664062px;}
.h2_c00460{height:1237.365000px;}
.h0_c00460{height:1262.835000px;}
.h1_c00460{height:1263.000000px;}
.w3_c00460{width:27.000000px;}
.w2_c00460{width:867.465000px;}
.w0_c00460{width:892.935000px;}
.w1_c00460{width:893.250000px;}
.x0_c00460{left:0.000000px;}
.x1_c00460{left:12.735000px;}
.x3_c00460{left:95.391300px;}
.x5_c00460{left:149.400150px;}
.x4_c00460{left:432.855000px;}
.x2_c00460{left:880.425300px;}
@media print{
.v0_c00460{vertical-align:0.000000pt;}
.ls0_c00460{letter-spacing:0.000000pt;}
.ws0_c00460{word-spacing:0.000000pt;}
._1_c00460{width:1.369600pt;}
._3_c00460{width:2.739200pt;}
._0_c00460{width:3.891200pt;}
._7_c00460{width:4.979200pt;}
._6_c00460{width:6.080000pt;}
._8_c00460{width:7.430400pt;}
._2_c00460{width:8.940800pt;}
._4_c00460{width:12.236800pt;}
._5_c00460{width:13.856000pt;}
._9_c00460{width:14.982400pt;}
._a_c00460{width:18.860800pt;}
.fs0_c00460{font-size:64.000000pt;}
.y0_c00460{bottom:0.000000pt;}
.y5_c00460{bottom:4.480000pt;}
.y1_c00460{bottom:11.320000pt;}
.y3_c00460{bottom:40.360000pt;}
.y4_c00460{bottom:47.200000pt;}
.y21_c00460{bottom:98.599867pt;}
.y20_c00460{bottom:130.599867pt;}
.y1f_c00460{bottom:162.599867pt;}
.y1e_c00460{bottom:194.599867pt;}
.y1d_c00460{bottom:226.599867pt;}
.y1c_c00460{bottom:258.599867pt;}
.y1b_c00460{bottom:290.599867pt;}
.y1a_c00460{bottom:322.599867pt;}
.y19_c00460{bottom:354.599867pt;}
.y18_c00460{bottom:386.599867pt;}
.y17_c00460{bottom:418.599867pt;}
.y16_c00460{bottom:450.599867pt;}
.y15_c00460{bottom:482.599867pt;}
.y14_c00460{bottom:514.599867pt;}
.y13_c00460{bottom:546.599867pt;}
.y12_c00460{bottom:578.599867pt;}
.y11_c00460{bottom:610.599867pt;}
.y10_c00460{bottom:642.599867pt;}
.yf_c00460{bottom:674.599867pt;}
.ye_c00460{bottom:706.599867pt;}
.yd_c00460{bottom:738.599867pt;}
.yc_c00460{bottom:770.599867pt;}
.yb_c00460{bottom:802.599867pt;}
.ya_c00460{bottom:834.599867pt;}
.y9_c00460{bottom:866.599867pt;}
.y8_c00460{bottom:898.599867pt;}
.y7_c00460{bottom:930.599867pt;}
.y6_c00460{bottom:962.599867pt;}
.y2_c00460{bottom:1035.560000pt;}
.h4_c00460{height:18.560000pt;}
.h3_c00460{height:62.812500pt;}
.h2_c00460{height:1099.880000pt;}
.h0_c00460{height:1122.520000pt;}
.h1_c00460{height:1122.666667pt;}
.w3_c00460{width:24.000000pt;}
.w2_c00460{width:771.080000pt;}
.w0_c00460{width:793.720000pt;}
.w1_c00460{width:794.000000pt;}
.x0_c00460{left:0.000000pt;}
.x1_c00460{left:11.320000pt;}
.x3_c00460{left:84.792267pt;}
.x5_c00460{left:132.800133pt;}
.x4_c00460{left:384.760000pt;}
.x2_c00460{left:782.600267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_3b3b6cc42ccaa92a46d58127.woff2')format("woff");}.ff1_c00461{font-family:ff1_c00461;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00461{letter-spacing:0.000000px;}
.ls1_c00461{letter-spacing:0.014400px;}
.sc__c00461{text-shadow:none;}
.sc0_c00461{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00461{-webkit-text-stroke:0px transparent;}
.sc0_c00461{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00461{word-spacing:0.000000px;}
._0_c00461{width:1.224000px;}
._9_c00461{width:2.570400px;}
._a_c00461{width:3.794400px;}
._6_c00461{width:4.852800px;}
._4_c00461{width:6.451200px;}
._1_c00461{width:8.352000px;}
._2_c00461{width:10.058400px;}
._7_c00461{width:11.224800px;}
._8_c00461{width:13.730400px;}
._3_c00461{width:14.889600px;}
._5_c00461{width:28.296000px;}
._b_c00461{width:30.045600px;}
.fc1_c00461{color:transparent;}
.fc0_c00461{color:rgb(0,0,0);}
.fs0_c00461{font-size:72.000000px;}
.y0_c00461{bottom:0.000000px;}
.y5_c00461{bottom:1.440000px;}
.y1_c00461{bottom:12.735000px;}
.y3_c00461{bottom:45.405000px;}
.y4_c00461{bottom:56.700000px;}
.y21_c00461{bottom:110.924850px;}
.y20_c00461{bottom:146.924850px;}
.y1f_c00461{bottom:182.924850px;}
.y1e_c00461{bottom:218.924850px;}
.y1d_c00461{bottom:254.924850px;}
.y1c_c00461{bottom:290.924850px;}
.y1b_c00461{bottom:326.924850px;}
.y1a_c00461{bottom:362.924850px;}
.y19_c00461{bottom:398.924850px;}
.y18_c00461{bottom:434.924850px;}
.y17_c00461{bottom:470.924850px;}
.y16_c00461{bottom:506.924850px;}
.y15_c00461{bottom:542.924850px;}
.y14_c00461{bottom:578.924850px;}
.y13_c00461{bottom:614.924850px;}
.y12_c00461{bottom:650.924850px;}
.y11_c00461{bottom:686.924850px;}
.y10_c00461{bottom:722.924850px;}
.yf_c00461{bottom:758.924850px;}
.ye_c00461{bottom:794.924850px;}
.yd_c00461{bottom:830.924850px;}
.yc_c00461{bottom:866.924850px;}
.yb_c00461{bottom:902.924850px;}
.ya_c00461{bottom:938.924850px;}
.y9_c00461{bottom:974.924850px;}
.y8_c00461{bottom:1010.924850px;}
.y7_c00461{bottom:1046.924850px;}
.y6_c00461{bottom:1082.924850px;}
.y2_c00461{bottom:1164.285000px;}
.h4_c00461{height:17.280000px;}
.h3_c00461{height:70.664062px;}
.h2_c00461{height:1237.365000px;}
.h0_c00461{height:1262.835000px;}
.h1_c00461{height:1263.000000px;}
.w3_c00461{width:47.520000px;}
.w2_c00461{width:867.465000px;}
.w0_c00461{width:892.935000px;}
.w1_c00461{width:893.250000px;}
.x0_c00461{left:0.000000px;}
.x5_c00461{left:10.237500px;}
.x1_c00461{left:12.735000px;}
.x3_c00461{left:95.394300px;}
.x6_c00461{left:149.400150px;}
.x4_c00461{left:422.775000px;}
.x2_c00461{left:889.050300px;}
@media print{
.v0_c00461{vertical-align:0.000000pt;}
.ls0_c00461{letter-spacing:0.000000pt;}
.ls1_c00461{letter-spacing:0.012800pt;}
.ws0_c00461{word-spacing:0.000000pt;}
._0_c00461{width:1.088000pt;}
._9_c00461{width:2.284800pt;}
._a_c00461{width:3.372800pt;}
._6_c00461{width:4.313600pt;}
._4_c00461{width:5.734400pt;}
._1_c00461{width:7.424000pt;}
._2_c00461{width:8.940800pt;}
._7_c00461{width:9.977600pt;}
._8_c00461{width:12.204800pt;}
._3_c00461{width:13.235200pt;}
._5_c00461{width:25.152000pt;}
._b_c00461{width:26.707200pt;}
.fs0_c00461{font-size:64.000000pt;}
.y0_c00461{bottom:0.000000pt;}
.y5_c00461{bottom:1.280000pt;}
.y1_c00461{bottom:11.320000pt;}
.y3_c00461{bottom:40.360000pt;}
.y4_c00461{bottom:50.400000pt;}
.y21_c00461{bottom:98.599867pt;}
.y20_c00461{bottom:130.599867pt;}
.y1f_c00461{bottom:162.599867pt;}
.y1e_c00461{bottom:194.599867pt;}
.y1d_c00461{bottom:226.599867pt;}
.y1c_c00461{bottom:258.599867pt;}
.y1b_c00461{bottom:290.599867pt;}
.y1a_c00461{bottom:322.599867pt;}
.y19_c00461{bottom:354.599867pt;}
.y18_c00461{bottom:386.599867pt;}
.y17_c00461{bottom:418.599867pt;}
.y16_c00461{bottom:450.599867pt;}
.y15_c00461{bottom:482.599867pt;}
.y14_c00461{bottom:514.599867pt;}
.y13_c00461{bottom:546.599867pt;}
.y12_c00461{bottom:578.599867pt;}
.y11_c00461{bottom:610.599867pt;}
.y10_c00461{bottom:642.599867pt;}
.yf_c00461{bottom:674.599867pt;}
.ye_c00461{bottom:706.599867pt;}
.yd_c00461{bottom:738.599867pt;}
.yc_c00461{bottom:770.599867pt;}
.yb_c00461{bottom:802.599867pt;}
.ya_c00461{bottom:834.599867pt;}
.y9_c00461{bottom:866.599867pt;}
.y8_c00461{bottom:898.599867pt;}
.y7_c00461{bottom:930.599867pt;}
.y6_c00461{bottom:962.599867pt;}
.y2_c00461{bottom:1034.920000pt;}
.h4_c00461{height:15.360000pt;}
.h3_c00461{height:62.812500pt;}
.h2_c00461{height:1099.880000pt;}
.h0_c00461{height:1122.520000pt;}
.h1_c00461{height:1122.666667pt;}
.w3_c00461{width:42.240000pt;}
.w2_c00461{width:771.080000pt;}
.w0_c00461{width:793.720000pt;}
.w1_c00461{width:794.000000pt;}
.x0_c00461{left:0.000000pt;}
.x5_c00461{left:9.100000pt;}
.x1_c00461{left:11.320000pt;}
.x3_c00461{left:84.794933pt;}
.x6_c00461{left:132.800133pt;}
.x4_c00461{left:375.800000pt;}
.x2_c00461{left:790.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_0992d7ea8f805a0fa8978191.woff2')format("woff");}.ff1_c00462{font-family:ff1_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;}
.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;}
.ls2_c00462{letter-spacing:-0.014400px;}
.ls0_c00462{letter-spacing:0.000000px;}
.ls1_c00462{letter-spacing:7.264800px;}
.sc__c00462{text-shadow:none;}
.sc0_c00462{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00462{-webkit-text-stroke:0px transparent;}
.sc0_c00462{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00462{word-spacing:-17.985600px;}
.ws1_c00462{word-spacing:0.000000px;}
._1_c00462{margin-left:-6.897600px;}
._7_c00462{width:1.684800px;}
._b_c00462{width:2.750400px;}
._5_c00462{width:3.758400px;}
._9_c00462{width:5.673600px;}
._0_c00462{width:7.164000px;}
._2_c00462{width:8.222400px;}
._e_c00462{width:9.633600px;}
._d_c00462{width:12.477600px;}
._4_c00462{width:13.572000px;}
._8_c00462{width:14.997600px;}
._6_c00462{width:24.753600px;}
._c_c00462{width:25.804800px;}
._a_c00462{width:27.583200px;}
._3_c00462{width:32.997600px;}
.fc1_c00462{color:transparent;}
.fc0_c00462{color:rgb(0,0,0);}
.fs0_c00462{font-size:72.000000px;}
.y0_c00462{bottom:0.000000px;}
.y5_c00462{bottom:5.040000px;}
.y1_c00462{bottom:12.735000px;}
.y3_c00462{bottom:45.405000px;}
.y4_c00462{bottom:53.100000px;}
.y20_c00462{bottom:146.924850px;}
.y1f_c00462{bottom:182.924850px;}
.y1e_c00462{bottom:218.924850px;}
.y1d_c00462{bottom:254.924850px;}
.y1c_c00462{bottom:290.924850px;}
.y1b_c00462{bottom:326.924850px;}
.y1a_c00462{bottom:362.924850px;}
.y19_c00462{bottom:398.924850px;}
.y18_c00462{bottom:434.924850px;}
.y17_c00462{bottom:470.924850px;}
.y16_c00462{bottom:506.924850px;}
.y15_c00462{bottom:542.924850px;}
.y14_c00462{bottom:578.924850px;}
.y13_c00462{bottom:614.924850px;}
.y12_c00462{bottom:650.924850px;}
.y11_c00462{bottom:686.924850px;}
.y10_c00462{bottom:722.924850px;}
.yf_c00462{bottom:758.924850px;}
.ye_c00462{bottom:794.924850px;}
.yd_c00462{bottom:830.924850px;}
.yc_c00462{bottom:866.924850px;}
.yb_c00462{bottom:902.924850px;}
.ya_c00462{bottom:938.924850px;}
.y9_c00462{bottom:974.924850px;}
.y8_c00462{bottom:1010.924850px;}
.y7_c00462{bottom:1046.924850px;}
.y6_c00462{bottom:1082.924850px;}
.y2_c00462{bottom:1165.005000px;}
.h4_c00462{height:20.880000px;}
.h3_c00462{height:70.664062px;}
.h2_c00462{height:1237.365000px;}
.h0_c00462{height:1262.835000px;}
.h1_c00462{height:1263.000000px;}
.w3_c00462{width:27.000000px;}
.w2_c00462{width:867.465000px;}
.w0_c00462{width:892.935000px;}
.w1_c00462{width:893.250000px;}
.x0_c00462{left:0.000000px;}
.x1_c00462{left:12.735000px;}
.x3_c00462{left:95.391300px;}
.x5_c00462{left:149.418150px;}
.x4_c00462{left:432.855000px;}
.x2_c00462{left:880.425300px;}
@media print{
.v0_c00462{vertical-align:0.000000pt;}
.ls2_c00462{letter-spacing:-0.012800pt;}
.ls0_c00462{letter-spacing:0.000000pt;}
.ls1_c00462{letter-spacing:6.457600pt;}
.ws0_c00462{word-spacing:-15.987200pt;}
.ws1_c00462{word-spacing:0.000000pt;}
._1_c00462{margin-left:-6.131200pt;}
._7_c00462{width:1.497600pt;}
._b_c00462{width:2.444800pt;}
._5_c00462{width:3.340800pt;}
._9_c00462{width:5.043200pt;}
._0_c00462{width:6.368000pt;}
._2_c00462{width:7.308800pt;}
._e_c00462{width:8.563200pt;}
._d_c00462{width:11.091200pt;}
._4_c00462{width:12.064000pt;}
._8_c00462{width:13.331200pt;}
._6_c00462{width:22.003200pt;}
._c_c00462{width:22.937600pt;}
._a_c00462{width:24.518400pt;}
._3_c00462{width:29.331200pt;}
.fs0_c00462{font-size:64.000000pt;}
.y0_c00462{bottom:0.000000pt;}
.y5_c00462{bottom:4.480000pt;}
.y1_c00462{bottom:11.320000pt;}
.y3_c00462{bottom:40.360000pt;}
.y4_c00462{bottom:47.200000pt;}
.y20_c00462{bottom:130.599867pt;}
.y1f_c00462{bottom:162.599867pt;}
.y1e_c00462{bottom:194.599867pt;}
.y1d_c00462{bottom:226.599867pt;}
.y1c_c00462{bottom:258.599867pt;}
.y1b_c00462{bottom:290.599867pt;}
.y1a_c00462{bottom:322.599867pt;}
.y19_c00462{bottom:354.599867pt;}
.y18_c00462{bottom:386.599867pt;}
.y17_c00462{bottom:418.599867pt;}
.y16_c00462{bottom:450.599867pt;}
.y15_c00462{bottom:482.599867pt;}
.y14_c00462{bottom:514.599867pt;}
.y13_c00462{bottom:546.599867pt;}
.y12_c00462{bottom:578.599867pt;}
.y11_c00462{bottom:610.599867pt;}
.y10_c00462{bottom:642.599867pt;}
.yf_c00462{bottom:674.599867pt;}
.ye_c00462{bottom:706.599867pt;}
.yd_c00462{bottom:738.599867pt;}
.yc_c00462{bottom:770.599867pt;}
.yb_c00462{bottom:802.599867pt;}
.ya_c00462{bottom:834.599867pt;}
.y9_c00462{bottom:866.599867pt;}
.y8_c00462{bottom:898.599867pt;}
.y7_c00462{bottom:930.599867pt;}
.y6_c00462{bottom:962.599867pt;}
.y2_c00462{bottom:1035.560000pt;}
.h4_c00462{height:18.560000pt;}
.h3_c00462{height:62.812500pt;}
.h2_c00462{height:1099.880000pt;}
.h0_c00462{height:1122.520000pt;}
.h1_c00462{height:1122.666667pt;}
.w3_c00462{width:24.000000pt;}
.w2_c00462{width:771.080000pt;}
.w0_c00462{width:793.720000pt;}
.w1_c00462{width:794.000000pt;}
.x0_c00462{left:0.000000pt;}
.x1_c00462{left:11.320000pt;}
.x3_c00462{left:84.792267pt;}
.x5_c00462{left:132.816133pt;}
.x4_c00462{left:384.760000pt;}
.x2_c00462{left:782.600267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_ceb11362e0b40a82abcd85fd.woff2')format("woff");}.ff1_c00463{font-family:ff1_c00463;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00463;src:url('chunks/assets/font_6240819e9d8f6969d290fe9c.woff2')format("woff");}.ff2_c00463{font-family:ff2_c00463;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00463{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00463{vertical-align:0.000000px;}
.ls0_c00463{letter-spacing:0.000000px;}
.ls1_c00463{letter-spacing:0.014400px;}
.sc__c00463{text-shadow:none;}
.sc0_c00463{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00463{-webkit-text-stroke:0px transparent;}
.sc0_c00463{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00463{word-spacing:0.000000px;}
._3_c00463{width:1.951200px;}
._1_c00463{width:3.240000px;}
._2_c00463{width:4.860000px;}
._8_c00463{width:6.645600px;}
._5_c00463{width:8.992800px;}
._0_c00463{width:10.497600px;}
._4_c00463{width:11.664000px;}
._7_c00463{width:13.492800px;}
._6_c00463{width:16.466400px;}
.fc1_c00463{color:transparent;}
.fc0_c00463{color:rgb(0,0,0);}
.fs0_c00463{font-size:72.000000px;}
.y0_c00463{bottom:0.000000px;}
.y5_c00463{bottom:1.440000px;}
.y1_c00463{bottom:12.735000px;}
.y3_c00463{bottom:45.405000px;}
.y4_c00463{bottom:56.700000px;}
.y21_c00463{bottom:110.924850px;}
.y20_c00463{bottom:146.924850px;}
.y1f_c00463{bottom:182.924850px;}
.y1e_c00463{bottom:218.924850px;}
.y1d_c00463{bottom:254.924850px;}
.y1c_c00463{bottom:290.924850px;}
.y1b_c00463{bottom:326.924850px;}
.y1a_c00463{bottom:362.924850px;}
.y19_c00463{bottom:398.924850px;}
.y18_c00463{bottom:434.924850px;}
.y17_c00463{bottom:470.924850px;}
.y16_c00463{bottom:506.924850px;}
.y15_c00463{bottom:542.924850px;}
.y14_c00463{bottom:578.924850px;}
.y13_c00463{bottom:614.924850px;}
.y12_c00463{bottom:650.924850px;}
.y11_c00463{bottom:686.924850px;}
.y10_c00463{bottom:722.924850px;}
.yf_c00463{bottom:758.924850px;}
.ye_c00463{bottom:794.924850px;}
.yd_c00463{bottom:830.924850px;}
.yc_c00463{bottom:866.924850px;}
.yb_c00463{bottom:902.924850px;}
.ya_c00463{bottom:938.924850px;}
.y9_c00463{bottom:974.924850px;}
.y8_c00463{bottom:1010.924850px;}
.y7_c00463{bottom:1046.924850px;}
.y6_c00463{bottom:1082.924850px;}
.y2_c00463{bottom:1164.285000px;}
.h4_c00463{height:17.280000px;}
.h3_c00463{height:70.664062px;}
.h2_c00463{height:1237.365000px;}
.h0_c00463{height:1262.835000px;}
.h1_c00463{height:1263.000000px;}
.w3_c00463{width:47.520000px;}
.w2_c00463{width:867.465000px;}
.w0_c00463{width:892.935000px;}
.w1_c00463{width:893.250000px;}
.x0_c00463{left:0.000000px;}
.x5_c00463{left:10.237500px;}
.x1_c00463{left:12.735000px;}
.x3_c00463{left:95.394300px;}
.x6_c00463{left:149.400150px;}
.x4_c00463{left:422.775000px;}
.x2_c00463{left:889.050300px;}
@media print{
.v0_c00463{vertical-align:0.000000pt;}
.ls0_c00463{letter-spacing:0.000000pt;}
.ls1_c00463{letter-spacing:0.012800pt;}
.ws0_c00463{word-spacing:0.000000pt;}
._3_c00463{width:1.734400pt;}
._1_c00463{width:2.880000pt;}
._2_c00463{width:4.320000pt;}
._8_c00463{width:5.907200pt;}
._5_c00463{width:7.993600pt;}
._0_c00463{width:9.331200pt;}
._4_c00463{width:10.368000pt;}
._7_c00463{width:11.993600pt;}
._6_c00463{width:14.636800pt;}
.fs0_c00463{font-size:64.000000pt;}
.y0_c00463{bottom:0.000000pt;}
.y5_c00463{bottom:1.280000pt;}
.y1_c00463{bottom:11.320000pt;}
.y3_c00463{bottom:40.360000pt;}
.y4_c00463{bottom:50.400000pt;}
.y21_c00463{bottom:98.599867pt;}
.y20_c00463{bottom:130.599867pt;}
.y1f_c00463{bottom:162.599867pt;}
.y1e_c00463{bottom:194.599867pt;}
.y1d_c00463{bottom:226.599867pt;}
.y1c_c00463{bottom:258.599867pt;}
.y1b_c00463{bottom:290.599867pt;}
.y1a_c00463{bottom:322.599867pt;}
.y19_c00463{bottom:354.599867pt;}
.y18_c00463{bottom:386.599867pt;}
.y17_c00463{bottom:418.599867pt;}
.y16_c00463{bottom:450.599867pt;}
.y15_c00463{bottom:482.599867pt;}
.y14_c00463{bottom:514.599867pt;}
.y13_c00463{bottom:546.599867pt;}
.y12_c00463{bottom:578.599867pt;}
.y11_c00463{bottom:610.599867pt;}
.y10_c00463{bottom:642.599867pt;}
.yf_c00463{bottom:674.599867pt;}
.ye_c00463{bottom:706.599867pt;}
.yd_c00463{bottom:738.599867pt;}
.yc_c00463{bottom:770.599867pt;}
.yb_c00463{bottom:802.599867pt;}
.ya_c00463{bottom:834.599867pt;}
.y9_c00463{bottom:866.599867pt;}
.y8_c00463{bottom:898.599867pt;}
.y7_c00463{bottom:930.599867pt;}
.y6_c00463{bottom:962.599867pt;}
.y2_c00463{bottom:1034.920000pt;}
.h4_c00463{height:15.360000pt;}
.h3_c00463{height:62.812500pt;}
.h2_c00463{height:1099.880000pt;}
.h0_c00463{height:1122.520000pt;}
.h1_c00463{height:1122.666667pt;}
.w3_c00463{width:42.240000pt;}
.w2_c00463{width:771.080000pt;}
.w0_c00463{width:793.720000pt;}
.w1_c00463{width:794.000000pt;}
.x0_c00463{left:0.000000pt;}
.x5_c00463{left:9.100000pt;}
.x1_c00463{left:11.320000pt;}
.x3_c00463{left:84.794933pt;}
.x6_c00463{left:132.800133pt;}
.x4_c00463{left:375.800000pt;}
.x2_c00463{left:790.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_771b3ef66ba35e5c24acedb4.woff2')format("woff");}.ff1_c00464{font-family:ff1_c00464;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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.014400px;}
.ls0_c00464{letter-spacing:0.000000px;}
.sc__c00464{text-shadow:none;}
.sc0_c00464{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00464{-webkit-text-stroke:0px transparent;}
.sc0_c00464{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00464{word-spacing:0.000000px;}
._1_c00464{width:1.504800px;}
._4_c00464{width:3.045600px;}
._3_c00464{width:4.168800px;}
._5_c00464{width:5.464800px;}
._2_c00464{width:6.746400px;}
._7_c00464{width:7.869600px;}
._8_c00464{width:9.208800px;}
._6_c00464{width:10.454400px;}
._9_c00464{width:12.211200px;}
._a_c00464{width:14.796000px;}
._0_c00464{width:22.896000px;}
.fc1_c00464{color:transparent;}
.fc0_c00464{color:rgb(0,0,0);}
.fs0_c00464{font-size:72.000000px;}
.y0_c00464{bottom:0.000000px;}
.y5_c00464{bottom:5.040000px;}
.y1_c00464{bottom:12.735000px;}
.y3_c00464{bottom:45.405000px;}
.y4_c00464{bottom:53.100000px;}
.y21_c00464{bottom:110.924850px;}
.y20_c00464{bottom:146.924850px;}
.y1f_c00464{bottom:182.924850px;}
.y1e_c00464{bottom:218.924850px;}
.y1d_c00464{bottom:254.924850px;}
.y1c_c00464{bottom:290.924850px;}
.y1b_c00464{bottom:326.924850px;}
.y1a_c00464{bottom:362.924850px;}
.y19_c00464{bottom:398.924850px;}
.y18_c00464{bottom:434.924850px;}
.y17_c00464{bottom:470.924850px;}
.y16_c00464{bottom:506.924850px;}
.y15_c00464{bottom:542.924850px;}
.y14_c00464{bottom:578.924850px;}
.y13_c00464{bottom:614.924850px;}
.y12_c00464{bottom:650.924850px;}
.y11_c00464{bottom:686.924850px;}
.y10_c00464{bottom:722.924850px;}
.yf_c00464{bottom:758.924850px;}
.ye_c00464{bottom:794.924850px;}
.yd_c00464{bottom:830.924850px;}
.yc_c00464{bottom:866.924850px;}
.yb_c00464{bottom:902.924850px;}
.ya_c00464{bottom:938.924850px;}
.y9_c00464{bottom:974.924850px;}
.y8_c00464{bottom:1010.924850px;}
.y7_c00464{bottom:1046.924850px;}
.y6_c00464{bottom:1082.924850px;}
.y2_c00464{bottom:1165.005000px;}
.h4_c00464{height:20.880000px;}
.h3_c00464{height:70.664062px;}
.h2_c00464{height:1237.365000px;}
.h0_c00464{height:1262.835000px;}
.h1_c00464{height:1263.000000px;}
.w3_c00464{width:27.000000px;}
.w2_c00464{width:867.465000px;}
.w0_c00464{width:892.935000px;}
.w1_c00464{width:893.250000px;}
.x0_c00464{left:0.000000px;}
.x1_c00464{left:12.735000px;}
.x3_c00464{left:95.391300px;}
.x5_c00464{left:149.400150px;}
.x4_c00464{left:432.855000px;}
.x2_c00464{left:880.425300px;}
@media print{
.v0_c00464{vertical-align:0.000000pt;}
.ls1_c00464{letter-spacing:-0.012800pt;}
.ls0_c00464{letter-spacing:0.000000pt;}
.ws0_c00464{word-spacing:0.000000pt;}
._1_c00464{width:1.337600pt;}
._4_c00464{width:2.707200pt;}
._3_c00464{width:3.705600pt;}
._5_c00464{width:4.857600pt;}
._2_c00464{width:5.996800pt;}
._7_c00464{width:6.995200pt;}
._8_c00464{width:8.185600pt;}
._6_c00464{width:9.292800pt;}
._9_c00464{width:10.854400pt;}
._a_c00464{width:13.152000pt;}
._0_c00464{width:20.352000pt;}
.fs0_c00464{font-size:64.000000pt;}
.y0_c00464{bottom:0.000000pt;}
.y5_c00464{bottom:4.480000pt;}
.y1_c00464{bottom:11.320000pt;}
.y3_c00464{bottom:40.360000pt;}
.y4_c00464{bottom:47.200000pt;}
.y21_c00464{bottom:98.599867pt;}
.y20_c00464{bottom:130.599867pt;}
.y1f_c00464{bottom:162.599867pt;}
.y1e_c00464{bottom:194.599867pt;}
.y1d_c00464{bottom:226.599867pt;}
.y1c_c00464{bottom:258.599867pt;}
.y1b_c00464{bottom:290.599867pt;}
.y1a_c00464{bottom:322.599867pt;}
.y19_c00464{bottom:354.599867pt;}
.y18_c00464{bottom:386.599867pt;}
.y17_c00464{bottom:418.599867pt;}
.y16_c00464{bottom:450.599867pt;}
.y15_c00464{bottom:482.599867pt;}
.y14_c00464{bottom:514.599867pt;}
.y13_c00464{bottom:546.599867pt;}
.y12_c00464{bottom:578.599867pt;}
.y11_c00464{bottom:610.599867pt;}
.y10_c00464{bottom:642.599867pt;}
.yf_c00464{bottom:674.599867pt;}
.ye_c00464{bottom:706.599867pt;}
.yd_c00464{bottom:738.599867pt;}
.yc_c00464{bottom:770.599867pt;}
.yb_c00464{bottom:802.599867pt;}
.ya_c00464{bottom:834.599867pt;}
.y9_c00464{bottom:866.599867pt;}
.y8_c00464{bottom:898.599867pt;}
.y7_c00464{bottom:930.599867pt;}
.y6_c00464{bottom:962.599867pt;}
.y2_c00464{bottom:1035.560000pt;}
.h4_c00464{height:18.560000pt;}
.h3_c00464{height:62.812500pt;}
.h2_c00464{height:1099.880000pt;}
.h0_c00464{height:1122.520000pt;}
.h1_c00464{height:1122.666667pt;}
.w3_c00464{width:24.000000pt;}
.w2_c00464{width:771.080000pt;}
.w0_c00464{width:793.720000pt;}
.w1_c00464{width:794.000000pt;}
.x0_c00464{left:0.000000pt;}
.x1_c00464{left:11.320000pt;}
.x3_c00464{left:84.792267pt;}
.x5_c00464{left:132.800133pt;}
.x4_c00464{left:384.760000pt;}
.x2_c00464{left:782.600267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_35ddc1f4ed403cf02bb9e870.woff2')format("woff");}.ff1_c00465{font-family:ff1_c00465;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00465;src:url('chunks/assets/font_bc074382b10bc36c5786d01b.woff2')format("woff");}.ff2_c00465{font-family:ff2_c00465;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:ff3_c00465;src:url('chunks/assets/font_9c886deb7d90b83afaa324d1.woff2')format("woff");}.ff3_c00465{font-family:ff3_c00465;line-height:1.284180;font-style: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;}
.ls3_c00465{letter-spacing:-0.014400px;}
.ls2_c00465{letter-spacing:0.000000px;}
.ls1_c00465{letter-spacing:0.014400px;}
.ls0_c00465{letter-spacing:9.921600px;}
.sc__c00465{text-shadow:none;}
.sc0_c00465{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00465{-webkit-text-stroke:0px transparent;}
.sc0_c00465{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00465{word-spacing:-18.014400px;}
.ws1_c00465{word-spacing:0.000000px;}
._9_c00465{width:1.634400px;}
._1_c00465{width:2.851200px;}
._6_c00465{width:4.968000px;}
._3_c00465{width:6.199200px;}
._4_c00465{width:7.488000px;}
._0_c00465{width:8.668800px;}
._8_c00465{width:10.051200px;}
._5_c00465{width:11.505600px;}
._7_c00465{width:15.033600px;}
._a_c00465{width:16.768800px;}
._2_c00465{width:19.749600px;}
.fc1_c00465{color:transparent;}
.fc0_c00465{color:rgb(0,0,0);}
.fs0_c00465{font-size:72.000000px;}
.y0_c00465{bottom:0.000000px;}
.y5_c00465{bottom:1.440000px;}
.y1_c00465{bottom:12.735000px;}
.y3_c00465{bottom:45.405000px;}
.y4_c00465{bottom:56.700000px;}
.y21_c00465{bottom:110.924850px;}
.y20_c00465{bottom:146.924850px;}
.y1f_c00465{bottom:182.924850px;}
.y1e_c00465{bottom:218.924850px;}
.y1d_c00465{bottom:254.924850px;}
.y1c_c00465{bottom:290.924850px;}
.y1b_c00465{bottom:326.924850px;}
.y1a_c00465{bottom:362.924850px;}
.y19_c00465{bottom:398.924850px;}
.y18_c00465{bottom:434.924850px;}
.y17_c00465{bottom:470.924850px;}
.y16_c00465{bottom:506.924850px;}
.y15_c00465{bottom:542.924850px;}
.y14_c00465{bottom:578.924850px;}
.y13_c00465{bottom:614.924850px;}
.y12_c00465{bottom:650.924850px;}
.y11_c00465{bottom:686.924850px;}
.y10_c00465{bottom:722.924850px;}
.yf_c00465{bottom:758.924850px;}
.ye_c00465{bottom:794.924850px;}
.yd_c00465{bottom:830.924850px;}
.yc_c00465{bottom:866.924850px;}
.yb_c00465{bottom:902.924850px;}
.ya_c00465{bottom:938.924850px;}
.y9_c00465{bottom:974.924850px;}
.y8_c00465{bottom:1010.924850px;}
.y7_c00465{bottom:1046.924850px;}
.y6_c00465{bottom:1082.924850px;}
.y2_c00465{bottom:1164.285000px;}
.h4_c00465{height:17.280000px;}
.h6_c00465{height:70.628906px;}
.h3_c00465{height:70.664062px;}
.h5_c00465{height:74.953125px;}
.h2_c00465{height:1237.365000px;}
.h0_c00465{height:1262.835000px;}
.h1_c00465{height:1263.000000px;}
.w3_c00465{width:47.520000px;}
.w2_c00465{width:867.465000px;}
.w0_c00465{width:892.935000px;}
.w1_c00465{width:893.250000px;}
.x0_c00465{left:0.000000px;}
.x5_c00465{left:10.237500px;}
.x1_c00465{left:12.735000px;}
.x3_c00465{left:95.394300px;}
.x6_c00465{left:149.400150px;}
.x4_c00465{left:422.775000px;}
.x2_c00465{left:889.050300px;}
@media print{
.v0_c00465{vertical-align:0.000000pt;}
.ls3_c00465{letter-spacing:-0.012800pt;}
.ls2_c00465{letter-spacing:0.000000pt;}
.ls1_c00465{letter-spacing:0.012800pt;}
.ls0_c00465{letter-spacing:8.819200pt;}
.ws0_c00465{word-spacing:-16.012800pt;}
.ws1_c00465{word-spacing:0.000000pt;}
._9_c00465{width:1.452800pt;}
._1_c00465{width:2.534400pt;}
._6_c00465{width:4.416000pt;}
._3_c00465{width:5.510400pt;}
._4_c00465{width:6.656000pt;}
._0_c00465{width:7.705600pt;}
._8_c00465{width:8.934400pt;}
._5_c00465{width:10.227200pt;}
._7_c00465{width:13.363200pt;}
._a_c00465{width:14.905600pt;}
._2_c00465{width:17.555200pt;}
.fs0_c00465{font-size:64.000000pt;}
.y0_c00465{bottom:0.000000pt;}
.y5_c00465{bottom:1.280000pt;}
.y1_c00465{bottom:11.320000pt;}
.y3_c00465{bottom:40.360000pt;}
.y4_c00465{bottom:50.400000pt;}
.y21_c00465{bottom:98.599867pt;}
.y20_c00465{bottom:130.599867pt;}
.y1f_c00465{bottom:162.599867pt;}
.y1e_c00465{bottom:194.599867pt;}
.y1d_c00465{bottom:226.599867pt;}
.y1c_c00465{bottom:258.599867pt;}
.y1b_c00465{bottom:290.599867pt;}
.y1a_c00465{bottom:322.599867pt;}
.y19_c00465{bottom:354.599867pt;}
.y18_c00465{bottom:386.599867pt;}
.y17_c00465{bottom:418.599867pt;}
.y16_c00465{bottom:450.599867pt;}
.y15_c00465{bottom:482.599867pt;}
.y14_c00465{bottom:514.599867pt;}
.y13_c00465{bottom:546.599867pt;}
.y12_c00465{bottom:578.599867pt;}
.y11_c00465{bottom:610.599867pt;}
.y10_c00465{bottom:642.599867pt;}
.yf_c00465{bottom:674.599867pt;}
.ye_c00465{bottom:706.599867pt;}
.yd_c00465{bottom:738.599867pt;}
.yc_c00465{bottom:770.599867pt;}
.yb_c00465{bottom:802.599867pt;}
.ya_c00465{bottom:834.599867pt;}
.y9_c00465{bottom:866.599867pt;}
.y8_c00465{bottom:898.599867pt;}
.y7_c00465{bottom:930.599867pt;}
.y6_c00465{bottom:962.599867pt;}
.y2_c00465{bottom:1034.920000pt;}
.h4_c00465{height:15.360000pt;}
.h6_c00465{height:62.781250pt;}
.h3_c00465{height:62.812500pt;}
.h5_c00465{height:66.625000pt;}
.h2_c00465{height:1099.880000pt;}
.h0_c00465{height:1122.520000pt;}
.h1_c00465{height:1122.666667pt;}
.w3_c00465{width:42.240000pt;}
.w2_c00465{width:771.080000pt;}
.w0_c00465{width:793.720000pt;}
.w1_c00465{width:794.000000pt;}
.x0_c00465{left:0.000000pt;}
.x5_c00465{left:9.100000pt;}
.x1_c00465{left:11.320000pt;}
.x3_c00465{left:84.794933pt;}
.x6_c00465{left:132.800133pt;}
.x4_c00465{left:375.800000pt;}
.x2_c00465{left:790.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_1258ed26126898551a9adb5b.woff2')format("woff");}.ff1_c00466{font-family:ff1_c00466;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00466;src:url('chunks/assets/font_3770c2460e1fe29f438d6674.woff2')format("woff");}.ff2_c00466{font-family:ff2_c00466;line-height:1.284180;font-style: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;}
.ls1_c00466{letter-spacing:-0.014400px;}
.ls0_c00466{letter-spacing:0.000000px;}
.ls2_c00466{letter-spacing:17.236800px;}
.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:0.000000px;}
._4_c00466{margin-left:-16.912800px;}
._6_c00466{width:1.209600px;}
._5_c00466{width:2.433600px;}
._9_c00466{width:4.089600px;}
._a_c00466{width:5.097600px;}
._3_c00466{width:6.134400px;}
._1_c00466{width:7.164000px;}
._7_c00466{width:8.992800px;}
._c_c00466{width:10.339200px;}
._b_c00466{width:13.737600px;}
._d_c00466{width:15.336000px;}
._2_c00466{width:16.668000px;}
._8_c00466{width:22.449600px;}
._0_c00466{width:31.327200px;}
.fc1_c00466{color:transparent;}
.fc0_c00466{color:rgb(0,0,0);}
.fs0_c00466{font-size:72.000000px;}
.y0_c00466{bottom:0.000000px;}
.y5_c00466{bottom:5.040000px;}
.y1_c00466{bottom:12.735000px;}
.y3_c00466{bottom:45.405000px;}
.y4_c00466{bottom:53.100000px;}
.y20_c00466{bottom:146.924850px;}
.y1f_c00466{bottom:182.924850px;}
.y1e_c00466{bottom:218.924850px;}
.y1d_c00466{bottom:254.924850px;}
.y1c_c00466{bottom:290.924850px;}
.y1b_c00466{bottom:326.924850px;}
.y1a_c00466{bottom:362.924850px;}
.y19_c00466{bottom:398.924850px;}
.y18_c00466{bottom:434.924850px;}
.y17_c00466{bottom:470.924850px;}
.y16_c00466{bottom:506.924850px;}
.y15_c00466{bottom:542.924850px;}
.y14_c00466{bottom:578.924850px;}
.y13_c00466{bottom:614.924850px;}
.y12_c00466{bottom:650.924850px;}
.y11_c00466{bottom:686.924850px;}
.y10_c00466{bottom:722.924850px;}
.yf_c00466{bottom:758.924850px;}
.ye_c00466{bottom:794.924850px;}
.yd_c00466{bottom:830.924850px;}
.yc_c00466{bottom:866.924850px;}
.yb_c00466{bottom:902.924850px;}
.ya_c00466{bottom:938.924850px;}
.y9_c00466{bottom:974.924850px;}
.y8_c00466{bottom:1010.924850px;}
.y7_c00466{bottom:1046.924850px;}
.y6_c00466{bottom:1082.924850px;}
.y2_c00466{bottom:1165.005000px;}
.h4_c00466{height:20.880000px;}
.h3_c00466{height:70.664062px;}
.h2_c00466{height:1237.365000px;}
.h0_c00466{height:1262.835000px;}
.h1_c00466{height:1263.000000px;}
.w3_c00466{width:27.000000px;}
.w2_c00466{width:867.465000px;}
.w0_c00466{width:892.935000px;}
.w1_c00466{width:893.250000px;}
.x0_c00466{left:0.000000px;}
.x1_c00466{left:12.735000px;}
.x3_c00466{left:95.391300px;}
.x5_c00466{left:149.400150px;}
.x4_c00466{left:432.855000px;}
.x2_c00466{left:880.425300px;}
@media print{
.v0_c00466{vertical-align:0.000000pt;}
.ls1_c00466{letter-spacing:-0.012800pt;}
.ls0_c00466{letter-spacing:0.000000pt;}
.ls2_c00466{letter-spacing:15.321600pt;}
.ws0_c00466{word-spacing:0.000000pt;}
._4_c00466{margin-left:-15.033600pt;}
._6_c00466{width:1.075200pt;}
._5_c00466{width:2.163200pt;}
._9_c00466{width:3.635200pt;}
._a_c00466{width:4.531200pt;}
._3_c00466{width:5.452800pt;}
._1_c00466{width:6.368000pt;}
._7_c00466{width:7.993600pt;}
._c_c00466{width:9.190400pt;}
._b_c00466{width:12.211200pt;}
._d_c00466{width:13.632000pt;}
._2_c00466{width:14.816000pt;}
._8_c00466{width:19.955200pt;}
._0_c00466{width:27.846400pt;}
.fs0_c00466{font-size:64.000000pt;}
.y0_c00466{bottom:0.000000pt;}
.y5_c00466{bottom:4.480000pt;}
.y1_c00466{bottom:11.320000pt;}
.y3_c00466{bottom:40.360000pt;}
.y4_c00466{bottom:47.200000pt;}
.y20_c00466{bottom:130.599867pt;}
.y1f_c00466{bottom:162.599867pt;}
.y1e_c00466{bottom:194.599867pt;}
.y1d_c00466{bottom:226.599867pt;}
.y1c_c00466{bottom:258.599867pt;}
.y1b_c00466{bottom:290.599867pt;}
.y1a_c00466{bottom:322.599867pt;}
.y19_c00466{bottom:354.599867pt;}
.y18_c00466{bottom:386.599867pt;}
.y17_c00466{bottom:418.599867pt;}
.y16_c00466{bottom:450.599867pt;}
.y15_c00466{bottom:482.599867pt;}
.y14_c00466{bottom:514.599867pt;}
.y13_c00466{bottom:546.599867pt;}
.y12_c00466{bottom:578.599867pt;}
.y11_c00466{bottom:610.599867pt;}
.y10_c00466{bottom:642.599867pt;}
.yf_c00466{bottom:674.599867pt;}
.ye_c00466{bottom:706.599867pt;}
.yd_c00466{bottom:738.599867pt;}
.yc_c00466{bottom:770.599867pt;}
.yb_c00466{bottom:802.599867pt;}
.ya_c00466{bottom:834.599867pt;}
.y9_c00466{bottom:866.599867pt;}
.y8_c00466{bottom:898.599867pt;}
.y7_c00466{bottom:930.599867pt;}
.y6_c00466{bottom:962.599867pt;}
.y2_c00466{bottom:1035.560000pt;}
.h4_c00466{height:18.560000pt;}
.h3_c00466{height:62.812500pt;}
.h2_c00466{height:1099.880000pt;}
.h0_c00466{height:1122.520000pt;}
.h1_c00466{height:1122.666667pt;}
.w3_c00466{width:24.000000pt;}
.w2_c00466{width:771.080000pt;}
.w0_c00466{width:793.720000pt;}
.w1_c00466{width:794.000000pt;}
.x0_c00466{left:0.000000pt;}
.x1_c00466{left:11.320000pt;}
.x3_c00466{left:84.792267pt;}
.x5_c00466{left:132.800133pt;}
.x4_c00466{left:384.760000pt;}
.x2_c00466{left:782.600267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d4aa251729b8ca75fb75c350.woff2')format("woff");}.ff1_c00467{font-family:ff1_c00467;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00467;src:url('chunks/assets/font_592a7fa9878515f760c9f7c3.woff2')format("woff");}.ff2_c00467{font-family:ff2_c00467;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00467{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00467{vertical-align:0.000000px;}
.ls4_c00467{letter-spacing:-0.014400px;}
.ls1_c00467{letter-spacing:0.000000px;}
.ls0_c00467{letter-spacing:0.036000px;}
.ls5_c00467{letter-spacing:5.673600px;}
.ls2_c00467{letter-spacing:13.564800px;}
.ls3_c00467{letter-spacing:15.084000px;}
.sc__c00467{text-shadow:none;}
.sc0_c00467{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00467{-webkit-text-stroke:0px transparent;}
.sc0_c00467{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00467{word-spacing:-18.036000px;}
.ws1_c00467{word-spacing:0.000000px;}
._7_c00467{margin-left:-15.120000px;}
._1_c00467{margin-left:-13.932000px;}
._c_c00467{margin-left:-5.126400px;}
._2_c00467{width:3.240000px;}
._9_c00467{width:4.363200px;}
._a_c00467{width:5.616000px;}
._d_c00467{width:7.192800px;}
._5_c00467{width:8.575200px;}
._8_c00467{width:12.556800px;}
._0_c00467{width:13.615200px;}
._6_c00467{width:15.120000px;}
._b_c00467{width:16.718400px;}
._4_c00467{width:31.536000px;}
._3_c00467{width:32.544000px;}
.fc1_c00467{color:transparent;}
.fc0_c00467{color:rgb(0,0,0);}
.fs0_c00467{font-size:72.000000px;}
.y0_c00467{bottom:0.000000px;}
.y5_c00467{bottom:1.440000px;}
.y1_c00467{bottom:12.735000px;}
.y3_c00467{bottom:45.405000px;}
.y4_c00467{bottom:56.700000px;}
.y21_c00467{bottom:110.924850px;}
.y20_c00467{bottom:146.924850px;}
.y1f_c00467{bottom:182.924850px;}
.y1e_c00467{bottom:218.924850px;}
.y1d_c00467{bottom:254.924850px;}
.y1c_c00467{bottom:290.924850px;}
.y1b_c00467{bottom:326.924850px;}
.y1a_c00467{bottom:362.924850px;}
.y19_c00467{bottom:398.924850px;}
.y18_c00467{bottom:434.924850px;}
.y17_c00467{bottom:470.924850px;}
.y16_c00467{bottom:506.924850px;}
.y15_c00467{bottom:542.924850px;}
.y14_c00467{bottom:578.924850px;}
.y13_c00467{bottom:614.924850px;}
.y12_c00467{bottom:650.924850px;}
.y11_c00467{bottom:686.924850px;}
.y10_c00467{bottom:722.924850px;}
.yf_c00467{bottom:758.924850px;}
.ye_c00467{bottom:794.924850px;}
.yd_c00467{bottom:830.924850px;}
.yc_c00467{bottom:866.924850px;}
.yb_c00467{bottom:902.924850px;}
.ya_c00467{bottom:938.924850px;}
.y9_c00467{bottom:974.924850px;}
.y8_c00467{bottom:1010.924850px;}
.y7_c00467{bottom:1046.924850px;}
.y6_c00467{bottom:1082.924850px;}
.y2_c00467{bottom:1164.285000px;}
.h4_c00467{height:17.280000px;}
.h5_c00467{height:70.628906px;}
.h3_c00467{height:70.664062px;}
.h2_c00467{height:1237.365000px;}
.h0_c00467{height:1262.835000px;}
.h1_c00467{height:1263.000000px;}
.w3_c00467{width:47.520000px;}
.w2_c00467{width:867.465000px;}
.w0_c00467{width:892.935000px;}
.w1_c00467{width:893.250000px;}
.x0_c00467{left:0.000000px;}
.x5_c00467{left:10.237500px;}
.x1_c00467{left:12.735000px;}
.x3_c00467{left:95.394300px;}
.x6_c00467{left:149.400150px;}
.x4_c00467{left:422.775000px;}
.x2_c00467{left:889.050300px;}
@media print{
.v0_c00467{vertical-align:0.000000pt;}
.ls4_c00467{letter-spacing:-0.012800pt;}
.ls1_c00467{letter-spacing:0.000000pt;}
.ls0_c00467{letter-spacing:0.032000pt;}
.ls5_c00467{letter-spacing:5.043200pt;}
.ls2_c00467{letter-spacing:12.057600pt;}
.ls3_c00467{letter-spacing:13.408000pt;}
.ws0_c00467{word-spacing:-16.032000pt;}
.ws1_c00467{word-spacing:0.000000pt;}
._7_c00467{margin-left:-13.440000pt;}
._1_c00467{margin-left:-12.384000pt;}
._c_c00467{margin-left:-4.556800pt;}
._2_c00467{width:2.880000pt;}
._9_c00467{width:3.878400pt;}
._a_c00467{width:4.992000pt;}
._d_c00467{width:6.393600pt;}
._5_c00467{width:7.622400pt;}
._8_c00467{width:11.161600pt;}
._0_c00467{width:12.102400pt;}
._6_c00467{width:13.440000pt;}
._b_c00467{width:14.860800pt;}
._4_c00467{width:28.032000pt;}
._3_c00467{width:28.928000pt;}
.fs0_c00467{font-size:64.000000pt;}
.y0_c00467{bottom:0.000000pt;}
.y5_c00467{bottom:1.280000pt;}
.y1_c00467{bottom:11.320000pt;}
.y3_c00467{bottom:40.360000pt;}
.y4_c00467{bottom:50.400000pt;}
.y21_c00467{bottom:98.599867pt;}
.y20_c00467{bottom:130.599867pt;}
.y1f_c00467{bottom:162.599867pt;}
.y1e_c00467{bottom:194.599867pt;}
.y1d_c00467{bottom:226.599867pt;}
.y1c_c00467{bottom:258.599867pt;}
.y1b_c00467{bottom:290.599867pt;}
.y1a_c00467{bottom:322.599867pt;}
.y19_c00467{bottom:354.599867pt;}
.y18_c00467{bottom:386.599867pt;}
.y17_c00467{bottom:418.599867pt;}
.y16_c00467{bottom:450.599867pt;}
.y15_c00467{bottom:482.599867pt;}
.y14_c00467{bottom:514.599867pt;}
.y13_c00467{bottom:546.599867pt;}
.y12_c00467{bottom:578.599867pt;}
.y11_c00467{bottom:610.599867pt;}
.y10_c00467{bottom:642.599867pt;}
.yf_c00467{bottom:674.599867pt;}
.ye_c00467{bottom:706.599867pt;}
.yd_c00467{bottom:738.599867pt;}
.yc_c00467{bottom:770.599867pt;}
.yb_c00467{bottom:802.599867pt;}
.ya_c00467{bottom:834.599867pt;}
.y9_c00467{bottom:866.599867pt;}
.y8_c00467{bottom:898.599867pt;}
.y7_c00467{bottom:930.599867pt;}
.y6_c00467{bottom:962.599867pt;}
.y2_c00467{bottom:1034.920000pt;}
.h4_c00467{height:15.360000pt;}
.h5_c00467{height:62.781250pt;}
.h3_c00467{height:62.812500pt;}
.h2_c00467{height:1099.880000pt;}
.h0_c00467{height:1122.520000pt;}
.h1_c00467{height:1122.666667pt;}
.w3_c00467{width:42.240000pt;}
.w2_c00467{width:771.080000pt;}
.w0_c00467{width:793.720000pt;}
.w1_c00467{width:794.000000pt;}
.x0_c00467{left:0.000000pt;}
.x5_c00467{left:9.100000pt;}
.x1_c00467{left:11.320000pt;}
.x3_c00467{left:84.794933pt;}
.x6_c00467{left:132.800133pt;}
.x4_c00467{left:375.800000pt;}
.x2_c00467{left:790.266933pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_d71a9d94eed988d870888866.woff2')format("woff");}.ff1_c00468{font-family:ff1_c00468;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00468{letter-spacing:0.000000px;}
.ls0_c00468{letter-spacing:0.007200px;}
.sc__c00468{text-shadow:none;}
.sc0_c00468{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00468{-webkit-text-stroke:0px transparent;}
.sc0_c00468{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00468{word-spacing:0.000000px;}
._6_c00468{margin-left:-1.108800px;}
._0_c00468{width:1.915200px;}
._8_c00468{width:4.089600px;}
._c_c00468{width:5.198400px;}
._9_c00468{width:7.070400px;}
._2_c00468{width:8.092800px;}
._7_c00468{width:9.532800px;}
._3_c00468{width:10.641600px;}
._1_c00468{width:11.664000px;}
._5_c00468{width:16.185600px;}
._4_c00468{width:21.578400px;}
._a_c00468{width:22.608000px;}
._b_c00468{width:29.498400px;}
.fc1_c00468{color:transparent;}
.fc0_c00468{color:rgb(0,0,0);}
.fs0_c00468{font-size:72.000000px;}
.y0_c00468{bottom:0.000000px;}
.y5_c00468{bottom:5.040000px;}
.y1_c00468{bottom:12.735000px;}
.y3_c00468{bottom:45.405000px;}
.y4_c00468{bottom:53.100000px;}
.y17_c00468{bottom:470.924850px;}
.y16_c00468{bottom:506.924850px;}
.y15_c00468{bottom:542.924850px;}
.y14_c00468{bottom:578.924850px;}
.y13_c00468{bottom:614.924850px;}
.y12_c00468{bottom:650.924850px;}
.y11_c00468{bottom:686.924850px;}
.y10_c00468{bottom:722.924850px;}
.yf_c00468{bottom:758.924850px;}
.ye_c00468{bottom:794.924850px;}
.yd_c00468{bottom:830.924850px;}
.yc_c00468{bottom:866.924850px;}
.yb_c00468{bottom:902.924850px;}
.ya_c00468{bottom:938.924850px;}
.y9_c00468{bottom:974.924850px;}
.y8_c00468{bottom:1010.924850px;}
.y7_c00468{bottom:1046.924850px;}
.y6_c00468{bottom:1082.924850px;}
.y2_c00468{bottom:1165.005000px;}
.h4_c00468{height:20.880000px;}
.h3_c00468{height:70.664062px;}
.h2_c00468{height:1237.365000px;}
.h0_c00468{height:1262.835000px;}
.h1_c00468{height:1263.000000px;}
.w3_c00468{width:27.000000px;}
.w2_c00468{width:867.465000px;}
.w0_c00468{width:892.935000px;}
.w1_c00468{width:893.250000px;}
.x0_c00468{left:0.000000px;}
.x1_c00468{left:12.735000px;}
.x3_c00468{left:95.391300px;}
.x5_c00468{left:149.400150px;}
.x4_c00468{left:432.855000px;}
.x2_c00468{left:880.425300px;}
@media print{
.v0_c00468{vertical-align:0.000000pt;}
.ls1_c00468{letter-spacing:0.000000pt;}
.ls0_c00468{letter-spacing:0.006400pt;}
.ws0_c00468{word-spacing:0.000000pt;}
._6_c00468{margin-left:-0.985600pt;}
._0_c00468{width:1.702400pt;}
._8_c00468{width:3.635200pt;}
._c_c00468{width:4.620800pt;}
._9_c00468{width:6.284800pt;}
._2_c00468{width:7.193600pt;}
._7_c00468{width:8.473600pt;}
._3_c00468{width:9.459200pt;}
._1_c00468{width:10.368000pt;}
._5_c00468{width:14.387200pt;}
._4_c00468{width:19.180800pt;}
._a_c00468{width:20.096000pt;}
._b_c00468{width:26.220800pt;}
.fs0_c00468{font-size:64.000000pt;}
.y0_c00468{bottom:0.000000pt;}
.y5_c00468{bottom:4.480000pt;}
.y1_c00468{bottom:11.320000pt;}
.y3_c00468{bottom:40.360000pt;}
.y4_c00468{bottom:47.200000pt;}
.y17_c00468{bottom:418.599867pt;}
.y16_c00468{bottom:450.599867pt;}
.y15_c00468{bottom:482.599867pt;}
.y14_c00468{bottom:514.599867pt;}
.y13_c00468{bottom:546.599867pt;}
.y12_c00468{bottom:578.599867pt;}
.y11_c00468{bottom:610.599867pt;}
.y10_c00468{bottom:642.599867pt;}
.yf_c00468{bottom:674.599867pt;}
.ye_c00468{bottom:706.599867pt;}
.yd_c00468{bottom:738.599867pt;}
.yc_c00468{bottom:770.599867pt;}
.yb_c00468{bottom:802.599867pt;}
.ya_c00468{bottom:834.599867pt;}
.y9_c00468{bottom:866.599867pt;}
.y8_c00468{bottom:898.599867pt;}
.y7_c00468{bottom:930.599867pt;}
.y6_c00468{bottom:962.599867pt;}
.y2_c00468{bottom:1035.560000pt;}
.h4_c00468{height:18.560000pt;}
.h3_c00468{height:62.812500pt;}
.h2_c00468{height:1099.880000pt;}
.h0_c00468{height:1122.520000pt;}
.h1_c00468{height:1122.666667pt;}
.w3_c00468{width:24.000000pt;}
.w2_c00468{width:771.080000pt;}
.w0_c00468{width:793.720000pt;}
.w1_c00468{width:794.000000pt;}
.x0_c00468{left:0.000000pt;}
.x1_c00468{left:11.320000pt;}
.x3_c00468{left:84.792267pt;}
.x5_c00468{left:132.800133pt;}
.x4_c00468{left:384.760000pt;}
.x2_c00468{left:782.600267pt;}
}





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for 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_f6dd668f62cbaaddeb226d7f.woff2')format("woff");}.ff1_c00469{font-family:ff1_c00469;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00469;src:url('chunks/assets/font_20c72e6d0bd4e2daedf697ac.woff2')format("woff");}.ff2_c00469{font-family:ff2_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:ff3_c00469;src:url('chunks/assets/font_6758d83e57f23ccebf6b3b75.woff2')format("woff");}.ff3_c00469{font-family:ff3_c00469;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00469{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1_c00469{vertical-align:-132.479400px;}
.v0_c00469{vertical-align:0.000000px;}
.ls2_c00469{letter-spacing:0.000000px;}
.ls1_c00469{letter-spacing:0.163296px;}
.ls3_c00469{letter-spacing:0.370512px;}
.ls0_c00469{letter-spacing:1221.770400px;}
.sc__c00469{text-shadow:none;}
.sc0_c00469{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00469{-webkit-text-stroke:0px transparent;}
.sc0_c00469{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00469{word-spacing:-30.250512px;}
.ws1_c00469{word-spacing:-19.603296px;}
.ws2_c00469{word-spacing:0.000000px;}
._1_c00469{width:6.451200px;}
._5_c00469{width:8.640000px;}
._2_c00469{width:9.698400px;}
._4_c00469{width:16.920000px;}
._6_c00469{width:28.800000px;}
._0_c00469{width:35.532000px;}
._3_c00469{width:46.425600px;}
.fc1_c00469{color:transparent;}
.fc0_c00469{color:rgb(0,0,0);}
.fs0_c00469{font-size:72.000000px;}
.fs2_c00469{font-size:77.760000px;}
.fs1_c00469{font-size:119.520000px;}
.y0_c00469{bottom:0.000000px;}
.y5_c00469{bottom:1.440000px;}
.y1_c00469{bottom:12.735000px;}
.y3_c00469{bottom:45.405000px;}
.y4_c00469{bottom:56.700000px;}
.y20_c00469{bottom:126.404850px;}
.y1f_c00469{bottom:162.404850px;}
.y1e_c00469{bottom:198.404850px;}
.y1d_c00469{bottom:234.404850px;}
.y1c_c00469{bottom:270.404850px;}
.y1b_c00469{bottom:306.404850px;}
.y1a_c00469{bottom:342.404850px;}
.y19_c00469{bottom:378.404850px;}
.y18_c00469{bottom:414.404850px;}
.y17_c00469{bottom:450.404850px;}
.y16_c00469{bottom:486.404850px;}
.y15_c00469{bottom:522.404850px;}
.y14_c00469{bottom:558.404850px;}
.y13_c00469{bottom:594.404850px;}
.y12_c00469{bottom:630.404850px;}
.y11_c00469{bottom:666.404850px;}
.y10_c00469{bottom:702.404850px;}
.yf_c00469{bottom:738.404850px;}
.ye_c00469{bottom:774.404850px;}
.yd_c00469{bottom:810.404850px;}
.yc_c00469{bottom:846.404850px;}
.yb_c00469{bottom:882.404850px;}
.ya_c00469{bottom:918.404850px;}
.y9_c00469{bottom:954.404850px;}
.y8_c00469{bottom:990.764850px;}
.y7_c00469{bottom:1026.404850px;}
.y6_c00469{bottom:1098.404850px;}
.y2_c00469{bottom:1164.285000px;}
.h4_c00469{height:17.280000px;}
.h3_c00469{height:70.664062px;}
.h5_c00469{height:72.562500px;}
.h6_c00469{height:78.367500px;}
.h2_c00469{height:1237.365000px;}
.h0_c00469{height:1262.835000px;}
.h1_c00469{height:1263.000000px;}
.w3_c00469{width:47.520000px;}
.w2_c00469{width:867.465000px;}
.w0_c00469{width:892.935000px;}
.w1_c00469{width:893.250000px;}
.x0_c00469{left:0.000000px;}
.x5_c00469{left:10.237500px;}
.x1_c00469{left:12.735000px;}
.x3_c00469{left:95.397000px;}
.x8_c00469{left:149.400150px;}
.x7_c00469{left:360.548250px;}
.x4_c00469{left:422.775000px;}
.x6_c00469{left:433.687500px;}
.x2_c00469{left:889.125000px;}
@media print{
.v1_c00469{vertical-align:-117.759467pt;}
.v0_c00469{vertical-align:0.000000pt;}
.ls2_c00469{letter-spacing:0.000000pt;}
.ls1_c00469{letter-spacing:0.145152pt;}
.ls3_c00469{letter-spacing:0.329344pt;}
.ls0_c00469{letter-spacing:1086.018133pt;}
.ws0_c00469{word-spacing:-26.889344pt;}
.ws1_c00469{word-spacing:-17.425152pt;}
.ws2_c00469{word-spacing:0.000000pt;}
._1_c00469{width:5.734400pt;}
._5_c00469{width:7.680000pt;}
._2_c00469{width:8.620800pt;}
._4_c00469{width:15.040000pt;}
._6_c00469{width:25.600000pt;}
._0_c00469{width:31.584000pt;}
._3_c00469{width:41.267200pt;}
.fs0_c00469{font-size:64.000000pt;}
.fs2_c00469{font-size:69.120000pt;}
.fs1_c00469{font-size:106.240000pt;}
.y0_c00469{bottom:0.000000pt;}
.y5_c00469{bottom:1.280000pt;}
.y1_c00469{bottom:11.320000pt;}
.y3_c00469{bottom:40.360000pt;}
.y4_c00469{bottom:50.400000pt;}
.y20_c00469{bottom:112.359867pt;}
.y1f_c00469{bottom:144.359867pt;}
.y1e_c00469{bottom:176.359867pt;}
.y1d_c00469{bottom:208.359867pt;}
.y1c_c00469{bottom:240.359867pt;}
.y1b_c00469{bottom:272.359867pt;}
.y1a_c00469{bottom:304.359867pt;}
.y19_c00469{bottom:336.359867pt;}
.y18_c00469{bottom:368.359867pt;}
.y17_c00469{bottom:400.359867pt;}
.y16_c00469{bottom:432.359867pt;}
.y15_c00469{bottom:464.359867pt;}
.y14_c00469{bottom:496.359867pt;}
.y13_c00469{bottom:528.359867pt;}
.y12_c00469{bottom:560.359867pt;}
.y11_c00469{bottom:592.359867pt;}
.y10_c00469{bottom:624.359867pt;}
.yf_c00469{bottom:656.359867pt;}
.ye_c00469{bottom:688.359867pt;}
.yd_c00469{bottom:720.359867pt;}
.yc_c00469{bottom:752.359867pt;}
.yb_c00469{bottom:784.359867pt;}
.ya_c00469{bottom:816.359867pt;}
.y9_c00469{bottom:848.359867pt;}
.y8_c00469{bottom:880.679867pt;}
.y7_c00469{bottom:912.359867pt;}
.y6_c00469{bottom:976.359867pt;}
.y2_c00469{bottom:1034.920000pt;}
.h4_c00469{height:15.360000pt;}
.h3_c00469{height:62.812500pt;}
.h5_c00469{height:64.500000pt;}
.h6_c00469{height:69.660000pt;}
.h2_c00469{height:1099.880000pt;}
.h0_c00469{height:1122.520000pt;}
.h1_c00469{height:1122.666667pt;}
.w3_c00469{width:42.240000pt;}
.w2_c00469{width:771.080000pt;}
.w0_c00469{width:793.720000pt;}
.w1_c00469{width:794.000000pt;}
.x0_c00469{left:0.000000pt;}
.x5_c00469{left:9.100000pt;}
.x1_c00469{left:11.320000pt;}
.x3_c00469{left:84.797333pt;}
.x8_c00469{left:132.800133pt;}
.x7_c00469{left:320.487333pt;}
.x4_c00469{left:375.800000pt;}
.x6_c00469{left:385.500000pt;}
.x2_c00469{left:790.333333pt;}
}





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

.ir_c00470:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00470{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00470;src:url('chunks/assets/font_76200c80d9941ffd0ecfa029.woff2')format("woff");}.ff1_c00470{font-family:ff1_c00470;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00470;src:url('chunks/assets/font_6e26f93027e86f754dfed099.woff2')format("woff");}.ff2_c00470{font-family:ff2_c00470;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00470{letter-spacing:-0.014400px;}
.ls0_c00470{letter-spacing:0.000000px;}
.sc__c00470{text-shadow:none;}
.sc0_c00470{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00470{-webkit-text-stroke:0px transparent;}
.sc0_c00470{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00470{word-spacing:-18.000000px;}
.ws1_c00470{word-spacing:0.000000px;}
._4_c00470{margin-left:-1.324800px;}
._0_c00470{width:1.152000px;}
._2_c00470{width:4.737600px;}
._1_c00470{width:6.004800px;}
._6_c00470{width:8.481600px;}
._7_c00470{width:16.056000px;}
._5_c00470{width:31.248000px;}
._3_c00470{width:53.078400px;}
.fc2_c00470{color:transparent;}
.fc1_c00470{color:rgb(0,0,255);}
.fc0_c00470{color:rgb(0,0,0);}
.fs0_c00470{font-size:72.000000px;}
.y0_c00470{bottom:0.000000px;}
.y5_c00470{bottom:5.040000px;}
.y1_c00470{bottom:12.735000px;}
.y3_c00470{bottom:45.405000px;}
.y4_c00470{bottom:53.100000px;}
.y21_c00470{bottom:110.925000px;}
.y20_c00470{bottom:146.925000px;}
.y1f_c00470{bottom:182.925000px;}
.y1e_c00470{bottom:218.925000px;}
.y1d_c00470{bottom:254.925000px;}
.y1c_c00470{bottom:290.925000px;}
.y1b_c00470{bottom:326.925000px;}
.y1a_c00470{bottom:362.925000px;}
.y19_c00470{bottom:398.925000px;}
.y18_c00470{bottom:434.925000px;}
.y17_c00470{bottom:470.925000px;}
.y16_c00470{bottom:506.925000px;}
.y15_c00470{bottom:542.925000px;}
.y14_c00470{bottom:578.925000px;}
.y13_c00470{bottom:614.924850px;}
.y12_c00470{bottom:650.924850px;}
.y11_c00470{bottom:686.924850px;}
.y10_c00470{bottom:722.924850px;}
.yf_c00470{bottom:758.924850px;}
.ye_c00470{bottom:794.924850px;}
.yd_c00470{bottom:830.924850px;}
.yc_c00470{bottom:866.924850px;}
.yb_c00470{bottom:902.924850px;}
.ya_c00470{bottom:938.924850px;}
.y9_c00470{bottom:974.924850px;}
.y8_c00470{bottom:1010.924850px;}
.y7_c00470{bottom:1046.924850px;}
.y6_c00470{bottom:1082.924850px;}
.y2_c00470{bottom:1164.285000px;}
.h4_c00470{height:20.880000px;}
.h3_c00470{height:70.664062px;}
.h5_c00470{height:70.664662px;}
.h2_c00470{height:1237.365000px;}
.h0_c00470{height:1262.835000px;}
.h1_c00470{height:1263.000000px;}
.w3_c00470{width:27.000000px;}
.w2_c00470{width:867.465000px;}
.w0_c00470{width:892.935000px;}
.w1_c00470{width:893.250000px;}
.x0_c00470{left:0.000000px;}
.x1_c00470{left:12.735000px;}
.x3_c00470{left:95.397000px;}
.x4_c00470{left:432.855000px;}
.x2_c00470{left:889.125000px;}
@media print{
.v0_c00470{vertical-align:0.000000pt;}
.ls1_c00470{letter-spacing:-0.012800pt;}
.ls0_c00470{letter-spacing:0.000000pt;}
.ws0_c00470{word-spacing:-16.000000pt;}
.ws1_c00470{word-spacing:0.000000pt;}
._4_c00470{margin-left:-1.177600pt;}
._0_c00470{width:1.024000pt;}
._2_c00470{width:4.211200pt;}
._1_c00470{width:5.337600pt;}
._6_c00470{width:7.539200pt;}
._7_c00470{width:14.272000pt;}
._5_c00470{width:27.776000pt;}
._3_c00470{width:47.180800pt;}
.fs0_c00470{font-size:64.000000pt;}
.y0_c00470{bottom:0.000000pt;}
.y5_c00470{bottom:4.480000pt;}
.y1_c00470{bottom:11.320000pt;}
.y3_c00470{bottom:40.360000pt;}
.y4_c00470{bottom:47.200000pt;}
.y21_c00470{bottom:98.600000pt;}
.y20_c00470{bottom:130.600000pt;}
.y1f_c00470{bottom:162.600000pt;}
.y1e_c00470{bottom:194.600000pt;}
.y1d_c00470{bottom:226.600000pt;}
.y1c_c00470{bottom:258.600000pt;}
.y1b_c00470{bottom:290.600000pt;}
.y1a_c00470{bottom:322.600000pt;}
.y19_c00470{bottom:354.600000pt;}
.y18_c00470{bottom:386.600000pt;}
.y17_c00470{bottom:418.600000pt;}
.y16_c00470{bottom:450.600000pt;}
.y15_c00470{bottom:482.600000pt;}
.y14_c00470{bottom:514.600000pt;}
.y13_c00470{bottom:546.599867pt;}
.y12_c00470{bottom:578.599867pt;}
.y11_c00470{bottom:610.599867pt;}
.y10_c00470{bottom:642.599867pt;}
.yf_c00470{bottom:674.599867pt;}
.ye_c00470{bottom:706.599867pt;}
.yd_c00470{bottom:738.599867pt;}
.yc_c00470{bottom:770.599867pt;}
.yb_c00470{bottom:802.599867pt;}
.ya_c00470{bottom:834.599867pt;}
.y9_c00470{bottom:866.599867pt;}
.y8_c00470{bottom:898.599867pt;}
.y7_c00470{bottom:930.599867pt;}
.y6_c00470{bottom:962.599867pt;}
.y2_c00470{bottom:1034.920000pt;}
.h4_c00470{height:18.560000pt;}
.h3_c00470{height:62.812500pt;}
.h5_c00470{height:62.813033pt;}
.h2_c00470{height:1099.880000pt;}
.h0_c00470{height:1122.520000pt;}
.h1_c00470{height:1122.666667pt;}
.w3_c00470{width:24.000000pt;}
.w2_c00470{width:771.080000pt;}
.w0_c00470{width:793.720000pt;}
.w1_c00470{width:794.000000pt;}
.x0_c00470{left:0.000000pt;}
.x1_c00470{left:11.320000pt;}
.x3_c00470{left:84.797333pt;}
.x4_c00470{left:384.760000pt;}
.x2_c00470{left:790.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_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_b7e4819c4b50cd18a0525bfd.woff2')format("woff");}.ff1_c00471{font-family:ff1_c00471;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00471;src:url('chunks/assets/font_3f26b26f7fb9a03fd6edb6d9.woff2')format("woff");}.ff2_c00471{font-family:ff2_c00471;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00471{letter-spacing:-0.014400px;}
.ls0_c00471{letter-spacing:0.000000px;}
.sc__c00471{text-shadow:none;}
.sc0_c00471{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00471{-webkit-text-stroke:0px transparent;}
.sc0_c00471{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00471{word-spacing:0.000000px;}
._4_c00471{width:1.296000px;}
._2_c00471{width:2.462400px;}
._1_c00471{width:3.520800px;}
._3_c00471{width:5.558400px;}
._0_c00471{width:15.472800px;}
.fc1_c00471{color:transparent;}
.fc0_c00471{color:rgb(0,0,0);}
.fs0_c00471{font-size:72.000000px;}
.y0_c00471{bottom:0.000000px;}
.y5_c00471{bottom:1.440000px;}
.y1_c00471{bottom:12.735000px;}
.y3_c00471{bottom:45.405000px;}
.y4_c00471{bottom:56.700000px;}
.y21_c00471{bottom:110.924850px;}
.y20_c00471{bottom:146.924850px;}
.y1f_c00471{bottom:182.924850px;}
.y1e_c00471{bottom:218.924850px;}
.y1d_c00471{bottom:254.924850px;}
.y1c_c00471{bottom:290.924850px;}
.y1b_c00471{bottom:326.924850px;}
.y1a_c00471{bottom:362.924850px;}
.y19_c00471{bottom:398.924850px;}
.y18_c00471{bottom:434.924850px;}
.y17_c00471{bottom:470.924850px;}
.y16_c00471{bottom:506.924850px;}
.y15_c00471{bottom:542.924850px;}
.y14_c00471{bottom:578.924850px;}
.y13_c00471{bottom:614.924850px;}
.y12_c00471{bottom:650.924850px;}
.y11_c00471{bottom:686.924850px;}
.y10_c00471{bottom:722.924850px;}
.yf_c00471{bottom:758.924850px;}
.ye_c00471{bottom:794.924850px;}
.yd_c00471{bottom:830.924850px;}
.yc_c00471{bottom:866.924850px;}
.yb_c00471{bottom:902.924850px;}
.ya_c00471{bottom:938.924850px;}
.y9_c00471{bottom:974.924850px;}
.y8_c00471{bottom:1010.924850px;}
.y7_c00471{bottom:1046.924850px;}
.y6_c00471{bottom:1082.924850px;}
.y2_c00471{bottom:1164.285000px;}
.h4_c00471{height:17.280000px;}
.h3_c00471{height:70.664062px;}
.h2_c00471{height:1237.365000px;}
.h0_c00471{height:1262.835000px;}
.h1_c00471{height:1263.000000px;}
.w3_c00471{width:47.520000px;}
.w2_c00471{width:867.465000px;}
.w0_c00471{width:892.935000px;}
.w1_c00471{width:893.250000px;}
.x0_c00471{left:0.000000px;}
.x5_c00471{left:10.237500px;}
.x1_c00471{left:12.735000px;}
.x3_c00471{left:95.397000px;}
.x4_c00471{left:422.775000px;}
.x2_c00471{left:889.125000px;}
@media print{
.v0_c00471{vertical-align:0.000000pt;}
.ls1_c00471{letter-spacing:-0.012800pt;}
.ls0_c00471{letter-spacing:0.000000pt;}
.ws0_c00471{word-spacing:0.000000pt;}
._4_c00471{width:1.152000pt;}
._2_c00471{width:2.188800pt;}
._1_c00471{width:3.129600pt;}
._3_c00471{width:4.940800pt;}
._0_c00471{width:13.753600pt;}
.fs0_c00471{font-size:64.000000pt;}
.y0_c00471{bottom:0.000000pt;}
.y5_c00471{bottom:1.280000pt;}
.y1_c00471{bottom:11.320000pt;}
.y3_c00471{bottom:40.360000pt;}
.y4_c00471{bottom:50.400000pt;}
.y21_c00471{bottom:98.599867pt;}
.y20_c00471{bottom:130.599867pt;}
.y1f_c00471{bottom:162.599867pt;}
.y1e_c00471{bottom:194.599867pt;}
.y1d_c00471{bottom:226.599867pt;}
.y1c_c00471{bottom:258.599867pt;}
.y1b_c00471{bottom:290.599867pt;}
.y1a_c00471{bottom:322.599867pt;}
.y19_c00471{bottom:354.599867pt;}
.y18_c00471{bottom:386.599867pt;}
.y17_c00471{bottom:418.599867pt;}
.y16_c00471{bottom:450.599867pt;}
.y15_c00471{bottom:482.599867pt;}
.y14_c00471{bottom:514.599867pt;}
.y13_c00471{bottom:546.599867pt;}
.y12_c00471{bottom:578.599867pt;}
.y11_c00471{bottom:610.599867pt;}
.y10_c00471{bottom:642.599867pt;}
.yf_c00471{bottom:674.599867pt;}
.ye_c00471{bottom:706.599867pt;}
.yd_c00471{bottom:738.599867pt;}
.yc_c00471{bottom:770.599867pt;}
.yb_c00471{bottom:802.599867pt;}
.ya_c00471{bottom:834.599867pt;}
.y9_c00471{bottom:866.599867pt;}
.y8_c00471{bottom:898.599867pt;}
.y7_c00471{bottom:930.599867pt;}
.y6_c00471{bottom:962.599867pt;}
.y2_c00471{bottom:1034.920000pt;}
.h4_c00471{height:15.360000pt;}
.h3_c00471{height:62.812500pt;}
.h2_c00471{height:1099.880000pt;}
.h0_c00471{height:1122.520000pt;}
.h1_c00471{height:1122.666667pt;}
.w3_c00471{width:42.240000pt;}
.w2_c00471{width:771.080000pt;}
.w0_c00471{width:793.720000pt;}
.w1_c00471{width:794.000000pt;}
.x0_c00471{left:0.000000pt;}
.x5_c00471{left:9.100000pt;}
.x1_c00471{left:11.320000pt;}
.x3_c00471{left:84.797333pt;}
.x4_c00471{left:375.800000pt;}
.x2_c00471{left:790.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_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_f04a8dabe73e0ac8502cead8.woff2')format("woff");}.ff1_c00472{font-family:ff1_c00472;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00472;src:url('chunks/assets/font_08b069496d0b2f905151d00f.woff2')format("woff");}.ff2_c00472{font-family:ff2_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;}
.m0_c00472{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00472{vertical-align:0.000000px;}
.ls0_c00472{letter-spacing:0.000000px;}
.sc__c00472{text-shadow:none;}
.sc0_c00472{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00472{-webkit-text-stroke:0px transparent;}
.sc0_c00472{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00472{word-spacing:0.000000px;}
._2_c00472{width:2.304000px;}
._3_c00472{width:9.352800px;}
._0_c00472{width:10.512000px;}
._6_c00472{width:14.421600px;}
._7_c00472{width:16.502400px;}
._5_c00472{width:19.742400px;}
._4_c00472{width:20.800800px;}
._1_c00472{width:29.570400px;}
._9_c00472{width:31.312800px;}
._8_c00472{width:33.480000px;}
.fc1_c00472{color:transparent;}
.fc0_c00472{color:rgb(0,0,0);}
.fs0_c00472{font-size:72.000000px;}
.y0_c00472{bottom:0.000000px;}
.y5_c00472{bottom:5.040000px;}
.y1_c00472{bottom:12.735000px;}
.y3_c00472{bottom:45.405000px;}
.y4_c00472{bottom:53.100000px;}
.y21_c00472{bottom:110.924850px;}
.y20_c00472{bottom:146.924850px;}
.y1f_c00472{bottom:182.924850px;}
.y1e_c00472{bottom:218.924850px;}
.y1d_c00472{bottom:254.924850px;}
.y1c_c00472{bottom:290.924850px;}
.y1b_c00472{bottom:326.924850px;}
.y1a_c00472{bottom:362.924850px;}
.y19_c00472{bottom:398.924850px;}
.y18_c00472{bottom:434.924850px;}
.y17_c00472{bottom:470.924850px;}
.y16_c00472{bottom:506.924850px;}
.y15_c00472{bottom:542.924850px;}
.y14_c00472{bottom:578.924850px;}
.y13_c00472{bottom:614.924850px;}
.y12_c00472{bottom:650.924850px;}
.y11_c00472{bottom:686.924850px;}
.y10_c00472{bottom:722.924850px;}
.yf_c00472{bottom:758.924850px;}
.ye_c00472{bottom:794.924850px;}
.yd_c00472{bottom:830.924850px;}
.yc_c00472{bottom:866.924850px;}
.yb_c00472{bottom:902.924850px;}
.ya_c00472{bottom:938.924850px;}
.y9_c00472{bottom:974.924850px;}
.y8_c00472{bottom:1010.924850px;}
.y7_c00472{bottom:1046.924850px;}
.y6_c00472{bottom:1082.924850px;}
.y2_c00472{bottom:1164.285000px;}
.h4_c00472{height:20.880000px;}
.h3_c00472{height:70.664062px;}
.h2_c00472{height:1237.365000px;}
.h0_c00472{height:1262.835000px;}
.h1_c00472{height:1263.000000px;}
.w3_c00472{width:27.000000px;}
.w2_c00472{width:867.465000px;}
.w0_c00472{width:892.935000px;}
.w1_c00472{width:893.250000px;}
.x0_c00472{left:0.000000px;}
.x1_c00472{left:12.735000px;}
.x3_c00472{left:95.397000px;}
.x4_c00472{left:432.855000px;}
.x2_c00472{left:889.125000px;}
@media print{
.v0_c00472{vertical-align:0.000000pt;}
.ls0_c00472{letter-spacing:0.000000pt;}
.ws0_c00472{word-spacing:0.000000pt;}
._2_c00472{width:2.048000pt;}
._3_c00472{width:8.313600pt;}
._0_c00472{width:9.344000pt;}
._6_c00472{width:12.819200pt;}
._7_c00472{width:14.668800pt;}
._5_c00472{width:17.548800pt;}
._4_c00472{width:18.489600pt;}
._1_c00472{width:26.284800pt;}
._9_c00472{width:27.833600pt;}
._8_c00472{width:29.760000pt;}
.fs0_c00472{font-size:64.000000pt;}
.y0_c00472{bottom:0.000000pt;}
.y5_c00472{bottom:4.480000pt;}
.y1_c00472{bottom:11.320000pt;}
.y3_c00472{bottom:40.360000pt;}
.y4_c00472{bottom:47.200000pt;}
.y21_c00472{bottom:98.599867pt;}
.y20_c00472{bottom:130.599867pt;}
.y1f_c00472{bottom:162.599867pt;}
.y1e_c00472{bottom:194.599867pt;}
.y1d_c00472{bottom:226.599867pt;}
.y1c_c00472{bottom:258.599867pt;}
.y1b_c00472{bottom:290.599867pt;}
.y1a_c00472{bottom:322.599867pt;}
.y19_c00472{bottom:354.599867pt;}
.y18_c00472{bottom:386.599867pt;}
.y17_c00472{bottom:418.599867pt;}
.y16_c00472{bottom:450.599867pt;}
.y15_c00472{bottom:482.599867pt;}
.y14_c00472{bottom:514.599867pt;}
.y13_c00472{bottom:546.599867pt;}
.y12_c00472{bottom:578.599867pt;}
.y11_c00472{bottom:610.599867pt;}
.y10_c00472{bottom:642.599867pt;}
.yf_c00472{bottom:674.599867pt;}
.ye_c00472{bottom:706.599867pt;}
.yd_c00472{bottom:738.599867pt;}
.yc_c00472{bottom:770.599867pt;}
.yb_c00472{bottom:802.599867pt;}
.ya_c00472{bottom:834.599867pt;}
.y9_c00472{bottom:866.599867pt;}
.y8_c00472{bottom:898.599867pt;}
.y7_c00472{bottom:930.599867pt;}
.y6_c00472{bottom:962.599867pt;}
.y2_c00472{bottom:1034.920000pt;}
.h4_c00472{height:18.560000pt;}
.h3_c00472{height:62.812500pt;}
.h2_c00472{height:1099.880000pt;}
.h0_c00472{height:1122.520000pt;}
.h1_c00472{height:1122.666667pt;}
.w3_c00472{width:24.000000pt;}
.w2_c00472{width:771.080000pt;}
.w0_c00472{width:793.720000pt;}
.w1_c00472{width:794.000000pt;}
.x0_c00472{left:0.000000pt;}
.x1_c00472{left:11.320000pt;}
.x3_c00472{left:84.797333pt;}
.x4_c00472{left:384.760000pt;}
.x2_c00472{left:790.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_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_2805d250a1768452b8c10a9b.woff2')format("woff");}.ff1_c00473{font-family:ff1_c00473;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00473;src:url('chunks/assets/font_9db57f45dbacb146956bb9fb.woff2')format("woff");}.ff2_c00473{font-family:ff2_c00473;line-height:1.284180;font-style: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.014400px;}
.ls0_c00473{letter-spacing:0.000000px;}
.sc__c00473{text-shadow:none;}
.sc0_c00473{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00473{-webkit-text-stroke:0px transparent;}
.sc0_c00473{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00473{word-spacing:0.000000px;}
._2_c00473{width:1.000800px;}
._3_c00473{width:3.297600px;}
._0_c00473{width:4.903200px;}
._4_c00473{width:5.961600px;}
._1_c00473{width:19.540800px;}
._6_c00473{width:21.664800px;}
._7_c00473{width:23.472000px;}
._5_c00473{width:43.200000px;}
.fc1_c00473{color:transparent;}
.fc0_c00473{color:rgb(0,0,0);}
.fs0_c00473{font-size:72.000000px;}
.y0_c00473{bottom:0.000000px;}
.y5_c00473{bottom:1.440000px;}
.y1_c00473{bottom:12.735000px;}
.y3_c00473{bottom:45.405000px;}
.y4_c00473{bottom:56.700000px;}
.y21_c00473{bottom:110.924850px;}
.y20_c00473{bottom:146.924850px;}
.y1f_c00473{bottom:182.924850px;}
.y1e_c00473{bottom:218.924850px;}
.y1d_c00473{bottom:254.924850px;}
.y1c_c00473{bottom:290.924850px;}
.y1b_c00473{bottom:326.924850px;}
.y1a_c00473{bottom:362.924850px;}
.y19_c00473{bottom:398.924850px;}
.y18_c00473{bottom:434.924850px;}
.y17_c00473{bottom:470.924850px;}
.y16_c00473{bottom:506.924850px;}
.y15_c00473{bottom:542.924850px;}
.y14_c00473{bottom:578.924850px;}
.y13_c00473{bottom:614.924850px;}
.y12_c00473{bottom:650.924850px;}
.y11_c00473{bottom:686.924850px;}
.y10_c00473{bottom:722.924850px;}
.yf_c00473{bottom:758.924850px;}
.ye_c00473{bottom:794.924850px;}
.yd_c00473{bottom:830.924850px;}
.yc_c00473{bottom:866.924850px;}
.yb_c00473{bottom:902.924850px;}
.ya_c00473{bottom:938.924850px;}
.y9_c00473{bottom:974.924850px;}
.y8_c00473{bottom:1010.924850px;}
.y7_c00473{bottom:1046.924850px;}
.y6_c00473{bottom:1082.924850px;}
.y2_c00473{bottom:1164.285000px;}
.h4_c00473{height:17.280000px;}
.h3_c00473{height:70.664062px;}
.h2_c00473{height:1237.365000px;}
.h0_c00473{height:1262.835000px;}
.h1_c00473{height:1263.000000px;}
.w3_c00473{width:47.520000px;}
.w2_c00473{width:867.465000px;}
.w0_c00473{width:892.935000px;}
.w1_c00473{width:893.250000px;}
.x0_c00473{left:0.000000px;}
.x5_c00473{left:10.237500px;}
.x1_c00473{left:12.735000px;}
.x3_c00473{left:95.397000px;}
.x4_c00473{left:422.775000px;}
.x2_c00473{left:889.125000px;}
@media print{
.v0_c00473{vertical-align:0.000000pt;}
.ls1_c00473{letter-spacing:-0.012800pt;}
.ls0_c00473{letter-spacing:0.000000pt;}
.ws0_c00473{word-spacing:0.000000pt;}
._2_c00473{width:0.889600pt;}
._3_c00473{width:2.931200pt;}
._0_c00473{width:4.358400pt;}
._4_c00473{width:5.299200pt;}
._1_c00473{width:17.369600pt;}
._6_c00473{width:19.257600pt;}
._7_c00473{width:20.864000pt;}
._5_c00473{width:38.400000pt;}
.fs0_c00473{font-size:64.000000pt;}
.y0_c00473{bottom:0.000000pt;}
.y5_c00473{bottom:1.280000pt;}
.y1_c00473{bottom:11.320000pt;}
.y3_c00473{bottom:40.360000pt;}
.y4_c00473{bottom:50.400000pt;}
.y21_c00473{bottom:98.599867pt;}
.y20_c00473{bottom:130.599867pt;}
.y1f_c00473{bottom:162.599867pt;}
.y1e_c00473{bottom:194.599867pt;}
.y1d_c00473{bottom:226.599867pt;}
.y1c_c00473{bottom:258.599867pt;}
.y1b_c00473{bottom:290.599867pt;}
.y1a_c00473{bottom:322.599867pt;}
.y19_c00473{bottom:354.599867pt;}
.y18_c00473{bottom:386.599867pt;}
.y17_c00473{bottom:418.599867pt;}
.y16_c00473{bottom:450.599867pt;}
.y15_c00473{bottom:482.599867pt;}
.y14_c00473{bottom:514.599867pt;}
.y13_c00473{bottom:546.599867pt;}
.y12_c00473{bottom:578.599867pt;}
.y11_c00473{bottom:610.599867pt;}
.y10_c00473{bottom:642.599867pt;}
.yf_c00473{bottom:674.599867pt;}
.ye_c00473{bottom:706.599867pt;}
.yd_c00473{bottom:738.599867pt;}
.yc_c00473{bottom:770.599867pt;}
.yb_c00473{bottom:802.599867pt;}
.ya_c00473{bottom:834.599867pt;}
.y9_c00473{bottom:866.599867pt;}
.y8_c00473{bottom:898.599867pt;}
.y7_c00473{bottom:930.599867pt;}
.y6_c00473{bottom:962.599867pt;}
.y2_c00473{bottom:1034.920000pt;}
.h4_c00473{height:15.360000pt;}
.h3_c00473{height:62.812500pt;}
.h2_c00473{height:1099.880000pt;}
.h0_c00473{height:1122.520000pt;}
.h1_c00473{height:1122.666667pt;}
.w3_c00473{width:42.240000pt;}
.w2_c00473{width:771.080000pt;}
.w0_c00473{width:793.720000pt;}
.w1_c00473{width:794.000000pt;}
.x0_c00473{left:0.000000pt;}
.x5_c00473{left:9.100000pt;}
.x1_c00473{left:11.320000pt;}
.x3_c00473{left:84.797333pt;}
.x4_c00473{left:375.800000pt;}
.x2_c00473{left:790.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_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_d7e28f3f087385503852b0c5.woff2')format("woff");}.ff1_c00474{font-family:ff1_c00474;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00474;src:url('chunks/assets/font_e0a9cdc3c9dd2e5d6d0e24de.woff2')format("woff");}.ff2_c00474{font-family:ff2_c00474;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00474{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00474{vertical-align:0.000000px;}
.v1_c00474{vertical-align:30.240600px;}
.ls0_c00474{letter-spacing:0.000000px;}
.ls1_c00474{letter-spacing:0.058464px;}
.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:-10.498464px;}
.ws1_c00474{word-spacing:0.000000px;}
._2_c00474{width:4.615200px;}
._1_c00474{width:15.480000px;}
._3_c00474{width:20.318400px;}
._0_c00474{width:198.000000px;}
.fc1_c00474{color:transparent;}
.fc0_c00474{color:rgb(0,0,0);}
.fs1_c00474{font-size:41.760000px;}
.fs0_c00474{font-size:72.000000px;}
.y0_c00474{bottom:0.000000px;}
.y5_c00474{bottom:5.040000px;}
.y1_c00474{bottom:12.735000px;}
.y3_c00474{bottom:45.405000px;}
.y4_c00474{bottom:53.100000px;}
.y21_c00474{bottom:110.925000px;}
.y20_c00474{bottom:146.925000px;}
.y1f_c00474{bottom:182.925000px;}
.y1e_c00474{bottom:218.925000px;}
.y1d_c00474{bottom:254.925000px;}
.y1c_c00474{bottom:290.925000px;}
.y1b_c00474{bottom:326.925000px;}
.y1a_c00474{bottom:362.925000px;}
.y19_c00474{bottom:398.925000px;}
.y18_c00474{bottom:434.925000px;}
.y17_c00474{bottom:470.925000px;}
.y16_c00474{bottom:506.924850px;}
.y15_c00474{bottom:542.924850px;}
.y14_c00474{bottom:578.924850px;}
.y13_c00474{bottom:614.924850px;}
.y12_c00474{bottom:650.924850px;}
.y11_c00474{bottom:686.924850px;}
.y10_c00474{bottom:722.924850px;}
.yf_c00474{bottom:758.924850px;}
.ye_c00474{bottom:794.924850px;}
.yd_c00474{bottom:830.924850px;}
.yc_c00474{bottom:866.924850px;}
.yb_c00474{bottom:902.924850px;}
.ya_c00474{bottom:938.924850px;}
.y9_c00474{bottom:974.924850px;}
.y8_c00474{bottom:1010.924850px;}
.y7_c00474{bottom:1046.924850px;}
.y6_c00474{bottom:1082.924850px;}
.y2_c00474{bottom:1164.285000px;}
.h4_c00474{height:20.880000px;}
.h3_c00474{height:70.664062px;}
.h5_c00474{height:71.225756px;}
.h2_c00474{height:1237.365000px;}
.h0_c00474{height:1262.835000px;}
.h1_c00474{height:1263.000000px;}
.w3_c00474{width:27.000000px;}
.w2_c00474{width:867.465000px;}
.w0_c00474{width:892.935000px;}
.w1_c00474{width:893.250000px;}
.x0_c00474{left:0.000000px;}
.x1_c00474{left:12.735000px;}
.x3_c00474{left:95.397000px;}
.x4_c00474{left:432.855000px;}
.x2_c00474{left:889.125000px;}
@media print{
.v0_c00474{vertical-align:0.000000pt;}
.v1_c00474{vertical-align:26.880533pt;}
.ls0_c00474{letter-spacing:0.000000pt;}
.ls1_c00474{letter-spacing:0.051968pt;}
.ws0_c00474{word-spacing:-9.331968pt;}
.ws1_c00474{word-spacing:0.000000pt;}
._2_c00474{width:4.102400pt;}
._1_c00474{width:13.760000pt;}
._3_c00474{width:18.060800pt;}
._0_c00474{width:176.000000pt;}
.fs1_c00474{font-size:37.120000pt;}
.fs0_c00474{font-size:64.000000pt;}
.y0_c00474{bottom:0.000000pt;}
.y5_c00474{bottom:4.480000pt;}
.y1_c00474{bottom:11.320000pt;}
.y3_c00474{bottom:40.360000pt;}
.y4_c00474{bottom:47.200000pt;}
.y21_c00474{bottom:98.600000pt;}
.y20_c00474{bottom:130.600000pt;}
.y1f_c00474{bottom:162.600000pt;}
.y1e_c00474{bottom:194.600000pt;}
.y1d_c00474{bottom:226.600000pt;}
.y1c_c00474{bottom:258.600000pt;}
.y1b_c00474{bottom:290.600000pt;}
.y1a_c00474{bottom:322.600000pt;}
.y19_c00474{bottom:354.600000pt;}
.y18_c00474{bottom:386.600000pt;}
.y17_c00474{bottom:418.600000pt;}
.y16_c00474{bottom:450.599867pt;}
.y15_c00474{bottom:482.599867pt;}
.y14_c00474{bottom:514.599867pt;}
.y13_c00474{bottom:546.599867pt;}
.y12_c00474{bottom:578.599867pt;}
.y11_c00474{bottom:610.599867pt;}
.y10_c00474{bottom:642.599867pt;}
.yf_c00474{bottom:674.599867pt;}
.ye_c00474{bottom:706.599867pt;}
.yd_c00474{bottom:738.599867pt;}
.yc_c00474{bottom:770.599867pt;}
.yb_c00474{bottom:802.599867pt;}
.ya_c00474{bottom:834.599867pt;}
.y9_c00474{bottom:866.599867pt;}
.y8_c00474{bottom:898.599867pt;}
.y7_c00474{bottom:930.599867pt;}
.y6_c00474{bottom:962.599867pt;}
.y2_c00474{bottom:1034.920000pt;}
.h4_c00474{height:18.560000pt;}
.h3_c00474{height:62.812500pt;}
.h5_c00474{height:63.311783pt;}
.h2_c00474{height:1099.880000pt;}
.h0_c00474{height:1122.520000pt;}
.h1_c00474{height:1122.666667pt;}
.w3_c00474{width:24.000000pt;}
.w2_c00474{width:771.080000pt;}
.w0_c00474{width:793.720000pt;}
.w1_c00474{width:794.000000pt;}
.x0_c00474{left:0.000000pt;}
.x1_c00474{left:11.320000pt;}
.x3_c00474{left:84.797333pt;}
.x4_c00474{left:384.760000pt;}
.x2_c00474{left:790.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_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_7e0894ec1155e46227a79dbe.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_0616fe066fa7fc982a988069.woff2')format("woff");}.ff2_c00475{font-family:ff2_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;}
.m0_c00475{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00475{vertical-align:0.000000px;}
.ls0_c00475{letter-spacing:0.000000px;}
.ls1_c00475{letter-spacing:7.221600px;}
.sc__c00475{text-shadow:none;}
.sc0_c00475{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00475{-webkit-text-stroke:0px transparent;}
.sc0_c00475{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00475{word-spacing:0.000000px;}
._3_c00475{margin-left:-8.056800px;}
._4_c00475{width:6.357600px;}
._2_c00475{width:8.078400px;}
._5_c00475{width:12.614400px;}
._0_c00475{width:47.505600px;}
._1_c00475{width:48.693600px;}
.fc1_c00475{color:transparent;}
.fc0_c00475{color:rgb(0,0,0);}
.fs0_c00475{font-size:72.000000px;}
.y0_c00475{bottom:0.000000px;}
.y5_c00475{bottom:1.440000px;}
.y1_c00475{bottom:12.735000px;}
.y3_c00475{bottom:45.405000px;}
.y4_c00475{bottom:56.700000px;}
.y21_c00475{bottom:110.924850px;}
.y20_c00475{bottom:146.924850px;}
.y1f_c00475{bottom:182.924850px;}
.y1e_c00475{bottom:218.924850px;}
.y1d_c00475{bottom:254.924850px;}
.y1c_c00475{bottom:290.924850px;}
.y1b_c00475{bottom:326.924850px;}
.y1a_c00475{bottom:362.924850px;}
.y19_c00475{bottom:398.924850px;}
.y18_c00475{bottom:434.924850px;}
.y17_c00475{bottom:470.924850px;}
.y16_c00475{bottom:506.924850px;}
.y15_c00475{bottom:542.924850px;}
.y14_c00475{bottom:578.924850px;}
.y13_c00475{bottom:614.924850px;}
.y12_c00475{bottom:650.924850px;}
.y11_c00475{bottom:686.924850px;}
.y10_c00475{bottom:722.924850px;}
.yf_c00475{bottom:758.924850px;}
.ye_c00475{bottom:794.924850px;}
.yd_c00475{bottom:830.924850px;}
.yc_c00475{bottom:866.924850px;}
.yb_c00475{bottom:902.924850px;}
.ya_c00475{bottom:938.924850px;}
.y9_c00475{bottom:974.924850px;}
.y8_c00475{bottom:1010.924850px;}
.y7_c00475{bottom:1046.924850px;}
.y6_c00475{bottom:1082.924850px;}
.y2_c00475{bottom:1164.285000px;}
.h4_c00475{height:17.280000px;}
.h3_c00475{height:70.664062px;}
.h2_c00475{height:1237.365000px;}
.h0_c00475{height:1262.835000px;}
.h1_c00475{height:1263.000000px;}
.w3_c00475{width:47.520000px;}
.w2_c00475{width:867.465000px;}
.w0_c00475{width:892.935000px;}
.w1_c00475{width:893.250000px;}
.x0_c00475{left:0.000000px;}
.x5_c00475{left:10.237500px;}
.x1_c00475{left:12.735000px;}
.x3_c00475{left:95.397000px;}
.x4_c00475{left:422.775000px;}
.x2_c00475{left:889.125000px;}
@media print{
.v0_c00475{vertical-align:0.000000pt;}
.ls0_c00475{letter-spacing:0.000000pt;}
.ls1_c00475{letter-spacing:6.419200pt;}
.ws0_c00475{word-spacing:0.000000pt;}
._3_c00475{margin-left:-7.161600pt;}
._4_c00475{width:5.651200pt;}
._2_c00475{width:7.180800pt;}
._5_c00475{width:11.212800pt;}
._0_c00475{width:42.227200pt;}
._1_c00475{width:43.283200pt;}
.fs0_c00475{font-size:64.000000pt;}
.y0_c00475{bottom:0.000000pt;}
.y5_c00475{bottom:1.280000pt;}
.y1_c00475{bottom:11.320000pt;}
.y3_c00475{bottom:40.360000pt;}
.y4_c00475{bottom:50.400000pt;}
.y21_c00475{bottom:98.599867pt;}
.y20_c00475{bottom:130.599867pt;}
.y1f_c00475{bottom:162.599867pt;}
.y1e_c00475{bottom:194.599867pt;}
.y1d_c00475{bottom:226.599867pt;}
.y1c_c00475{bottom:258.599867pt;}
.y1b_c00475{bottom:290.599867pt;}
.y1a_c00475{bottom:322.599867pt;}
.y19_c00475{bottom:354.599867pt;}
.y18_c00475{bottom:386.599867pt;}
.y17_c00475{bottom:418.599867pt;}
.y16_c00475{bottom:450.599867pt;}
.y15_c00475{bottom:482.599867pt;}
.y14_c00475{bottom:514.599867pt;}
.y13_c00475{bottom:546.599867pt;}
.y12_c00475{bottom:578.599867pt;}
.y11_c00475{bottom:610.599867pt;}
.y10_c00475{bottom:642.599867pt;}
.yf_c00475{bottom:674.599867pt;}
.ye_c00475{bottom:706.599867pt;}
.yd_c00475{bottom:738.599867pt;}
.yc_c00475{bottom:770.599867pt;}
.yb_c00475{bottom:802.599867pt;}
.ya_c00475{bottom:834.599867pt;}
.y9_c00475{bottom:866.599867pt;}
.y8_c00475{bottom:898.599867pt;}
.y7_c00475{bottom:930.599867pt;}
.y6_c00475{bottom:962.599867pt;}
.y2_c00475{bottom:1034.920000pt;}
.h4_c00475{height:15.360000pt;}
.h3_c00475{height:62.812500pt;}
.h2_c00475{height:1099.880000pt;}
.h0_c00475{height:1122.520000pt;}
.h1_c00475{height:1122.666667pt;}
.w3_c00475{width:42.240000pt;}
.w2_c00475{width:771.080000pt;}
.w0_c00475{width:793.720000pt;}
.w1_c00475{width:794.000000pt;}
.x0_c00475{left:0.000000pt;}
.x5_c00475{left:9.100000pt;}
.x1_c00475{left:11.320000pt;}
.x3_c00475{left:84.797333pt;}
.x4_c00475{left:375.800000pt;}
.x2_c00475{left:790.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_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_41b6af50f084fb7ab09b17ca.woff2')format("woff");}.ff1_c00476{font-family:ff1_c00476;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00476;src:url('chunks/assets/font_d738e19c89eddf1eaad6ee02.woff2')format("woff");}.ff2_c00476{font-family:ff2_c00476;line-height:1.284180;font-style:normal;font-weight:normal;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_f2e2d66646223e1022d614e7.woff2')format("woff");}.ff3_c00476{font-family:ff3_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;}
.m0_c00476{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00476{vertical-align:0.000000px;}
.ls2_c00476{letter-spacing:0.000000px;}
.ls0_c00476{letter-spacing:0.993600px;}
.ls1_c00476{letter-spacing:1.201560px;}
.sc__c00476{text-shadow:none;}
.sc0_c00476{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00476{-webkit-text-stroke:0px transparent;}
.sc0_c00476{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00476{word-spacing:-18.000000px;}
.ws1_c00476{word-spacing:0.000000px;}
._0_c00476{width:1.022400px;}
._5_c00476{width:2.188800px;}
._9_c00476{width:7.783200px;}
._8_c00476{width:8.935200px;}
._2_c00476{width:10.584000px;}
._1_c00476{width:11.664000px;}
._7_c00476{width:14.241600px;}
._4_c00476{width:15.847200px;}
._3_c00476{width:16.920000px;}
._6_c00476{width:23.817600px;}
.fc2_c00476{color:transparent;}
.fc1_c00476{color:rgb(14,14,14);}
.fc0_c00476{color:rgb(0,0,0);}
.fs0_c00476{font-size:72.000000px;}
.fs1_c00476{font-size:125.280000px;}
.y0_c00476{bottom:0.000000px;}
.y5_c00476{bottom:5.040000px;}
.y1_c00476{bottom:12.735000px;}
.y3_c00476{bottom:45.405000px;}
.y4_c00476{bottom:53.100000px;}
.y21_c00476{bottom:110.924850px;}
.y20_c00476{bottom:146.924850px;}
.y1f_c00476{bottom:182.924850px;}
.y1e_c00476{bottom:218.924850px;}
.y1d_c00476{bottom:254.924850px;}
.y1c_c00476{bottom:290.924850px;}
.y1b_c00476{bottom:326.924850px;}
.y1a_c00476{bottom:362.924850px;}
.y19_c00476{bottom:398.924850px;}
.y18_c00476{bottom:434.924850px;}
.y17_c00476{bottom:470.924850px;}
.y16_c00476{bottom:506.924850px;}
.y15_c00476{bottom:542.924850px;}
.y14_c00476{bottom:578.924850px;}
.y13_c00476{bottom:614.924850px;}
.y12_c00476{bottom:650.924850px;}
.y11_c00476{bottom:686.924850px;}
.y10_c00476{bottom:722.924850px;}
.yf_c00476{bottom:758.924850px;}
.ye_c00476{bottom:794.924850px;}
.yd_c00476{bottom:830.924850px;}
.yc_c00476{bottom:866.924850px;}
.yb_c00476{bottom:902.924850px;}
.ya_c00476{bottom:938.924850px;}
.y9_c00476{bottom:974.924850px;}
.y8_c00476{bottom:1010.924850px;}
.y7_c00476{bottom:1046.924850px;}
.y6_c00476{bottom:1082.924850px;}
.y2_c00476{bottom:1164.285000px;}
.h4_c00476{height:20.880000px;}
.h6_c00476{height:70.628906px;}
.h3_c00476{height:70.664062px;}
.h5_c00476{height:130.418438px;}
.h2_c00476{height:1237.365000px;}
.h0_c00476{height:1262.835000px;}
.h1_c00476{height:1263.000000px;}
.w3_c00476{width:27.000000px;}
.w2_c00476{width:867.465000px;}
.w0_c00476{width:892.935000px;}
.w1_c00476{width:893.250000px;}
.x0_c00476{left:0.000000px;}
.x1_c00476{left:12.735000px;}
.x3_c00476{left:95.397000px;}
.x4_c00476{left:432.855000px;}
.x2_c00476{left:889.125000px;}
@media print{
.v0_c00476{vertical-align:0.000000pt;}
.ls2_c00476{letter-spacing:0.000000pt;}
.ls0_c00476{letter-spacing:0.883200pt;}
.ls1_c00476{letter-spacing:1.068053pt;}
.ws0_c00476{word-spacing:-16.000000pt;}
.ws1_c00476{word-spacing:0.000000pt;}
._0_c00476{width:0.908800pt;}
._5_c00476{width:1.945600pt;}
._9_c00476{width:6.918400pt;}
._8_c00476{width:7.942400pt;}
._2_c00476{width:9.408000pt;}
._1_c00476{width:10.368000pt;}
._7_c00476{width:12.659200pt;}
._4_c00476{width:14.086400pt;}
._3_c00476{width:15.040000pt;}
._6_c00476{width:21.171200pt;}
.fs0_c00476{font-size:64.000000pt;}
.fs1_c00476{font-size:111.360000pt;}
.y0_c00476{bottom:0.000000pt;}
.y5_c00476{bottom:4.480000pt;}
.y1_c00476{bottom:11.320000pt;}
.y3_c00476{bottom:40.360000pt;}
.y4_c00476{bottom:47.200000pt;}
.y21_c00476{bottom:98.599867pt;}
.y20_c00476{bottom:130.599867pt;}
.y1f_c00476{bottom:162.599867pt;}
.y1e_c00476{bottom:194.599867pt;}
.y1d_c00476{bottom:226.599867pt;}
.y1c_c00476{bottom:258.599867pt;}
.y1b_c00476{bottom:290.599867pt;}
.y1a_c00476{bottom:322.599867pt;}
.y19_c00476{bottom:354.599867pt;}
.y18_c00476{bottom:386.599867pt;}
.y17_c00476{bottom:418.599867pt;}
.y16_c00476{bottom:450.599867pt;}
.y15_c00476{bottom:482.599867pt;}
.y14_c00476{bottom:514.599867pt;}
.y13_c00476{bottom:546.599867pt;}
.y12_c00476{bottom:578.599867pt;}
.y11_c00476{bottom:610.599867pt;}
.y10_c00476{bottom:642.599867pt;}
.yf_c00476{bottom:674.599867pt;}
.ye_c00476{bottom:706.599867pt;}
.yd_c00476{bottom:738.599867pt;}
.yc_c00476{bottom:770.599867pt;}
.yb_c00476{bottom:802.599867pt;}
.ya_c00476{bottom:834.599867pt;}
.y9_c00476{bottom:866.599867pt;}
.y8_c00476{bottom:898.599867pt;}
.y7_c00476{bottom:930.599867pt;}
.y6_c00476{bottom:962.599867pt;}
.y2_c00476{bottom:1034.920000pt;}
.h4_c00476{height:18.560000pt;}
.h6_c00476{height:62.781250pt;}
.h3_c00476{height:62.812500pt;}
.h5_c00476{height:115.927500pt;}
.h2_c00476{height:1099.880000pt;}
.h0_c00476{height:1122.520000pt;}
.h1_c00476{height:1122.666667pt;}
.w3_c00476{width:24.000000pt;}
.w2_c00476{width:771.080000pt;}
.w0_c00476{width:793.720000pt;}
.w1_c00476{width:794.000000pt;}
.x0_c00476{left:0.000000pt;}
.x1_c00476{left:11.320000pt;}
.x3_c00476{left:84.797333pt;}
.x4_c00476{left:384.760000pt;}
.x2_c00476{left:790.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_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_469b1093f01fc086c1ac6acc.woff2')format("woff");}.ff1_c00477{font-family:ff1_c00477;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00477;src:url('chunks/assets/font_2adff5c64022c436398851e2.woff2')format("woff");}.ff2_c00477{font-family:ff2_c00477;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
._3_c00477{width:2.232000px;}
._5_c00477{width:6.336000px;}
._2_c00477{width:7.560000px;}
._1_c00477{width:9.554400px;}
._4_c00477{width:16.207200px;}
._0_c00477{width:19.368000px;}
._6_c00477{width:22.708800px;}
.fc1_c00477{color:transparent;}
.fc0_c00477{color:rgb(0,0,0);}
.fs0_c00477{font-size:72.000000px;}
.y0_c00477{bottom:0.000000px;}
.y5_c00477{bottom:1.440000px;}
.y1_c00477{bottom:12.735000px;}
.y3_c00477{bottom:45.405000px;}
.y4_c00477{bottom:56.700000px;}
.y21_c00477{bottom:110.924850px;}
.y20_c00477{bottom:146.924850px;}
.y1f_c00477{bottom:182.924850px;}
.y1e_c00477{bottom:218.924850px;}
.y1d_c00477{bottom:254.924850px;}
.y1c_c00477{bottom:290.924850px;}
.y1b_c00477{bottom:326.924850px;}
.y1a_c00477{bottom:362.924850px;}
.y19_c00477{bottom:398.924850px;}
.y18_c00477{bottom:434.924850px;}
.y17_c00477{bottom:470.924850px;}
.y16_c00477{bottom:506.924850px;}
.y15_c00477{bottom:542.924850px;}
.y14_c00477{bottom:578.924850px;}
.y13_c00477{bottom:614.924850px;}
.y12_c00477{bottom:650.924850px;}
.y11_c00477{bottom:686.924850px;}
.y10_c00477{bottom:722.924850px;}
.yf_c00477{bottom:758.924850px;}
.ye_c00477{bottom:794.924850px;}
.yd_c00477{bottom:830.924850px;}
.yc_c00477{bottom:866.924850px;}
.yb_c00477{bottom:902.924850px;}
.ya_c00477{bottom:938.924850px;}
.y9_c00477{bottom:974.924850px;}
.y8_c00477{bottom:1010.924850px;}
.y7_c00477{bottom:1046.924850px;}
.y6_c00477{bottom:1082.924850px;}
.y2_c00477{bottom:1164.285000px;}
.h4_c00477{height:17.280000px;}
.h3_c00477{height:70.664062px;}
.h2_c00477{height:1237.365000px;}
.h0_c00477{height:1262.835000px;}
.h1_c00477{height:1263.000000px;}
.w3_c00477{width:47.520000px;}
.w2_c00477{width:867.465000px;}
.w0_c00477{width:892.935000px;}
.w1_c00477{width:893.250000px;}
.x0_c00477{left:0.000000px;}
.x5_c00477{left:10.237500px;}
.x1_c00477{left:12.735000px;}
.x3_c00477{left:95.397000px;}
.x4_c00477{left:422.775000px;}
.x2_c00477{left:889.125000px;}
@media print{
.v0_c00477{vertical-align:0.000000pt;}
.ls0_c00477{letter-spacing:0.000000pt;}
.ws0_c00477{word-spacing:0.000000pt;}
._3_c00477{width:1.984000pt;}
._5_c00477{width:5.632000pt;}
._2_c00477{width:6.720000pt;}
._1_c00477{width:8.492800pt;}
._4_c00477{width:14.406400pt;}
._0_c00477{width:17.216000pt;}
._6_c00477{width:20.185600pt;}
.fs0_c00477{font-size:64.000000pt;}
.y0_c00477{bottom:0.000000pt;}
.y5_c00477{bottom:1.280000pt;}
.y1_c00477{bottom:11.320000pt;}
.y3_c00477{bottom:40.360000pt;}
.y4_c00477{bottom:50.400000pt;}
.y21_c00477{bottom:98.599867pt;}
.y20_c00477{bottom:130.599867pt;}
.y1f_c00477{bottom:162.599867pt;}
.y1e_c00477{bottom:194.599867pt;}
.y1d_c00477{bottom:226.599867pt;}
.y1c_c00477{bottom:258.599867pt;}
.y1b_c00477{bottom:290.599867pt;}
.y1a_c00477{bottom:322.599867pt;}
.y19_c00477{bottom:354.599867pt;}
.y18_c00477{bottom:386.599867pt;}
.y17_c00477{bottom:418.599867pt;}
.y16_c00477{bottom:450.599867pt;}
.y15_c00477{bottom:482.599867pt;}
.y14_c00477{bottom:514.599867pt;}
.y13_c00477{bottom:546.599867pt;}
.y12_c00477{bottom:578.599867pt;}
.y11_c00477{bottom:610.599867pt;}
.y10_c00477{bottom:642.599867pt;}
.yf_c00477{bottom:674.599867pt;}
.ye_c00477{bottom:706.599867pt;}
.yd_c00477{bottom:738.599867pt;}
.yc_c00477{bottom:770.599867pt;}
.yb_c00477{bottom:802.599867pt;}
.ya_c00477{bottom:834.599867pt;}
.y9_c00477{bottom:866.599867pt;}
.y8_c00477{bottom:898.599867pt;}
.y7_c00477{bottom:930.599867pt;}
.y6_c00477{bottom:962.599867pt;}
.y2_c00477{bottom:1034.920000pt;}
.h4_c00477{height:15.360000pt;}
.h3_c00477{height:62.812500pt;}
.h2_c00477{height:1099.880000pt;}
.h0_c00477{height:1122.520000pt;}
.h1_c00477{height:1122.666667pt;}
.w3_c00477{width:42.240000pt;}
.w2_c00477{width:771.080000pt;}
.w0_c00477{width:793.720000pt;}
.w1_c00477{width:794.000000pt;}
.x0_c00477{left:0.000000pt;}
.x5_c00477{left:9.100000pt;}
.x1_c00477{left:11.320000pt;}
.x3_c00477{left:84.797333pt;}
.x4_c00477{left:375.800000pt;}
.x2_c00477{left:790.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_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_74b4a75ac8c6017313ba68b7.woff2')format("woff");}.ff1_c00478{font-family:ff1_c00478;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00478;src:url('chunks/assets/font_abccc18b7a9f3489af97b000.woff2')format("woff");}.ff2_c00478{font-family:ff2_c00478;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00478;src:url('chunks/assets/font_676eef402047f9f31c2f278c.woff2')format("woff");}.ff3_c00478{font-family:ff3_c00478;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
._5_c00478{width:2.095200px;}
._1_c00478{width:4.255200px;}
._3_c00478{width:5.724000px;}
._2_c00478{width:11.822400px;}
._4_c00478{width:13.161600px;}
._0_c00478{width:20.080800px;}
._6_c00478{width:23.911200px;}
.fc1_c00478{color:transparent;}
.fc0_c00478{color:rgb(0,0,0);}
.fs0_c00478{font-size:72.000000px;}
.y0_c00478{bottom:0.000000px;}
.y5_c00478{bottom:5.040000px;}
.y1_c00478{bottom:12.735000px;}
.y3_c00478{bottom:45.405000px;}
.y4_c00478{bottom:53.100000px;}
.y21_c00478{bottom:110.924850px;}
.y20_c00478{bottom:146.924850px;}
.y1f_c00478{bottom:182.924850px;}
.y1e_c00478{bottom:218.924850px;}
.y1d_c00478{bottom:254.924850px;}
.y1c_c00478{bottom:297.044850px;}
.y1b_c00478{bottom:326.924850px;}
.y1a_c00478{bottom:362.924850px;}
.y19_c00478{bottom:398.924850px;}
.y18_c00478{bottom:434.924850px;}
.y17_c00478{bottom:470.924850px;}
.y16_c00478{bottom:506.924850px;}
.y15_c00478{bottom:542.924850px;}
.y14_c00478{bottom:578.924850px;}
.y13_c00478{bottom:614.924850px;}
.y12_c00478{bottom:650.924850px;}
.y11_c00478{bottom:686.924850px;}
.y10_c00478{bottom:722.924850px;}
.yf_c00478{bottom:758.924850px;}
.ye_c00478{bottom:794.924850px;}
.yd_c00478{bottom:830.924850px;}
.yc_c00478{bottom:866.924850px;}
.yb_c00478{bottom:902.924850px;}
.ya_c00478{bottom:938.924850px;}
.y9_c00478{bottom:974.924850px;}
.y8_c00478{bottom:1010.924850px;}
.y7_c00478{bottom:1046.924850px;}
.y6_c00478{bottom:1082.924850px;}
.y2_c00478{bottom:1164.285000px;}
.h4_c00478{height:20.880000px;}
.h3_c00478{height:70.664062px;}
.h2_c00478{height:1237.365000px;}
.h0_c00478{height:1262.835000px;}
.h1_c00478{height:1263.000000px;}
.w3_c00478{width:27.000000px;}
.w2_c00478{width:867.465000px;}
.w0_c00478{width:892.935000px;}
.w1_c00478{width:893.250000px;}
.x0_c00478{left:0.000000px;}
.x1_c00478{left:12.735000px;}
.x3_c00478{left:95.397000px;}
.x4_c00478{left:432.855000px;}
.x2_c00478{left:889.125000px;}
@media print{
.v0_c00478{vertical-align:0.000000pt;}
.ls0_c00478{letter-spacing:0.000000pt;}
.ws0_c00478{word-spacing:0.000000pt;}
._5_c00478{width:1.862400pt;}
._1_c00478{width:3.782400pt;}
._3_c00478{width:5.088000pt;}
._2_c00478{width:10.508800pt;}
._4_c00478{width:11.699200pt;}
._0_c00478{width:17.849600pt;}
._6_c00478{width:21.254400pt;}
.fs0_c00478{font-size:64.000000pt;}
.y0_c00478{bottom:0.000000pt;}
.y5_c00478{bottom:4.480000pt;}
.y1_c00478{bottom:11.320000pt;}
.y3_c00478{bottom:40.360000pt;}
.y4_c00478{bottom:47.200000pt;}
.y21_c00478{bottom:98.599867pt;}
.y20_c00478{bottom:130.599867pt;}
.y1f_c00478{bottom:162.599867pt;}
.y1e_c00478{bottom:194.599867pt;}
.y1d_c00478{bottom:226.599867pt;}
.y1c_c00478{bottom:264.039867pt;}
.y1b_c00478{bottom:290.599867pt;}
.y1a_c00478{bottom:322.599867pt;}
.y19_c00478{bottom:354.599867pt;}
.y18_c00478{bottom:386.599867pt;}
.y17_c00478{bottom:418.599867pt;}
.y16_c00478{bottom:450.599867pt;}
.y15_c00478{bottom:482.599867pt;}
.y14_c00478{bottom:514.599867pt;}
.y13_c00478{bottom:546.599867pt;}
.y12_c00478{bottom:578.599867pt;}
.y11_c00478{bottom:610.599867pt;}
.y10_c00478{bottom:642.599867pt;}
.yf_c00478{bottom:674.599867pt;}
.ye_c00478{bottom:706.599867pt;}
.yd_c00478{bottom:738.599867pt;}
.yc_c00478{bottom:770.599867pt;}
.yb_c00478{bottom:802.599867pt;}
.ya_c00478{bottom:834.599867pt;}
.y9_c00478{bottom:866.599867pt;}
.y8_c00478{bottom:898.599867pt;}
.y7_c00478{bottom:930.599867pt;}
.y6_c00478{bottom:962.599867pt;}
.y2_c00478{bottom:1034.920000pt;}
.h4_c00478{height:18.560000pt;}
.h3_c00478{height:62.812500pt;}
.h2_c00478{height:1099.880000pt;}
.h0_c00478{height:1122.520000pt;}
.h1_c00478{height:1122.666667pt;}
.w3_c00478{width:24.000000pt;}
.w2_c00478{width:771.080000pt;}
.w0_c00478{width:793.720000pt;}
.w1_c00478{width:794.000000pt;}
.x0_c00478{left:0.000000pt;}
.x1_c00478{left:11.320000pt;}
.x3_c00478{left:84.797333pt;}
.x4_c00478{left:384.760000pt;}
.x2_c00478{left:790.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_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_56ed5137b2f886e93bbf9974.woff2')format("woff");}.ff1_c00479{font-family:ff1_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:ff2_c00479;src:url('chunks/assets/font_55b1cc52f136d026ae7d90f0.woff2')format("woff");}.ff2_c00479{font-family:ff2_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;}
.m0_c00479{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00479{vertical-align:0.000000px;}
.ls0_c00479{letter-spacing:0.000000px;}
.sc__c00479{text-shadow:none;}
.sc0_c00479{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00479{-webkit-text-stroke:0px transparent;}
.sc0_c00479{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00479{word-spacing:0.000000px;}
._0_c00479{width:6.624000px;}
._2_c00479{width:9.676800px;}
._1_c00479{width:11.160000px;}
._3_c00479{width:12.463200px;}
.fc1_c00479{color:transparent;}
.fc0_c00479{color:rgb(0,0,0);}
.fs0_c00479{font-size:72.000000px;}
.y0_c00479{bottom:0.000000px;}
.y5_c00479{bottom:1.440000px;}
.y1_c00479{bottom:12.735000px;}
.y3_c00479{bottom:45.405000px;}
.y4_c00479{bottom:56.700000px;}
.y21_c00479{bottom:110.924850px;}
.y20_c00479{bottom:146.924850px;}
.y1f_c00479{bottom:182.924850px;}
.y1e_c00479{bottom:218.924850px;}
.y1d_c00479{bottom:254.924850px;}
.y1c_c00479{bottom:290.924850px;}
.y1b_c00479{bottom:326.924850px;}
.y1a_c00479{bottom:362.924850px;}
.y19_c00479{bottom:398.924850px;}
.y18_c00479{bottom:434.924850px;}
.y17_c00479{bottom:470.924850px;}
.y16_c00479{bottom:506.924850px;}
.y15_c00479{bottom:542.924850px;}
.y14_c00479{bottom:578.924850px;}
.y13_c00479{bottom:614.924850px;}
.y12_c00479{bottom:650.924850px;}
.y11_c00479{bottom:686.924850px;}
.y10_c00479{bottom:722.924850px;}
.yf_c00479{bottom:758.924850px;}
.ye_c00479{bottom:794.924850px;}
.yd_c00479{bottom:830.924850px;}
.yc_c00479{bottom:866.924850px;}
.yb_c00479{bottom:902.924850px;}
.ya_c00479{bottom:938.924850px;}
.y9_c00479{bottom:974.924850px;}
.y8_c00479{bottom:1010.924850px;}
.y7_c00479{bottom:1046.924850px;}
.y6_c00479{bottom:1082.924850px;}
.y2_c00479{bottom:1164.285000px;}
.h4_c00479{height:17.280000px;}
.h3_c00479{height:70.664062px;}
.h2_c00479{height:1237.365000px;}
.h0_c00479{height:1262.835000px;}
.h1_c00479{height:1263.000000px;}
.w3_c00479{width:47.520000px;}
.w2_c00479{width:867.465000px;}
.w0_c00479{width:892.935000px;}
.w1_c00479{width:893.250000px;}
.x0_c00479{left:0.000000px;}
.x5_c00479{left:10.237500px;}
.x1_c00479{left:12.735000px;}
.x3_c00479{left:95.397000px;}
.x4_c00479{left:422.775000px;}
.x2_c00479{left:889.125000px;}
@media print{
.v0_c00479{vertical-align:0.000000pt;}
.ls0_c00479{letter-spacing:0.000000pt;}
.ws0_c00479{word-spacing:0.000000pt;}
._0_c00479{width:5.888000pt;}
._2_c00479{width:8.601600pt;}
._1_c00479{width:9.920000pt;}
._3_c00479{width:11.078400pt;}
.fs0_c00479{font-size:64.000000pt;}
.y0_c00479{bottom:0.000000pt;}
.y5_c00479{bottom:1.280000pt;}
.y1_c00479{bottom:11.320000pt;}
.y3_c00479{bottom:40.360000pt;}
.y4_c00479{bottom:50.400000pt;}
.y21_c00479{bottom:98.599867pt;}
.y20_c00479{bottom:130.599867pt;}
.y1f_c00479{bottom:162.599867pt;}
.y1e_c00479{bottom:194.599867pt;}
.y1d_c00479{bottom:226.599867pt;}
.y1c_c00479{bottom:258.599867pt;}
.y1b_c00479{bottom:290.599867pt;}
.y1a_c00479{bottom:322.599867pt;}
.y19_c00479{bottom:354.599867pt;}
.y18_c00479{bottom:386.599867pt;}
.y17_c00479{bottom:418.599867pt;}
.y16_c00479{bottom:450.599867pt;}
.y15_c00479{bottom:482.599867pt;}
.y14_c00479{bottom:514.599867pt;}
.y13_c00479{bottom:546.599867pt;}
.y12_c00479{bottom:578.599867pt;}
.y11_c00479{bottom:610.599867pt;}
.y10_c00479{bottom:642.599867pt;}
.yf_c00479{bottom:674.599867pt;}
.ye_c00479{bottom:706.599867pt;}
.yd_c00479{bottom:738.599867pt;}
.yc_c00479{bottom:770.599867pt;}
.yb_c00479{bottom:802.599867pt;}
.ya_c00479{bottom:834.599867pt;}
.y9_c00479{bottom:866.599867pt;}
.y8_c00479{bottom:898.599867pt;}
.y7_c00479{bottom:930.599867pt;}
.y6_c00479{bottom:962.599867pt;}
.y2_c00479{bottom:1034.920000pt;}
.h4_c00479{height:15.360000pt;}
.h3_c00479{height:62.812500pt;}
.h2_c00479{height:1099.880000pt;}
.h0_c00479{height:1122.520000pt;}
.h1_c00479{height:1122.666667pt;}
.w3_c00479{width:42.240000pt;}
.w2_c00479{width:771.080000pt;}
.w0_c00479{width:793.720000pt;}
.w1_c00479{width:794.000000pt;}
.x0_c00479{left:0.000000pt;}
.x5_c00479{left:9.100000pt;}
.x1_c00479{left:11.320000pt;}
.x3_c00479{left:84.797333pt;}
.x4_c00479{left:375.800000pt;}
.x2_c00479{left:790.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_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_1e09a26c25509711aa7a0902.woff2')format("woff");}.ff1_c00480{font-family:ff1_c00480;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00480;src:url('chunks/assets/font_676eef402047f9f31c2f278c.woff2')format("woff");}.ff2_c00480{font-family:ff2_c00480;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00480;src:url('chunks/assets/font_4856551e93a94fcd66f96626.woff2')format("woff");}.ff3_c00480{font-family:ff3_c00480;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00480{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00480{vertical-align:0.000000px;}
.ls0_c00480{letter-spacing:0.000000px;}
.ls1_c00480{letter-spacing:0.014400px;}
.sc__c00480{text-shadow:none;}
.sc0_c00480{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00480{-webkit-text-stroke:0px transparent;}
.sc0_c00480{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00480{word-spacing:0.000000px;}
._3_c00480{width:1.015200px;}
._8_c00480{width:7.041600px;}
._1_c00480{width:8.222400px;}
._4_c00480{width:9.460800px;}
._0_c00480{width:10.728000px;}
._2_c00480{width:11.880000px;}
._7_c00480{width:12.988800px;}
._5_c00480{width:14.198400px;}
._6_c00480{width:22.608000px;}
.fc1_c00480{color:transparent;}
.fc0_c00480{color:rgb(0,0,0);}
.fs0_c00480{font-size:72.000000px;}
.y0_c00480{bottom:0.000000px;}
.y5_c00480{bottom:5.040000px;}
.y1_c00480{bottom:12.735000px;}
.y3_c00480{bottom:45.405000px;}
.y4_c00480{bottom:53.100000px;}
.y20_c00480{bottom:146.925000px;}
.y1f_c00480{bottom:182.925000px;}
.y1e_c00480{bottom:218.925000px;}
.y1d_c00480{bottom:254.925000px;}
.y1c_c00480{bottom:290.925000px;}
.y1b_c00480{bottom:326.925000px;}
.y1a_c00480{bottom:362.925000px;}
.y19_c00480{bottom:398.925000px;}
.y18_c00480{bottom:434.925000px;}
.y17_c00480{bottom:470.925000px;}
.y16_c00480{bottom:506.925000px;}
.y15_c00480{bottom:542.925000px;}
.y14_c00480{bottom:578.925000px;}
.y13_c00480{bottom:614.925000px;}
.y12_c00480{bottom:650.925000px;}
.y11_c00480{bottom:686.925000px;}
.y10_c00480{bottom:722.925000px;}
.yf_c00480{bottom:758.925000px;}
.ye_c00480{bottom:794.925000px;}
.yd_c00480{bottom:830.925000px;}
.yc_c00480{bottom:866.925000px;}
.yb_c00480{bottom:902.925000px;}
.ya_c00480{bottom:938.925000px;}
.y9_c00480{bottom:974.925000px;}
.y8_c00480{bottom:1010.925000px;}
.y7_c00480{bottom:1046.925000px;}
.y6_c00480{bottom:1089.045000px;}
.y2_c00480{bottom:1164.285000px;}
.h4_c00480{height:20.880000px;}
.h3_c00480{height:70.664062px;}
.h2_c00480{height:1237.365000px;}
.h0_c00480{height:1262.835000px;}
.h1_c00480{height:1263.000000px;}
.w3_c00480{width:27.000000px;}
.w2_c00480{width:867.465000px;}
.w0_c00480{width:892.935000px;}
.w1_c00480{width:893.250000px;}
.x0_c00480{left:0.000000px;}
.x1_c00480{left:12.735000px;}
.x3_c00480{left:95.397000px;}
.x4_c00480{left:432.855000px;}
.x2_c00480{left:889.125000px;}
@media print{
.v0_c00480{vertical-align:0.000000pt;}
.ls0_c00480{letter-spacing:0.000000pt;}
.ls1_c00480{letter-spacing:0.012800pt;}
.ws0_c00480{word-spacing:0.000000pt;}
._3_c00480{width:0.902400pt;}
._8_c00480{width:6.259200pt;}
._1_c00480{width:7.308800pt;}
._4_c00480{width:8.409600pt;}
._0_c00480{width:9.536000pt;}
._2_c00480{width:10.560000pt;}
._7_c00480{width:11.545600pt;}
._5_c00480{width:12.620800pt;}
._6_c00480{width:20.096000pt;}
.fs0_c00480{font-size:64.000000pt;}
.y0_c00480{bottom:0.000000pt;}
.y5_c00480{bottom:4.480000pt;}
.y1_c00480{bottom:11.320000pt;}
.y3_c00480{bottom:40.360000pt;}
.y4_c00480{bottom:47.200000pt;}
.y20_c00480{bottom:130.600000pt;}
.y1f_c00480{bottom:162.600000pt;}
.y1e_c00480{bottom:194.600000pt;}
.y1d_c00480{bottom:226.600000pt;}
.y1c_c00480{bottom:258.600000pt;}
.y1b_c00480{bottom:290.600000pt;}
.y1a_c00480{bottom:322.600000pt;}
.y19_c00480{bottom:354.600000pt;}
.y18_c00480{bottom:386.600000pt;}
.y17_c00480{bottom:418.600000pt;}
.y16_c00480{bottom:450.600000pt;}
.y15_c00480{bottom:482.600000pt;}
.y14_c00480{bottom:514.600000pt;}
.y13_c00480{bottom:546.600000pt;}
.y12_c00480{bottom:578.600000pt;}
.y11_c00480{bottom:610.600000pt;}
.y10_c00480{bottom:642.600000pt;}
.yf_c00480{bottom:674.600000pt;}
.ye_c00480{bottom:706.600000pt;}
.yd_c00480{bottom:738.600000pt;}
.yc_c00480{bottom:770.600000pt;}
.yb_c00480{bottom:802.600000pt;}
.ya_c00480{bottom:834.600000pt;}
.y9_c00480{bottom:866.600000pt;}
.y8_c00480{bottom:898.600000pt;}
.y7_c00480{bottom:930.600000pt;}
.y6_c00480{bottom:968.040000pt;}
.y2_c00480{bottom:1034.920000pt;}
.h4_c00480{height:18.560000pt;}
.h3_c00480{height:62.812500pt;}
.h2_c00480{height:1099.880000pt;}
.h0_c00480{height:1122.520000pt;}
.h1_c00480{height:1122.666667pt;}
.w3_c00480{width:24.000000pt;}
.w2_c00480{width:771.080000pt;}
.w0_c00480{width:793.720000pt;}
.w1_c00480{width:794.000000pt;}
.x0_c00480{left:0.000000pt;}
.x1_c00480{left:11.320000pt;}
.x3_c00480{left:84.797333pt;}
.x4_c00480{left:384.760000pt;}
.x2_c00480{left:790.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_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_b76bcc0b3f0a88e24457a2b5.woff2')format("woff");}.ff1_c00481{font-family:ff1_c00481;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00481;src:url('chunks/assets/font_eb917c90c5c5508efedfeb8f.woff2')format("woff");}.ff2_c00481{font-family:ff2_c00481;line-height:1.284180;font-style: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;}
.ls1_c00481{letter-spacing:-0.014400px;}
.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;}
._0_c00481{width:1.713600px;}
._2_c00481{width:3.477600px;}
._7_c00481{width:5.270400px;}
._6_c00481{width:7.444800px;}
._3_c00481{width:12.902400px;}
._a_c00481{width:14.536800px;}
._8_c00481{width:15.912000px;}
._4_c00481{width:22.046400px;}
._1_c00481{width:24.436800px;}
._5_c00481{width:26.848800px;}
._9_c00481{width:41.306400px;}
.fc1_c00481{color:transparent;}
.fc0_c00481{color:rgb(0,0,0);}
.fs0_c00481{font-size:72.000000px;}
.y0_c00481{bottom:0.000000px;}
.y5_c00481{bottom:1.440000px;}
.y1_c00481{bottom:12.735000px;}
.y3_c00481{bottom:45.405000px;}
.y4_c00481{bottom:56.700000px;}
.y20_c00481{bottom:146.924850px;}
.y1f_c00481{bottom:182.924850px;}
.y1e_c00481{bottom:218.924850px;}
.y1d_c00481{bottom:254.924850px;}
.y1c_c00481{bottom:290.924850px;}
.y1b_c00481{bottom:326.924850px;}
.y1a_c00481{bottom:362.924850px;}
.y19_c00481{bottom:398.924850px;}
.y18_c00481{bottom:434.924850px;}
.y17_c00481{bottom:470.924850px;}
.y16_c00481{bottom:506.924850px;}
.y15_c00481{bottom:542.924850px;}
.y14_c00481{bottom:578.924850px;}
.y13_c00481{bottom:614.924850px;}
.y12_c00481{bottom:650.924850px;}
.y11_c00481{bottom:686.924850px;}
.y10_c00481{bottom:722.924850px;}
.yf_c00481{bottom:758.924850px;}
.ye_c00481{bottom:794.924850px;}
.yd_c00481{bottom:830.924850px;}
.yc_c00481{bottom:866.924850px;}
.yb_c00481{bottom:902.924850px;}
.ya_c00481{bottom:938.924850px;}
.y9_c00481{bottom:974.924850px;}
.y8_c00481{bottom:1010.924850px;}
.y7_c00481{bottom:1046.924850px;}
.y6_c00481{bottom:1082.924850px;}
.y2_c00481{bottom:1164.285000px;}
.h4_c00481{height:17.280000px;}
.h3_c00481{height:70.664062px;}
.h2_c00481{height:1237.365000px;}
.h0_c00481{height:1262.835000px;}
.h1_c00481{height:1263.000000px;}
.w3_c00481{width:47.520000px;}
.w2_c00481{width:867.465000px;}
.w0_c00481{width:892.935000px;}
.w1_c00481{width:893.250000px;}
.x0_c00481{left:0.000000px;}
.x5_c00481{left:10.237500px;}
.x1_c00481{left:12.735000px;}
.x3_c00481{left:95.397000px;}
.x4_c00481{left:422.775000px;}
.x2_c00481{left:889.125000px;}
@media print{
.v0_c00481{vertical-align:0.000000pt;}
.ls1_c00481{letter-spacing:-0.012800pt;}
.ls0_c00481{letter-spacing:0.000000pt;}
.ws0_c00481{word-spacing:0.000000pt;}
._0_c00481{width:1.523200pt;}
._2_c00481{width:3.091200pt;}
._7_c00481{width:4.684800pt;}
._6_c00481{width:6.617600pt;}
._3_c00481{width:11.468800pt;}
._a_c00481{width:12.921600pt;}
._8_c00481{width:14.144000pt;}
._4_c00481{width:19.596800pt;}
._1_c00481{width:21.721600pt;}
._5_c00481{width:23.865600pt;}
._9_c00481{width:36.716800pt;}
.fs0_c00481{font-size:64.000000pt;}
.y0_c00481{bottom:0.000000pt;}
.y5_c00481{bottom:1.280000pt;}
.y1_c00481{bottom:11.320000pt;}
.y3_c00481{bottom:40.360000pt;}
.y4_c00481{bottom:50.400000pt;}
.y20_c00481{bottom:130.599867pt;}
.y1f_c00481{bottom:162.599867pt;}
.y1e_c00481{bottom:194.599867pt;}
.y1d_c00481{bottom:226.599867pt;}
.y1c_c00481{bottom:258.599867pt;}
.y1b_c00481{bottom:290.599867pt;}
.y1a_c00481{bottom:322.599867pt;}
.y19_c00481{bottom:354.599867pt;}
.y18_c00481{bottom:386.599867pt;}
.y17_c00481{bottom:418.599867pt;}
.y16_c00481{bottom:450.599867pt;}
.y15_c00481{bottom:482.599867pt;}
.y14_c00481{bottom:514.599867pt;}
.y13_c00481{bottom:546.599867pt;}
.y12_c00481{bottom:578.599867pt;}
.y11_c00481{bottom:610.599867pt;}
.y10_c00481{bottom:642.599867pt;}
.yf_c00481{bottom:674.599867pt;}
.ye_c00481{bottom:706.599867pt;}
.yd_c00481{bottom:738.599867pt;}
.yc_c00481{bottom:770.599867pt;}
.yb_c00481{bottom:802.599867pt;}
.ya_c00481{bottom:834.599867pt;}
.y9_c00481{bottom:866.599867pt;}
.y8_c00481{bottom:898.599867pt;}
.y7_c00481{bottom:930.599867pt;}
.y6_c00481{bottom:962.599867pt;}
.y2_c00481{bottom:1034.920000pt;}
.h4_c00481{height:15.360000pt;}
.h3_c00481{height:62.812500pt;}
.h2_c00481{height:1099.880000pt;}
.h0_c00481{height:1122.520000pt;}
.h1_c00481{height:1122.666667pt;}
.w3_c00481{width:42.240000pt;}
.w2_c00481{width:771.080000pt;}
.w0_c00481{width:793.720000pt;}
.w1_c00481{width:794.000000pt;}
.x0_c00481{left:0.000000pt;}
.x5_c00481{left:9.100000pt;}
.x1_c00481{left:11.320000pt;}
.x3_c00481{left:84.797333pt;}
.x4_c00481{left:375.800000pt;}
.x2_c00481{left:790.333333pt;}
}





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

.ir_c00482:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00482{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00482;src:url('chunks/assets/font_d894b024fc70e03c5a8ba077.woff2')format("woff");}.ff1_c00482{font-family:ff1_c00482;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00482;src:url('chunks/assets/font_b920b6345242c441c97e369c.woff2')format("woff");}.ff2_c00482{font-family:ff2_c00482;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00482;src:url('chunks/assets/font_a8dfdd4764750502770fc013.woff2')format("woff");}.ff3_c00482{font-family:ff3_c00482;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_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;}
.ls0_c00482{letter-spacing:0.000000px;}
.ls1_c00482{letter-spacing:0.014400px;}
.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;}
._4_c00482{width:1.015200px;}
._3_c00482{width:3.600000px;}
._2_c00482{width:4.752000px;}
._1_c00482{width:5.896800px;}
._0_c00482{width:7.056000px;}
._a_c00482{width:8.503200px;}
._9_c00482{width:9.518400px;}
._5_c00482{width:13.665600px;}
._8_c00482{width:31.564800px;}
._7_c00482{width:33.048000px;}
._6_c00482{width:34.243200px;}
.fc1_c00482{color:transparent;}
.fc0_c00482{color:rgb(0,0,0);}
.fs0_c00482{font-size:72.000000px;}
.y0_c00482{bottom:0.000000px;}
.y5_c00482{bottom:5.040000px;}
.y1_c00482{bottom:12.735000px;}
.y3_c00482{bottom:45.405000px;}
.y4_c00482{bottom:53.100000px;}
.y20_c00482{bottom:146.924850px;}
.y1f_c00482{bottom:182.924850px;}
.y1e_c00482{bottom:218.924850px;}
.y1d_c00482{bottom:254.924850px;}
.y1c_c00482{bottom:290.924850px;}
.y1b_c00482{bottom:326.924850px;}
.y1a_c00482{bottom:362.924850px;}
.y19_c00482{bottom:398.924850px;}
.y18_c00482{bottom:434.924850px;}
.y17_c00482{bottom:470.924850px;}
.y16_c00482{bottom:506.924850px;}
.y15_c00482{bottom:542.924850px;}
.y14_c00482{bottom:578.924850px;}
.y13_c00482{bottom:614.924850px;}
.y12_c00482{bottom:650.924850px;}
.y11_c00482{bottom:686.924850px;}
.y10_c00482{bottom:722.924850px;}
.yf_c00482{bottom:758.924850px;}
.ye_c00482{bottom:794.924850px;}
.yd_c00482{bottom:830.924850px;}
.yc_c00482{bottom:866.924850px;}
.yb_c00482{bottom:902.924850px;}
.ya_c00482{bottom:938.924850px;}
.y9_c00482{bottom:974.924850px;}
.y8_c00482{bottom:1010.924850px;}
.y7_c00482{bottom:1046.924850px;}
.y6_c00482{bottom:1082.924850px;}
.y2_c00482{bottom:1164.285000px;}
.h4_c00482{height:20.880000px;}
.h3_c00482{height:70.664062px;}
.h2_c00482{height:1237.365000px;}
.h0_c00482{height:1262.835000px;}
.h1_c00482{height:1263.000000px;}
.w3_c00482{width:27.000000px;}
.w2_c00482{width:867.465000px;}
.w0_c00482{width:892.935000px;}
.w1_c00482{width:893.250000px;}
.x0_c00482{left:0.000000px;}
.x1_c00482{left:12.735000px;}
.x3_c00482{left:95.397000px;}
.x4_c00482{left:432.855000px;}
.x2_c00482{left:889.125000px;}
@media print{
.v0_c00482{vertical-align:0.000000pt;}
.ls0_c00482{letter-spacing:0.000000pt;}
.ls1_c00482{letter-spacing:0.012800pt;}
.ws0_c00482{word-spacing:0.000000pt;}
._4_c00482{width:0.902400pt;}
._3_c00482{width:3.200000pt;}
._2_c00482{width:4.224000pt;}
._1_c00482{width:5.241600pt;}
._0_c00482{width:6.272000pt;}
._a_c00482{width:7.558400pt;}
._9_c00482{width:8.460800pt;}
._5_c00482{width:12.147200pt;}
._8_c00482{width:28.057600pt;}
._7_c00482{width:29.376000pt;}
._6_c00482{width:30.438400pt;}
.fs0_c00482{font-size:64.000000pt;}
.y0_c00482{bottom:0.000000pt;}
.y5_c00482{bottom:4.480000pt;}
.y1_c00482{bottom:11.320000pt;}
.y3_c00482{bottom:40.360000pt;}
.y4_c00482{bottom:47.200000pt;}
.y20_c00482{bottom:130.599867pt;}
.y1f_c00482{bottom:162.599867pt;}
.y1e_c00482{bottom:194.599867pt;}
.y1d_c00482{bottom:226.599867pt;}
.y1c_c00482{bottom:258.599867pt;}
.y1b_c00482{bottom:290.599867pt;}
.y1a_c00482{bottom:322.599867pt;}
.y19_c00482{bottom:354.599867pt;}
.y18_c00482{bottom:386.599867pt;}
.y17_c00482{bottom:418.599867pt;}
.y16_c00482{bottom:450.599867pt;}
.y15_c00482{bottom:482.599867pt;}
.y14_c00482{bottom:514.599867pt;}
.y13_c00482{bottom:546.599867pt;}
.y12_c00482{bottom:578.599867pt;}
.y11_c00482{bottom:610.599867pt;}
.y10_c00482{bottom:642.599867pt;}
.yf_c00482{bottom:674.599867pt;}
.ye_c00482{bottom:706.599867pt;}
.yd_c00482{bottom:738.599867pt;}
.yc_c00482{bottom:770.599867pt;}
.yb_c00482{bottom:802.599867pt;}
.ya_c00482{bottom:834.599867pt;}
.y9_c00482{bottom:866.599867pt;}
.y8_c00482{bottom:898.599867pt;}
.y7_c00482{bottom:930.599867pt;}
.y6_c00482{bottom:962.599867pt;}
.y2_c00482{bottom:1034.920000pt;}
.h4_c00482{height:18.560000pt;}
.h3_c00482{height:62.812500pt;}
.h2_c00482{height:1099.880000pt;}
.h0_c00482{height:1122.520000pt;}
.h1_c00482{height:1122.666667pt;}
.w3_c00482{width:24.000000pt;}
.w2_c00482{width:771.080000pt;}
.w0_c00482{width:793.720000pt;}
.w1_c00482{width:794.000000pt;}
.x0_c00482{left:0.000000pt;}
.x1_c00482{left:11.320000pt;}
.x3_c00482{left:84.797333pt;}
.x4_c00482{left:384.760000pt;}
.x2_c00482{left:790.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_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_6f47f69d43c4e8daedc70ed9.woff2')format("woff");}.ff1_c00483{font-family:ff1_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:ff2_c00483;src:url('chunks/assets/font_c5d54cf4ec60a5fbb59a641b.woff2')format("woff");}.ff2_c00483{font-family:ff2_c00483;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00483;src:url('chunks/assets/font_6f4302f98a928134a642b95e.woff2')format("woff");}.ff3_c00483{font-family:ff3_c00483;line-height:0.679199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00483{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00483{vertical-align:0.000000px;}
.ls1_c00483{letter-spacing:-0.014400px;}
.ls0_c00483{letter-spacing:0.000000px;}
.sc__c00483{text-shadow:none;}
.sc0_c00483{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00483{-webkit-text-stroke:0px transparent;}
.sc0_c00483{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00483{word-spacing:0.000000px;}
._6_c00483{width:1.411200px;}
._5_c00483{width:2.448000px;}
._1_c00483{width:4.680000px;}
._8_c00483{width:5.976000px;}
._9_c00483{width:8.517600px;}
._2_c00483{width:10.274400px;}
._7_c00483{width:13.968000px;}
._3_c00483{width:15.350400px;}
._0_c00483{width:25.394400px;}
._4_c00483{width:29.124000px;}
.fc1_c00483{color:transparent;}
.fc0_c00483{color:rgb(0,0,0);}
.fs0_c00483{font-size:72.000000px;}
.y0_c00483{bottom:0.000000px;}
.y5_c00483{bottom:1.440000px;}
.y1_c00483{bottom:12.735000px;}
.y3_c00483{bottom:45.405000px;}
.y4_c00483{bottom:56.700000px;}
.y20_c00483{bottom:146.924850px;}
.y1f_c00483{bottom:182.924850px;}
.y1e_c00483{bottom:218.924850px;}
.y1d_c00483{bottom:254.924850px;}
.y1c_c00483{bottom:290.924850px;}
.y1b_c00483{bottom:326.924850px;}
.y1a_c00483{bottom:362.924850px;}
.y19_c00483{bottom:398.924850px;}
.y18_c00483{bottom:434.924850px;}
.y17_c00483{bottom:470.924850px;}
.y16_c00483{bottom:506.924850px;}
.y15_c00483{bottom:542.924850px;}
.y14_c00483{bottom:578.924850px;}
.y13_c00483{bottom:614.924850px;}
.y12_c00483{bottom:650.924850px;}
.y11_c00483{bottom:686.924850px;}
.y10_c00483{bottom:722.924850px;}
.yf_c00483{bottom:758.924850px;}
.ye_c00483{bottom:794.924850px;}
.yd_c00483{bottom:830.924850px;}
.yc_c00483{bottom:866.924850px;}
.yb_c00483{bottom:902.924850px;}
.ya_c00483{bottom:938.924850px;}
.y9_c00483{bottom:974.924850px;}
.y8_c00483{bottom:1010.924850px;}
.y7_c00483{bottom:1046.924850px;}
.y6_c00483{bottom:1082.924850px;}
.y2_c00483{bottom:1164.285000px;}
.h4_c00483{height:17.280000px;}
.h3_c00483{height:70.664062px;}
.h2_c00483{height:1237.365000px;}
.h0_c00483{height:1262.835000px;}
.h1_c00483{height:1263.000000px;}
.w3_c00483{width:47.520000px;}
.w2_c00483{width:867.465000px;}
.w0_c00483{width:892.935000px;}
.w1_c00483{width:893.250000px;}
.x0_c00483{left:0.000000px;}
.x5_c00483{left:10.237500px;}
.x1_c00483{left:12.735000px;}
.x3_c00483{left:95.397000px;}
.x4_c00483{left:422.775000px;}
.x2_c00483{left:889.125000px;}
@media print{
.v0_c00483{vertical-align:0.000000pt;}
.ls1_c00483{letter-spacing:-0.012800pt;}
.ls0_c00483{letter-spacing:0.000000pt;}
.ws0_c00483{word-spacing:0.000000pt;}
._6_c00483{width:1.254400pt;}
._5_c00483{width:2.176000pt;}
._1_c00483{width:4.160000pt;}
._8_c00483{width:5.312000pt;}
._9_c00483{width:7.571200pt;}
._2_c00483{width:9.132800pt;}
._7_c00483{width:12.416000pt;}
._3_c00483{width:13.644800pt;}
._0_c00483{width:22.572800pt;}
._4_c00483{width:25.888000pt;}
.fs0_c00483{font-size:64.000000pt;}
.y0_c00483{bottom:0.000000pt;}
.y5_c00483{bottom:1.280000pt;}
.y1_c00483{bottom:11.320000pt;}
.y3_c00483{bottom:40.360000pt;}
.y4_c00483{bottom:50.400000pt;}
.y20_c00483{bottom:130.599867pt;}
.y1f_c00483{bottom:162.599867pt;}
.y1e_c00483{bottom:194.599867pt;}
.y1d_c00483{bottom:226.599867pt;}
.y1c_c00483{bottom:258.599867pt;}
.y1b_c00483{bottom:290.599867pt;}
.y1a_c00483{bottom:322.599867pt;}
.y19_c00483{bottom:354.599867pt;}
.y18_c00483{bottom:386.599867pt;}
.y17_c00483{bottom:418.599867pt;}
.y16_c00483{bottom:450.599867pt;}
.y15_c00483{bottom:482.599867pt;}
.y14_c00483{bottom:514.599867pt;}
.y13_c00483{bottom:546.599867pt;}
.y12_c00483{bottom:578.599867pt;}
.y11_c00483{bottom:610.599867pt;}
.y10_c00483{bottom:642.599867pt;}
.yf_c00483{bottom:674.599867pt;}
.ye_c00483{bottom:706.599867pt;}
.yd_c00483{bottom:738.599867pt;}
.yc_c00483{bottom:770.599867pt;}
.yb_c00483{bottom:802.599867pt;}
.ya_c00483{bottom:834.599867pt;}
.y9_c00483{bottom:866.599867pt;}
.y8_c00483{bottom:898.599867pt;}
.y7_c00483{bottom:930.599867pt;}
.y6_c00483{bottom:962.599867pt;}
.y2_c00483{bottom:1034.920000pt;}
.h4_c00483{height:15.360000pt;}
.h3_c00483{height:62.812500pt;}
.h2_c00483{height:1099.880000pt;}
.h0_c00483{height:1122.520000pt;}
.h1_c00483{height:1122.666667pt;}
.w3_c00483{width:42.240000pt;}
.w2_c00483{width:771.080000pt;}
.w0_c00483{width:793.720000pt;}
.w1_c00483{width:794.000000pt;}
.x0_c00483{left:0.000000pt;}
.x5_c00483{left:9.100000pt;}
.x1_c00483{left:11.320000pt;}
.x3_c00483{left:84.797333pt;}
.x4_c00483{left:375.800000pt;}
.x2_c00483{left:790.333333pt;}
}





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

.ir_c00484:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00484{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00484;src:url('chunks/assets/font_7cd587d512372f85528a9fef.woff2')format("woff");}.ff1_c00484{font-family:ff1_c00484;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00484;src:url('chunks/assets/font_cbaf0e61aa907363c8891af6.woff2')format("woff");}.ff2_c00484{font-family:ff2_c00484;line-height:1.284180;font-style: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;}
._5_c00484{width:1.029600px;}
._3_c00484{width:5.716800px;}
._1_c00484{width:21.384000px;}
._2_c00484{width:23.040000px;}
._0_c00484{width:27.000000px;}
._4_c00484{width:30.376800px;}
._6_c00484{width:33.429600px;}
.fc1_c00484{color:transparent;}
.fc0_c00484{color:rgb(0,0,0);}
.fs0_c00484{font-size:72.000000px;}
.y0_c00484{bottom:0.000000px;}
.y5_c00484{bottom:5.040000px;}
.y1_c00484{bottom:12.735000px;}
.y3_c00484{bottom:45.405000px;}
.y4_c00484{bottom:53.100000px;}
.y21_c00484{bottom:110.924850px;}
.y20_c00484{bottom:146.924850px;}
.y1f_c00484{bottom:182.924850px;}
.y1e_c00484{bottom:218.924850px;}
.y1d_c00484{bottom:254.924850px;}
.y1c_c00484{bottom:290.924850px;}
.y1b_c00484{bottom:326.924850px;}
.y1a_c00484{bottom:362.924850px;}
.y19_c00484{bottom:398.924850px;}
.y18_c00484{bottom:434.924850px;}
.y17_c00484{bottom:470.924850px;}
.y16_c00484{bottom:506.924850px;}
.y15_c00484{bottom:542.924850px;}
.y14_c00484{bottom:578.924850px;}
.y13_c00484{bottom:614.924850px;}
.y12_c00484{bottom:650.924850px;}
.y11_c00484{bottom:686.924850px;}
.y10_c00484{bottom:722.924850px;}
.yf_c00484{bottom:758.924850px;}
.ye_c00484{bottom:794.924850px;}
.yd_c00484{bottom:830.924850px;}
.yc_c00484{bottom:866.924850px;}
.yb_c00484{bottom:902.924850px;}
.ya_c00484{bottom:938.924850px;}
.y9_c00484{bottom:974.924850px;}
.y8_c00484{bottom:1010.924850px;}
.y7_c00484{bottom:1046.924850px;}
.y6_c00484{bottom:1082.924850px;}
.y2_c00484{bottom:1164.285000px;}
.h4_c00484{height:20.880000px;}
.h3_c00484{height:70.664062px;}
.h2_c00484{height:1237.365000px;}
.h0_c00484{height:1262.835000px;}
.h1_c00484{height:1263.000000px;}
.w3_c00484{width:27.000000px;}
.w2_c00484{width:867.465000px;}
.w0_c00484{width:892.935000px;}
.w1_c00484{width:893.250000px;}
.x0_c00484{left:0.000000px;}
.x1_c00484{left:12.735000px;}
.x3_c00484{left:95.397000px;}
.x4_c00484{left:432.855000px;}
.x2_c00484{left:889.125000px;}
@media print{
.v0_c00484{vertical-align:0.000000pt;}
.ls0_c00484{letter-spacing:0.000000pt;}
.ws0_c00484{word-spacing:0.000000pt;}
._5_c00484{width:0.915200pt;}
._3_c00484{width:5.081600pt;}
._1_c00484{width:19.008000pt;}
._2_c00484{width:20.480000pt;}
._0_c00484{width:24.000000pt;}
._4_c00484{width:27.001600pt;}
._6_c00484{width:29.715200pt;}
.fs0_c00484{font-size:64.000000pt;}
.y0_c00484{bottom:0.000000pt;}
.y5_c00484{bottom:4.480000pt;}
.y1_c00484{bottom:11.320000pt;}
.y3_c00484{bottom:40.360000pt;}
.y4_c00484{bottom:47.200000pt;}
.y21_c00484{bottom:98.599867pt;}
.y20_c00484{bottom:130.599867pt;}
.y1f_c00484{bottom:162.599867pt;}
.y1e_c00484{bottom:194.599867pt;}
.y1d_c00484{bottom:226.599867pt;}
.y1c_c00484{bottom:258.599867pt;}
.y1b_c00484{bottom:290.599867pt;}
.y1a_c00484{bottom:322.599867pt;}
.y19_c00484{bottom:354.599867pt;}
.y18_c00484{bottom:386.599867pt;}
.y17_c00484{bottom:418.599867pt;}
.y16_c00484{bottom:450.599867pt;}
.y15_c00484{bottom:482.599867pt;}
.y14_c00484{bottom:514.599867pt;}
.y13_c00484{bottom:546.599867pt;}
.y12_c00484{bottom:578.599867pt;}
.y11_c00484{bottom:610.599867pt;}
.y10_c00484{bottom:642.599867pt;}
.yf_c00484{bottom:674.599867pt;}
.ye_c00484{bottom:706.599867pt;}
.yd_c00484{bottom:738.599867pt;}
.yc_c00484{bottom:770.599867pt;}
.yb_c00484{bottom:802.599867pt;}
.ya_c00484{bottom:834.599867pt;}
.y9_c00484{bottom:866.599867pt;}
.y8_c00484{bottom:898.599867pt;}
.y7_c00484{bottom:930.599867pt;}
.y6_c00484{bottom:962.599867pt;}
.y2_c00484{bottom:1034.920000pt;}
.h4_c00484{height:18.560000pt;}
.h3_c00484{height:62.812500pt;}
.h2_c00484{height:1099.880000pt;}
.h0_c00484{height:1122.520000pt;}
.h1_c00484{height:1122.666667pt;}
.w3_c00484{width:24.000000pt;}
.w2_c00484{width:771.080000pt;}
.w0_c00484{width:793.720000pt;}
.w1_c00484{width:794.000000pt;}
.x0_c00484{left:0.000000pt;}
.x1_c00484{left:11.320000pt;}
.x3_c00484{left:84.797333pt;}
.x4_c00484{left:384.760000pt;}
.x2_c00484{left:790.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_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_deb8ad80dde453677bdee642.woff2')format("woff");}.ff1_c00485{font-family:ff1_c00485;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00485;src:url('chunks/assets/font_03627e38828ea1af59636dfd.woff2')format("woff");}.ff2_c00485{font-family:ff2_c00485;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls0_c00485{letter-spacing:0.000000px;}
.sc__c00485{text-shadow:none;}
.sc0_c00485{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00485{-webkit-text-stroke:0px transparent;}
.sc0_c00485{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00485{word-spacing:0.000000px;}
._4_c00485{width:1.771200px;}
._5_c00485{width:4.989600px;}
._2_c00485{width:6.969600px;}
._0_c00485{width:19.209600px;}
._3_c00485{width:21.420000px;}
._1_c00485{width:22.708800px;}
.fc1_c00485{color:transparent;}
.fc0_c00485{color:rgb(0,0,0);}
.fs0_c00485{font-size:72.000000px;}
.y0_c00485{bottom:0.000000px;}
.y5_c00485{bottom:1.440000px;}
.y1_c00485{bottom:12.735000px;}
.y3_c00485{bottom:45.405000px;}
.y4_c00485{bottom:56.700000px;}
.y21_c00485{bottom:110.924850px;}
.y20_c00485{bottom:146.924850px;}
.y1f_c00485{bottom:182.924850px;}
.y1e_c00485{bottom:218.924850px;}
.y1d_c00485{bottom:254.924850px;}
.y1c_c00485{bottom:290.924850px;}
.y1b_c00485{bottom:326.924850px;}
.y1a_c00485{bottom:362.924850px;}
.y19_c00485{bottom:398.924850px;}
.y18_c00485{bottom:434.924850px;}
.y17_c00485{bottom:470.924850px;}
.y16_c00485{bottom:506.924850px;}
.y15_c00485{bottom:542.924850px;}
.y14_c00485{bottom:578.924850px;}
.y13_c00485{bottom:614.924850px;}
.y12_c00485{bottom:650.924850px;}
.y11_c00485{bottom:686.924850px;}
.y10_c00485{bottom:722.924850px;}
.yf_c00485{bottom:758.924850px;}
.ye_c00485{bottom:794.924850px;}
.yd_c00485{bottom:830.924850px;}
.yc_c00485{bottom:866.924850px;}
.yb_c00485{bottom:902.924850px;}
.ya_c00485{bottom:938.924850px;}
.y9_c00485{bottom:974.924850px;}
.y8_c00485{bottom:1010.924850px;}
.y7_c00485{bottom:1046.924850px;}
.y6_c00485{bottom:1082.924850px;}
.y2_c00485{bottom:1164.285000px;}
.h4_c00485{height:17.280000px;}
.h3_c00485{height:70.664062px;}
.h2_c00485{height:1237.365000px;}
.h0_c00485{height:1262.835000px;}
.h1_c00485{height:1263.000000px;}
.w3_c00485{width:47.520000px;}
.w2_c00485{width:867.465000px;}
.w0_c00485{width:892.935000px;}
.w1_c00485{width:893.250000px;}
.x0_c00485{left:0.000000px;}
.x5_c00485{left:10.237500px;}
.x1_c00485{left:12.735000px;}
.x3_c00485{left:95.397000px;}
.x4_c00485{left:422.775000px;}
.x2_c00485{left:889.125000px;}
@media print{
.v0_c00485{vertical-align:0.000000pt;}
.ls0_c00485{letter-spacing:0.000000pt;}
.ws0_c00485{word-spacing:0.000000pt;}
._4_c00485{width:1.574400pt;}
._5_c00485{width:4.435200pt;}
._2_c00485{width:6.195200pt;}
._0_c00485{width:17.075200pt;}
._3_c00485{width:19.040000pt;}
._1_c00485{width:20.185600pt;}
.fs0_c00485{font-size:64.000000pt;}
.y0_c00485{bottom:0.000000pt;}
.y5_c00485{bottom:1.280000pt;}
.y1_c00485{bottom:11.320000pt;}
.y3_c00485{bottom:40.360000pt;}
.y4_c00485{bottom:50.400000pt;}
.y21_c00485{bottom:98.599867pt;}
.y20_c00485{bottom:130.599867pt;}
.y1f_c00485{bottom:162.599867pt;}
.y1e_c00485{bottom:194.599867pt;}
.y1d_c00485{bottom:226.599867pt;}
.y1c_c00485{bottom:258.599867pt;}
.y1b_c00485{bottom:290.599867pt;}
.y1a_c00485{bottom:322.599867pt;}
.y19_c00485{bottom:354.599867pt;}
.y18_c00485{bottom:386.599867pt;}
.y17_c00485{bottom:418.599867pt;}
.y16_c00485{bottom:450.599867pt;}
.y15_c00485{bottom:482.599867pt;}
.y14_c00485{bottom:514.599867pt;}
.y13_c00485{bottom:546.599867pt;}
.y12_c00485{bottom:578.599867pt;}
.y11_c00485{bottom:610.599867pt;}
.y10_c00485{bottom:642.599867pt;}
.yf_c00485{bottom:674.599867pt;}
.ye_c00485{bottom:706.599867pt;}
.yd_c00485{bottom:738.599867pt;}
.yc_c00485{bottom:770.599867pt;}
.yb_c00485{bottom:802.599867pt;}
.ya_c00485{bottom:834.599867pt;}
.y9_c00485{bottom:866.599867pt;}
.y8_c00485{bottom:898.599867pt;}
.y7_c00485{bottom:930.599867pt;}
.y6_c00485{bottom:962.599867pt;}
.y2_c00485{bottom:1034.920000pt;}
.h4_c00485{height:15.360000pt;}
.h3_c00485{height:62.812500pt;}
.h2_c00485{height:1099.880000pt;}
.h0_c00485{height:1122.520000pt;}
.h1_c00485{height:1122.666667pt;}
.w3_c00485{width:42.240000pt;}
.w2_c00485{width:771.080000pt;}
.w0_c00485{width:793.720000pt;}
.w1_c00485{width:794.000000pt;}
.x0_c00485{left:0.000000pt;}
.x5_c00485{left:9.100000pt;}
.x1_c00485{left:11.320000pt;}
.x3_c00485{left:84.797333pt;}
.x4_c00485{left:375.800000pt;}
.x2_c00485{left:790.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_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_fa1e7d5949d0be62ff03e5b8.woff2')format("woff");}.ff1_c00486{font-family:ff1_c00486;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00486;src:url('chunks/assets/font_bf79103b31cd03197530dc18.woff2')format("woff");}.ff2_c00486{font-family:ff2_c00486;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
._2_c00486{width:4.716000px;}
._0_c00486{width:10.368000px;}
._3_c00486{width:11.664000px;}
._1_c00486{width:24.667200px;}
.fc1_c00486{color:transparent;}
.fc0_c00486{color:rgb(0,0,0);}
.fs0_c00486{font-size:72.000000px;}
.y0_c00486{bottom:0.000000px;}
.y5_c00486{bottom:5.040000px;}
.y1_c00486{bottom:12.735000px;}
.y3_c00486{bottom:45.405000px;}
.y4_c00486{bottom:53.100000px;}
.y21_c00486{bottom:110.924850px;}
.y20_c00486{bottom:146.924850px;}
.y1f_c00486{bottom:182.924850px;}
.y1e_c00486{bottom:218.924850px;}
.y1d_c00486{bottom:254.924850px;}
.y1c_c00486{bottom:290.924850px;}
.y1b_c00486{bottom:326.924850px;}
.y1a_c00486{bottom:362.924850px;}
.y19_c00486{bottom:398.924850px;}
.y18_c00486{bottom:434.924850px;}
.y17_c00486{bottom:470.924850px;}
.y16_c00486{bottom:506.924850px;}
.y15_c00486{bottom:542.924850px;}
.y14_c00486{bottom:578.924850px;}
.y13_c00486{bottom:614.924850px;}
.y12_c00486{bottom:650.924850px;}
.y11_c00486{bottom:686.924850px;}
.y10_c00486{bottom:722.924850px;}
.yf_c00486{bottom:758.924850px;}
.ye_c00486{bottom:794.924850px;}
.yd_c00486{bottom:830.924850px;}
.yc_c00486{bottom:866.924850px;}
.yb_c00486{bottom:902.924850px;}
.ya_c00486{bottom:938.924850px;}
.y9_c00486{bottom:974.924850px;}
.y8_c00486{bottom:1010.924850px;}
.y7_c00486{bottom:1046.924850px;}
.y6_c00486{bottom:1082.924850px;}
.y2_c00486{bottom:1164.285000px;}
.h4_c00486{height:20.880000px;}
.h3_c00486{height:70.664062px;}
.h2_c00486{height:1237.365000px;}
.h0_c00486{height:1262.835000px;}
.h1_c00486{height:1263.000000px;}
.w3_c00486{width:27.000000px;}
.w2_c00486{width:867.465000px;}
.w0_c00486{width:892.935000px;}
.w1_c00486{width:893.250000px;}
.x0_c00486{left:0.000000px;}
.x1_c00486{left:12.735000px;}
.x3_c00486{left:95.397000px;}
.x4_c00486{left:432.855000px;}
.x2_c00486{left:889.125000px;}
@media print{
.v0_c00486{vertical-align:0.000000pt;}
.ls0_c00486{letter-spacing:0.000000pt;}
.ws0_c00486{word-spacing:0.000000pt;}
._2_c00486{width:4.192000pt;}
._0_c00486{width:9.216000pt;}
._3_c00486{width:10.368000pt;}
._1_c00486{width:21.926400pt;}
.fs0_c00486{font-size:64.000000pt;}
.y0_c00486{bottom:0.000000pt;}
.y5_c00486{bottom:4.480000pt;}
.y1_c00486{bottom:11.320000pt;}
.y3_c00486{bottom:40.360000pt;}
.y4_c00486{bottom:47.200000pt;}
.y21_c00486{bottom:98.599867pt;}
.y20_c00486{bottom:130.599867pt;}
.y1f_c00486{bottom:162.599867pt;}
.y1e_c00486{bottom:194.599867pt;}
.y1d_c00486{bottom:226.599867pt;}
.y1c_c00486{bottom:258.599867pt;}
.y1b_c00486{bottom:290.599867pt;}
.y1a_c00486{bottom:322.599867pt;}
.y19_c00486{bottom:354.599867pt;}
.y18_c00486{bottom:386.599867pt;}
.y17_c00486{bottom:418.599867pt;}
.y16_c00486{bottom:450.599867pt;}
.y15_c00486{bottom:482.599867pt;}
.y14_c00486{bottom:514.599867pt;}
.y13_c00486{bottom:546.599867pt;}
.y12_c00486{bottom:578.599867pt;}
.y11_c00486{bottom:610.599867pt;}
.y10_c00486{bottom:642.599867pt;}
.yf_c00486{bottom:674.599867pt;}
.ye_c00486{bottom:706.599867pt;}
.yd_c00486{bottom:738.599867pt;}
.yc_c00486{bottom:770.599867pt;}
.yb_c00486{bottom:802.599867pt;}
.ya_c00486{bottom:834.599867pt;}
.y9_c00486{bottom:866.599867pt;}
.y8_c00486{bottom:898.599867pt;}
.y7_c00486{bottom:930.599867pt;}
.y6_c00486{bottom:962.599867pt;}
.y2_c00486{bottom:1034.920000pt;}
.h4_c00486{height:18.560000pt;}
.h3_c00486{height:62.812500pt;}
.h2_c00486{height:1099.880000pt;}
.h0_c00486{height:1122.520000pt;}
.h1_c00486{height:1122.666667pt;}
.w3_c00486{width:24.000000pt;}
.w2_c00486{width:771.080000pt;}
.w0_c00486{width:793.720000pt;}
.w1_c00486{width:794.000000pt;}
.x0_c00486{left:0.000000pt;}
.x1_c00486{left:11.320000pt;}
.x3_c00486{left:84.797333pt;}
.x4_c00486{left:384.760000pt;}
.x2_c00486{left:790.333333pt;}
}





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

.ir_c00487:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00487{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00487;src:url('chunks/assets/font_8d75f0ef89a5c137e2f2ab17.woff2')format("woff");}.ff1_c00487{font-family:ff1_c00487;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00487;src:url('chunks/assets/font_a84c2308ef56e8c31e58d134.woff2')format("woff");}.ff2_c00487{font-family:ff2_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;}
.m0_c00487{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00487{vertical-align:0.000000px;}
.ls0_c00487{letter-spacing:0.000000px;}
.sc__c00487{text-shadow:none;}
.sc0_c00487{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00487{-webkit-text-stroke:0px transparent;}
.sc0_c00487{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00487{word-spacing:0.000000px;}
._3_c00487{width:3.038400px;}
._5_c00487{width:5.126400px;}
._4_c00487{width:9.770400px;}
._7_c00487{width:11.584800px;}
._1_c00487{width:13.312800px;}
._2_c00487{width:19.324800px;}
._8_c00487{width:23.184000px;}
._0_c00487{width:27.000000px;}
._6_c00487{width:37.044000px;}
.fc1_c00487{color:transparent;}
.fc0_c00487{color:rgb(0,0,0);}
.fs0_c00487{font-size:72.000000px;}
.y0_c00487{bottom:0.000000px;}
.y5_c00487{bottom:1.440000px;}
.y1_c00487{bottom:12.735000px;}
.y3_c00487{bottom:45.405000px;}
.y4_c00487{bottom:56.700000px;}
.y21_c00487{bottom:110.924850px;}
.y20_c00487{bottom:146.924850px;}
.y1f_c00487{bottom:182.924850px;}
.y1e_c00487{bottom:218.924850px;}
.y1d_c00487{bottom:254.924850px;}
.y1c_c00487{bottom:290.924850px;}
.y1b_c00487{bottom:326.924850px;}
.y1a_c00487{bottom:362.924850px;}
.y19_c00487{bottom:398.924850px;}
.y18_c00487{bottom:434.924850px;}
.y17_c00487{bottom:470.924850px;}
.y16_c00487{bottom:506.924850px;}
.y15_c00487{bottom:542.924850px;}
.y14_c00487{bottom:578.924850px;}
.y13_c00487{bottom:614.924850px;}
.y12_c00487{bottom:650.924850px;}
.y11_c00487{bottom:686.924850px;}
.y10_c00487{bottom:722.924850px;}
.yf_c00487{bottom:758.924850px;}
.ye_c00487{bottom:794.924850px;}
.yd_c00487{bottom:830.924850px;}
.yc_c00487{bottom:866.924850px;}
.yb_c00487{bottom:902.924850px;}
.ya_c00487{bottom:938.924850px;}
.y9_c00487{bottom:974.924850px;}
.y8_c00487{bottom:1010.924850px;}
.y7_c00487{bottom:1046.924850px;}
.y6_c00487{bottom:1082.924850px;}
.y2_c00487{bottom:1164.285000px;}
.h4_c00487{height:17.280000px;}
.h3_c00487{height:70.664062px;}
.h2_c00487{height:1237.365000px;}
.h0_c00487{height:1262.835000px;}
.h1_c00487{height:1263.000000px;}
.w3_c00487{width:47.520000px;}
.w2_c00487{width:867.465000px;}
.w0_c00487{width:892.935000px;}
.w1_c00487{width:893.250000px;}
.x0_c00487{left:0.000000px;}
.x5_c00487{left:10.237500px;}
.x1_c00487{left:12.735000px;}
.x3_c00487{left:95.397000px;}
.x4_c00487{left:422.775000px;}
.x2_c00487{left:889.125000px;}
@media print{
.v0_c00487{vertical-align:0.000000pt;}
.ls0_c00487{letter-spacing:0.000000pt;}
.ws0_c00487{word-spacing:0.000000pt;}
._3_c00487{width:2.700800pt;}
._5_c00487{width:4.556800pt;}
._4_c00487{width:8.684800pt;}
._7_c00487{width:10.297600pt;}
._1_c00487{width:11.833600pt;}
._2_c00487{width:17.177600pt;}
._8_c00487{width:20.608000pt;}
._0_c00487{width:24.000000pt;}
._6_c00487{width:32.928000pt;}
.fs0_c00487{font-size:64.000000pt;}
.y0_c00487{bottom:0.000000pt;}
.y5_c00487{bottom:1.280000pt;}
.y1_c00487{bottom:11.320000pt;}
.y3_c00487{bottom:40.360000pt;}
.y4_c00487{bottom:50.400000pt;}
.y21_c00487{bottom:98.599867pt;}
.y20_c00487{bottom:130.599867pt;}
.y1f_c00487{bottom:162.599867pt;}
.y1e_c00487{bottom:194.599867pt;}
.y1d_c00487{bottom:226.599867pt;}
.y1c_c00487{bottom:258.599867pt;}
.y1b_c00487{bottom:290.599867pt;}
.y1a_c00487{bottom:322.599867pt;}
.y19_c00487{bottom:354.599867pt;}
.y18_c00487{bottom:386.599867pt;}
.y17_c00487{bottom:418.599867pt;}
.y16_c00487{bottom:450.599867pt;}
.y15_c00487{bottom:482.599867pt;}
.y14_c00487{bottom:514.599867pt;}
.y13_c00487{bottom:546.599867pt;}
.y12_c00487{bottom:578.599867pt;}
.y11_c00487{bottom:610.599867pt;}
.y10_c00487{bottom:642.599867pt;}
.yf_c00487{bottom:674.599867pt;}
.ye_c00487{bottom:706.599867pt;}
.yd_c00487{bottom:738.599867pt;}
.yc_c00487{bottom:770.599867pt;}
.yb_c00487{bottom:802.599867pt;}
.ya_c00487{bottom:834.599867pt;}
.y9_c00487{bottom:866.599867pt;}
.y8_c00487{bottom:898.599867pt;}
.y7_c00487{bottom:930.599867pt;}
.y6_c00487{bottom:962.599867pt;}
.y2_c00487{bottom:1034.920000pt;}
.h4_c00487{height:15.360000pt;}
.h3_c00487{height:62.812500pt;}
.h2_c00487{height:1099.880000pt;}
.h0_c00487{height:1122.520000pt;}
.h1_c00487{height:1122.666667pt;}
.w3_c00487{width:42.240000pt;}
.w2_c00487{width:771.080000pt;}
.w0_c00487{width:793.720000pt;}
.w1_c00487{width:794.000000pt;}
.x0_c00487{left:0.000000pt;}
.x5_c00487{left:9.100000pt;}
.x1_c00487{left:11.320000pt;}
.x3_c00487{left:84.797333pt;}
.x4_c00487{left:375.800000pt;}
.x2_c00487{left:790.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_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_fa535e66bfe2a941bfde5ff8.woff2')format("woff");}.ff1_c00488{font-family:ff1_c00488;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00488;src:url('chunks/assets/font_b0a3e9017ca11900a0a01aaa.woff2')format("woff");}.ff2_c00488{font-family:ff2_c00488;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00488{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00488{vertical-align:0.000000px;}
.ls0_c00488{letter-spacing:0.000000px;}
.sc__c00488{text-shadow:none;}
.sc0_c00488{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00488{-webkit-text-stroke:0px transparent;}
.sc0_c00488{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00488{word-spacing:0.000000px;}
._6_c00488{margin-left:-1.080000px;}
._1_c00488{width:3.772800px;}
._5_c00488{width:4.773600px;}
._2_c00488{width:5.925600px;}
._7_c00488{width:12.535200px;}
._3_c00488{width:14.385600px;}
._0_c00488{width:16.077600px;}
._4_c00488{width:25.135200px;}
.fc1_c00488{color:transparent;}
.fc0_c00488{color:rgb(0,0,0);}
.fs0_c00488{font-size:72.000000px;}
.y0_c00488{bottom:0.000000px;}
.y5_c00488{bottom:5.040000px;}
.y1_c00488{bottom:12.735000px;}
.y3_c00488{bottom:45.405000px;}
.y4_c00488{bottom:53.100000px;}
.y20_c00488{bottom:146.924850px;}
.y1f_c00488{bottom:182.924850px;}
.y1e_c00488{bottom:218.924850px;}
.y1d_c00488{bottom:254.924850px;}
.y1c_c00488{bottom:290.924850px;}
.y1b_c00488{bottom:326.924850px;}
.y1a_c00488{bottom:362.924850px;}
.y19_c00488{bottom:398.924850px;}
.y18_c00488{bottom:434.924850px;}
.y17_c00488{bottom:470.924850px;}
.y16_c00488{bottom:506.924850px;}
.y15_c00488{bottom:542.924850px;}
.y14_c00488{bottom:578.924850px;}
.y13_c00488{bottom:614.924850px;}
.y12_c00488{bottom:650.924850px;}
.y11_c00488{bottom:686.924850px;}
.y10_c00488{bottom:722.924850px;}
.yf_c00488{bottom:758.924850px;}
.ye_c00488{bottom:794.924850px;}
.yd_c00488{bottom:830.924850px;}
.yc_c00488{bottom:866.924850px;}
.yb_c00488{bottom:902.924850px;}
.ya_c00488{bottom:938.924850px;}
.y9_c00488{bottom:974.924850px;}
.y8_c00488{bottom:1010.924850px;}
.y7_c00488{bottom:1046.924850px;}
.y6_c00488{bottom:1082.924850px;}
.y2_c00488{bottom:1164.285000px;}
.h4_c00488{height:20.880000px;}
.h5_c00488{height:70.628906px;}
.h3_c00488{height:70.664062px;}
.h2_c00488{height:1237.365000px;}
.h0_c00488{height:1262.835000px;}
.h1_c00488{height:1263.000000px;}
.w3_c00488{width:27.000000px;}
.w2_c00488{width:867.465000px;}
.w0_c00488{width:892.935000px;}
.w1_c00488{width:893.250000px;}
.x0_c00488{left:0.000000px;}
.x1_c00488{left:12.735000px;}
.x3_c00488{left:95.397000px;}
.x4_c00488{left:432.855000px;}
.x2_c00488{left:889.125000px;}
@media print{
.v0_c00488{vertical-align:0.000000pt;}
.ls0_c00488{letter-spacing:0.000000pt;}
.ws0_c00488{word-spacing:0.000000pt;}
._6_c00488{margin-left:-0.960000pt;}
._1_c00488{width:3.353600pt;}
._5_c00488{width:4.243200pt;}
._2_c00488{width:5.267200pt;}
._7_c00488{width:11.142400pt;}
._3_c00488{width:12.787200pt;}
._0_c00488{width:14.291200pt;}
._4_c00488{width:22.342400pt;}
.fs0_c00488{font-size:64.000000pt;}
.y0_c00488{bottom:0.000000pt;}
.y5_c00488{bottom:4.480000pt;}
.y1_c00488{bottom:11.320000pt;}
.y3_c00488{bottom:40.360000pt;}
.y4_c00488{bottom:47.200000pt;}
.y20_c00488{bottom:130.599867pt;}
.y1f_c00488{bottom:162.599867pt;}
.y1e_c00488{bottom:194.599867pt;}
.y1d_c00488{bottom:226.599867pt;}
.y1c_c00488{bottom:258.599867pt;}
.y1b_c00488{bottom:290.599867pt;}
.y1a_c00488{bottom:322.599867pt;}
.y19_c00488{bottom:354.599867pt;}
.y18_c00488{bottom:386.599867pt;}
.y17_c00488{bottom:418.599867pt;}
.y16_c00488{bottom:450.599867pt;}
.y15_c00488{bottom:482.599867pt;}
.y14_c00488{bottom:514.599867pt;}
.y13_c00488{bottom:546.599867pt;}
.y12_c00488{bottom:578.599867pt;}
.y11_c00488{bottom:610.599867pt;}
.y10_c00488{bottom:642.599867pt;}
.yf_c00488{bottom:674.599867pt;}
.ye_c00488{bottom:706.599867pt;}
.yd_c00488{bottom:738.599867pt;}
.yc_c00488{bottom:770.599867pt;}
.yb_c00488{bottom:802.599867pt;}
.ya_c00488{bottom:834.599867pt;}
.y9_c00488{bottom:866.599867pt;}
.y8_c00488{bottom:898.599867pt;}
.y7_c00488{bottom:930.599867pt;}
.y6_c00488{bottom:962.599867pt;}
.y2_c00488{bottom:1034.920000pt;}
.h4_c00488{height:18.560000pt;}
.h5_c00488{height:62.781250pt;}
.h3_c00488{height:62.812500pt;}
.h2_c00488{height:1099.880000pt;}
.h0_c00488{height:1122.520000pt;}
.h1_c00488{height:1122.666667pt;}
.w3_c00488{width:24.000000pt;}
.w2_c00488{width:771.080000pt;}
.w0_c00488{width:793.720000pt;}
.w1_c00488{width:794.000000pt;}
.x0_c00488{left:0.000000pt;}
.x1_c00488{left:11.320000pt;}
.x3_c00488{left:84.797333pt;}
.x4_c00488{left:384.760000pt;}
.x2_c00488{left:790.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_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_a98c8ce5df4601c442abe0f1.woff2')format("woff");}.ff1_c00489{font-family:ff1_c00489;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00489;src:url('chunks/assets/font_65f21ecad0db23f4b078db70.woff2')format("woff");}.ff2_c00489{font-family:ff2_c00489;line-height:1.284180;font-style: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;}
._3_c00489{width:1.720800px;}
._6_c00489{width:2.894400px;}
._4_c00489{width:4.147200px;}
._9_c00489{width:5.796000px;}
._2_c00489{width:7.020000px;}
._7_c00489{width:8.964000px;}
._0_c00489{width:11.138400px;}
._1_c00489{width:12.592800px;}
._8_c00489{width:31.356000px;}
._5_c00489{width:49.579200px;}
.fc1_c00489{color:transparent;}
.fc0_c00489{color:rgb(0,0,0);}
.fs0_c00489{font-size:72.000000px;}
.y0_c00489{bottom:0.000000px;}
.y5_c00489{bottom:1.440000px;}
.y1_c00489{bottom:12.735000px;}
.y3_c00489{bottom:45.405000px;}
.y4_c00489{bottom:56.700000px;}
.y20_c00489{bottom:146.924850px;}
.y1f_c00489{bottom:182.924850px;}
.y1e_c00489{bottom:218.924850px;}
.y1d_c00489{bottom:254.924850px;}
.y1c_c00489{bottom:290.924850px;}
.y1b_c00489{bottom:326.924850px;}
.y1a_c00489{bottom:362.924850px;}
.y19_c00489{bottom:398.924850px;}
.y18_c00489{bottom:434.924850px;}
.y17_c00489{bottom:470.924850px;}
.y16_c00489{bottom:506.924850px;}
.y15_c00489{bottom:542.924850px;}
.y14_c00489{bottom:578.924850px;}
.y13_c00489{bottom:614.924850px;}
.y12_c00489{bottom:650.924850px;}
.y11_c00489{bottom:686.924850px;}
.y10_c00489{bottom:722.924850px;}
.yf_c00489{bottom:758.924850px;}
.ye_c00489{bottom:794.924850px;}
.yd_c00489{bottom:830.924850px;}
.yc_c00489{bottom:866.924850px;}
.yb_c00489{bottom:902.924850px;}
.ya_c00489{bottom:938.924850px;}
.y9_c00489{bottom:974.924850px;}
.y8_c00489{bottom:1010.924850px;}
.y7_c00489{bottom:1046.924850px;}
.y6_c00489{bottom:1082.924850px;}
.y2_c00489{bottom:1164.285000px;}
.h4_c00489{height:17.280000px;}
.h5_c00489{height:70.628906px;}
.h3_c00489{height:70.664062px;}
.h2_c00489{height:1237.365000px;}
.h0_c00489{height:1262.835000px;}
.h1_c00489{height:1263.000000px;}
.w3_c00489{width:47.520000px;}
.w2_c00489{width:867.465000px;}
.w0_c00489{width:892.935000px;}
.w1_c00489{width:893.250000px;}
.x0_c00489{left:0.000000px;}
.x5_c00489{left:10.237500px;}
.x1_c00489{left:12.735000px;}
.x3_c00489{left:95.397000px;}
.x4_c00489{left:422.775000px;}
.x2_c00489{left:889.125000px;}
@media print{
.v0_c00489{vertical-align:0.000000pt;}
.ls0_c00489{letter-spacing:0.000000pt;}
.ws0_c00489{word-spacing:0.000000pt;}
._3_c00489{width:1.529600pt;}
._6_c00489{width:2.572800pt;}
._4_c00489{width:3.686400pt;}
._9_c00489{width:5.152000pt;}
._2_c00489{width:6.240000pt;}
._7_c00489{width:7.968000pt;}
._0_c00489{width:9.900800pt;}
._1_c00489{width:11.193600pt;}
._8_c00489{width:27.872000pt;}
._5_c00489{width:44.070400pt;}
.fs0_c00489{font-size:64.000000pt;}
.y0_c00489{bottom:0.000000pt;}
.y5_c00489{bottom:1.280000pt;}
.y1_c00489{bottom:11.320000pt;}
.y3_c00489{bottom:40.360000pt;}
.y4_c00489{bottom:50.400000pt;}
.y20_c00489{bottom:130.599867pt;}
.y1f_c00489{bottom:162.599867pt;}
.y1e_c00489{bottom:194.599867pt;}
.y1d_c00489{bottom:226.599867pt;}
.y1c_c00489{bottom:258.599867pt;}
.y1b_c00489{bottom:290.599867pt;}
.y1a_c00489{bottom:322.599867pt;}
.y19_c00489{bottom:354.599867pt;}
.y18_c00489{bottom:386.599867pt;}
.y17_c00489{bottom:418.599867pt;}
.y16_c00489{bottom:450.599867pt;}
.y15_c00489{bottom:482.599867pt;}
.y14_c00489{bottom:514.599867pt;}
.y13_c00489{bottom:546.599867pt;}
.y12_c00489{bottom:578.599867pt;}
.y11_c00489{bottom:610.599867pt;}
.y10_c00489{bottom:642.599867pt;}
.yf_c00489{bottom:674.599867pt;}
.ye_c00489{bottom:706.599867pt;}
.yd_c00489{bottom:738.599867pt;}
.yc_c00489{bottom:770.599867pt;}
.yb_c00489{bottom:802.599867pt;}
.ya_c00489{bottom:834.599867pt;}
.y9_c00489{bottom:866.599867pt;}
.y8_c00489{bottom:898.599867pt;}
.y7_c00489{bottom:930.599867pt;}
.y6_c00489{bottom:962.599867pt;}
.y2_c00489{bottom:1034.920000pt;}
.h4_c00489{height:15.360000pt;}
.h5_c00489{height:62.781250pt;}
.h3_c00489{height:62.812500pt;}
.h2_c00489{height:1099.880000pt;}
.h0_c00489{height:1122.520000pt;}
.h1_c00489{height:1122.666667pt;}
.w3_c00489{width:42.240000pt;}
.w2_c00489{width:771.080000pt;}
.w0_c00489{width:793.720000pt;}
.w1_c00489{width:794.000000pt;}
.x0_c00489{left:0.000000pt;}
.x5_c00489{left:9.100000pt;}
.x1_c00489{left:11.320000pt;}
.x3_c00489{left:84.797333pt;}
.x4_c00489{left:375.800000pt;}
.x2_c00489{left:790.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_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_c2ddabf3e7783ca52aea98fd.woff2')format("woff");}.ff1_c00490{font-family:ff1_c00490;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00490;src:url('chunks/assets/font_a6f56b4abb7ad48c30a43382.woff2')format("woff");}.ff2_c00490{font-family:ff2_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;}
.m0_c00490{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00490{vertical-align:0.000000px;}
.ls0_c00490{letter-spacing:0.000000px;}
.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;}
._6_c00490{width:1.656000px;}
._5_c00490{width:4.456800px;}
._2_c00490{width:7.149600px;}
._4_c00490{width:10.922400px;}
._7_c00490{width:14.205600px;}
._3_c00490{width:16.106400px;}
._1_c00490{width:20.160000px;}
._0_c00490{width:21.232800px;}
._8_c00490{width:30.448800px;}
.fc1_c00490{color:transparent;}
.fc0_c00490{color:rgb(0,0,0);}
.fs0_c00490{font-size:72.000000px;}
.y0_c00490{bottom:0.000000px;}
.y5_c00490{bottom:5.040000px;}
.y1_c00490{bottom:12.735000px;}
.y3_c00490{bottom:45.405000px;}
.y4_c00490{bottom:53.100000px;}
.y21_c00490{bottom:110.924850px;}
.y20_c00490{bottom:146.924850px;}
.y1f_c00490{bottom:182.924850px;}
.y1e_c00490{bottom:218.924850px;}
.y1d_c00490{bottom:254.924850px;}
.y1c_c00490{bottom:290.924850px;}
.y1b_c00490{bottom:326.924850px;}
.y1a_c00490{bottom:362.924850px;}
.y19_c00490{bottom:398.924850px;}
.y18_c00490{bottom:434.924850px;}
.y17_c00490{bottom:470.924850px;}
.y16_c00490{bottom:506.924850px;}
.y15_c00490{bottom:542.924850px;}
.y14_c00490{bottom:578.924850px;}
.y13_c00490{bottom:614.924850px;}
.y12_c00490{bottom:650.924850px;}
.y11_c00490{bottom:686.924850px;}
.y10_c00490{bottom:722.924850px;}
.yf_c00490{bottom:758.924850px;}
.ye_c00490{bottom:794.924850px;}
.yd_c00490{bottom:830.924850px;}
.yc_c00490{bottom:866.924850px;}
.yb_c00490{bottom:902.924850px;}
.ya_c00490{bottom:938.924850px;}
.y9_c00490{bottom:974.924850px;}
.y8_c00490{bottom:1010.924850px;}
.y7_c00490{bottom:1046.924850px;}
.y6_c00490{bottom:1082.924850px;}
.y2_c00490{bottom:1164.285000px;}
.h4_c00490{height:20.880000px;}
.h3_c00490{height:70.664062px;}
.h2_c00490{height:1237.365000px;}
.h0_c00490{height:1262.835000px;}
.h1_c00490{height:1263.000000px;}
.w3_c00490{width:27.000000px;}
.w2_c00490{width:867.465000px;}
.w0_c00490{width:892.935000px;}
.w1_c00490{width:893.250000px;}
.x0_c00490{left:0.000000px;}
.x1_c00490{left:12.735000px;}
.x3_c00490{left:95.397000px;}
.x4_c00490{left:432.855000px;}
.x2_c00490{left:889.125000px;}
@media print{
.v0_c00490{vertical-align:0.000000pt;}
.ls0_c00490{letter-spacing:0.000000pt;}
.ws0_c00490{word-spacing:0.000000pt;}
._6_c00490{width:1.472000pt;}
._5_c00490{width:3.961600pt;}
._2_c00490{width:6.355200pt;}
._4_c00490{width:9.708800pt;}
._7_c00490{width:12.627200pt;}
._3_c00490{width:14.316800pt;}
._1_c00490{width:17.920000pt;}
._0_c00490{width:18.873600pt;}
._8_c00490{width:27.065600pt;}
.fs0_c00490{font-size:64.000000pt;}
.y0_c00490{bottom:0.000000pt;}
.y5_c00490{bottom:4.480000pt;}
.y1_c00490{bottom:11.320000pt;}
.y3_c00490{bottom:40.360000pt;}
.y4_c00490{bottom:47.200000pt;}
.y21_c00490{bottom:98.599867pt;}
.y20_c00490{bottom:130.599867pt;}
.y1f_c00490{bottom:162.599867pt;}
.y1e_c00490{bottom:194.599867pt;}
.y1d_c00490{bottom:226.599867pt;}
.y1c_c00490{bottom:258.599867pt;}
.y1b_c00490{bottom:290.599867pt;}
.y1a_c00490{bottom:322.599867pt;}
.y19_c00490{bottom:354.599867pt;}
.y18_c00490{bottom:386.599867pt;}
.y17_c00490{bottom:418.599867pt;}
.y16_c00490{bottom:450.599867pt;}
.y15_c00490{bottom:482.599867pt;}
.y14_c00490{bottom:514.599867pt;}
.y13_c00490{bottom:546.599867pt;}
.y12_c00490{bottom:578.599867pt;}
.y11_c00490{bottom:610.599867pt;}
.y10_c00490{bottom:642.599867pt;}
.yf_c00490{bottom:674.599867pt;}
.ye_c00490{bottom:706.599867pt;}
.yd_c00490{bottom:738.599867pt;}
.yc_c00490{bottom:770.599867pt;}
.yb_c00490{bottom:802.599867pt;}
.ya_c00490{bottom:834.599867pt;}
.y9_c00490{bottom:866.599867pt;}
.y8_c00490{bottom:898.599867pt;}
.y7_c00490{bottom:930.599867pt;}
.y6_c00490{bottom:962.599867pt;}
.y2_c00490{bottom:1034.920000pt;}
.h4_c00490{height:18.560000pt;}
.h3_c00490{height:62.812500pt;}
.h2_c00490{height:1099.880000pt;}
.h0_c00490{height:1122.520000pt;}
.h1_c00490{height:1122.666667pt;}
.w3_c00490{width:24.000000pt;}
.w2_c00490{width:771.080000pt;}
.w0_c00490{width:793.720000pt;}
.w1_c00490{width:794.000000pt;}
.x0_c00490{left:0.000000pt;}
.x1_c00490{left:11.320000pt;}
.x3_c00490{left:84.797333pt;}
.x4_c00490{left:384.760000pt;}
.x2_c00490{left:790.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_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_9ec2d0dc4e573e49e70cfa4f.woff2')format("woff");}.ff1_c00491{font-family:ff1_c00491;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00491;src:url('chunks/assets/font_96e75f612d10b02b8e8ce52a.woff2')format("woff");}.ff2_c00491{font-family:ff2_c00491;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00491{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00491{vertical-align:0.000000px;}
.ls0_c00491{letter-spacing:0.000000px;}
.sc__c00491{text-shadow:none;}
.sc0_c00491{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00491{-webkit-text-stroke:0px transparent;}
.sc0_c00491{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00491{word-spacing:0.000000px;}
._1_c00491{width:1.080000px;}
._0_c00491{width:2.160000px;}
._3_c00491{width:16.747200px;}
._2_c00491{width:27.288000px;}
.fc1_c00491{color:transparent;}
.fc0_c00491{color:rgb(0,0,0);}
.fs0_c00491{font-size:72.000000px;}
.y0_c00491{bottom:0.000000px;}
.y5_c00491{bottom:1.440000px;}
.y1_c00491{bottom:12.735000px;}
.y3_c00491{bottom:45.405000px;}
.y4_c00491{bottom:56.700000px;}
.y21_c00491{bottom:110.924850px;}
.y20_c00491{bottom:146.924850px;}
.y1f_c00491{bottom:182.924850px;}
.y1e_c00491{bottom:218.924850px;}
.y1d_c00491{bottom:254.924850px;}
.y1c_c00491{bottom:290.924850px;}
.y1b_c00491{bottom:326.924850px;}
.y1a_c00491{bottom:362.924850px;}
.y19_c00491{bottom:398.924850px;}
.y18_c00491{bottom:434.924850px;}
.y17_c00491{bottom:470.924850px;}
.y16_c00491{bottom:506.924850px;}
.y15_c00491{bottom:542.924850px;}
.y14_c00491{bottom:578.924850px;}
.y13_c00491{bottom:614.924850px;}
.y12_c00491{bottom:650.924850px;}
.y11_c00491{bottom:686.924850px;}
.y10_c00491{bottom:722.924850px;}
.yf_c00491{bottom:758.924850px;}
.ye_c00491{bottom:794.924850px;}
.yd_c00491{bottom:830.924850px;}
.yc_c00491{bottom:866.924850px;}
.yb_c00491{bottom:902.924850px;}
.ya_c00491{bottom:938.924850px;}
.y9_c00491{bottom:974.924850px;}
.y8_c00491{bottom:1010.924850px;}
.y7_c00491{bottom:1046.924850px;}
.y6_c00491{bottom:1082.924850px;}
.y2_c00491{bottom:1164.285000px;}
.h4_c00491{height:17.280000px;}
.h3_c00491{height:70.664062px;}
.h2_c00491{height:1237.365000px;}
.h0_c00491{height:1262.835000px;}
.h1_c00491{height:1263.000000px;}
.w3_c00491{width:47.520000px;}
.w2_c00491{width:867.465000px;}
.w0_c00491{width:892.935000px;}
.w1_c00491{width:893.250000px;}
.x0_c00491{left:0.000000px;}
.x5_c00491{left:10.237500px;}
.x1_c00491{left:12.735000px;}
.x3_c00491{left:95.397000px;}
.x4_c00491{left:422.775000px;}
.x2_c00491{left:889.125000px;}
@media print{
.v0_c00491{vertical-align:0.000000pt;}
.ls0_c00491{letter-spacing:0.000000pt;}
.ws0_c00491{word-spacing:0.000000pt;}
._1_c00491{width:0.960000pt;}
._0_c00491{width:1.920000pt;}
._3_c00491{width:14.886400pt;}
._2_c00491{width:24.256000pt;}
.fs0_c00491{font-size:64.000000pt;}
.y0_c00491{bottom:0.000000pt;}
.y5_c00491{bottom:1.280000pt;}
.y1_c00491{bottom:11.320000pt;}
.y3_c00491{bottom:40.360000pt;}
.y4_c00491{bottom:50.400000pt;}
.y21_c00491{bottom:98.599867pt;}
.y20_c00491{bottom:130.599867pt;}
.y1f_c00491{bottom:162.599867pt;}
.y1e_c00491{bottom:194.599867pt;}
.y1d_c00491{bottom:226.599867pt;}
.y1c_c00491{bottom:258.599867pt;}
.y1b_c00491{bottom:290.599867pt;}
.y1a_c00491{bottom:322.599867pt;}
.y19_c00491{bottom:354.599867pt;}
.y18_c00491{bottom:386.599867pt;}
.y17_c00491{bottom:418.599867pt;}
.y16_c00491{bottom:450.599867pt;}
.y15_c00491{bottom:482.599867pt;}
.y14_c00491{bottom:514.599867pt;}
.y13_c00491{bottom:546.599867pt;}
.y12_c00491{bottom:578.599867pt;}
.y11_c00491{bottom:610.599867pt;}
.y10_c00491{bottom:642.599867pt;}
.yf_c00491{bottom:674.599867pt;}
.ye_c00491{bottom:706.599867pt;}
.yd_c00491{bottom:738.599867pt;}
.yc_c00491{bottom:770.599867pt;}
.yb_c00491{bottom:802.599867pt;}
.ya_c00491{bottom:834.599867pt;}
.y9_c00491{bottom:866.599867pt;}
.y8_c00491{bottom:898.599867pt;}
.y7_c00491{bottom:930.599867pt;}
.y6_c00491{bottom:962.599867pt;}
.y2_c00491{bottom:1034.920000pt;}
.h4_c00491{height:15.360000pt;}
.h3_c00491{height:62.812500pt;}
.h2_c00491{height:1099.880000pt;}
.h0_c00491{height:1122.520000pt;}
.h1_c00491{height:1122.666667pt;}
.w3_c00491{width:42.240000pt;}
.w2_c00491{width:771.080000pt;}
.w0_c00491{width:793.720000pt;}
.w1_c00491{width:794.000000pt;}
.x0_c00491{left:0.000000pt;}
.x5_c00491{left:9.100000pt;}
.x1_c00491{left:11.320000pt;}
.x3_c00491{left:84.797333pt;}
.x4_c00491{left:375.800000pt;}
.x2_c00491{left:790.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_56dfd1b8f87f4aba63bfcbce.woff2')format("woff");}.ff1_c00492{font-family:ff1_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:ff2_c00492;src:url('chunks/assets/font_a8dfdd4764750502770fc013.woff2')format("woff");}.ff2_c00492{font-family:ff2_c00492;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00492;src:url('chunks/assets/font_73f94c8d8aaf24c098ad64e4.woff2')format("woff");}.ff3_c00492{font-family:ff3_c00492;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00492{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00492{vertical-align:0.000000px;}
.ls0_c00492{letter-spacing:0.000000px;}
.sc__c00492{text-shadow:none;}
.sc0_c00492{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00492{-webkit-text-stroke:0px transparent;}
.sc0_c00492{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00492{word-spacing:-18.000000px;}
.ws1_c00492{word-spacing:0.000000px;}
._8_c00492{width:1.051200px;}
._4_c00492{width:2.433600px;}
._6_c00492{width:4.233600px;}
._3_c00492{width:6.696000px;}
._0_c00492{width:8.042400px;}
._7_c00492{width:10.216800px;}
._2_c00492{width:12.067200px;}
._9_c00492{width:13.183200px;}
._5_c00492{width:21.708000px;}
._a_c00492{width:23.486400px;}
._1_c00492{width:25.128000px;}
.fc1_c00492{color:transparent;}
.fc0_c00492{color:rgb(0,0,0);}
.fs0_c00492{font-size:72.000000px;}
.y0_c00492{bottom:0.000000px;}
.y5_c00492{bottom:5.040000px;}
.y1_c00492{bottom:12.735000px;}
.y3_c00492{bottom:45.405000px;}
.y4_c00492{bottom:53.100000px;}
.y20_c00492{bottom:146.924850px;}
.y1f_c00492{bottom:182.924850px;}
.y1e_c00492{bottom:218.924850px;}
.y1d_c00492{bottom:254.924850px;}
.y1c_c00492{bottom:290.924850px;}
.y1b_c00492{bottom:326.924850px;}
.y1a_c00492{bottom:362.924850px;}
.y19_c00492{bottom:398.924850px;}
.y18_c00492{bottom:434.924850px;}
.y17_c00492{bottom:470.924850px;}
.y16_c00492{bottom:506.924850px;}
.y15_c00492{bottom:542.924850px;}
.y14_c00492{bottom:578.924850px;}
.y13_c00492{bottom:614.924850px;}
.y12_c00492{bottom:650.924850px;}
.y11_c00492{bottom:686.924850px;}
.y10_c00492{bottom:722.924850px;}
.yf_c00492{bottom:758.924850px;}
.ye_c00492{bottom:794.924850px;}
.yd_c00492{bottom:830.924850px;}
.yc_c00492{bottom:866.924850px;}
.yb_c00492{bottom:902.924850px;}
.ya_c00492{bottom:938.924850px;}
.y9_c00492{bottom:974.924850px;}
.y8_c00492{bottom:1010.924850px;}
.y7_c00492{bottom:1046.924850px;}
.y6_c00492{bottom:1082.924850px;}
.y2_c00492{bottom:1164.285000px;}
.h4_c00492{height:20.880000px;}
.h3_c00492{height:70.664062px;}
.h2_c00492{height:1237.365000px;}
.h0_c00492{height:1262.835000px;}
.h1_c00492{height:1263.000000px;}
.w3_c00492{width:27.000000px;}
.w2_c00492{width:867.465000px;}
.w0_c00492{width:892.935000px;}
.w1_c00492{width:893.250000px;}
.x0_c00492{left:0.000000px;}
.x1_c00492{left:12.735000px;}
.x3_c00492{left:95.397000px;}
.x4_c00492{left:432.855000px;}
.x2_c00492{left:889.125000px;}
@media print{
.v0_c00492{vertical-align:0.000000pt;}
.ls0_c00492{letter-spacing:0.000000pt;}
.ws0_c00492{word-spacing:-16.000000pt;}
.ws1_c00492{word-spacing:0.000000pt;}
._8_c00492{width:0.934400pt;}
._4_c00492{width:2.163200pt;}
._6_c00492{width:3.763200pt;}
._3_c00492{width:5.952000pt;}
._0_c00492{width:7.148800pt;}
._7_c00492{width:9.081600pt;}
._2_c00492{width:10.726400pt;}
._9_c00492{width:11.718400pt;}
._5_c00492{width:19.296000pt;}
._a_c00492{width:20.876800pt;}
._1_c00492{width:22.336000pt;}
.fs0_c00492{font-size:64.000000pt;}
.y0_c00492{bottom:0.000000pt;}
.y5_c00492{bottom:4.480000pt;}
.y1_c00492{bottom:11.320000pt;}
.y3_c00492{bottom:40.360000pt;}
.y4_c00492{bottom:47.200000pt;}
.y20_c00492{bottom:130.599867pt;}
.y1f_c00492{bottom:162.599867pt;}
.y1e_c00492{bottom:194.599867pt;}
.y1d_c00492{bottom:226.599867pt;}
.y1c_c00492{bottom:258.599867pt;}
.y1b_c00492{bottom:290.599867pt;}
.y1a_c00492{bottom:322.599867pt;}
.y19_c00492{bottom:354.599867pt;}
.y18_c00492{bottom:386.599867pt;}
.y17_c00492{bottom:418.599867pt;}
.y16_c00492{bottom:450.599867pt;}
.y15_c00492{bottom:482.599867pt;}
.y14_c00492{bottom:514.599867pt;}
.y13_c00492{bottom:546.599867pt;}
.y12_c00492{bottom:578.599867pt;}
.y11_c00492{bottom:610.599867pt;}
.y10_c00492{bottom:642.599867pt;}
.yf_c00492{bottom:674.599867pt;}
.ye_c00492{bottom:706.599867pt;}
.yd_c00492{bottom:738.599867pt;}
.yc_c00492{bottom:770.599867pt;}
.yb_c00492{bottom:802.599867pt;}
.ya_c00492{bottom:834.599867pt;}
.y9_c00492{bottom:866.599867pt;}
.y8_c00492{bottom:898.599867pt;}
.y7_c00492{bottom:930.599867pt;}
.y6_c00492{bottom:962.599867pt;}
.y2_c00492{bottom:1034.920000pt;}
.h4_c00492{height:18.560000pt;}
.h3_c00492{height:62.812500pt;}
.h2_c00492{height:1099.880000pt;}
.h0_c00492{height:1122.520000pt;}
.h1_c00492{height:1122.666667pt;}
.w3_c00492{width:24.000000pt;}
.w2_c00492{width:771.080000pt;}
.w0_c00492{width:793.720000pt;}
.w1_c00492{width:794.000000pt;}
.x0_c00492{left:0.000000pt;}
.x1_c00492{left:11.320000pt;}
.x3_c00492{left:84.797333pt;}
.x4_c00492{left:384.760000pt;}
.x2_c00492{left:790.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_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_9278bbd635480f7ae7d77179.woff2')format("woff");}.ff1_c00493{font-family:ff1_c00493;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00493;src:url('chunks/assets/font_5f34cb58aade9eb50d8c8f7d.woff2')format("woff");}.ff2_c00493{font-family:ff2_c00493;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00493{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00493{vertical-align:0.000000px;}
.ls0_c00493{letter-spacing:0.000000px;}
.sc__c00493{text-shadow:none;}
.sc0_c00493{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00493{-webkit-text-stroke:0px transparent;}
.sc0_c00493{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00493{word-spacing:0.000000px;}
._1_c00493{width:1.915200px;}
._3_c00493{width:4.024800px;}
._4_c00493{width:5.263200px;}
._9_c00493{width:6.501600px;}
._7_c00493{width:10.260000px;}
._6_c00493{width:11.721600px;}
._5_c00493{width:13.104000px;}
._0_c00493{width:16.056000px;}
._2_c00493{width:19.584000px;}
._8_c00493{width:198.000000px;}
.fc1_c00493{color:transparent;}
.fc0_c00493{color:rgb(0,0,0);}
.fs0_c00493{font-size:72.000000px;}
.y0_c00493{bottom:0.000000px;}
.y5_c00493{bottom:1.440000px;}
.y1_c00493{bottom:12.735000px;}
.y3_c00493{bottom:45.405000px;}
.y4_c00493{bottom:56.700000px;}
.y21_c00493{bottom:110.924850px;}
.y20_c00493{bottom:146.924850px;}
.y1f_c00493{bottom:182.924850px;}
.y1e_c00493{bottom:218.924850px;}
.y1d_c00493{bottom:254.924850px;}
.y1c_c00493{bottom:290.924850px;}
.y1b_c00493{bottom:326.924850px;}
.y1a_c00493{bottom:362.924850px;}
.y19_c00493{bottom:398.924850px;}
.y18_c00493{bottom:434.924850px;}
.y17_c00493{bottom:470.924850px;}
.y16_c00493{bottom:506.924850px;}
.y15_c00493{bottom:542.924850px;}
.y14_c00493{bottom:578.924850px;}
.y13_c00493{bottom:614.924850px;}
.y12_c00493{bottom:650.924850px;}
.y11_c00493{bottom:686.924850px;}
.y10_c00493{bottom:722.924850px;}
.yf_c00493{bottom:758.924850px;}
.ye_c00493{bottom:794.924850px;}
.yd_c00493{bottom:830.924850px;}
.yc_c00493{bottom:866.924850px;}
.yb_c00493{bottom:902.924850px;}
.ya_c00493{bottom:938.924850px;}
.y9_c00493{bottom:974.924850px;}
.y8_c00493{bottom:1010.924850px;}
.y7_c00493{bottom:1046.924850px;}
.y6_c00493{bottom:1082.924850px;}
.y2_c00493{bottom:1164.285000px;}
.h4_c00493{height:17.280000px;}
.h3_c00493{height:70.664062px;}
.h2_c00493{height:1237.365000px;}
.h0_c00493{height:1262.835000px;}
.h1_c00493{height:1263.000000px;}
.w3_c00493{width:47.520000px;}
.w2_c00493{width:867.465000px;}
.w0_c00493{width:892.935000px;}
.w1_c00493{width:893.250000px;}
.x0_c00493{left:0.000000px;}
.x5_c00493{left:10.237500px;}
.x1_c00493{left:12.735000px;}
.x3_c00493{left:95.397000px;}
.x4_c00493{left:422.775000px;}
.x2_c00493{left:889.125000px;}
@media print{
.v0_c00493{vertical-align:0.000000pt;}
.ls0_c00493{letter-spacing:0.000000pt;}
.ws0_c00493{word-spacing:0.000000pt;}
._1_c00493{width:1.702400pt;}
._3_c00493{width:3.577600pt;}
._4_c00493{width:4.678400pt;}
._9_c00493{width:5.779200pt;}
._7_c00493{width:9.120000pt;}
._6_c00493{width:10.419200pt;}
._5_c00493{width:11.648000pt;}
._0_c00493{width:14.272000pt;}
._2_c00493{width:17.408000pt;}
._8_c00493{width:176.000000pt;}
.fs0_c00493{font-size:64.000000pt;}
.y0_c00493{bottom:0.000000pt;}
.y5_c00493{bottom:1.280000pt;}
.y1_c00493{bottom:11.320000pt;}
.y3_c00493{bottom:40.360000pt;}
.y4_c00493{bottom:50.400000pt;}
.y21_c00493{bottom:98.599867pt;}
.y20_c00493{bottom:130.599867pt;}
.y1f_c00493{bottom:162.599867pt;}
.y1e_c00493{bottom:194.599867pt;}
.y1d_c00493{bottom:226.599867pt;}
.y1c_c00493{bottom:258.599867pt;}
.y1b_c00493{bottom:290.599867pt;}
.y1a_c00493{bottom:322.599867pt;}
.y19_c00493{bottom:354.599867pt;}
.y18_c00493{bottom:386.599867pt;}
.y17_c00493{bottom:418.599867pt;}
.y16_c00493{bottom:450.599867pt;}
.y15_c00493{bottom:482.599867pt;}
.y14_c00493{bottom:514.599867pt;}
.y13_c00493{bottom:546.599867pt;}
.y12_c00493{bottom:578.599867pt;}
.y11_c00493{bottom:610.599867pt;}
.y10_c00493{bottom:642.599867pt;}
.yf_c00493{bottom:674.599867pt;}
.ye_c00493{bottom:706.599867pt;}
.yd_c00493{bottom:738.599867pt;}
.yc_c00493{bottom:770.599867pt;}
.yb_c00493{bottom:802.599867pt;}
.ya_c00493{bottom:834.599867pt;}
.y9_c00493{bottom:866.599867pt;}
.y8_c00493{bottom:898.599867pt;}
.y7_c00493{bottom:930.599867pt;}
.y6_c00493{bottom:962.599867pt;}
.y2_c00493{bottom:1034.920000pt;}
.h4_c00493{height:15.360000pt;}
.h3_c00493{height:62.812500pt;}
.h2_c00493{height:1099.880000pt;}
.h0_c00493{height:1122.520000pt;}
.h1_c00493{height:1122.666667pt;}
.w3_c00493{width:42.240000pt;}
.w2_c00493{width:771.080000pt;}
.w0_c00493{width:793.720000pt;}
.w1_c00493{width:794.000000pt;}
.x0_c00493{left:0.000000pt;}
.x5_c00493{left:9.100000pt;}
.x1_c00493{left:11.320000pt;}
.x3_c00493{left:84.797333pt;}
.x4_c00493{left:375.800000pt;}
.x2_c00493{left:790.333333pt;}
}





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

.ir_c00494:hover {
  cursor: pointer;
}

/* Base CSS END */





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





.ff0_c00494{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1_c00494;src:url('chunks/assets/font_2051297935cf8a917f6a75d8.woff2')format("woff");}.ff1_c00494{font-family:ff1_c00494;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00494;src:url('chunks/assets/font_adc2dea42f79982bacfda3d0.woff2')format("woff");}.ff2_c00494{font-family:ff2_c00494;line-height:1.284180;font-style: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;}
.ls1_c00494{letter-spacing:0.014400px;}
.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:-18.014400px;}
.ws1_c00494{word-spacing:0.000000px;}
._2_c00494{width:1.346400px;}
._1_c00494{width:2.757600px;}
._6_c00494{width:4.536000px;}
._0_c00494{width:10.116000px;}
._5_c00494{width:13.118400px;}
._4_c00494{width:14.234400px;}
._3_c00494{width:25.855200px;}
.fc1_c00494{color:transparent;}
.fc0_c00494{color:rgb(0,0,0);}
.fs0_c00494{font-size:72.000000px;}
.y0_c00494{bottom:0.000000px;}
.y5_c00494{bottom:5.040000px;}
.y1_c00494{bottom:12.735000px;}
.y3_c00494{bottom:45.405000px;}
.y4_c00494{bottom:53.100000px;}
.y21_c00494{bottom:110.924850px;}
.y20_c00494{bottom:146.924850px;}
.y1f_c00494{bottom:182.924850px;}
.y1e_c00494{bottom:218.924850px;}
.y1d_c00494{bottom:254.924850px;}
.y1c_c00494{bottom:290.924850px;}
.y1b_c00494{bottom:326.924850px;}
.y1a_c00494{bottom:362.924850px;}
.y19_c00494{bottom:398.924850px;}
.y18_c00494{bottom:434.924850px;}
.y17_c00494{bottom:470.924850px;}
.y16_c00494{bottom:506.924850px;}
.y15_c00494{bottom:542.924850px;}
.y14_c00494{bottom:578.924850px;}
.y13_c00494{bottom:614.924850px;}
.y12_c00494{bottom:650.924850px;}
.y11_c00494{bottom:686.924850px;}
.y10_c00494{bottom:722.924850px;}
.yf_c00494{bottom:758.924850px;}
.ye_c00494{bottom:794.924850px;}
.yd_c00494{bottom:830.924850px;}
.yc_c00494{bottom:866.924850px;}
.yb_c00494{bottom:902.924850px;}
.ya_c00494{bottom:938.924850px;}
.y9_c00494{bottom:974.924850px;}
.y8_c00494{bottom:1010.924850px;}
.y7_c00494{bottom:1046.924850px;}
.y6_c00494{bottom:1082.924850px;}
.y2_c00494{bottom:1164.285000px;}
.h4_c00494{height:20.880000px;}
.h3_c00494{height:70.664062px;}
.h2_c00494{height:1237.365000px;}
.h0_c00494{height:1262.835000px;}
.h1_c00494{height:1263.000000px;}
.w3_c00494{width:27.000000px;}
.w2_c00494{width:867.465000px;}
.w0_c00494{width:892.935000px;}
.w1_c00494{width:893.250000px;}
.x0_c00494{left:0.000000px;}
.x1_c00494{left:12.735000px;}
.x3_c00494{left:95.397000px;}
.x4_c00494{left:432.855000px;}
.x2_c00494{left:889.125000px;}
@media print{
.v0_c00494{vertical-align:0.000000pt;}
.ls0_c00494{letter-spacing:0.000000pt;}
.ls1_c00494{letter-spacing:0.012800pt;}
.ws0_c00494{word-spacing:-16.012800pt;}
.ws1_c00494{word-spacing:0.000000pt;}
._2_c00494{width:1.196800pt;}
._1_c00494{width:2.451200pt;}
._6_c00494{width:4.032000pt;}
._0_c00494{width:8.992000pt;}
._5_c00494{width:11.660800pt;}
._4_c00494{width:12.652800pt;}
._3_c00494{width:22.982400pt;}
.fs0_c00494{font-size:64.000000pt;}
.y0_c00494{bottom:0.000000pt;}
.y5_c00494{bottom:4.480000pt;}
.y1_c00494{bottom:11.320000pt;}
.y3_c00494{bottom:40.360000pt;}
.y4_c00494{bottom:47.200000pt;}
.y21_c00494{bottom:98.599867pt;}
.y20_c00494{bottom:130.599867pt;}
.y1f_c00494{bottom:162.599867pt;}
.y1e_c00494{bottom:194.599867pt;}
.y1d_c00494{bottom:226.599867pt;}
.y1c_c00494{bottom:258.599867pt;}
.y1b_c00494{bottom:290.599867pt;}
.y1a_c00494{bottom:322.599867pt;}
.y19_c00494{bottom:354.599867pt;}
.y18_c00494{bottom:386.599867pt;}
.y17_c00494{bottom:418.599867pt;}
.y16_c00494{bottom:450.599867pt;}
.y15_c00494{bottom:482.599867pt;}
.y14_c00494{bottom:514.599867pt;}
.y13_c00494{bottom:546.599867pt;}
.y12_c00494{bottom:578.599867pt;}
.y11_c00494{bottom:610.599867pt;}
.y10_c00494{bottom:642.599867pt;}
.yf_c00494{bottom:674.599867pt;}
.ye_c00494{bottom:706.599867pt;}
.yd_c00494{bottom:738.599867pt;}
.yc_c00494{bottom:770.599867pt;}
.yb_c00494{bottom:802.599867pt;}
.ya_c00494{bottom:834.599867pt;}
.y9_c00494{bottom:866.599867pt;}
.y8_c00494{bottom:898.599867pt;}
.y7_c00494{bottom:930.599867pt;}
.y6_c00494{bottom:962.599867pt;}
.y2_c00494{bottom:1034.920000pt;}
.h4_c00494{height:18.560000pt;}
.h3_c00494{height:62.812500pt;}
.h2_c00494{height:1099.880000pt;}
.h0_c00494{height:1122.520000pt;}
.h1_c00494{height:1122.666667pt;}
.w3_c00494{width:24.000000pt;}
.w2_c00494{width:771.080000pt;}
.w0_c00494{width:793.720000pt;}
.w1_c00494{width:794.000000pt;}
.x0_c00494{left:0.000000pt;}
.x1_c00494{left:11.320000pt;}
.x3_c00494{left:84.797333pt;}
.x4_c00494{left:384.760000pt;}
.x2_c00494{left:790.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_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_89136d30bd7f38d2c7dfd744.woff2')format("woff");}.ff1_c00495{font-family:ff1_c00495;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00495;src:url('chunks/assets/font_7c3b58537f175fed9a11dd48.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;}
.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;}
.ls0_c00495{letter-spacing:0.000000px;}
.sc__c00495{text-shadow:none;}
.sc0_c00495{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00495{-webkit-text-stroke:0px transparent;}
.sc0_c00495{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00495{word-spacing:0.000000px;}
._9_c00495{width:3.499200px;}
._2_c00495{width:8.064000px;}
._4_c00495{width:10.684800px;}
._7_c00495{width:11.772000px;}
._6_c00495{width:13.032000px;}
._8_c00495{width:15.220800px;}
._0_c00495{width:16.236000px;}
._5_c00495{width:20.102400px;}
._3_c00495{width:22.960800px;}
._1_c00495{width:27.892800px;}
.fc1_c00495{color:transparent;}
.fc0_c00495{color:rgb(0,0,0);}
.fs0_c00495{font-size:72.000000px;}
.y0_c00495{bottom:0.000000px;}
.y5_c00495{bottom:1.440000px;}
.y1_c00495{bottom:12.735000px;}
.y3_c00495{bottom:45.405000px;}
.y4_c00495{bottom:56.700000px;}
.y21_c00495{bottom:110.924850px;}
.y20_c00495{bottom:146.924850px;}
.y1f_c00495{bottom:182.924850px;}
.y1e_c00495{bottom:218.924850px;}
.y1d_c00495{bottom:254.924850px;}
.y1c_c00495{bottom:290.924850px;}
.y1b_c00495{bottom:326.924850px;}
.y1a_c00495{bottom:362.924850px;}
.y19_c00495{bottom:398.924850px;}
.y18_c00495{bottom:434.924850px;}
.y17_c00495{bottom:470.924850px;}
.y16_c00495{bottom:506.924850px;}
.y15_c00495{bottom:542.924850px;}
.y14_c00495{bottom:578.924850px;}
.y13_c00495{bottom:614.924850px;}
.y12_c00495{bottom:650.924850px;}
.y11_c00495{bottom:686.924850px;}
.y10_c00495{bottom:722.924850px;}
.yf_c00495{bottom:758.924850px;}
.ye_c00495{bottom:794.924850px;}
.yd_c00495{bottom:830.924850px;}
.yc_c00495{bottom:866.924850px;}
.yb_c00495{bottom:902.924850px;}
.ya_c00495{bottom:938.924850px;}
.y9_c00495{bottom:974.924850px;}
.y8_c00495{bottom:1010.924850px;}
.y7_c00495{bottom:1046.924850px;}
.y6_c00495{bottom:1082.924850px;}
.y2_c00495{bottom:1164.285000px;}
.h4_c00495{height:17.280000px;}
.h5_c00495{height:70.628906px;}
.h3_c00495{height:70.664062px;}
.h2_c00495{height:1237.365000px;}
.h0_c00495{height:1262.835000px;}
.h1_c00495{height:1263.000000px;}
.w3_c00495{width:47.520000px;}
.w2_c00495{width:867.465000px;}
.w0_c00495{width:892.935000px;}
.w1_c00495{width:893.250000px;}
.x0_c00495{left:0.000000px;}
.x5_c00495{left:10.237500px;}
.x1_c00495{left:12.735000px;}
.x3_c00495{left:95.397000px;}
.x4_c00495{left:422.775000px;}
.x2_c00495{left:889.125000px;}
@media print{
.v0_c00495{vertical-align:0.000000pt;}
.ls0_c00495{letter-spacing:0.000000pt;}
.ws0_c00495{word-spacing:0.000000pt;}
._9_c00495{width:3.110400pt;}
._2_c00495{width:7.168000pt;}
._4_c00495{width:9.497600pt;}
._7_c00495{width:10.464000pt;}
._6_c00495{width:11.584000pt;}
._8_c00495{width:13.529600pt;}
._0_c00495{width:14.432000pt;}
._5_c00495{width:17.868800pt;}
._3_c00495{width:20.409600pt;}
._1_c00495{width:24.793600pt;}
.fs0_c00495{font-size:64.000000pt;}
.y0_c00495{bottom:0.000000pt;}
.y5_c00495{bottom:1.280000pt;}
.y1_c00495{bottom:11.320000pt;}
.y3_c00495{bottom:40.360000pt;}
.y4_c00495{bottom:50.400000pt;}
.y21_c00495{bottom:98.599867pt;}
.y20_c00495{bottom:130.599867pt;}
.y1f_c00495{bottom:162.599867pt;}
.y1e_c00495{bottom:194.599867pt;}
.y1d_c00495{bottom:226.599867pt;}
.y1c_c00495{bottom:258.599867pt;}
.y1b_c00495{bottom:290.599867pt;}
.y1a_c00495{bottom:322.599867pt;}
.y19_c00495{bottom:354.599867pt;}
.y18_c00495{bottom:386.599867pt;}
.y17_c00495{bottom:418.599867pt;}
.y16_c00495{bottom:450.599867pt;}
.y15_c00495{bottom:482.599867pt;}
.y14_c00495{bottom:514.599867pt;}
.y13_c00495{bottom:546.599867pt;}
.y12_c00495{bottom:578.599867pt;}
.y11_c00495{bottom:610.599867pt;}
.y10_c00495{bottom:642.599867pt;}
.yf_c00495{bottom:674.599867pt;}
.ye_c00495{bottom:706.599867pt;}
.yd_c00495{bottom:738.599867pt;}
.yc_c00495{bottom:770.599867pt;}
.yb_c00495{bottom:802.599867pt;}
.ya_c00495{bottom:834.599867pt;}
.y9_c00495{bottom:866.599867pt;}
.y8_c00495{bottom:898.599867pt;}
.y7_c00495{bottom:930.599867pt;}
.y6_c00495{bottom:962.599867pt;}
.y2_c00495{bottom:1034.920000pt;}
.h4_c00495{height:15.360000pt;}
.h5_c00495{height:62.781250pt;}
.h3_c00495{height:62.812500pt;}
.h2_c00495{height:1099.880000pt;}
.h0_c00495{height:1122.520000pt;}
.h1_c00495{height:1122.666667pt;}
.w3_c00495{width:42.240000pt;}
.w2_c00495{width:771.080000pt;}
.w0_c00495{width:793.720000pt;}
.w1_c00495{width:794.000000pt;}
.x0_c00495{left:0.000000pt;}
.x5_c00495{left:9.100000pt;}
.x1_c00495{left:11.320000pt;}
.x3_c00495{left:84.797333pt;}
.x4_c00495{left:375.800000pt;}
.x2_c00495{left:790.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_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_ff6345652480d0e2184c49f9.woff2')format("woff");}.ff1_c00496{font-family:ff1_c00496;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00496;src:url('chunks/assets/font_b146a1d2da862be1f161c830.woff2')format("woff");}.ff2_c00496{font-family:ff2_c00496;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00496{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00496{vertical-align:0.000000px;}
.ls1_c00496{letter-spacing:-0.014400px;}
.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:0.000000px;}
._0_c00496{width:1.936800px;}
._3_c00496{width:2.988000px;}
._2_c00496{width:4.449600px;}
._6_c00496{width:5.551200px;}
._4_c00496{width:11.167200px;}
._8_c00496{width:14.774400px;}
._7_c00496{width:15.832800px;}
._1_c00496{width:19.548000px;}
._5_c00496{width:24.220800px;}
.fc1_c00496{color:transparent;}
.fc0_c00496{color:rgb(0,0,0);}
.fs0_c00496{font-size:72.000000px;}
.y0_c00496{bottom:0.000000px;}
.y5_c00496{bottom:5.040000px;}
.y1_c00496{bottom:12.735000px;}
.y3_c00496{bottom:45.405000px;}
.y4_c00496{bottom:53.100000px;}
.y21_c00496{bottom:110.924850px;}
.y20_c00496{bottom:146.924850px;}
.y1f_c00496{bottom:182.924850px;}
.y1e_c00496{bottom:218.924850px;}
.y1d_c00496{bottom:254.924850px;}
.y1c_c00496{bottom:290.924850px;}
.y1b_c00496{bottom:326.924850px;}
.y1a_c00496{bottom:362.924850px;}
.y19_c00496{bottom:398.924850px;}
.y18_c00496{bottom:434.924850px;}
.y17_c00496{bottom:470.924850px;}
.y16_c00496{bottom:506.924850px;}
.y15_c00496{bottom:542.924850px;}
.y14_c00496{bottom:578.924850px;}
.y13_c00496{bottom:614.924850px;}
.y12_c00496{bottom:650.924850px;}
.y11_c00496{bottom:686.924850px;}
.y10_c00496{bottom:722.924850px;}
.yf_c00496{bottom:758.924850px;}
.ye_c00496{bottom:794.924850px;}
.yd_c00496{bottom:830.924850px;}
.yc_c00496{bottom:866.924850px;}
.yb_c00496{bottom:902.924850px;}
.ya_c00496{bottom:938.924850px;}
.y9_c00496{bottom:974.924850px;}
.y8_c00496{bottom:1010.924850px;}
.y7_c00496{bottom:1046.924850px;}
.y6_c00496{bottom:1082.924850px;}
.y2_c00496{bottom:1164.285000px;}
.h4_c00496{height:20.880000px;}
.h5_c00496{height:70.628906px;}
.h3_c00496{height:70.664062px;}
.h2_c00496{height:1237.365000px;}
.h0_c00496{height:1262.835000px;}
.h1_c00496{height:1263.000000px;}
.w3_c00496{width:27.000000px;}
.w2_c00496{width:867.465000px;}
.w0_c00496{width:892.935000px;}
.w1_c00496{width:893.250000px;}
.x0_c00496{left:0.000000px;}
.x1_c00496{left:12.735000px;}
.x3_c00496{left:95.397000px;}
.x4_c00496{left:432.855000px;}
.x2_c00496{left:889.125000px;}
@media print{
.v0_c00496{vertical-align:0.000000pt;}
.ls1_c00496{letter-spacing:-0.012800pt;}
.ls0_c00496{letter-spacing:0.000000pt;}
.ws0_c00496{word-spacing:0.000000pt;}
._0_c00496{width:1.721600pt;}
._3_c00496{width:2.656000pt;}
._2_c00496{width:3.955200pt;}
._6_c00496{width:4.934400pt;}
._4_c00496{width:9.926400pt;}
._8_c00496{width:13.132800pt;}
._7_c00496{width:14.073600pt;}
._1_c00496{width:17.376000pt;}
._5_c00496{width:21.529600pt;}
.fs0_c00496{font-size:64.000000pt;}
.y0_c00496{bottom:0.000000pt;}
.y5_c00496{bottom:4.480000pt;}
.y1_c00496{bottom:11.320000pt;}
.y3_c00496{bottom:40.360000pt;}
.y4_c00496{bottom:47.200000pt;}
.y21_c00496{bottom:98.599867pt;}
.y20_c00496{bottom:130.599867pt;}
.y1f_c00496{bottom:162.599867pt;}
.y1e_c00496{bottom:194.599867pt;}
.y1d_c00496{bottom:226.599867pt;}
.y1c_c00496{bottom:258.599867pt;}
.y1b_c00496{bottom:290.599867pt;}
.y1a_c00496{bottom:322.599867pt;}
.y19_c00496{bottom:354.599867pt;}
.y18_c00496{bottom:386.599867pt;}
.y17_c00496{bottom:418.599867pt;}
.y16_c00496{bottom:450.599867pt;}
.y15_c00496{bottom:482.599867pt;}
.y14_c00496{bottom:514.599867pt;}
.y13_c00496{bottom:546.599867pt;}
.y12_c00496{bottom:578.599867pt;}
.y11_c00496{bottom:610.599867pt;}
.y10_c00496{bottom:642.599867pt;}
.yf_c00496{bottom:674.599867pt;}
.ye_c00496{bottom:706.599867pt;}
.yd_c00496{bottom:738.599867pt;}
.yc_c00496{bottom:770.599867pt;}
.yb_c00496{bottom:802.599867pt;}
.ya_c00496{bottom:834.599867pt;}
.y9_c00496{bottom:866.599867pt;}
.y8_c00496{bottom:898.599867pt;}
.y7_c00496{bottom:930.599867pt;}
.y6_c00496{bottom:962.599867pt;}
.y2_c00496{bottom:1034.920000pt;}
.h4_c00496{height:18.560000pt;}
.h5_c00496{height:62.781250pt;}
.h3_c00496{height:62.812500pt;}
.h2_c00496{height:1099.880000pt;}
.h0_c00496{height:1122.520000pt;}
.h1_c00496{height:1122.666667pt;}
.w3_c00496{width:24.000000pt;}
.w2_c00496{width:771.080000pt;}
.w0_c00496{width:793.720000pt;}
.w1_c00496{width:794.000000pt;}
.x0_c00496{left:0.000000pt;}
.x1_c00496{left:11.320000pt;}
.x3_c00496{left:84.797333pt;}
.x4_c00496{left:384.760000pt;}
.x2_c00496{left:790.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_63025f7bb5991752b1234aae.woff2')format("woff");}.ff1_c00497{font-family:ff1_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:ff2_c00497;src:url('chunks/assets/font_a0e21ec4a1ea90d06d2f8368.woff2')format("woff");}.ff2_c00497{font-family:ff2_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;}
.m0_c00497{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00497{vertical-align:0.000000px;}
.ls1_c00497{letter-spacing:-0.014400px;}
.ls0_c00497{letter-spacing:0.000000px;}
.sc__c00497{text-shadow:none;}
.sc0_c00497{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc__c00497{-webkit-text-stroke:0px transparent;}
.sc0_c00497{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0_c00497{word-spacing:-17.985600px;}
.ws1_c00497{word-spacing:0.000000px;}
._3_c00497{width:1.958400px;}
._6_c00497{width:4.953600px;}
._4_c00497{width:6.004800px;}
._2_c00497{width:7.070400px;}
._1_c00497{width:8.107200px;}
._0_c00497{width:9.165600px;}
._8_c00497{width:16.272000px;}
._7_c00497{width:25.056000px;}
._9_c00497{width:26.452800px;}
._5_c00497{width:30.232800px;}
.fc1_c00497{color:transparent;}
.fc0_c00497{color:rgb(0,0,0);}
.fs0_c00497{font-size:72.000000px;}
.y0_c00497{bottom:0.000000px;}
.y5_c00497{bottom:1.440000px;}
.y1_c00497{bottom:12.735000px;}
.y3_c00497{bottom:45.405000px;}
.y4_c00497{bottom:56.700000px;}
.y21_c00497{bottom:110.924850px;}
.y20_c00497{bottom:146.924850px;}
.y1f_c00497{bottom:182.924850px;}
.y1e_c00497{bottom:218.924850px;}
.y1d_c00497{bottom:254.924850px;}
.y1c_c00497{bottom:290.924850px;}
.y1b_c00497{bottom:326.924850px;}
.y1a_c00497{bottom:362.924850px;}
.y19_c00497{bottom:398.924850px;}
.y18_c00497{bottom:434.924850px;}
.y17_c00497{bottom:470.924850px;}
.y16_c00497{bottom:506.924850px;}
.y15_c00497{bottom:542.924850px;}
.y14_c00497{bottom:578.924850px;}
.y13_c00497{bottom:614.924850px;}
.y12_c00497{bottom:650.924850px;}
.y11_c00497{bottom:686.924850px;}
.y10_c00497{bottom:722.924850px;}
.yf_c00497{bottom:758.924850px;}
.ye_c00497{bottom:794.924850px;}
.yd_c00497{bottom:830.924850px;}
.yc_c00497{bottom:866.924850px;}
.yb_c00497{bottom:902.924850px;}
.ya_c00497{bottom:938.924850px;}
.y9_c00497{bottom:974.924850px;}
.y8_c00497{bottom:1010.924850px;}
.y7_c00497{bottom:1046.924850px;}
.y6_c00497{bottom:1082.924850px;}
.y2_c00497{bottom:1164.285000px;}
.h4_c00497{height:17.280000px;}
.h3_c00497{height:70.664062px;}
.h2_c00497{height:1237.365000px;}
.h0_c00497{height:1262.835000px;}
.h1_c00497{height:1263.000000px;}
.w3_c00497{width:47.520000px;}
.w2_c00497{width:867.465000px;}
.w0_c00497{width:892.935000px;}
.w1_c00497{width:893.250000px;}
.x0_c00497{left:0.000000px;}
.x5_c00497{left:10.237500px;}
.x1_c00497{left:12.735000px;}
.x3_c00497{left:95.397000px;}
.x4_c00497{left:422.775000px;}
.x2_c00497{left:889.125000px;}
@media print{
.v0_c00497{vertical-align:0.000000pt;}
.ls1_c00497{letter-spacing:-0.012800pt;}
.ls0_c00497{letter-spacing:0.000000pt;}
.ws0_c00497{word-spacing:-15.987200pt;}
.ws1_c00497{word-spacing:0.000000pt;}
._3_c00497{width:1.740800pt;}
._6_c00497{width:4.403200pt;}
._4_c00497{width:5.337600pt;}
._2_c00497{width:6.284800pt;}
._1_c00497{width:7.206400pt;}
._0_c00497{width:8.147200pt;}
._8_c00497{width:14.464000pt;}
._7_c00497{width:22.272000pt;}
._9_c00497{width:23.513600pt;}
._5_c00497{width:26.873600pt;}
.fs0_c00497{font-size:64.000000pt;}
.y0_c00497{bottom:0.000000pt;}
.y5_c00497{bottom:1.280000pt;}
.y1_c00497{bottom:11.320000pt;}
.y3_c00497{bottom:40.360000pt;}
.y4_c00497{bottom:50.400000pt;}
.y21_c00497{bottom:98.599867pt;}
.y20_c00497{bottom:130.599867pt;}
.y1f_c00497{bottom:162.599867pt;}
.y1e_c00497{bottom:194.599867pt;}
.y1d_c00497{bottom:226.599867pt;}
.y1c_c00497{bottom:258.599867pt;}
.y1b_c00497{bottom:290.599867pt;}
.y1a_c00497{bottom:322.599867pt;}
.y19_c00497{bottom:354.599867pt;}
.y18_c00497{bottom:386.599867pt;}
.y17_c00497{bottom:418.599867pt;}
.y16_c00497{bottom:450.599867pt;}
.y15_c00497{bottom:482.599867pt;}
.y14_c00497{bottom:514.599867pt;}
.y13_c00497{bottom:546.599867pt;}
.y12_c00497{bottom:578.599867pt;}
.y11_c00497{bottom:610.599867pt;}
.y10_c00497{bottom:642.599867pt;}
.yf_c00497{bottom:674.599867pt;}
.ye_c00497{bottom:706.599867pt;}
.yd_c00497{bottom:738.599867pt;}
.yc_c00497{bottom:770.599867pt;}
.yb_c00497{bottom:802.599867pt;}
.ya_c00497{bottom:834.599867pt;}
.y9_c00497{bottom:866.599867pt;}
.y8_c00497{bottom:898.599867pt;}
.y7_c00497{bottom:930.599867pt;}
.y6_c00497{bottom:962.599867pt;}
.y2_c00497{bottom:1034.920000pt;}
.h4_c00497{height:15.360000pt;}
.h3_c00497{height:62.812500pt;}
.h2_c00497{height:1099.880000pt;}
.h0_c00497{height:1122.520000pt;}
.h1_c00497{height:1122.666667pt;}
.w3_c00497{width:42.240000pt;}
.w2_c00497{width:771.080000pt;}
.w0_c00497{width:793.720000pt;}
.w1_c00497{width:794.000000pt;}
.x0_c00497{left:0.000000pt;}
.x5_c00497{left:9.100000pt;}
.x1_c00497{left:11.320000pt;}
.x3_c00497{left:84.797333pt;}
.x4_c00497{left:375.800000pt;}
.x2_c00497{left:790.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_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_cfa499ea1c00f1905fa5c9b8.woff2')format("woff");}.ff1_c00498{font-family:ff1_c00498;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00498;src:url('chunks/assets/font_9b0984b69753aceca5452637.woff2')format("woff");}.ff2_c00498{font-family:ff2_c00498;line-height:1.284180;font-style: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:0.000000px;}
._0_c00498{width:1.152000px;}
._4_c00498{width:12.672000px;}
._3_c00498{width:13.694400px;}
._2_c00498{width:15.768000px;}
._1_c00498{width:19.065600px;}
._6_c00498{width:20.246400px;}
._5_c00498{width:29.268000px;}
.fc1_c00498{color:transparent;}
.fc0_c00498{color:rgb(0,0,0);}
.fs0_c00498{font-size:72.000000px;}
.y0_c00498{bottom:0.000000px;}
.y5_c00498{bottom:5.040000px;}
.y1_c00498{bottom:12.735000px;}
.y3_c00498{bottom:45.405000px;}
.y4_c00498{bottom:53.100000px;}
.y21_c00498{bottom:110.924850px;}
.y20_c00498{bottom:146.924850px;}
.y1f_c00498{bottom:182.924850px;}
.y1e_c00498{bottom:218.924850px;}
.y1d_c00498{bottom:254.924850px;}
.y1c_c00498{bottom:290.924850px;}
.y1b_c00498{bottom:326.924850px;}
.y1a_c00498{bottom:362.924850px;}
.y19_c00498{bottom:398.924850px;}
.y18_c00498{bottom:434.924850px;}
.y17_c00498{bottom:470.924850px;}
.y16_c00498{bottom:506.924850px;}
.y15_c00498{bottom:542.924850px;}
.y14_c00498{bottom:578.924850px;}
.y13_c00498{bottom:614.924850px;}
.y12_c00498{bottom:650.924850px;}
.y11_c00498{bottom:686.924850px;}
.y10_c00498{bottom:722.924850px;}
.yf_c00498{bottom:758.924850px;}
.ye_c00498{bottom:794.924850px;}
.yd_c00498{bottom:830.924850px;}
.yc_c00498{bottom:866.924850px;}
.yb_c00498{bottom:902.924850px;}
.ya_c00498{bottom:938.924850px;}
.y9_c00498{bottom:974.924850px;}
.y8_c00498{bottom:1010.924850px;}
.y7_c00498{bottom:1046.924850px;}
.y6_c00498{bottom:1082.924850px;}
.y2_c00498{bottom:1164.285000px;}
.h4_c00498{height:20.880000px;}
.h3_c00498{height:70.664062px;}
.h2_c00498{height:1237.365000px;}
.h0_c00498{height:1262.835000px;}
.h1_c00498{height:1263.000000px;}
.w3_c00498{width:27.000000px;}
.w2_c00498{width:867.465000px;}
.w0_c00498{width:892.935000px;}
.w1_c00498{width:893.250000px;}
.x0_c00498{left:0.000000px;}
.x1_c00498{left:12.735000px;}
.x3_c00498{left:95.397000px;}
.x4_c00498{left:432.855000px;}
.x2_c00498{left:889.125000px;}
@media print{
.v0_c00498{vertical-align:0.000000pt;}
.ls0_c00498{letter-spacing:0.000000pt;}
.ws0_c00498{word-spacing:0.000000pt;}
._0_c00498{width:1.024000pt;}
._4_c00498{width:11.264000pt;}
._3_c00498{width:12.172800pt;}
._2_c00498{width:14.016000pt;}
._1_c00498{width:16.947200pt;}
._6_c00498{width:17.996800pt;}
._5_c00498{width:26.016000pt;}
.fs0_c00498{font-size:64.000000pt;}
.y0_c00498{bottom:0.000000pt;}
.y5_c00498{bottom:4.480000pt;}
.y1_c00498{bottom:11.320000pt;}
.y3_c00498{bottom:40.360000pt;}
.y4_c00498{bottom:47.200000pt;}
.y21_c00498{bottom:98.599867pt;}
.y20_c00498{bottom:130.599867pt;}
.y1f_c00498{bottom:162.599867pt;}
.y1e_c00498{bottom:194.599867pt;}
.y1d_c00498{bottom:226.599867pt;}
.y1c_c00498{bottom:258.599867pt;}
.y1b_c00498{bottom:290.599867pt;}
.y1a_c00498{bottom:322.599867pt;}
.y19_c00498{bottom:354.599867pt;}
.y18_c00498{bottom:386.599867pt;}
.y17_c00498{bottom:418.599867pt;}
.y16_c00498{bottom:450.599867pt;}
.y15_c00498{bottom:482.599867pt;}
.y14_c00498{bottom:514.599867pt;}
.y13_c00498{bottom:546.599867pt;}
.y12_c00498{bottom:578.599867pt;}
.y11_c00498{bottom:610.599867pt;}
.y10_c00498{bottom:642.599867pt;}
.yf_c00498{bottom:674.599867pt;}
.ye_c00498{bottom:706.599867pt;}
.yd_c00498{bottom:738.599867pt;}
.yc_c00498{bottom:770.599867pt;}
.yb_c00498{bottom:802.599867pt;}
.ya_c00498{bottom:834.599867pt;}
.y9_c00498{bottom:866.599867pt;}
.y8_c00498{bottom:898.599867pt;}
.y7_c00498{bottom:930.599867pt;}
.y6_c00498{bottom:962.599867pt;}
.y2_c00498{bottom:1034.920000pt;}
.h4_c00498{height:18.560000pt;}
.h3_c00498{height:62.812500pt;}
.h2_c00498{height:1099.880000pt;}
.h0_c00498{height:1122.520000pt;}
.h1_c00498{height:1122.666667pt;}
.w3_c00498{width:24.000000pt;}
.w2_c00498{width:771.080000pt;}
.w0_c00498{width:793.720000pt;}
.w1_c00498{width:794.000000pt;}
.x0_c00498{left:0.000000pt;}
.x1_c00498{left:11.320000pt;}
.x3_c00498{left:84.797333pt;}
.x4_c00498{left:384.760000pt;}
.x2_c00498{left:790.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_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_07ef6405bed90c3f8f4b2342.woff2')format("woff");}.ff1_c00499{font-family:ff1_c00499;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00499;src:url('chunks/assets/font_246f9e122d6fb0ac5382d96d.woff2')format("woff");}.ff2_c00499{font-family:ff2_c00499;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.ls1_c00499{letter-spacing:-0.014400px;}
.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;}
._1_c00499{width:2.973600px;}
._4_c00499{width:6.868800px;}
._0_c00499{width:8.035200px;}
._5_c00499{width:13.744800px;}
._3_c00499{width:15.487200px;}
._2_c00499{width:16.783200px;}
._6_c00499{width:24.444000px;}
._7_c00499{width:31.089600px;}
.fc1_c00499{color:transparent;}
.fc0_c00499{color:rgb(0,0,0);}
.fs0_c00499{font-size:72.000000px;}
.y0_c00499{bottom:0.000000px;}
.y5_c00499{bottom:1.440000px;}
.y1_c00499{bottom:12.735000px;}
.y3_c00499{bottom:45.405000px;}
.y4_c00499{bottom:56.700000px;}
.y20_c00499{bottom:146.924850px;}
.y1f_c00499{bottom:182.924850px;}
.y1e_c00499{bottom:218.924850px;}
.y1d_c00499{bottom:254.924850px;}
.y1c_c00499{bottom:290.924850px;}
.y1b_c00499{bottom:326.924850px;}
.y1a_c00499{bottom:362.924850px;}
.y19_c00499{bottom:398.924850px;}
.y18_c00499{bottom:434.924850px;}
.y17_c00499{bottom:470.924850px;}
.y16_c00499{bottom:506.924850px;}
.y15_c00499{bottom:542.924850px;}
.y14_c00499{bottom:578.924850px;}
.y13_c00499{bottom:614.924850px;}
.y12_c00499{bottom:650.924850px;}
.y11_c00499{bottom:686.924850px;}
.y10_c00499{bottom:722.924850px;}
.yf_c00499{bottom:758.924850px;}
.ye_c00499{bottom:794.924850px;}
.yd_c00499{bottom:830.924850px;}
.yc_c00499{bottom:866.924850px;}
.yb_c00499{bottom:902.924850px;}
.ya_c00499{bottom:938.924850px;}
.y9_c00499{bottom:974.924850px;}
.y8_c00499{bottom:1010.924850px;}
.y7_c00499{bottom:1046.924850px;}
.y6_c00499{bottom:1082.924850px;}
.y2_c00499{bottom:1164.285000px;}
.h4_c00499{height:17.280000px;}
.h5_c00499{height:70.628906px;}
.h3_c00499{height:70.664062px;}
.h2_c00499{height:1237.365000px;}
.h0_c00499{height:1262.835000px;}
.h1_c00499{height:1263.000000px;}
.w3_c00499{width:47.520000px;}
.w2_c00499{width:867.465000px;}
.w0_c00499{width:892.935000px;}
.w1_c00499{width:893.250000px;}
.x0_c00499{left:0.000000px;}
.x5_c00499{left:10.237500px;}
.x1_c00499{left:12.735000px;}
.x3_c00499{left:95.397000px;}
.x4_c00499{left:422.775000px;}
.x2_c00499{left:889.125000px;}
@media print{
.v0_c00499{vertical-align:0.000000pt;}
.ls1_c00499{letter-spacing:-0.012800pt;}
.ls0_c00499{letter-spacing:0.000000pt;}
.ws0_c00499{word-spacing:0.000000pt;}
._1_c00499{width:2.643200pt;}
._4_c00499{width:6.105600pt;}
._0_c00499{width:7.142400pt;}
._5_c00499{width:12.217600pt;}
._3_c00499{width:13.766400pt;}
._2_c00499{width:14.918400pt;}
._6_c00499{width:21.728000pt;}
._7_c00499{width:27.635200pt;}
.fs0_c00499{font-size:64.000000pt;}
.y0_c00499{bottom:0.000000pt;}
.y5_c00499{bottom:1.280000pt;}
.y1_c00499{bottom:11.320000pt;}
.y3_c00499{bottom:40.360000pt;}
.y4_c00499{bottom:50.400000pt;}
.y20_c00499{bottom:130.599867pt;}
.y1f_c00499{bottom:162.599867pt;}
.y1e_c00499{bottom:194.599867pt;}
.y1d_c00499{bottom:226.599867pt;}
.y1c_c00499{bottom:258.599867pt;}
.y1b_c00499{bottom:290.599867pt;}
.y1a_c00499{bottom:322.599867pt;}
.y19_c00499{bottom:354.599867pt;}
.y18_c00499{bottom:386.599867pt;}
.y17_c00499{bottom:418.599867pt;}
.y16_c00499{bottom:450.599867pt;}
.y15_c00499{bottom:482.599867pt;}
.y14_c00499{bottom:514.599867pt;}
.y13_c00499{bottom:546.599867pt;}
.y12_c00499{bottom:578.599867pt;}
.y11_c00499{bottom:610.599867pt;}
.y10_c00499{bottom:642.599867pt;}
.yf_c00499{bottom:674.599867pt;}
.ye_c00499{bottom:706.599867pt;}
.yd_c00499{bottom:738.599867pt;}
.yc_c00499{bottom:770.599867pt;}
.yb_c00499{bottom:802.599867pt;}
.ya_c00499{bottom:834.599867pt;}
.y9_c00499{bottom:866.599867pt;}
.y8_c00499{bottom:898.599867pt;}
.y7_c00499{bottom:930.599867pt;}
.y6_c00499{bottom:962.599867pt;}
.y2_c00499{bottom:1034.920000pt;}
.h4_c00499{height:15.360000pt;}
.h5_c00499{height:62.781250pt;}
.h3_c00499{height:62.812500pt;}
.h2_c00499{height:1099.880000pt;}
.h0_c00499{height:1122.520000pt;}
.h1_c00499{height:1122.666667pt;}
.w3_c00499{width:42.240000pt;}
.w2_c00499{width:771.080000pt;}
.w0_c00499{width:793.720000pt;}
.w1_c00499{width:794.000000pt;}
.x0_c00499{left:0.000000pt;}
.x5_c00499{left:9.100000pt;}
.x1_c00499{left:11.320000pt;}
.x3_c00499{left:84.797333pt;}
.x4_c00499{left:375.800000pt;}
.x2_c00499{left:790.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_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_399e0690ae048e6a892cb387.woff2')format("woff");}.ff1_c00001{font-family:ff1_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2_c00001;src:url('chunks/assets/font_24024f8b46673e93eac96c74.woff2')format("woff");}.ff2_c00001{font-family:ff2_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3_c00001;src:url('chunks/assets/font_093558ffd13adf1275fd015a.woff2')format("woff");}.ff3_c00001{font-family:ff3_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4_c00001;src:url('chunks/assets/font_1863eeee4416e4f43caaef13.woff2')format("woff");}.ff4_c00001{font-family:ff4_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5_c00001;src:url('chunks/assets/font_5dda741d1aa87897d6aabdf3.woff2')format("woff");}.ff5_c00001{font-family:ff5_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6_c00001;src:url('chunks/assets/font_676eef402047f9f31c2f278c.woff2')format("woff");}.ff6_c00001{font-family:ff6_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7_c00001;src:url('chunks/assets/font_6dd4b77f78d40474a077f55a.woff2')format("woff");}.ff7_c00001{font-family:ff7_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8_c00001;src:url('chunks/assets/font_29ac2d375c76d254ce100d6f.woff2')format("woff");}.ff8_c00001{font-family:ff8_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9_c00001;src:url('chunks/assets/font_e3732bdb262babb89c44c9db.woff2')format("woff");}.ff9_c00001{font-family:ff9_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa_c00001;src:url('chunks/assets/font_fe9002a4fc241e6859dfb52e.woff2')format("woff");}.ffa_c00001{font-family:ffa_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb_c00001;src:url('chunks/assets/font_556078fd24077f91149755b1.woff2')format("woff");}.ffb_c00001{font-family:ffb_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc_c00001;src:url('chunks/assets/font_9776395a4cf10650b6785f8d.woff2')format("woff");}.ffc_c00001{font-family:ffc_c00001;line-height:1.311035;font-style:normal;font-weight: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_c00001;src:url('chunks/assets/font_5b930cd5afeffe8314873afc.woff2')format("woff");}.ffd_c00001{font-family:ffd_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe_c00001;src:url('chunks/assets/font_99f9dd4d8db2343b70d12e8b.woff2')format("woff");}.ffe_c00001{font-family:ffe_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff_c00001;src:url('chunks/assets/font_1d9c240554ad582ffcafeb5d.woff2')format("woff");}.fff_c00001{font-family:fff_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10_c00001;src:url('chunks/assets/font_2573d6729feeb6814d0167fb.woff2')format("woff");}.ff10_c00001{font-family:ff10_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11_c00001;src:url('chunks/assets/font_79f5ce22fef2e742b415b25b.woff2')format("woff");}.ff11_c00001{font-family:ff11_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12_c00001;src:url('chunks/assets/font_142dea44f9ab35a18a7a7769.woff2')format("woff");}.ff12_c00001{font-family:ff12_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13_c00001;src:url('chunks/assets/font_ae25764d16592676a0d9eae7.woff2')format("woff");}.ff13_c00001{font-family:ff13_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14_c00001;src:url('chunks/assets/font_646c4f0285f389a768afcd05.woff2')format("woff");}.ff14_c00001{font-family:ff14_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15_c00001;src:url('chunks/assets/font_a8dfdd4764750502770fc013.woff2')format("woff");}.ff15_c00001{font-family:ff15_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16_c00001;src:url('chunks/assets/font_bf2788d72e0b49e810da925f.woff2')format("woff");}.ff16_c00001{font-family:ff16_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17_c00001;src:url('chunks/assets/font_299399d0a8031b9fa828b465.woff2')format("woff");}.ff17_c00001{font-family:ff17_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18_c00001;src:url('chunks/assets/font_a8dfdd4764750502770fc013.woff2')format("woff");}.ff18_c00001{font-family:ff18_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19_c00001;src:url('chunks/assets/font_391a0169fb58c81630663a34.woff2')format("woff");}.ff19_c00001{font-family:ff19_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a_c00001;src:url('chunks/assets/font_8fd50e99dd2f28ab25118ffc.woff2')format("woff");}.ff1a_c00001{font-family:ff1a_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b_c00001;src:url('chunks/assets/font_aa2f3a8c61a403ced9b1af99.woff2')format("woff");}.ff1b_c00001{font-family:ff1b_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c_c00001;src:url('chunks/assets/font_93203d72e9b4585ca01fb79b.woff2')format("woff");}.ff1c_c00001{font-family:ff1c_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d_c00001;src:url('chunks/assets/font_13f5aedb19605555490cc5de.woff2')format("woff");}.ff1d_c00001{font-family:ff1d_c00001;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:ff1e_c00001;src:url('chunks/assets/font_92e8d172d9fe51929255a549.woff2')format("woff");}.ff1e_c00001{font-family:ff1e_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f_c00001;src:url('chunks/assets/font_91e410ecacd3c28ef88091f5.woff2')format("woff");}.ff1f_c00001{font-family:ff1f_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20_c00001;src:url('chunks/assets/font_9c73000c7f5ad9921e9fd16a.woff2')format("woff");}.ff20_c00001{font-family:ff20_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21_c00001;src:url('chunks/assets/font_20e748b14545eb52ed1bf7d0.woff2')format("woff");}.ff21_c00001{font-family:ff21_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22_c00001;src:url('chunks/assets/font_3c52b4ce7cabfade218044b6.woff2')format("woff");}.ff22_c00001{font-family:ff22_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23_c00001;src:url('chunks/assets/font_705544bc85dd55145aedeb42.woff2')format("woff");}.ff23_c00001{font-family:ff23_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24_c00001;src:url('chunks/assets/font_9347719c3db415d0d53b97b4.woff2')format("woff");}.ff24_c00001{font-family:ff24_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25_c00001;src:url('chunks/assets/font_fac53a09fe718d38efd45084.woff2')format("woff");}.ff25_c00001{font-family:ff25_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26_c00001;src:url('chunks/assets/font_9ad6d446496b1d4465a5e600.woff2')format("woff");}.ff26_c00001{font-family:ff26_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27_c00001;src:url('chunks/assets/font_15fe0f9ded61f72b3234423e.woff2')format("woff");}.ff27_c00001{font-family:ff27_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28_c00001;src:url('chunks/assets/font_cfc24b455ee52acb1fb46bf4.woff2')format("woff");}.ff28_c00001{font-family:ff28_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29_c00001;src:url('chunks/assets/font_d4df8705b92a2c0913af665e.woff2')format("woff");}.ff29_c00001{font-family:ff29_c00001;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:ff2a_c00001;src:url('chunks/assets/font_875c7c6bc379e498fe8262d7.woff2')format("woff");}.ff2a_c00001{font-family:ff2a_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b_c00001;src:url('chunks/assets/font_f8f453baa96574824e236ba8.woff2')format("woff");}.ff2b_c00001{font-family:ff2b_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c_c00001;src:url('chunks/assets/font_bb2cc65a27573dc41c50ad56.woff2')format("woff");}.ff2c_c00001{font-family:ff2c_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d_c00001;src:url('chunks/assets/font_be5c937765ebc88eb0c7f151.woff2')format("woff");}.ff2d_c00001{font-family:ff2d_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e_c00001;src:url('chunks/assets/font_608f14c39b8c89c69aad61a5.woff2')format("woff");}.ff2e_c00001{font-family:ff2e_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f_c00001;src:url('chunks/assets/font_103f32242d64a8dd2dd0ea5a.woff2')format("woff");}.ff2f_c00001{font-family:ff2f_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30_c00001;src:url('chunks/assets/font_524e16f4245fe3841087d3f7.woff2')format("woff");}.ff30_c00001{font-family:ff30_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31_c00001;src:url('chunks/assets/font_a982e90e0356be4945c6d8c3.woff2')format("woff");}.ff31_c00001{font-family:ff31_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32_c00001;src:url('chunks/assets/font_f77cf0d80aa56fbac6aa4b32.woff2')format("woff");}.ff32_c00001{font-family:ff32_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33_c00001;src:url('chunks/assets/font_3f1e2606cfa132ca109ab643.woff2')format("woff");}.ff33_c00001{font-family:ff33_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34_c00001;src:url('chunks/assets/font_92c2e6387462b3f609384c77.woff2')format("woff");}.ff34_c00001{font-family:ff34_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35_c00001;src:url('chunks/assets/font_2b61507fd7877324d9d253de.woff2')format("woff");}.ff35_c00001{font-family:ff35_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36_c00001;src:url('chunks/assets/font_33c1e86661f5c7fd2be26a97.woff2')format("woff");}.ff36_c00001{font-family:ff36_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37_c00001;src:url('chunks/assets/font_d42e57cf82e7879cb0f73bac.woff2')format("woff");}.ff37_c00001{font-family:ff37_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38_c00001;src:url('chunks/assets/font_e3206bba58c9584add9bf7a7.woff2')format("woff");}.ff38_c00001{font-family:ff38_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39_c00001;src:url('chunks/assets/font_28d021c61f86756b7a584510.woff2')format("woff");}.ff39_c00001{font-family:ff39_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a_c00001;src:url('chunks/assets/font_674dc9edf8d64b925f012957.woff2')format("woff");}.ff3a_c00001{font-family:ff3a_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b_c00001;src:url('chunks/assets/font_676eef402047f9f31c2f278c.woff2')format("woff");}.ff3b_c00001{font-family:ff3b_c00001;line-height:0.750000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c_c00001;src:url('chunks/assets/font_2a6956afa815973d27eb8130.woff2')format("woff");}.ff3c_c00001{font-family:ff3c_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d_c00001;src:url('chunks/assets/font_2756b7bebecfb1dc725bf6c0.woff2')format("woff");}.ff3d_c00001{font-family:ff3d_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e_c00001;src:url('chunks/assets/font_6f4302f98a928134a642b95e.woff2')format("woff");}.ff3e_c00001{font-family:ff3e_c00001;line-height:0.679199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f_c00001;src:url('chunks/assets/font_7806117f665096bc142717da.woff2')format("woff");}.ff3f_c00001{font-family:ff3f_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40_c00001;src:url('chunks/assets/font_cd74ebd5c6e263383368d4b7.woff2')format("woff");}.ff40_c00001{font-family:ff40_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41_c00001;src:url('chunks/assets/font_b055d67b5903748dc4712992.woff2')format("woff");}.ff41_c00001{font-family:ff41_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42_c00001;src:url('chunks/assets/font_afa0e10ba24f4bd2c04b95fa.woff2')format("woff");}.ff42_c00001{font-family:ff42_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43_c00001;src:url('chunks/assets/font_d42cd7cf333e8130b755fb58.woff2')format("woff");}.ff43_c00001{font-family:ff43_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44_c00001;src:url('chunks/assets/font_7f38dd7fc67a683a648327d4.woff2')format("woff");}.ff44_c00001{font-family:ff44_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45_c00001;src:url('chunks/assets/font_144403f898eb712dbff4a132.woff2')format("woff");}.ff45_c00001{font-family:ff45_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46_c00001;src:url('chunks/assets/font_f833614e77c39ab9f74ff0e0.woff2')format("woff");}.ff46_c00001{font-family:ff46_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47_c00001;src:url('chunks/assets/font_3bff6f6f6656569e37e940bf.woff2')format("woff");}.ff47_c00001{font-family:ff47_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48_c00001;src:url('chunks/assets/font_29d552ae07b64008cdcd7945.woff2')format("woff");}.ff48_c00001{font-family:ff48_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49_c00001;src:url('chunks/assets/font_b804edb9ed7c0550c22f8dff.woff2')format("woff");}.ff49_c00001{font-family:ff49_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a_c00001;src:url('chunks/assets/font_fe8671b986cb8b4e03db79a0.woff2')format("woff");}.ff4a_c00001{font-family:ff4a_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b_c00001;src:url('chunks/assets/font_8ab7ee5a415c8213bf09e611.woff2')format("woff");}.ff4b_c00001{font-family:ff4b_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c_c00001;src:url('chunks/assets/font_6e9bf1819f854b1422f9f550.woff2')format("woff");}.ff4c_c00001{font-family:ff4c_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d_c00001;src:url('chunks/assets/font_f64a9295b9d599b62ba3cb9f.woff2')format("woff");}.ff4d_c00001{font-family:ff4d_c00001;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:ff4e_c00001;src:url('chunks/assets/font_2dec20b6202fc09cc445df05.woff2')format("woff");}.ff4e_c00001{font-family:ff4e_c00001;line-height:0.679199;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f_c00001;src:url('chunks/assets/font_0a93ff916f51f01c9d0560d6.woff2')format("woff");}.ff4f_c00001{font-family:ff4f_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50_c00001;src:url('chunks/assets/font_e6afa23ba85ab46f3285c846.woff2')format("woff");}.ff50_c00001{font-family:ff50_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51_c00001;src:url('chunks/assets/font_0c63d376b41c92867eb065e7.woff2')format("woff");}.ff51_c00001{font-family:ff51_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52_c00001;src:url('chunks/assets/font_72dca5d5b3b9bee3c20ed9a1.woff2')format("woff");}.ff52_c00001{font-family:ff52_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53_c00001;src:url('chunks/assets/font_a8dfdd4764750502770fc013.woff2')format("woff");}.ff53_c00001{font-family:ff53_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54_c00001;src:url('chunks/assets/font_dccf0eb509e9f634a96514f1.woff2')format("woff");}.ff54_c00001{font-family:ff54_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55_c00001;src:url('chunks/assets/font_d3653b7dc00db4a6b71dd7c8.woff2')format("woff");}.ff55_c00001{font-family:ff55_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56_c00001;src:url('chunks/assets/font_d47a135393e1262bc0567cd6.woff2')format("woff");}.ff56_c00001{font-family:ff56_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57_c00001;src:url('chunks/assets/font_ac316b4107b3b6b434da9aa6.woff2')format("woff");}.ff57_c00001{font-family:ff57_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58_c00001;src:url('chunks/assets/font_511f39f9c1230bc055dc50a2.woff2')format("woff");}.ff58_c00001{font-family:ff58_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff59_c00001;src:url('chunks/assets/font_50fe01e1a2ae2db79af1e4f2.woff2')format("woff");}.ff59_c00001{font-family:ff59_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5a_c00001;src:url('chunks/assets/font_a8dfdd4764750502770fc013.woff2')format("woff");}.ff5a_c00001{font-family:ff5a_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5b_c00001;src:url('chunks/assets/font_c8d0404a7358306216a34d4f.woff2')format("woff");}.ff5b_c00001{font-family:ff5b_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5c_c00001;src:url('chunks/assets/font_9ce62a7b083acd30bc54283d.woff2')format("woff");}.ff5c_c00001{font-family:ff5c_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5d_c00001;src:url('chunks/assets/font_e24680676af417c7ed993847.woff2')format("woff");}.ff5d_c00001{font-family:ff5d_c00001;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:ff5e_c00001;src:url('chunks/assets/font_6a222b29fc65e932231e0647.woff2')format("woff");}.ff5e_c00001{font-family:ff5e_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5f_c00001;src:url('chunks/assets/font_ff536d64fb91570197e7dc0c.woff2')format("woff");}.ff5f_c00001{font-family:ff5f_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff60_c00001;src:url('chunks/assets/font_bdefad3c033b627b35d3109b.woff2')format("woff");}.ff60_c00001{font-family:ff60_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff61_c00001;src:url('chunks/assets/font_ea8e99b633f5eaf733e20065.woff2')format("woff");}.ff61_c00001{font-family:ff61_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff62_c00001;src:url('chunks/assets/font_da96e7ed415fef518cb82609.woff2')format("woff");}.ff62_c00001{font-family:ff62_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff63_c00001;src:url('chunks/assets/font_90ecaac035666e1f84ab258c.woff2')format("woff");}.ff63_c00001{font-family:ff63_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff64_c00001;src:url('chunks/assets/font_b7199c12efce25a90f08f690.woff2')format("woff");}.ff64_c00001{font-family:ff64_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff65_c00001;src:url('chunks/assets/font_7bde36e24d32c67be6e170f4.woff2')format("woff");}.ff65_c00001{font-family:ff65_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff66_c00001;src:url('chunks/assets/font_9efffcc0f1e79c4c2f80d4ad.woff2')format("woff");}.ff66_c00001{font-family:ff66_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff67_c00001;src:url('chunks/assets/font_0ead467fb5aff32de786069b.woff2')format("woff");}.ff67_c00001{font-family:ff67_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff68_c00001;src:url('chunks/assets/font_239d908e71605c9217bee061.woff2')format("woff");}.ff68_c00001{font-family:ff68_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff69_c00001;src:url('chunks/assets/font_79d0e7821deb1dccec823996.woff2')format("woff");}.ff69_c00001{font-family:ff69_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6a_c00001;src:url('chunks/assets/font_e60341cbb8dbb6057e89bbc0.woff2')format("woff");}.ff6a_c00001{font-family:ff6a_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6b_c00001;src:url('chunks/assets/font_8dd62a486b6ea3933836a3ac.woff2')format("woff");}.ff6b_c00001{font-family:ff6b_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6c_c00001;src:url('chunks/assets/font_f0d0148d288e395cd0171edb.woff2')format("woff");}.ff6c_c00001{font-family:ff6c_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6d_c00001;src:url('chunks/assets/font_916a63a7be490479b808c93c.woff2')format("woff");}.ff6d_c00001{font-family:ff6d_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6e_c00001;src:url('chunks/assets/font_af9675bd2b29cf68504603fc.woff2')format("woff");}.ff6e_c00001{font-family:ff6e_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6f_c00001;src:url('chunks/assets/font_a8dfdd4764750502770fc013.woff2')format("woff");}.ff6f_c00001{font-family:ff6f_c00001;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff70_c00001;src:url('chunks/assets/font_c55be771eae9168ab379d9df.woff2')format("woff");}.ff70_c00001{font-family:ff70_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff71_c00001;src:url('chunks/assets/font_daf23b12ef7bd69301682f4e.woff2')format("woff");}.ff71_c00001{font-family:ff71_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff72_c00001;src:url('chunks/assets/font_0cf3167081a7d88cf83bf3f8.woff2')format("woff");}.ff72_c00001{font-family:ff72_c00001;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:ff73_c00001;src:url('chunks/assets/font_8ba0aed6e75686ccaad74e14.woff2')format("woff");}.ff73_c00001{font-family:ff73_c00001;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff74_c00001;src:url('chunks/assets/font_b06a40586d77b0b742827581.woff2')format("woff");}.ff74_c00001{font-family:ff74_c00001;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0_c00001{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0_c00001{vertical-align:0.000000px;}
.v1_c00001{vertical-align:30.240600px;}
.lse_c00001{letter-spacing:-0.057600px;}
.ls6_c00001{letter-spacing:-0.014400px;}
.ls0_c00001{letter-spacing:0.000000px;}
.ls2_c00001{letter-spacing:0.014400px;}
.lsc_c00001{letter-spacing:0.036000px;}
.ls14_c00001{letter-spacing:0.050400px;}
.lsb_c00001{letter-spacing:0.072000px;}
.ls1_c00001{letter-spacing:0.100224px;}
.ls9_c00001{letter-spacing:1.202400px;}
.lsf_c00001{letter-spacing:7.236000px;}
.ls11_c00001{letter-spacing:8.200800px;}
.ls12_c00001{letter-spacing:8.632800px;}
.ls7_c00001{letter-spacing:10.080000px;}
.ls4_c00001{letter-spacing:10.425600px;}
.ls15_c00001{letter-spacing:11.044800px;}
.ls8_c00001{letter-spacing:13.291200px;}
.ls13_c00001{letter-spacing:17.625600px;}
.ls5_c00001{letter-spacing:18.460800px;}
.lsd_c00001{letter-spacing:19.512000px;}
.ls10_c00001{letter-spacing:21.909600px;}
.ls3_c00001{letter-spacing:23.760000px;}
.lsa_c00001{letter-spacing:27.496800px;}
.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;}
}
.ws5_c00001{word-spacing:-18.036000px;}
.ws3_c00001{word-spacing:-18.014400px;}
.ws2_c00001{word-spacing:-18.000000px;}
.ws4_c00001{word-spacing:-17.985600px;}
.ws0_c00001{word-spacing:-10.540224px;}
.ws1_c00001{word-spacing:0.000000px;}
._20_c00001{margin-left:-26.625600px;}
._28_c00001{margin-left:-20.923200px;}
._17_c00001{margin-left:-17.985600px;}
._29_c00001{margin-left:-16.855200px;}
._15_c00001{margin-left:-1.324800px;}
._a_c00001{width:1.036800px;}
._12_c00001{width:2.520000px;}
._6_c00001{width:3.549600px;}
._1_c00001{width:4.759200px;}
._c_c00001{width:5.904000px;}
._10_c00001{width:6.904800px;}
._2_c00001{width:7.912800px;}
._5_c00001{width:9.028800px;}
._9_c00001{width:10.843200px;}
._14_c00001{width:12.549600px;}
._0_c00001{width:13.651200px;}
._4_c00001{width:15.213600px;}
._11_c00001{width:16.884000px;}
._7_c00001{width:19.447200px;}
._e_c00001{width:21.204000px;}
._1b_c00001{width:22.320000px;}
._8_c00001{width:23.508000px;}
._f_c00001{width:25.308000px;}
._1e_c00001{width:26.416800px;}
._d_c00001{width:27.424800px;}
._b_c00001{width:29.124000px;}
._16_c00001{width:30.175200px;}
._1f_c00001{width:31.528800px;}
._1a_c00001{width:32.767200px;}
._1d_c00001{width:34.344000px;}
._21_c00001{width:35.395200px;}
._13_c00001{width:37.015200px;}
._19_c00001{width:38.916000px;}
._23_c00001{width:40.075200px;}
._1c_c00001{width:41.659200px;}
._3_c00001{width:43.142400px;}
._26_c00001{width:44.366400px;}
._25_c00001{width:45.410400px;}
._24_c00001{width:46.634400px;}
._22_c00001{width:48.542400px;}
._2a_c00001{width:56.714400px;}
._18_c00001{width:97.344000px;}
._27_c00001{width:184.413600px;}
.fc2_c00001{color:rgb(0,0,255);}
.fc1_c00001{color:transparent;}
.fc0_c00001{color:rgb(0,0,0);}
.fs1_c00001{font-size:41.760000px;}
.fs0_c00001{font-size:72.000000px;}
.y0_c00001{bottom:0.000000px;}
.y23_c00001{bottom:1.440000px;}
.y5_c00001{bottom:5.040000px;}
.y1_c00001{bottom:12.735000px;}
.y3_c00001{bottom:45.405000px;}
.y4_c00001{bottom:53.100000px;}
.y22_c00001{bottom:56.700000px;}
.y2f_c00001{bottom:110.924850px;}
.y21_c00001{bottom:110.925000px;}
.y2e_c00001{bottom:146.924850px;}
.y20_c00001{bottom:146.925000px;}
.y2d_c00001{bottom:182.924850px;}
.y1f_c00001{bottom:182.925000px;}
.y2c_c00001{bottom:218.924850px;}
.y1e_c00001{bottom:218.925000px;}
.y2b_c00001{bottom:254.924850px;}
.y1d_c00001{bottom:254.925000px;}
.y2a_c00001{bottom:290.924850px;}
.y1c_c00001{bottom:290.925000px;}
.y29_c00001{bottom:326.924850px;}
.y1b_c00001{bottom:326.925000px;}
.y28_c00001{bottom:362.924850px;}
.y1a_c00001{bottom:362.925000px;}
.y27_c00001{bottom:398.924850px;}
.y19_c00001{bottom:398.925000px;}
.y26_c00001{bottom:434.924850px;}
.y18_c00001{bottom:434.925000px;}
.y25_c00001{bottom:470.924850px;}
.y17_c00001{bottom:470.925000px;}
.y24_c00001{bottom:506.924850px;}
.y16_c00001{bottom:506.925000px;}
.y15_c00001{bottom:542.924850px;}
.y31_c00001{bottom:549.044850px;}
.y14_c00001{bottom:578.924850px;}
.y13_c00001{bottom:614.924850px;}
.y12_c00001{bottom:650.924850px;}
.y11_c00001{bottom:686.924850px;}
.y10_c00001{bottom:722.924850px;}
.yf_c00001{bottom:758.924850px;}
.ye_c00001{bottom:794.924850px;}
.yd_c00001{bottom:830.924850px;}
.yc_c00001{bottom:866.924850px;}
.yb_c00001{bottom:902.924850px;}
.ya_c00001{bottom:938.924850px;}
.y9_c00001{bottom:974.924850px;}
.y30_c00001{bottom:981.044850px;}
.y8_c00001{bottom:1010.924850px;}
.y7_c00001{bottom:1046.924850px;}
.y6_c00001{bottom:1082.924850px;}
.y2_c00001{bottom:1164.285000px;}
.h6_c00001{height:17.280000px;}
.h4_c00001{height:20.880000px;}
.h9_c00001{height:70.628906px;}
.h3_c00001{height:70.664062px;}
.h8_c00001{height:70.664662px;}
.h5_c00001{height:71.205366px;}
.h7_c00001{height:72.562500px;}
.ha_c00001{height:74.953125px;}
.h2_c00001{height:1237.365000px;}
.h0_c00001{height:1262.835000px;}
.h1_c00001{height:1263.000000px;}
.w3_c00001{width:27.000000px;}
.w4_c00001{width:47.520000px;}
.w2_c00001{width:867.465000px;}
.w0_c00001{width:892.935000px;}
.w1_c00001{width:893.250000px;}
.x0_c00001{left:0.000000px;}
.x6_c00001{left:10.237500px;}
.x1_c00001{left:12.735000px;}
.x3_c00001{left:95.397000px;}
.x5_c00001{left:422.775000px;}
.x4_c00001{left:432.855000px;}
.x2_c00001{left:889.125000px;}
@media print{
.v0_c00001{vertical-align:0.000000pt;}
.v1_c00001{vertical-align:26.880533pt;}
.lse_c00001{letter-spacing:-0.051200pt;}
.ls6_c00001{letter-spacing:-0.012800pt;}
.ls0_c00001{letter-spacing:0.000000pt;}
.ls2_c00001{letter-spacing:0.012800pt;}
.lsc_c00001{letter-spacing:0.032000pt;}
.ls14_c00001{letter-spacing:0.044800pt;}
.lsb_c00001{letter-spacing:0.064000pt;}
.ls1_c00001{letter-spacing:0.089088pt;}
.ls9_c00001{letter-spacing:1.068800pt;}
.lsf_c00001{letter-spacing:6.432000pt;}
.ls11_c00001{letter-spacing:7.289600pt;}
.ls12_c00001{letter-spacing:7.673600pt;}
.ls7_c00001{letter-spacing:8.960000pt;}
.ls4_c00001{letter-spacing:9.267200pt;}
.ls15_c00001{letter-spacing:9.817600pt;}
.ls8_c00001{letter-spacing:11.814400pt;}
.ls13_c00001{letter-spacing:15.667200pt;}
.ls5_c00001{letter-spacing:16.409600pt;}
.lsd_c00001{letter-spacing:17.344000pt;}
.ls10_c00001{letter-spacing:19.475200pt;}
.ls3_c00001{letter-spacing:21.120000pt;}
.lsa_c00001{letter-spacing:24.441600pt;}
.ws5_c00001{word-spacing:-16.032000pt;}
.ws3_c00001{word-spacing:-16.012800pt;}
.ws2_c00001{word-spacing:-16.000000pt;}
.ws4_c00001{word-spacing:-15.987200pt;}
.ws0_c00001{word-spacing:-9.369088pt;}
.ws1_c00001{word-spacing:0.000000pt;}
._20_c00001{margin-left:-23.667200pt;}
._28_c00001{margin-left:-18.598400pt;}
._17_c00001{margin-left:-15.987200pt;}
._29_c00001{margin-left:-14.982400pt;}
._15_c00001{margin-left:-1.177600pt;}
._a_c00001{width:0.921600pt;}
._12_c00001{width:2.240000pt;}
._6_c00001{width:3.155200pt;}
._1_c00001{width:4.230400pt;}
._c_c00001{width:5.248000pt;}
._10_c00001{width:6.137600pt;}
._2_c00001{width:7.033600pt;}
._5_c00001{width:8.025600pt;}
._9_c00001{width:9.638400pt;}
._14_c00001{width:11.155200pt;}
._0_c00001{width:12.134400pt;}
._4_c00001{width:13.523200pt;}
._11_c00001{width:15.008000pt;}
._7_c00001{width:17.286400pt;}
._e_c00001{width:18.848000pt;}
._1b_c00001{width:19.840000pt;}
._8_c00001{width:20.896000pt;}
._f_c00001{width:22.496000pt;}
._1e_c00001{width:23.481600pt;}
._d_c00001{width:24.377600pt;}
._b_c00001{width:25.888000pt;}
._16_c00001{width:26.822400pt;}
._1f_c00001{width:28.025600pt;}
._1a_c00001{width:29.126400pt;}
._1d_c00001{width:30.528000pt;}
._21_c00001{width:31.462400pt;}
._13_c00001{width:32.902400pt;}
._19_c00001{width:34.592000pt;}
._23_c00001{width:35.622400pt;}
._1c_c00001{width:37.030400pt;}
._3_c00001{width:38.348800pt;}
._26_c00001{width:39.436800pt;}
._25_c00001{width:40.364800pt;}
._24_c00001{width:41.452800pt;}
._22_c00001{width:43.148800pt;}
._2a_c00001{width:50.412800pt;}
._18_c00001{width:86.528000pt;}
._27_c00001{width:163.923200pt;}
.fs1_c00001{font-size:37.120000pt;}
.fs0_c00001{font-size:64.000000pt;}
.y0_c00001{bottom:0.000000pt;}
.y23_c00001{bottom:1.280000pt;}
.y5_c00001{bottom:4.480000pt;}
.y1_c00001{bottom:11.320000pt;}
.y3_c00001{bottom:40.360000pt;}
.y4_c00001{bottom:47.200000pt;}
.y22_c00001{bottom:50.400000pt;}
.y2f_c00001{bottom:98.599867pt;}
.y21_c00001{bottom:98.600000pt;}
.y2e_c00001{bottom:130.599867pt;}
.y20_c00001{bottom:130.600000pt;}
.y2d_c00001{bottom:162.599867pt;}
.y1f_c00001{bottom:162.600000pt;}
.y2c_c00001{bottom:194.599867pt;}
.y1e_c00001{bottom:194.600000pt;}
.y2b_c00001{bottom:226.599867pt;}
.y1d_c00001{bottom:226.600000pt;}
.y2a_c00001{bottom:258.599867pt;}
.y1c_c00001{bottom:258.600000pt;}
.y29_c00001{bottom:290.599867pt;}
.y1b_c00001{bottom:290.600000pt;}
.y28_c00001{bottom:322.599867pt;}
.y1a_c00001{bottom:322.600000pt;}
.y27_c00001{bottom:354.599867pt;}
.y19_c00001{bottom:354.600000pt;}
.y26_c00001{bottom:386.599867pt;}
.y18_c00001{bottom:386.600000pt;}
.y25_c00001{bottom:418.599867pt;}
.y17_c00001{bottom:418.600000pt;}
.y24_c00001{bottom:450.599867pt;}
.y16_c00001{bottom:450.600000pt;}
.y15_c00001{bottom:482.599867pt;}
.y31_c00001{bottom:488.039867pt;}
.y14_c00001{bottom:514.599867pt;}
.y13_c00001{bottom:546.599867pt;}
.y12_c00001{bottom:578.599867pt;}
.y11_c00001{bottom:610.599867pt;}
.y10_c00001{bottom:642.599867pt;}
.yf_c00001{bottom:674.599867pt;}
.ye_c00001{bottom:706.599867pt;}
.yd_c00001{bottom:738.599867pt;}
.yc_c00001{bottom:770.599867pt;}
.yb_c00001{bottom:802.599867pt;}
.ya_c00001{bottom:834.599867pt;}
.y9_c00001{bottom:866.599867pt;}
.y30_c00001{bottom:872.039867pt;}
.y8_c00001{bottom:898.599867pt;}
.y7_c00001{bottom:930.599867pt;}
.y6_c00001{bottom:962.599867pt;}
.y2_c00001{bottom:1034.920000pt;}
.h6_c00001{height:15.360000pt;}
.h4_c00001{height:18.560000pt;}
.h9_c00001{height:62.781250pt;}
.h3_c00001{height:62.812500pt;}
.h8_c00001{height:62.813033pt;}
.h5_c00001{height:63.293658pt;}
.h7_c00001{height:64.500000pt;}
.ha_c00001{height:66.625000pt;}
.h2_c00001{height:1099.880000pt;}
.h0_c00001{height:1122.520000pt;}
.h1_c00001{height:1122.666667pt;}
.w3_c00001{width:24.000000pt;}
.w4_c00001{width:42.240000pt;}
.w2_c00001{width:771.080000pt;}
.w0_c00001{width:793.720000pt;}
.w1_c00001{width:794.000000pt;}
.x0_c00001{left:0.000000pt;}
.x6_c00001{left:9.100000pt;}
.x1_c00001{left:11.320000pt;}
.x3_c00001{left:84.797333pt;}
.x5_c00001{left:375.800000pt;}
.x4_c00001{left:384.760000pt;}
.x2_c00001{left:790.333333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  